
    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_f00b3546719d2dafc09a5cd4.woff2')format("woff");}.ff1_c00000{font-family:ff1_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:ff2_c00000;src:url('chunks/assets/font_2046cb29e4e1375d859f4669.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_f746b5518b5cd13774597931.woff2')format("woff");}.ff3_c00000{font-family:ff3_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:ff4_c00000;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls1_c00000{letter-spacing:0.000000px;}
.ls0_c00000{letter-spacing:0.357120px;}
.ls2_c00000{letter-spacing:0.630000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:-20.880000px;}
.ws1_c00000{word-spacing:0.000000px;}
._4_c00000{margin-left:-3.089989px;}
._1_c00000{margin-left:-1.213248px;}
._2_c00000{width:1.075800px;}
._0_c00000{width:2.151599px;}
._3_c00000{width:3.261984px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs4_c00000{font-size:60.480000px;}
.fs3_c00000{font-size:72.000000px;}
.fs1_c00000{font-size:83.520000px;}
.fs2_c00000{font-size:96.480000px;}
.fs0_c00000{font-size:119.520000px;}
.y0_c00000{bottom:0.000000px;}
.yf_c00000{bottom:220.035000px;}
.ye_c00000{bottom:257.115000px;}
.yd_c00000{bottom:297.105000px;}
.yc_c00000{bottom:337.065000px;}
.yb_c00000{bottom:377.385000px;}
.ya_c00000{bottom:417.390000px;}
.y9_c00000{bottom:462.030000px;}
.y8_c00000{bottom:510.270000px;}
.y7_c00000{bottom:546.660000px;}
.y6_c00000{bottom:598.500000px;}
.y5_c00000{bottom:659.010000px;}
.y4_c00000{bottom:710.850000px;}
.y3_c00000{bottom:772.455000px;}
.y2_c00000{bottom:833.295000px;}
.y1_c00000{bottom:886.605000px;}
.h6_c00000{height:59.357813px;}
.h5_c00000{height:70.664062px;}
.h3_c00000{height:81.970312px;}
.h4_c00000{height:97.233750px;}
.h1_c00000{height:117.302344px;}
.h2_c00000{height:120.453750px;}
.h0_c00000{height:1188.000000px;}
.w0_c00000{width:918.000000px;}
.x0_c00000{left:0.000000px;}
.x2_c00000{left:127.476000px;}
.x4_c00000{left:143.712000px;}
.x6_c00000{left:185.115000px;}
.x5_c00000{left:267.945000px;}
.x9_c00000{left:274.425000px;}
.x8_c00000{left:319.425000px;}
.xa_c00000{left:367.350000px;}
.x7_c00000{left:406.230000px;}
.x3_c00000{left:458.820000px;}
.x1_c00000{left:617.610000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls1_c00000{letter-spacing:0.000000pt;}
.ls0_c00000{letter-spacing:0.317440pt;}
.ls2_c00000{letter-spacing:0.560000pt;}
.ws0_c00000{word-spacing:-18.560000pt;}
.ws1_c00000{word-spacing:0.000000pt;}
._4_c00000{margin-left:-2.746657pt;}
._1_c00000{margin-left:-1.078442pt;}
._2_c00000{width:0.956266pt;}
._0_c00000{width:1.912532pt;}
._3_c00000{width:2.899542pt;}
.fs4_c00000{font-size:53.760000pt;}
.fs3_c00000{font-size:64.000000pt;}
.fs1_c00000{font-size:74.240000pt;}
.fs2_c00000{font-size:85.760000pt;}
.fs0_c00000{font-size:106.240000pt;}
.y0_c00000{bottom:0.000000pt;}
.yf_c00000{bottom:195.586667pt;}
.ye_c00000{bottom:228.546667pt;}
.yd_c00000{bottom:264.093333pt;}
.yc_c00000{bottom:299.613333pt;}
.yb_c00000{bottom:335.453333pt;}
.ya_c00000{bottom:371.013333pt;}
.y9_c00000{bottom:410.693333pt;}
.y8_c00000{bottom:453.573333pt;}
.y7_c00000{bottom:485.920000pt;}
.y6_c00000{bottom:532.000000pt;}
.y5_c00000{bottom:585.786667pt;}
.y4_c00000{bottom:631.866667pt;}
.y3_c00000{bottom:686.626667pt;}
.y2_c00000{bottom:740.706667pt;}
.y1_c00000{bottom:788.093333pt;}
.h6_c00000{height:52.762500pt;}
.h5_c00000{height:62.812500pt;}
.h3_c00000{height:72.862500pt;}
.h4_c00000{height:86.430000pt;}
.h1_c00000{height:104.268750pt;}
.h2_c00000{height:107.070000pt;}
.h0_c00000{height:1056.000000pt;}
.w0_c00000{width:816.000000pt;}
.x0_c00000{left:0.000000pt;}
.x2_c00000{left:113.312000pt;}
.x4_c00000{left:127.744000pt;}
.x6_c00000{left:164.546667pt;}
.x5_c00000{left:238.173333pt;}
.x9_c00000{left:243.933333pt;}
.x8_c00000{left:283.933333pt;}
.xa_c00000{left:326.533333pt;}
.x7_c00000{left:361.093333pt;}
.x3_c00000{left:407.840000pt;}
.x1_c00000{left:548.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0022dfc080196ff4bfe461c8.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_2d4ea1a193694653315185b0.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_877ef98713b259ffcfb1205f.woff2')format("woff");}.ff3_c00001{font-family:ff3_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:ff4_c00001;src:url('chunks/assets/font_08710bd9ee6eefdc4821c598.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls2_c00001{letter-spacing:-0.648000px;}
.ls3_c00001{letter-spacing:-0.288000px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls0_c00001{letter-spacing:2.160000px;}
.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;}
}
.ws0_c00001{word-spacing:-18.000000px;}
.ws1_c00001{word-spacing:0.000000px;}
._b_c00001{margin-left:-3.168000px;}
._0_c00001{margin-left:-2.016000px;}
._7_c00001{margin-left:-1.008000px;}
._1_c00001{width:1.224000px;}
._4_c00001{width:2.880000px;}
._a_c00001{width:4.476000px;}
._c_c00001{width:5.616000px;}
._5_c00001{width:6.984000px;}
._3_c00001{width:7.992000px;}
._2_c00001{width:10.080000px;}
._8_c00001{width:11.376000px;}
._6_c00001{width:12.816000px;}
._9_c00001{width:14.232024px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:72.000000px;}
.fs1_c00001{font-size:83.520000px;}
.y0_c00001{bottom:0.000000px;}
.y6_c00001{bottom:4.675500px;}
.y3_c00001{bottom:4.680000px;}
.y5_c00001{bottom:25.195500px;}
.y4_c00001{bottom:32.800500px;}
.y1_c00001{bottom:57.996000px;}
.y20_c00001{bottom:117.756000px;}
.y1f_c00001{bottom:157.755000px;}
.y1e_c00001{bottom:197.715000px;}
.y1d_c00001{bottom:237.675000px;}
.y1c_c00001{bottom:278.385000px;}
.y1b_c00001{bottom:318.345000px;}
.y1a_c00001{bottom:358.305000px;}
.y19_c00001{bottom:398.310000px;}
.y18_c00001{bottom:438.630000px;}
.y17_c00001{bottom:478.590000px;}
.y16_c00001{bottom:518.580000px;}
.y15_c00001{bottom:558.540000px;}
.y14_c00001{bottom:598.860000px;}
.y13_c00001{bottom:638.820000px;}
.y12_c00001{bottom:678.810000px;}
.y11_c00001{bottom:718.770000px;}
.y10_c00001{bottom:750.090000px;}
.yf_c00001{bottom:781.095000px;}
.ye_c00001{bottom:812.055000px;}
.yd_c00001{bottom:843.015000px;}
.yc_c00001{bottom:874.335000px;}
.yb_c00001{bottom:905.325000px;}
.ya_c00001{bottom:945.285000px;}
.y9_c00001{bottom:984.885000px;}
.y8_c00001{bottom:1025.250000px;}
.y7_c00001{bottom:1065.210000px;}
.y2_c00001{bottom:1113.090000px;}
.h2_c00001{height:20.910000px;}
.h3_c00001{height:41.395500px;}
.h1_c00001{height:64.546875px;}
.h5_c00001{height:70.664062px;}
.h4_c00001{height:72.562500px;}
.h6_c00001{height:81.929531px;}
.h0_c00001{height:1188.000000px;}
.w1_c00001{width:8.265000px;}
.w2_c00001{width:663.345000px;}
.w0_c00001{width:918.000000px;}
.x0_c00001{left:0.000000px;}
.x3_c00001{left:127.489500px;}
.x1_c00001{left:154.515000px;}
.x4_c00001{left:272.625000px;}
.x2_c00001{left:782.565000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls2_c00001{letter-spacing:-0.576000pt;}
.ls3_c00001{letter-spacing:-0.256000pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls0_c00001{letter-spacing:1.920000pt;}
.ws0_c00001{word-spacing:-16.000000pt;}
.ws1_c00001{word-spacing:0.000000pt;}
._b_c00001{margin-left:-2.816000pt;}
._0_c00001{margin-left:-1.792000pt;}
._7_c00001{margin-left:-0.896000pt;}
._1_c00001{width:1.088000pt;}
._4_c00001{width:2.560000pt;}
._a_c00001{width:3.978667pt;}
._c_c00001{width:4.992000pt;}
._5_c00001{width:6.208000pt;}
._3_c00001{width:7.104000pt;}
._2_c00001{width:8.960000pt;}
._8_c00001{width:10.112000pt;}
._6_c00001{width:11.392000pt;}
._9_c00001{width:12.650688pt;}
.fs0_c00001{font-size:64.000000pt;}
.fs1_c00001{font-size:74.240000pt;}
.y0_c00001{bottom:0.000000pt;}
.y6_c00001{bottom:4.156000pt;}
.y3_c00001{bottom:4.160000pt;}
.y5_c00001{bottom:22.396000pt;}
.y4_c00001{bottom:29.156000pt;}
.y1_c00001{bottom:51.552000pt;}
.y20_c00001{bottom:104.672000pt;}
.y1f_c00001{bottom:140.226667pt;}
.y1e_c00001{bottom:175.746667pt;}
.y1d_c00001{bottom:211.266667pt;}
.y1c_c00001{bottom:247.453333pt;}
.y1b_c00001{bottom:282.973333pt;}
.y1a_c00001{bottom:318.493333pt;}
.y19_c00001{bottom:354.053333pt;}
.y18_c00001{bottom:389.893333pt;}
.y17_c00001{bottom:425.413333pt;}
.y16_c00001{bottom:460.960000pt;}
.y15_c00001{bottom:496.480000pt;}
.y14_c00001{bottom:532.320000pt;}
.y13_c00001{bottom:567.840000pt;}
.y12_c00001{bottom:603.386667pt;}
.y11_c00001{bottom:638.906667pt;}
.y10_c00001{bottom:666.746667pt;}
.yf_c00001{bottom:694.306667pt;}
.ye_c00001{bottom:721.826667pt;}
.yd_c00001{bottom:749.346667pt;}
.yc_c00001{bottom:777.186667pt;}
.yb_c00001{bottom:804.733333pt;}
.ya_c00001{bottom:840.253333pt;}
.y9_c00001{bottom:875.453333pt;}
.y8_c00001{bottom:911.333333pt;}
.y7_c00001{bottom:946.853333pt;}
.y2_c00001{bottom:989.413333pt;}
.h2_c00001{height:18.586667pt;}
.h3_c00001{height:36.796000pt;}
.h1_c00001{height:57.375000pt;}
.h5_c00001{height:62.812500pt;}
.h4_c00001{height:64.500000pt;}
.h6_c00001{height:72.826250pt;}
.h0_c00001{height:1056.000000pt;}
.w1_c00001{width:7.346667pt;}
.w2_c00001{width:589.640000pt;}
.w0_c00001{width:816.000000pt;}
.x0_c00001{left:0.000000pt;}
.x3_c00001{left:113.324000pt;}
.x1_c00001{left:137.346667pt;}
.x4_c00001{left:242.333333pt;}
.x2_c00001{left:695.613333pt;}
}





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

.ir_c00002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00002;src:url('chunks/assets/font_b31f79f31a118f13bd4bec70.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:72.000000px;}
.y0_c00002{bottom:0.000000px;}
.y6_c00002{bottom:4.675500px;}
.y3_c00002{bottom:4.680000px;}
.y5_c00002{bottom:25.195500px;}
.y4_c00002{bottom:32.800500px;}
.y1_c00002{bottom:57.996000px;}
.y1e_c00002{bottom:143.676000px;}
.y1d_c00002{bottom:183.675000px;}
.y1c_c00002{bottom:223.995000px;}
.y1b_c00002{bottom:263.955000px;}
.y1a_c00002{bottom:303.945000px;}
.y19_c00002{bottom:343.905000px;}
.y18_c00002{bottom:384.225000px;}
.y17_c00002{bottom:424.230000px;}
.y16_c00002{bottom:464.190000px;}
.y15_c00002{bottom:504.150000px;}
.y14_c00002{bottom:544.500000px;}
.y13_c00002{bottom:584.460000px;}
.y12_c00002{bottom:624.420000px;}
.y11_c00002{bottom:664.410000px;}
.y10_c00002{bottom:704.730000px;}
.yf_c00002{bottom:744.690000px;}
.ye_c00002{bottom:784.695000px;}
.yd_c00002{bottom:824.655000px;}
.yc_c00002{bottom:864.975000px;}
.yb_c00002{bottom:904.965000px;}
.ya_c00002{bottom:944.925000px;}
.y9_c00002{bottom:984.885000px;}
.y8_c00002{bottom:1025.250000px;}
.y7_c00002{bottom:1065.210000px;}
.y2_c00002{bottom:1113.090000px;}
.h2_c00002{height:20.910000px;}
.h3_c00002{height:41.395500px;}
.h1_c00002{height:64.546875px;}
.h4_c00002{height:72.562500px;}
.h0_c00002{height:1188.000000px;}
.w1_c00002{width:8.265000px;}
.w2_c00002{width:663.345000px;}
.w0_c00002{width:918.000000px;}
.x0_c00002{left:0.000000px;}
.x3_c00002{left:127.489500px;}
.x1_c00002{left:154.515000px;}
.x4_c00002{left:458.820000px;}
.x2_c00002{left:782.565000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs0_c00002{font-size:64.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y6_c00002{bottom:4.156000pt;}
.y3_c00002{bottom:4.160000pt;}
.y5_c00002{bottom:22.396000pt;}
.y4_c00002{bottom:29.156000pt;}
.y1_c00002{bottom:51.552000pt;}
.y1e_c00002{bottom:127.712000pt;}
.y1d_c00002{bottom:163.266667pt;}
.y1c_c00002{bottom:199.106667pt;}
.y1b_c00002{bottom:234.626667pt;}
.y1a_c00002{bottom:270.173333pt;}
.y19_c00002{bottom:305.693333pt;}
.y18_c00002{bottom:341.533333pt;}
.y17_c00002{bottom:377.093333pt;}
.y16_c00002{bottom:412.613333pt;}
.y15_c00002{bottom:448.133333pt;}
.y14_c00002{bottom:484.000000pt;}
.y13_c00002{bottom:519.520000pt;}
.y12_c00002{bottom:555.040000pt;}
.y11_c00002{bottom:590.586667pt;}
.y10_c00002{bottom:626.426667pt;}
.yf_c00002{bottom:661.946667pt;}
.ye_c00002{bottom:697.506667pt;}
.yd_c00002{bottom:733.026667pt;}
.yc_c00002{bottom:768.866667pt;}
.yb_c00002{bottom:804.413333pt;}
.ya_c00002{bottom:839.933333pt;}
.y9_c00002{bottom:875.453333pt;}
.y8_c00002{bottom:911.333333pt;}
.y7_c00002{bottom:946.853333pt;}
.y2_c00002{bottom:989.413333pt;}
.h2_c00002{height:18.586667pt;}
.h3_c00002{height:36.796000pt;}
.h1_c00002{height:57.375000pt;}
.h4_c00002{height:64.500000pt;}
.h0_c00002{height:1056.000000pt;}
.w1_c00002{width:7.346667pt;}
.w2_c00002{width:589.640000pt;}
.w0_c00002{width:816.000000pt;}
.x0_c00002{left:0.000000pt;}
.x3_c00002{left:113.324000pt;}
.x1_c00002{left:137.346667pt;}
.x4_c00002{left:407.840000pt;}
.x2_c00002{left:695.613333pt;}
}





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

.ir_c00003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_acae039e0af64b70d0c5b84e.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_f9a865416b7c599cdeae6749.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls0_c00003{letter-spacing:0.000000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
._1_c00003{margin-left:-1.440000px;}
._0_c00003{width:1.584000px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:72.000000px;}
.y0_c00003{bottom:0.000000px;}
.y6_c00003{bottom:4.675500px;}
.y3_c00003{bottom:4.680000px;}
.y5_c00003{bottom:25.195500px;}
.y4_c00003{bottom:32.800500px;}
.y1_c00003{bottom:57.996000px;}
.y1f_c00003{bottom:121.716000px;}
.y1e_c00003{bottom:161.715000px;}
.y1d_c00003{bottom:201.675000px;}
.y1c_c00003{bottom:241.995000px;}
.y1b_c00003{bottom:281.985000px;}
.y1a_c00003{bottom:321.945000px;}
.y19_c00003{bottom:361.905000px;}
.y18_c00003{bottom:402.270000px;}
.y17_c00003{bottom:442.230000px;}
.y16_c00003{bottom:482.190000px;}
.y15_c00003{bottom:522.180000px;}
.y14_c00003{bottom:562.500000px;}
.y13_c00003{bottom:602.460000px;}
.y12_c00003{bottom:642.450000px;}
.y11_c00003{bottom:682.410000px;}
.y10_c00003{bottom:723.090000px;}
.yf_c00003{bottom:754.050000px;}
.ye_c00003{bottom:794.055000px;}
.yd_c00003{bottom:834.015000px;}
.yc_c00003{bottom:865.335000px;}
.yb_c00003{bottom:905.325000px;}
.ya_c00003{bottom:945.285000px;}
.y9_c00003{bottom:985.245000px;}
.y8_c00003{bottom:1025.610000px;}
.y7_c00003{bottom:1065.570000px;}
.y2_c00003{bottom:1113.090000px;}
.h2_c00003{height:20.910000px;}
.h3_c00003{height:41.395500px;}
.h1_c00003{height:64.546875px;}
.h4_c00003{height:70.628906px;}
.h5_c00003{height:72.562500px;}
.h0_c00003{height:1188.000000px;}
.w1_c00003{width:8.265000px;}
.w2_c00003{width:663.345000px;}
.w0_c00003{width:918.000000px;}
.x0_c00003{left:0.000000px;}
.x3_c00003{left:127.489500px;}
.x1_c00003{left:154.515000px;}
.x8_c00003{left:308.265000px;}
.x5_c00003{left:323.745000px;}
.x7_c00003{left:362.670000px;}
.x6_c00003{left:405.510000px;}
.x9_c00003{left:458.820000px;}
.x2_c00003{left:782.565000px;}
.x4_c00003{left:790.485000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._1_c00003{margin-left:-1.280000pt;}
._0_c00003{width:1.408000pt;}
.fs0_c00003{font-size:64.000000pt;}
.y0_c00003{bottom:0.000000pt;}
.y6_c00003{bottom:4.156000pt;}
.y3_c00003{bottom:4.160000pt;}
.y5_c00003{bottom:22.396000pt;}
.y4_c00003{bottom:29.156000pt;}
.y1_c00003{bottom:51.552000pt;}
.y1f_c00003{bottom:108.192000pt;}
.y1e_c00003{bottom:143.746667pt;}
.y1d_c00003{bottom:179.266667pt;}
.y1c_c00003{bottom:215.106667pt;}
.y1b_c00003{bottom:250.653333pt;}
.y1a_c00003{bottom:286.173333pt;}
.y19_c00003{bottom:321.693333pt;}
.y18_c00003{bottom:357.573333pt;}
.y17_c00003{bottom:393.093333pt;}
.y16_c00003{bottom:428.613333pt;}
.y15_c00003{bottom:464.160000pt;}
.y14_c00003{bottom:500.000000pt;}
.y13_c00003{bottom:535.520000pt;}
.y12_c00003{bottom:571.066667pt;}
.y11_c00003{bottom:606.586667pt;}
.y10_c00003{bottom:642.746667pt;}
.yf_c00003{bottom:670.266667pt;}
.ye_c00003{bottom:705.826667pt;}
.yd_c00003{bottom:741.346667pt;}
.yc_c00003{bottom:769.186667pt;}
.yb_c00003{bottom:804.733333pt;}
.ya_c00003{bottom:840.253333pt;}
.y9_c00003{bottom:875.773333pt;}
.y8_c00003{bottom:911.653333pt;}
.y7_c00003{bottom:947.173333pt;}
.y2_c00003{bottom:989.413333pt;}
.h2_c00003{height:18.586667pt;}
.h3_c00003{height:36.796000pt;}
.h1_c00003{height:57.375000pt;}
.h4_c00003{height:62.781250pt;}
.h5_c00003{height:64.500000pt;}
.h0_c00003{height:1056.000000pt;}
.w1_c00003{width:7.346667pt;}
.w2_c00003{width:589.640000pt;}
.w0_c00003{width:816.000000pt;}
.x0_c00003{left:0.000000pt;}
.x3_c00003{left:113.324000pt;}
.x1_c00003{left:137.346667pt;}
.x8_c00003{left:274.013333pt;}
.x5_c00003{left:287.773333pt;}
.x7_c00003{left:322.373333pt;}
.x6_c00003{left:360.453333pt;}
.x9_c00003{left:407.840000pt;}
.x2_c00003{left:695.613333pt;}
.x4_c00003{left:702.653333pt;}
}





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

.ir_c00004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00004;src:url('chunks/assets/font_1f91c977ba7500c2c18183bb.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls0_c00004{letter-spacing:0.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:0.000000px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:72.000000px;}
.y0_c00004{bottom:0.000000px;}
.y6_c00004{bottom:4.675500px;}
.y3_c00004{bottom:4.680000px;}
.y5_c00004{bottom:25.195500px;}
.y4_c00004{bottom:32.800500px;}
.y1_c00004{bottom:57.996000px;}
.y1e_c00004{bottom:143.676000px;}
.y1d_c00004{bottom:183.675000px;}
.y1c_c00004{bottom:223.995000px;}
.y1b_c00004{bottom:263.955000px;}
.y1a_c00004{bottom:303.945000px;}
.y19_c00004{bottom:343.905000px;}
.y18_c00004{bottom:384.225000px;}
.y17_c00004{bottom:424.230000px;}
.y16_c00004{bottom:464.190000px;}
.y15_c00004{bottom:504.150000px;}
.y14_c00004{bottom:544.500000px;}
.y13_c00004{bottom:584.460000px;}
.y12_c00004{bottom:624.420000px;}
.y11_c00004{bottom:664.410000px;}
.y10_c00004{bottom:704.730000px;}
.yf_c00004{bottom:744.690000px;}
.ye_c00004{bottom:784.695000px;}
.yd_c00004{bottom:824.655000px;}
.yc_c00004{bottom:864.975000px;}
.yb_c00004{bottom:904.965000px;}
.ya_c00004{bottom:944.925000px;}
.y9_c00004{bottom:984.885000px;}
.y8_c00004{bottom:1025.250000px;}
.y7_c00004{bottom:1065.210000px;}
.y2_c00004{bottom:1113.090000px;}
.h2_c00004{height:20.910000px;}
.h3_c00004{height:41.395500px;}
.h1_c00004{height:64.546875px;}
.h4_c00004{height:72.562500px;}
.h0_c00004{height:1188.000000px;}
.w1_c00004{width:8.265000px;}
.w2_c00004{width:663.345000px;}
.w0_c00004{width:918.000000px;}
.x0_c00004{left:0.000000px;}
.x3_c00004{left:127.489500px;}
.x1_c00004{left:154.515000px;}
.x4_c00004{left:458.820000px;}
.x2_c00004{left:782.565000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:0.000000pt;}
.fs0_c00004{font-size:64.000000pt;}
.y0_c00004{bottom:0.000000pt;}
.y6_c00004{bottom:4.156000pt;}
.y3_c00004{bottom:4.160000pt;}
.y5_c00004{bottom:22.396000pt;}
.y4_c00004{bottom:29.156000pt;}
.y1_c00004{bottom:51.552000pt;}
.y1e_c00004{bottom:127.712000pt;}
.y1d_c00004{bottom:163.266667pt;}
.y1c_c00004{bottom:199.106667pt;}
.y1b_c00004{bottom:234.626667pt;}
.y1a_c00004{bottom:270.173333pt;}
.y19_c00004{bottom:305.693333pt;}
.y18_c00004{bottom:341.533333pt;}
.y17_c00004{bottom:377.093333pt;}
.y16_c00004{bottom:412.613333pt;}
.y15_c00004{bottom:448.133333pt;}
.y14_c00004{bottom:484.000000pt;}
.y13_c00004{bottom:519.520000pt;}
.y12_c00004{bottom:555.040000pt;}
.y11_c00004{bottom:590.586667pt;}
.y10_c00004{bottom:626.426667pt;}
.yf_c00004{bottom:661.946667pt;}
.ye_c00004{bottom:697.506667pt;}
.yd_c00004{bottom:733.026667pt;}
.yc_c00004{bottom:768.866667pt;}
.yb_c00004{bottom:804.413333pt;}
.ya_c00004{bottom:839.933333pt;}
.y9_c00004{bottom:875.453333pt;}
.y8_c00004{bottom:911.333333pt;}
.y7_c00004{bottom:946.853333pt;}
.y2_c00004{bottom:989.413333pt;}
.h2_c00004{height:18.586667pt;}
.h3_c00004{height:36.796000pt;}
.h1_c00004{height:57.375000pt;}
.h4_c00004{height:64.500000pt;}
.h0_c00004{height:1056.000000pt;}
.w1_c00004{width:7.346667pt;}
.w2_c00004{width:589.640000pt;}
.w0_c00004{width:816.000000pt;}
.x0_c00004{left:0.000000pt;}
.x3_c00004{left:113.324000pt;}
.x1_c00004{left:137.346667pt;}
.x4_c00004{left:407.840000pt;}
.x2_c00004{left:695.613333pt;}
}





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

.ir_c00005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00005;src:url('chunks/assets/font_82792fd79101cd2ce97d2d29.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_b1bcb5d58fe44ec21dda0600.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_a176f645c13f3c904f32c09b.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_0f55faab96e8e42a144d9d9c.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;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_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls0_c00005{letter-spacing:0.000000px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:0.000000px;}
._6_c00005{margin-left:-2.952000px;}
._0_c00005{margin-left:-1.872000px;}
._1_c00005{width:1.152000px;}
._2_c00005{width:2.579976px;}
._3_c00005{width:3.648312px;}
._e_c00005{width:4.680000px;}
._4_c00005{width:5.710536px;}
._5_c00005{width:6.833880px;}
._d_c00005{width:7.932240px;}
._c_c00005{width:9.000000px;}
._a_c00005{width:10.571976px;}
._9_c00005{width:11.820024px;}
._b_c00005{width:12.852000px;}
._7_c00005{width:14.904000px;}
._8_c00005{width:16.416000px;}
._10_c00005{width:21.252024px;}
._f_c00005{width:22.680000px;}
._11_c00005{width:24.204024px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs0_c00005{font-size:72.000000px;}
.y0_c00005{bottom:0.000000px;}
.y6_c00005{bottom:4.675500px;}
.y3_c00005{bottom:4.680000px;}
.y5_c00005{bottom:25.195500px;}
.y4_c00005{bottom:32.800500px;}
.y1_c00005{bottom:57.996000px;}
.y24_c00005{bottom:128.916000px;}
.y23_c00005{bottom:159.915000px;}
.y22_c00005{bottom:190.875000px;}
.y21_c00005{bottom:221.835000px;}
.y20_c00005{bottom:253.155000px;}
.y1f_c00005{bottom:284.145000px;}
.y1e_c00005{bottom:315.105000px;}
.y1d_c00005{bottom:346.065000px;}
.y1c_c00005{bottom:377.385000px;}
.y1b_c00005{bottom:408.390000px;}
.y1a_c00005{bottom:439.350000px;}
.y19_c00005{bottom:479.310000px;}
.y18_c00005{bottom:510.630000px;}
.y17_c00005{bottom:541.620000px;}
.y16_c00005{bottom:572.580000px;}
.y15_c00005{bottom:603.540000px;}
.y14_c00005{bottom:634.860000px;}
.y13_c00005{bottom:665.850000px;}
.y12_c00005{bottom:696.810000px;}
.y11_c00005{bottom:727.770000px;}
.y10_c00005{bottom:759.090000px;}
.yf_c00005{bottom:790.095000px;}
.ye_c00005{bottom:821.055000px;}
.yd_c00005{bottom:852.015000px;}
.yc_c00005{bottom:883.335000px;}
.yb_c00005{bottom:914.325000px;}
.ya_c00005{bottom:945.285000px;}
.y9_c00005{bottom:984.885000px;}
.y8_c00005{bottom:1025.250000px;}
.y7_c00005{bottom:1065.210000px;}
.y2_c00005{bottom:1113.090000px;}
.h2_c00005{height:20.910000px;}
.h3_c00005{height:41.395500px;}
.h1_c00005{height:64.546875px;}
.h5_c00005{height:70.664062px;}
.h4_c00005{height:72.562500px;}
.h0_c00005{height:1188.000000px;}
.w1_c00005{width:8.265000px;}
.w2_c00005{width:663.345000px;}
.w0_c00005{width:918.000000px;}
.x0_c00005{left:0.000000px;}
.x3_c00005{left:127.489500px;}
.x1_c00005{left:154.515000px;}
.x6_c00005{left:180.795000px;}
.x5_c00005{left:328.785000px;}
.x4_c00005{left:458.820000px;}
.x2_c00005{left:782.565000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws0_c00005{word-spacing:0.000000pt;}
._6_c00005{margin-left:-2.624000pt;}
._0_c00005{margin-left:-1.664000pt;}
._1_c00005{width:1.024000pt;}
._2_c00005{width:2.293312pt;}
._3_c00005{width:3.242944pt;}
._e_c00005{width:4.160000pt;}
._4_c00005{width:5.076032pt;}
._5_c00005{width:6.074560pt;}
._d_c00005{width:7.050880pt;}
._c_c00005{width:8.000000pt;}
._a_c00005{width:9.397312pt;}
._9_c00005{width:10.506688pt;}
._b_c00005{width:11.424000pt;}
._7_c00005{width:13.248000pt;}
._8_c00005{width:14.592000pt;}
._10_c00005{width:18.890688pt;}
._f_c00005{width:20.160000pt;}
._11_c00005{width:21.514688pt;}
.fs0_c00005{font-size:64.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y6_c00005{bottom:4.156000pt;}
.y3_c00005{bottom:4.160000pt;}
.y5_c00005{bottom:22.396000pt;}
.y4_c00005{bottom:29.156000pt;}
.y1_c00005{bottom:51.552000pt;}
.y24_c00005{bottom:114.592000pt;}
.y23_c00005{bottom:142.146667pt;}
.y22_c00005{bottom:169.666667pt;}
.y21_c00005{bottom:197.186667pt;}
.y20_c00005{bottom:225.026667pt;}
.y1f_c00005{bottom:252.573333pt;}
.y1e_c00005{bottom:280.093333pt;}
.y1d_c00005{bottom:307.613333pt;}
.y1c_c00005{bottom:335.453333pt;}
.y1b_c00005{bottom:363.013333pt;}
.y1a_c00005{bottom:390.533333pt;}
.y19_c00005{bottom:426.053333pt;}
.y18_c00005{bottom:453.893333pt;}
.y17_c00005{bottom:481.440000pt;}
.y16_c00005{bottom:508.960000pt;}
.y15_c00005{bottom:536.480000pt;}
.y14_c00005{bottom:564.320000pt;}
.y13_c00005{bottom:591.866667pt;}
.y12_c00005{bottom:619.386667pt;}
.y11_c00005{bottom:646.906667pt;}
.y10_c00005{bottom:674.746667pt;}
.yf_c00005{bottom:702.306667pt;}
.ye_c00005{bottom:729.826667pt;}
.yd_c00005{bottom:757.346667pt;}
.yc_c00005{bottom:785.186667pt;}
.yb_c00005{bottom:812.733333pt;}
.ya_c00005{bottom:840.253333pt;}
.y9_c00005{bottom:875.453333pt;}
.y8_c00005{bottom:911.333333pt;}
.y7_c00005{bottom:946.853333pt;}
.y2_c00005{bottom:989.413333pt;}
.h2_c00005{height:18.586667pt;}
.h3_c00005{height:36.796000pt;}
.h1_c00005{height:57.375000pt;}
.h5_c00005{height:62.812500pt;}
.h4_c00005{height:64.500000pt;}
.h0_c00005{height:1056.000000pt;}
.w1_c00005{width:7.346667pt;}
.w2_c00005{width:589.640000pt;}
.w0_c00005{width:816.000000pt;}
.x0_c00005{left:0.000000pt;}
.x3_c00005{left:113.324000pt;}
.x1_c00005{left:137.346667pt;}
.x6_c00005{left:160.706667pt;}
.x5_c00005{left:292.253333pt;}
.x4_c00005{left:407.840000pt;}
.x2_c00005{left:695.613333pt;}
}





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

.ir_c00006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00006;src:url('chunks/assets/font_d625fa8e003c0ea9359d26c4.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_9a89ba5ebbde6c56b21b2023.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_06765a471b584abf78778d31.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;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_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls0_c00006{letter-spacing:0.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:0.000000px;}
._5_c00006{margin-left:-2.880000px;}
._1_c00006{margin-left:-1.728000px;}
._0_c00006{width:1.512000px;}
._6_c00006{width:2.808000px;}
._7_c00006{width:3.888000px;}
._c_c00006{width:4.908024px;}
._8_c00006{width:6.132024px;}
._9_c00006{width:7.259976px;}
._2_c00006{width:8.640000px;}
._3_c00006{width:9.923976px;}
._4_c00006{width:11.160000px;}
._a_c00006{width:12.240000px;}
._b_c00006{width:13.824000px;}
._10_c00006{width:19.848000px;}
._e_c00006{width:21.660000px;}
._d_c00006{width:22.896000px;}
._f_c00006{width:24.132000px;}
._11_c00006{width:26.424000px;}
._12_c00006{width:28.211976px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:72.000000px;}
.y0_c00006{bottom:0.000000px;}
.y6_c00006{bottom:4.675500px;}
.y3_c00006{bottom:4.680000px;}
.y5_c00006{bottom:25.195500px;}
.y4_c00006{bottom:32.800500px;}
.y1_c00006{bottom:57.996000px;}
.y23_c00006{bottom:114.876000px;}
.y22_c00006{bottom:154.875000px;}
.y21_c00006{bottom:194.835000px;}
.y20_c00006{bottom:235.155000px;}
.y1f_c00006{bottom:275.145000px;}
.y1e_c00006{bottom:315.105000px;}
.y1d_c00006{bottom:355.065000px;}
.y1c_c00006{bottom:395.430000px;}
.y1b_c00006{bottom:435.390000px;}
.y1a_c00006{bottom:466.350000px;}
.y19_c00006{bottom:497.310000px;}
.y18_c00006{bottom:528.660000px;}
.y17_c00006{bottom:559.620000px;}
.y16_c00006{bottom:590.580000px;}
.y15_c00006{bottom:621.540000px;}
.y14_c00006{bottom:652.890000px;}
.y13_c00006{bottom:683.850000px;}
.y12_c00006{bottom:714.810000px;}
.y11_c00006{bottom:745.770000px;}
.y10_c00006{bottom:777.135000px;}
.yf_c00006{bottom:808.095000px;}
.ye_c00006{bottom:839.055000px;}
.yd_c00006{bottom:879.015000px;}
.yc_c00006{bottom:910.365000px;}
.yb_c00006{bottom:941.325000px;}
.ya_c00006{bottom:972.285000px;}
.y9_c00006{bottom:1003.245000px;}
.y8_c00006{bottom:1034.610000px;}
.y7_c00006{bottom:1065.570000px;}
.y2_c00006{bottom:1113.090000px;}
.h2_c00006{height:20.910000px;}
.h3_c00006{height:41.395500px;}
.h1_c00006{height:64.546875px;}
.h4_c00006{height:70.664062px;}
.h0_c00006{height:1188.000000px;}
.w1_c00006{width:8.265000px;}
.w2_c00006{width:663.345000px;}
.w0_c00006{width:918.000000px;}
.x0_c00006{left:0.000000px;}
.x3_c00006{left:127.489500px;}
.x1_c00006{left:154.515000px;}
.x4_c00006{left:180.795000px;}
.x2_c00006{left:782.565000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
._5_c00006{margin-left:-2.560000pt;}
._1_c00006{margin-left:-1.536000pt;}
._0_c00006{width:1.344000pt;}
._6_c00006{width:2.496000pt;}
._7_c00006{width:3.456000pt;}
._c_c00006{width:4.362688pt;}
._8_c00006{width:5.450688pt;}
._9_c00006{width:6.453312pt;}
._2_c00006{width:7.680000pt;}
._3_c00006{width:8.821312pt;}
._4_c00006{width:9.920000pt;}
._a_c00006{width:10.880000pt;}
._b_c00006{width:12.288000pt;}
._10_c00006{width:17.642667pt;}
._e_c00006{width:19.253333pt;}
._d_c00006{width:20.352000pt;}
._f_c00006{width:21.450667pt;}
._11_c00006{width:23.488000pt;}
._12_c00006{width:25.077312pt;}
.fs0_c00006{font-size:64.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y6_c00006{bottom:4.156000pt;}
.y3_c00006{bottom:4.160000pt;}
.y5_c00006{bottom:22.396000pt;}
.y4_c00006{bottom:29.156000pt;}
.y1_c00006{bottom:51.552000pt;}
.y23_c00006{bottom:102.112000pt;}
.y22_c00006{bottom:137.666667pt;}
.y21_c00006{bottom:173.186667pt;}
.y20_c00006{bottom:209.026667pt;}
.y1f_c00006{bottom:244.573333pt;}
.y1e_c00006{bottom:280.093333pt;}
.y1d_c00006{bottom:315.613333pt;}
.y1c_c00006{bottom:351.493333pt;}
.y1b_c00006{bottom:387.013333pt;}
.y1a_c00006{bottom:414.533333pt;}
.y19_c00006{bottom:442.053333pt;}
.y18_c00006{bottom:469.920000pt;}
.y17_c00006{bottom:497.440000pt;}
.y16_c00006{bottom:524.960000pt;}
.y15_c00006{bottom:552.480000pt;}
.y14_c00006{bottom:580.346667pt;}
.y13_c00006{bottom:607.866667pt;}
.y12_c00006{bottom:635.386667pt;}
.y11_c00006{bottom:662.906667pt;}
.y10_c00006{bottom:690.786667pt;}
.yf_c00006{bottom:718.306667pt;}
.ye_c00006{bottom:745.826667pt;}
.yd_c00006{bottom:781.346667pt;}
.yc_c00006{bottom:809.213333pt;}
.yb_c00006{bottom:836.733333pt;}
.ya_c00006{bottom:864.253333pt;}
.y9_c00006{bottom:891.773333pt;}
.y8_c00006{bottom:919.653333pt;}
.y7_c00006{bottom:947.173333pt;}
.y2_c00006{bottom:989.413333pt;}
.h2_c00006{height:18.586667pt;}
.h3_c00006{height:36.796000pt;}
.h1_c00006{height:57.375000pt;}
.h4_c00006{height:62.812500pt;}
.h0_c00006{height:1056.000000pt;}
.w1_c00006{width:7.346667pt;}
.w2_c00006{width:589.640000pt;}
.w0_c00006{width:816.000000pt;}
.x0_c00006{left:0.000000pt;}
.x3_c00006{left:113.324000pt;}
.x1_c00006{left:137.346667pt;}
.x4_c00006{left:160.706667pt;}
.x2_c00006{left:695.613333pt;}
}





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

.ir_c00007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00007;src:url('chunks/assets/font_41d4033af0008ff3f16b2b3b.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_b00af411167ceba0f6191dc5.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_4a2b6cc1fb9bc8bdc7211c32.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00007;src:url('chunks/assets/font_630868a7494693ba45ac39a0.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;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_c00007;src:url('chunks/assets/font_0403007871a4d5965e5acee5.woff2')format("woff");}.ff5_c00007{font-family:ff5_c00007;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_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls8_c00007{letter-spacing:-1.584000px;}
.ls7_c00007{letter-spacing:-0.792000px;}
.ls6_c00007{letter-spacing:-0.144000px;}
.ls4_c00007{letter-spacing:0.000000px;}
.ls3_c00007{letter-spacing:0.036000px;}
.ls1_c00007{letter-spacing:0.120000px;}
.ls5_c00007{letter-spacing:0.648000px;}
.ls0_c00007{letter-spacing:0.720000px;}
.ls2_c00007{letter-spacing:1.440000px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:-18.720000px;}
.ws2_c00007{word-spacing:-18.648000px;}
.ws1_c00007{word-spacing:-18.000000px;}
.ws3_c00007{word-spacing:-17.856000px;}
.ws4_c00007{word-spacing:-17.208000px;}
.ws5_c00007{word-spacing:-16.416000px;}
.ws6_c00007{word-spacing:0.000000px;}
._7_c00007{margin-left:-16.560000px;}
._3_c00007{margin-left:-14.388000px;}
._c_c00007{margin-left:-12.384000px;}
._8_c00007{margin-left:-10.740000px;}
._2_c00007{margin-left:-9.204000px;}
._5_c00007{margin-left:-6.456000px;}
._4_c00007{margin-left:-5.256000px;}
._6_c00007{margin-left:-3.612000px;}
._0_c00007{margin-left:-1.584000px;}
._1_c00007{width:1.224000px;}
._d_c00007{width:2.304000px;}
._9_c00007{width:19.440000px;}
._a_c00007{width:21.168000px;}
._b_c00007{width:22.536000px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs1_c00007{font-size:57.600000px;}
.fs0_c00007{font-size:72.000000px;}
.y0_c00007{bottom:0.000000px;}
.y6_c00007{bottom:4.675500px;}
.y3_c00007{bottom:4.680000px;}
.y5_c00007{bottom:25.195500px;}
.y4_c00007{bottom:32.800500px;}
.y1_c00007{bottom:57.996000px;}
.y23_c00007{bottom:123.876000px;}
.y22_c00007{bottom:154.875000px;}
.y21_c00007{bottom:185.835000px;}
.y20_c00007{bottom:217.155000px;}
.y1f_c00007{bottom:248.115000px;}
.y1e_c00007{bottom:279.105000px;}
.y1d_c00007{bottom:310.065000px;}
.y1c_c00007{bottom:341.385000px;}
.y1b_c00007{bottom:372.345000px;}
.y1a_c00007{bottom:403.350000px;}
.y19_c00007{bottom:434.310000px;}
.y18_c00007{bottom:465.630000px;}
.y17_c00007{bottom:496.230000px;}
.y16_c00007{bottom:536.580000px;}
.y15_c00007{bottom:567.540000px;}
.y14_c00007{bottom:598.860000px;}
.y13_c00007{bottom:629.820000px;}
.y12_c00007{bottom:660.810000px;}
.y11_c00007{bottom:691.770000px;}
.y10_c00007{bottom:722.730000px;}
.yf_c00007{bottom:763.095000px;}
.ye_c00007{bottom:794.055000px;}
.yd_c00007{bottom:824.655000px;}
.yc_c00007{bottom:864.975000px;}
.yb_c00007{bottom:904.965000px;}
.ya_c00007{bottom:944.925000px;}
.y9_c00007{bottom:984.885000px;}
.y8_c00007{bottom:1025.610000px;}
.y7_c00007{bottom:1065.570000px;}
.y2_c00007{bottom:1113.090000px;}
.h2_c00007{height:20.910000px;}
.h3_c00007{height:41.395500px;}
.h1_c00007{height:64.546875px;}
.h6_c00007{height:70.628906px;}
.h4_c00007{height:70.664062px;}
.h5_c00007{height:72.562500px;}
.h0_c00007{height:1188.000000px;}
.w1_c00007{width:8.265000px;}
.w2_c00007{width:663.345000px;}
.w0_c00007{width:918.000000px;}
.x0_c00007{left:0.000000px;}
.x3_c00007{left:127.489500px;}
.x6_c00007{left:145.512000px;}
.x1_c00007{left:154.515000px;}
.x7_c00007{left:163.515000px;}
.x5_c00007{left:271.905000px;}
.x4_c00007{left:348.990000px;}
.x2_c00007{left:782.565000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls8_c00007{letter-spacing:-1.408000pt;}
.ls7_c00007{letter-spacing:-0.704000pt;}
.ls6_c00007{letter-spacing:-0.128000pt;}
.ls4_c00007{letter-spacing:0.000000pt;}
.ls3_c00007{letter-spacing:0.032000pt;}
.ls1_c00007{letter-spacing:0.106667pt;}
.ls5_c00007{letter-spacing:0.576000pt;}
.ls0_c00007{letter-spacing:0.640000pt;}
.ls2_c00007{letter-spacing:1.280000pt;}
.ws0_c00007{word-spacing:-16.640000pt;}
.ws2_c00007{word-spacing:-16.576000pt;}
.ws1_c00007{word-spacing:-16.000000pt;}
.ws3_c00007{word-spacing:-15.872000pt;}
.ws4_c00007{word-spacing:-15.296000pt;}
.ws5_c00007{word-spacing:-14.592000pt;}
.ws6_c00007{word-spacing:0.000000pt;}
._7_c00007{margin-left:-14.720000pt;}
._3_c00007{margin-left:-12.789333pt;}
._c_c00007{margin-left:-11.008000pt;}
._8_c00007{margin-left:-9.546667pt;}
._2_c00007{margin-left:-8.181333pt;}
._5_c00007{margin-left:-5.738667pt;}
._4_c00007{margin-left:-4.672000pt;}
._6_c00007{margin-left:-3.210667pt;}
._0_c00007{margin-left:-1.408000pt;}
._1_c00007{width:1.088000pt;}
._d_c00007{width:2.048000pt;}
._9_c00007{width:17.280000pt;}
._a_c00007{width:18.816000pt;}
._b_c00007{width:20.032000pt;}
.fs1_c00007{font-size:51.200000pt;}
.fs0_c00007{font-size:64.000000pt;}
.y0_c00007{bottom:0.000000pt;}
.y6_c00007{bottom:4.156000pt;}
.y3_c00007{bottom:4.160000pt;}
.y5_c00007{bottom:22.396000pt;}
.y4_c00007{bottom:29.156000pt;}
.y1_c00007{bottom:51.552000pt;}
.y23_c00007{bottom:110.112000pt;}
.y22_c00007{bottom:137.666667pt;}
.y21_c00007{bottom:165.186667pt;}
.y20_c00007{bottom:193.026667pt;}
.y1f_c00007{bottom:220.546667pt;}
.y1e_c00007{bottom:248.093333pt;}
.y1d_c00007{bottom:275.613333pt;}
.y1c_c00007{bottom:303.453333pt;}
.y1b_c00007{bottom:330.973333pt;}
.y1a_c00007{bottom:358.533333pt;}
.y19_c00007{bottom:386.053333pt;}
.y18_c00007{bottom:413.893333pt;}
.y17_c00007{bottom:441.093333pt;}
.y16_c00007{bottom:476.960000pt;}
.y15_c00007{bottom:504.480000pt;}
.y14_c00007{bottom:532.320000pt;}
.y13_c00007{bottom:559.840000pt;}
.y12_c00007{bottom:587.386667pt;}
.y11_c00007{bottom:614.906667pt;}
.y10_c00007{bottom:642.426667pt;}
.yf_c00007{bottom:678.306667pt;}
.ye_c00007{bottom:705.826667pt;}
.yd_c00007{bottom:733.026667pt;}
.yc_c00007{bottom:768.866667pt;}
.yb_c00007{bottom:804.413333pt;}
.ya_c00007{bottom:839.933333pt;}
.y9_c00007{bottom:875.453333pt;}
.y8_c00007{bottom:911.653333pt;}
.y7_c00007{bottom:947.173333pt;}
.y2_c00007{bottom:989.413333pt;}
.h2_c00007{height:18.586667pt;}
.h3_c00007{height:36.796000pt;}
.h1_c00007{height:57.375000pt;}
.h6_c00007{height:62.781250pt;}
.h4_c00007{height:62.812500pt;}
.h5_c00007{height:64.500000pt;}
.h0_c00007{height:1056.000000pt;}
.w1_c00007{width:7.346667pt;}
.w2_c00007{width:589.640000pt;}
.w0_c00007{width:816.000000pt;}
.x0_c00007{left:0.000000pt;}
.x3_c00007{left:113.324000pt;}
.x6_c00007{left:129.344000pt;}
.x1_c00007{left:137.346667pt;}
.x7_c00007{left:145.346667pt;}
.x5_c00007{left:241.693333pt;}
.x4_c00007{left:310.213333pt;}
.x2_c00007{left:695.613333pt;}
}





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

.ir_c00008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00008;src:url('chunks/assets/font_f51f016a3a2545fea537cd29.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_53b7ff69eecbdf1d9bfc290a.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_4c490074a45a20b4338d2349.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_c3e1e471d81aeca553e13757.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00008;src:url('chunks/assets/font_a5c8031fa9a4327d44af3229.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00008;src:url('chunks/assets/font_956cd912bb1e845d4144c1b3.woff2')format("woff");}.ff6_c00008{font-family:ff6_c00008;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_c00008;src:url('chunks/assets/font_e2ea9cc98329db5943def7e3.woff2')format("woff");}.ff7_c00008{font-family:ff7_c00008;line-height:1.191895;font-style:normal;font-weight: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_c00008;src:url('chunks/assets/font_f74d10f5c26237af80f4e705.woff2')format("woff");}.ff8_c00008{font-family:ff8_c00008;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.lsa_c00008{letter-spacing:-0.792000px;}
.ls7_c00008{letter-spacing:-0.504000px;}
.ls8_c00008{letter-spacing:-0.144000px;}
.ls6_c00008{letter-spacing:0.000000px;}
.ls5_c00008{letter-spacing:0.012000px;}
.ls1_c00008{letter-spacing:0.288000px;}
.ls3_c00008{letter-spacing:0.460800px;}
.ls9_c00008{letter-spacing:0.648000px;}
.ls2_c00008{letter-spacing:0.708000px;}
.ls0_c00008{letter-spacing:0.720000px;}
.ls4_c00008{letter-spacing:1.440000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00008{word-spacing:-40.608000px;}
.ws6_c00008{word-spacing:-32.486400px;}
.ws1_c00008{word-spacing:-18.720000px;}
.ws3_c00008{word-spacing:-18.648000px;}
.ws0_c00008{word-spacing:-18.000000px;}
.ws8_c00008{word-spacing:-17.856000px;}
.ws2_c00008{word-spacing:-17.496000px;}
.ws7_c00008{word-spacing:-17.208000px;}
.ws4_c00008{word-spacing:-14.400000px;}
.ws9_c00008{word-spacing:0.000000px;}
._5_c00008{margin-left:-15.612000px;}
._4_c00008{margin-left:-13.476000px;}
._6_c00008{margin-left:-11.736000px;}
._9_c00008{margin-left:-10.308000px;}
._7_c00008{margin-left:-8.160000px;}
._3_c00008{margin-left:-6.060000px;}
._2_c00008{margin-left:-2.544000px;}
._1_c00008{margin-left:-1.440000px;}
._0_c00008{width:1.296000px;}
._8_c00008{width:2.856024px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs1_c00008{font-size:57.600000px;}
.fs0_c00008{font-size:72.000000px;}
.y0_c00008{bottom:0.000000px;}
.y6_c00008{bottom:4.675500px;}
.y3_c00008{bottom:4.680000px;}
.y5_c00008{bottom:25.195500px;}
.y4_c00008{bottom:32.800500px;}
.y1_c00008{bottom:57.996000px;}
.y24_c00008{bottom:119.916000px;}
.y23_c00008{bottom:150.915000px;}
.y22_c00008{bottom:181.875000px;}
.y21_c00008{bottom:212.835000px;}
.y20_c00008{bottom:244.155000px;}
.y1f_c00008{bottom:274.785000px;}
.y1e_c00008{bottom:314.745000px;}
.y1d_c00008{bottom:355.065000px;}
.y1c_c00008{bottom:386.385000px;}
.y1b_c00008{bottom:417.390000px;}
.y1a_c00008{bottom:447.990000px;}
.y19_c00008{bottom:488.310000px;}
.y18_c00008{bottom:519.660000px;}
.y17_c00008{bottom:550.620000px;}
.y16_c00008{bottom:581.580000px;}
.y15_c00008{bottom:612.540000px;}
.y14_c00008{bottom:643.890000px;}
.y13_c00008{bottom:674.850000px;}
.y12_c00008{bottom:705.810000px;}
.y11_c00008{bottom:736.770000px;}
.y10_c00008{bottom:768.135000px;}
.yf_c00008{bottom:799.095000px;}
.ye_c00008{bottom:829.695000px;}
.yd_c00008{bottom:860.655000px;}
.yc_c00008{bottom:901.005000px;}
.yb_c00008{bottom:931.965000px;}
.ya_c00008{bottom:972.285000px;}
.y9_c00008{bottom:1003.245000px;}
.y8_c00008{bottom:1034.610000px;}
.y7_c00008{bottom:1065.570000px;}
.y2_c00008{bottom:1113.090000px;}
.h2_c00008{height:20.910000px;}
.h3_c00008{height:41.395500px;}
.h1_c00008{height:64.546875px;}
.h4_c00008{height:70.664062px;}
.h5_c00008{height:72.562500px;}
.h0_c00008{height:1188.000000px;}
.w1_c00008{width:8.265000px;}
.w2_c00008{width:663.345000px;}
.w0_c00008{width:918.000000px;}
.x0_c00008{left:0.000000px;}
.x3_c00008{left:127.489500px;}
.x5_c00008{left:145.512000px;}
.x1_c00008{left:154.515000px;}
.x4_c00008{left:163.515000px;}
.x6_c00008{left:179.355000px;}
.x7_c00008{left:334.185000px;}
.x2_c00008{left:782.565000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.lsa_c00008{letter-spacing:-0.704000pt;}
.ls7_c00008{letter-spacing:-0.448000pt;}
.ls8_c00008{letter-spacing:-0.128000pt;}
.ls6_c00008{letter-spacing:0.000000pt;}
.ls5_c00008{letter-spacing:0.010667pt;}
.ls1_c00008{letter-spacing:0.256000pt;}
.ls3_c00008{letter-spacing:0.409600pt;}
.ls9_c00008{letter-spacing:0.576000pt;}
.ls2_c00008{letter-spacing:0.629333pt;}
.ls0_c00008{letter-spacing:0.640000pt;}
.ls4_c00008{letter-spacing:1.280000pt;}
.ws5_c00008{word-spacing:-36.096000pt;}
.ws6_c00008{word-spacing:-28.876800pt;}
.ws1_c00008{word-spacing:-16.640000pt;}
.ws3_c00008{word-spacing:-16.576000pt;}
.ws0_c00008{word-spacing:-16.000000pt;}
.ws8_c00008{word-spacing:-15.872000pt;}
.ws2_c00008{word-spacing:-15.552000pt;}
.ws7_c00008{word-spacing:-15.296000pt;}
.ws4_c00008{word-spacing:-12.800000pt;}
.ws9_c00008{word-spacing:0.000000pt;}
._5_c00008{margin-left:-13.877333pt;}
._4_c00008{margin-left:-11.978667pt;}
._6_c00008{margin-left:-10.432000pt;}
._9_c00008{margin-left:-9.162667pt;}
._7_c00008{margin-left:-7.253333pt;}
._3_c00008{margin-left:-5.386667pt;}
._2_c00008{margin-left:-2.261333pt;}
._1_c00008{margin-left:-1.280000pt;}
._0_c00008{width:1.152000pt;}
._8_c00008{width:2.538688pt;}
.fs1_c00008{font-size:51.200000pt;}
.fs0_c00008{font-size:64.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y6_c00008{bottom:4.156000pt;}
.y3_c00008{bottom:4.160000pt;}
.y5_c00008{bottom:22.396000pt;}
.y4_c00008{bottom:29.156000pt;}
.y1_c00008{bottom:51.552000pt;}
.y24_c00008{bottom:106.592000pt;}
.y23_c00008{bottom:134.146667pt;}
.y22_c00008{bottom:161.666667pt;}
.y21_c00008{bottom:189.186667pt;}
.y20_c00008{bottom:217.026667pt;}
.y1f_c00008{bottom:244.253333pt;}
.y1e_c00008{bottom:279.773333pt;}
.y1d_c00008{bottom:315.613333pt;}
.y1c_c00008{bottom:343.453333pt;}
.y1b_c00008{bottom:371.013333pt;}
.y1a_c00008{bottom:398.213333pt;}
.y19_c00008{bottom:434.053333pt;}
.y18_c00008{bottom:461.920000pt;}
.y17_c00008{bottom:489.440000pt;}
.y16_c00008{bottom:516.960000pt;}
.y15_c00008{bottom:544.480000pt;}
.y14_c00008{bottom:572.346667pt;}
.y13_c00008{bottom:599.866667pt;}
.y12_c00008{bottom:627.386667pt;}
.y11_c00008{bottom:654.906667pt;}
.y10_c00008{bottom:682.786667pt;}
.yf_c00008{bottom:710.306667pt;}
.ye_c00008{bottom:737.506667pt;}
.yd_c00008{bottom:765.026667pt;}
.yc_c00008{bottom:800.893333pt;}
.yb_c00008{bottom:828.413333pt;}
.ya_c00008{bottom:864.253333pt;}
.y9_c00008{bottom:891.773333pt;}
.y8_c00008{bottom:919.653333pt;}
.y7_c00008{bottom:947.173333pt;}
.y2_c00008{bottom:989.413333pt;}
.h2_c00008{height:18.586667pt;}
.h3_c00008{height:36.796000pt;}
.h1_c00008{height:57.375000pt;}
.h4_c00008{height:62.812500pt;}
.h5_c00008{height:64.500000pt;}
.h0_c00008{height:1056.000000pt;}
.w1_c00008{width:7.346667pt;}
.w2_c00008{width:589.640000pt;}
.w0_c00008{width:816.000000pt;}
.x0_c00008{left:0.000000pt;}
.x3_c00008{left:113.324000pt;}
.x5_c00008{left:129.344000pt;}
.x1_c00008{left:137.346667pt;}
.x4_c00008{left:145.346667pt;}
.x6_c00008{left:159.426667pt;}
.x7_c00008{left:297.053333pt;}
.x2_c00008{left:695.613333pt;}
}





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

.ir_c00009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00009;src:url('chunks/assets/font_61976283a15be89a32c1571d.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_966b67c37f64ac3f171883a9.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_f5296070ebf74b376a2fb1e7.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_c98d62b0bbe59b5e52382cc2.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00009;src:url('chunks/assets/font_d07cd8cf80d07fa98d497932.woff2')format("woff");}.ff5_c00009{font-family:ff5_c00009;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_c00009;src:url('chunks/assets/font_d163dc4dfb750b5a8823c296.woff2')format("woff");}.ff6_c00009{font-family:ff6_c00009;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls3_c00009{letter-spacing:-0.144000px;}
.ls2_c00009{letter-spacing:0.000000px;}
.ls1_c00009{letter-spacing:0.144000px;}
.ls4_c00009{letter-spacing:0.648000px;}
.ls0_c00009{letter-spacing:0.720000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00009{word-spacing:-72.000000px;}
.ws0_c00009{word-spacing:-18.720000px;}
.ws3_c00009{word-spacing:-18.648000px;}
.ws1_c00009{word-spacing:-18.000000px;}
.ws2_c00009{word-spacing:-17.856000px;}
.ws5_c00009{word-spacing:0.000000px;}
._4_c00009{margin-left:-17.220000px;}
._8_c00009{margin-left:-16.044000px;}
._2_c00009{margin-left:-13.764000px;}
._3_c00009{margin-left:-12.468000px;}
._6_c00009{margin-left:-9.312000px;}
._b_c00009{margin-left:-7.164000px;}
._7_c00009{margin-left:-5.352000px;}
._a_c00009{margin-left:-4.200000px;}
._5_c00009{margin-left:-2.736000px;}
._1_c00009{margin-left:-1.440000px;}
._0_c00009{width:1.296000px;}
._9_c00009{width:2.964000px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs1_c00009{font-size:57.600000px;}
.fs0_c00009{font-size:72.000000px;}
.y0_c00009{bottom:0.000000px;}
.y6_c00009{bottom:4.675500px;}
.y3_c00009{bottom:4.680000px;}
.y5_c00009{bottom:25.195500px;}
.y4_c00009{bottom:32.800500px;}
.y1_c00009{bottom:57.996000px;}
.y25_c00009{bottom:124.956000px;}
.y24_c00009{bottom:155.955000px;}
.y23_c00009{bottom:186.915000px;}
.y22_c00009{bottom:217.875000px;}
.y21_c00009{bottom:248.835000px;}
.y20_c00009{bottom:280.185000px;}
.y1f_c00009{bottom:311.145000px;}
.y1e_c00009{bottom:342.105000px;}
.y1d_c00009{bottom:373.065000px;}
.y1c_c00009{bottom:404.430000px;}
.y1b_c00009{bottom:435.030000px;}
.y1a_c00009{bottom:475.350000px;}
.y19_c00009{bottom:506.310000px;}
.y18_c00009{bottom:537.660000px;}
.y17_c00009{bottom:568.620000px;}
.y16_c00009{bottom:599.580000px;}
.y15_c00009{bottom:630.540000px;}
.y14_c00009{bottom:661.890000px;}
.y13_c00009{bottom:692.850000px;}
.y12_c00009{bottom:723.810000px;}
.y11_c00009{bottom:754.770000px;}
.y10_c00009{bottom:786.135000px;}
.yf_c00009{bottom:817.095000px;}
.ye_c00009{bottom:848.055000px;}
.yd_c00009{bottom:879.015000px;}
.yc_c00009{bottom:910.365000px;}
.yb_c00009{bottom:941.325000px;}
.ya_c00009{bottom:972.285000px;}
.y9_c00009{bottom:1003.245000px;}
.y8_c00009{bottom:1034.610000px;}
.y7_c00009{bottom:1065.570000px;}
.y2_c00009{bottom:1113.090000px;}
.h2_c00009{height:20.910000px;}
.h3_c00009{height:41.395500px;}
.h1_c00009{height:64.546875px;}
.h4_c00009{height:70.664062px;}
.h5_c00009{height:72.562500px;}
.h0_c00009{height:1188.000000px;}
.w1_c00009{width:8.265000px;}
.w2_c00009{width:663.345000px;}
.w0_c00009{width:918.000000px;}
.x0_c00009{left:0.000000px;}
.x3_c00009{left:127.489500px;}
.x5_c00009{left:145.512000px;}
.x1_c00009{left:154.515000px;}
.x4_c00009{left:163.515000px;}
.x6_c00009{left:181.515000px;}
.x2_c00009{left:782.565000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls3_c00009{letter-spacing:-0.128000pt;}
.ls2_c00009{letter-spacing:0.000000pt;}
.ls1_c00009{letter-spacing:0.128000pt;}
.ls4_c00009{letter-spacing:0.576000pt;}
.ls0_c00009{letter-spacing:0.640000pt;}
.ws4_c00009{word-spacing:-64.000000pt;}
.ws0_c00009{word-spacing:-16.640000pt;}
.ws3_c00009{word-spacing:-16.576000pt;}
.ws1_c00009{word-spacing:-16.000000pt;}
.ws2_c00009{word-spacing:-15.872000pt;}
.ws5_c00009{word-spacing:0.000000pt;}
._4_c00009{margin-left:-15.306667pt;}
._8_c00009{margin-left:-14.261333pt;}
._2_c00009{margin-left:-12.234667pt;}
._3_c00009{margin-left:-11.082667pt;}
._6_c00009{margin-left:-8.277333pt;}
._b_c00009{margin-left:-6.368000pt;}
._7_c00009{margin-left:-4.757333pt;}
._a_c00009{margin-left:-3.733333pt;}
._5_c00009{margin-left:-2.432000pt;}
._1_c00009{margin-left:-1.280000pt;}
._0_c00009{width:1.152000pt;}
._9_c00009{width:2.634667pt;}
.fs1_c00009{font-size:51.200000pt;}
.fs0_c00009{font-size:64.000000pt;}
.y0_c00009{bottom:0.000000pt;}
.y6_c00009{bottom:4.156000pt;}
.y3_c00009{bottom:4.160000pt;}
.y5_c00009{bottom:22.396000pt;}
.y4_c00009{bottom:29.156000pt;}
.y1_c00009{bottom:51.552000pt;}
.y25_c00009{bottom:111.072000pt;}
.y24_c00009{bottom:138.626667pt;}
.y23_c00009{bottom:166.146667pt;}
.y22_c00009{bottom:193.666667pt;}
.y21_c00009{bottom:221.186667pt;}
.y20_c00009{bottom:249.053333pt;}
.y1f_c00009{bottom:276.573333pt;}
.y1e_c00009{bottom:304.093333pt;}
.y1d_c00009{bottom:331.613333pt;}
.y1c_c00009{bottom:359.493333pt;}
.y1b_c00009{bottom:386.693333pt;}
.y1a_c00009{bottom:422.533333pt;}
.y19_c00009{bottom:450.053333pt;}
.y18_c00009{bottom:477.920000pt;}
.y17_c00009{bottom:505.440000pt;}
.y16_c00009{bottom:532.960000pt;}
.y15_c00009{bottom:560.480000pt;}
.y14_c00009{bottom:588.346667pt;}
.y13_c00009{bottom:615.866667pt;}
.y12_c00009{bottom:643.386667pt;}
.y11_c00009{bottom:670.906667pt;}
.y10_c00009{bottom:698.786667pt;}
.yf_c00009{bottom:726.306667pt;}
.ye_c00009{bottom:753.826667pt;}
.yd_c00009{bottom:781.346667pt;}
.yc_c00009{bottom:809.213333pt;}
.yb_c00009{bottom:836.733333pt;}
.ya_c00009{bottom:864.253333pt;}
.y9_c00009{bottom:891.773333pt;}
.y8_c00009{bottom:919.653333pt;}
.y7_c00009{bottom:947.173333pt;}
.y2_c00009{bottom:989.413333pt;}
.h2_c00009{height:18.586667pt;}
.h3_c00009{height:36.796000pt;}
.h1_c00009{height:57.375000pt;}
.h4_c00009{height:62.812500pt;}
.h5_c00009{height:64.500000pt;}
.h0_c00009{height:1056.000000pt;}
.w1_c00009{width:7.346667pt;}
.w2_c00009{width:589.640000pt;}
.w0_c00009{width:816.000000pt;}
.x0_c00009{left:0.000000pt;}
.x3_c00009{left:113.324000pt;}
.x5_c00009{left:129.344000pt;}
.x1_c00009{left:137.346667pt;}
.x4_c00009{left:145.346667pt;}
.x6_c00009{left:161.346667pt;}
.x2_c00009{left:695.613333pt;}
}





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

.ir_c00010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00010;src:url('chunks/assets/font_24657bcae85f4b627fe3a789.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_54ff510848e0ac9358e70ca3.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_2cc4d63b711e9f4f8e598189.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;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_c00010;src:url('chunks/assets/font_6ad40d3366708b236a1ccb4f.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00010;src:url('chunks/assets/font_e50f090afd3b83210aceb0f9.woff2')format("woff");}.ff5_c00010{font-family:ff5_c00010;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls5_c00010{letter-spacing:-2.880000px;}
.ls3_c00010{letter-spacing:-0.144000px;}
.ls2_c00010{letter-spacing:0.000000px;}
.ls1_c00010{letter-spacing:0.120000px;}
.ls4_c00010{letter-spacing:0.648000px;}
.ls0_c00010{letter-spacing:0.720000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00010{word-spacing:-18.720000px;}
.ws2_c00010{word-spacing:-18.648000px;}
.ws0_c00010{word-spacing:-18.000000px;}
.ws1_c00010{word-spacing:-17.856000px;}
.ws4_c00010{word-spacing:0.000000px;}
._9_c00010{margin-left:-16.632000px;}
._b_c00010{margin-left:-15.336000px;}
._a_c00010{margin-left:-14.124000px;}
._4_c00010{margin-left:-12.180000px;}
._6_c00010{margin-left:-8.664000px;}
._5_c00010{margin-left:-5.760000px;}
._8_c00010{margin-left:-3.432000px;}
._2_c00010{margin-left:-2.220000px;}
._0_c00010{margin-left:-1.212000px;}
._1_c00010{width:1.776000px;}
._7_c00010{width:3.324000px;}
._3_c00010{width:10.776000px;}
.fc0_c00010{color:rgb(0,0,0);}
.fs1_c00010{font-size:57.600000px;}
.fs0_c00010{font-size:72.000000px;}
.y0_c00010{bottom:0.000000px;}
.y6_c00010{bottom:4.675500px;}
.y3_c00010{bottom:4.680000px;}
.y5_c00010{bottom:25.195500px;}
.y4_c00010{bottom:32.800500px;}
.y1_c00010{bottom:57.996000px;}
.y24_c00010{bottom:155.955000px;}
.y23_c00010{bottom:186.915000px;}
.y22_c00010{bottom:217.875000px;}
.y21_c00010{bottom:248.835000px;}
.y20_c00010{bottom:280.185000px;}
.y1f_c00010{bottom:311.145000px;}
.y1e_c00010{bottom:342.105000px;}
.y1d_c00010{bottom:373.065000px;}
.y1c_c00010{bottom:404.430000px;}
.y1b_c00010{bottom:435.390000px;}
.y1a_c00010{bottom:466.350000px;}
.y19_c00010{bottom:497.310000px;}
.y18_c00010{bottom:528.660000px;}
.y17_c00010{bottom:559.620000px;}
.y16_c00010{bottom:590.580000px;}
.y15_c00010{bottom:621.540000px;}
.y14_c00010{bottom:652.530000px;}
.y13_c00010{bottom:692.850000px;}
.y12_c00010{bottom:723.810000px;}
.y11_c00010{bottom:754.770000px;}
.y10_c00010{bottom:786.135000px;}
.yf_c00010{bottom:817.095000px;}
.ye_c00010{bottom:848.055000px;}
.yd_c00010{bottom:879.015000px;}
.yc_c00010{bottom:910.365000px;}
.yb_c00010{bottom:941.325000px;}
.ya_c00010{bottom:972.285000px;}
.y9_c00010{bottom:1003.245000px;}
.y8_c00010{bottom:1034.610000px;}
.y7_c00010{bottom:1065.570000px;}
.y2_c00010{bottom:1113.090000px;}
.h2_c00010{height:20.910000px;}
.h3_c00010{height:41.395500px;}
.h1_c00010{height:64.546875px;}
.h4_c00010{height:70.664062px;}
.h5_c00010{height:72.562500px;}
.h0_c00010{height:1188.000000px;}
.w1_c00010{width:8.265000px;}
.w2_c00010{width:663.345000px;}
.w0_c00010{width:918.000000px;}
.x0_c00010{left:0.000000px;}
.x3_c00010{left:127.489500px;}
.x4_c00010{left:145.512000px;}
.x1_c00010{left:154.515000px;}
.x5_c00010{left:163.515000px;}
.x6_c00010{left:181.515000px;}
.x2_c00010{left:782.565000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls5_c00010{letter-spacing:-2.560000pt;}
.ls3_c00010{letter-spacing:-0.128000pt;}
.ls2_c00010{letter-spacing:0.000000pt;}
.ls1_c00010{letter-spacing:0.106667pt;}
.ls4_c00010{letter-spacing:0.576000pt;}
.ls0_c00010{letter-spacing:0.640000pt;}
.ws3_c00010{word-spacing:-16.640000pt;}
.ws2_c00010{word-spacing:-16.576000pt;}
.ws0_c00010{word-spacing:-16.000000pt;}
.ws1_c00010{word-spacing:-15.872000pt;}
.ws4_c00010{word-spacing:0.000000pt;}
._9_c00010{margin-left:-14.784000pt;}
._b_c00010{margin-left:-13.632000pt;}
._a_c00010{margin-left:-12.554667pt;}
._4_c00010{margin-left:-10.826667pt;}
._6_c00010{margin-left:-7.701333pt;}
._5_c00010{margin-left:-5.120000pt;}
._8_c00010{margin-left:-3.050667pt;}
._2_c00010{margin-left:-1.973333pt;}
._0_c00010{margin-left:-1.077333pt;}
._1_c00010{width:1.578667pt;}
._7_c00010{width:2.954667pt;}
._3_c00010{width:9.578667pt;}
.fs1_c00010{font-size:51.200000pt;}
.fs0_c00010{font-size:64.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y6_c00010{bottom:4.156000pt;}
.y3_c00010{bottom:4.160000pt;}
.y5_c00010{bottom:22.396000pt;}
.y4_c00010{bottom:29.156000pt;}
.y1_c00010{bottom:51.552000pt;}
.y24_c00010{bottom:138.626667pt;}
.y23_c00010{bottom:166.146667pt;}
.y22_c00010{bottom:193.666667pt;}
.y21_c00010{bottom:221.186667pt;}
.y20_c00010{bottom:249.053333pt;}
.y1f_c00010{bottom:276.573333pt;}
.y1e_c00010{bottom:304.093333pt;}
.y1d_c00010{bottom:331.613333pt;}
.y1c_c00010{bottom:359.493333pt;}
.y1b_c00010{bottom:387.013333pt;}
.y1a_c00010{bottom:414.533333pt;}
.y19_c00010{bottom:442.053333pt;}
.y18_c00010{bottom:469.920000pt;}
.y17_c00010{bottom:497.440000pt;}
.y16_c00010{bottom:524.960000pt;}
.y15_c00010{bottom:552.480000pt;}
.y14_c00010{bottom:580.026667pt;}
.y13_c00010{bottom:615.866667pt;}
.y12_c00010{bottom:643.386667pt;}
.y11_c00010{bottom:670.906667pt;}
.y10_c00010{bottom:698.786667pt;}
.yf_c00010{bottom:726.306667pt;}
.ye_c00010{bottom:753.826667pt;}
.yd_c00010{bottom:781.346667pt;}
.yc_c00010{bottom:809.213333pt;}
.yb_c00010{bottom:836.733333pt;}
.ya_c00010{bottom:864.253333pt;}
.y9_c00010{bottom:891.773333pt;}
.y8_c00010{bottom:919.653333pt;}
.y7_c00010{bottom:947.173333pt;}
.y2_c00010{bottom:989.413333pt;}
.h2_c00010{height:18.586667pt;}
.h3_c00010{height:36.796000pt;}
.h1_c00010{height:57.375000pt;}
.h4_c00010{height:62.812500pt;}
.h5_c00010{height:64.500000pt;}
.h0_c00010{height:1056.000000pt;}
.w1_c00010{width:7.346667pt;}
.w2_c00010{width:589.640000pt;}
.w0_c00010{width:816.000000pt;}
.x0_c00010{left:0.000000pt;}
.x3_c00010{left:113.324000pt;}
.x4_c00010{left:129.344000pt;}
.x1_c00010{left:137.346667pt;}
.x5_c00010{left:145.346667pt;}
.x6_c00010{left:161.346667pt;}
.x2_c00010{left:695.613333pt;}
}





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

.ir_c00011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00011;src:url('chunks/assets/font_0022dfc080196ff4bfe461c8.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_a88010091ba2b6614a442daf.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_ace61a3fe9edb9c86b775312.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;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_c00011;src:url('chunks/assets/font_43b4e76900a3b40572e60a73.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_3c06d7a7cedd013a271bce38.woff2')format("woff");}.ff5_c00011{font-family:ff5_c00011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls3_c00011{letter-spacing:-0.144000px;}
.ls2_c00011{letter-spacing:0.000000px;}
.ls4_c00011{letter-spacing:0.648000px;}
.ls0_c00011{letter-spacing:0.720000px;}
.ls1_c00011{letter-spacing:0.792000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00011{word-spacing:-18.720000px;}
.ws3_c00011{word-spacing:-18.648000px;}
.ws0_c00011{word-spacing:-18.000000px;}
.ws2_c00011{word-spacing:-17.856000px;}
.ws4_c00011{word-spacing:0.000000px;}
._8_c00011{margin-left:-16.740000px;}
._9_c00011{margin-left:-14.604000px;}
._6_c00011{margin-left:-13.320000px;}
._4_c00011{margin-left:-10.440000px;}
._a_c00011{margin-left:-9.024000px;}
._7_c00011{margin-left:-4.836000px;}
._2_c00011{margin-left:-2.748000px;}
._1_c00011{margin-left:-1.440000px;}
._0_c00011{width:1.296000px;}
._3_c00011{width:2.388000px;}
._5_c00011{width:3.396000px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs1_c00011{font-size:57.600000px;}
.fs0_c00011{font-size:72.000000px;}
.y0_c00011{bottom:0.000000px;}
.y6_c00011{bottom:4.675500px;}
.y3_c00011{bottom:4.680000px;}
.y5_c00011{bottom:25.195500px;}
.y4_c00011{bottom:32.800500px;}
.y1_c00011{bottom:57.996000px;}
.y24_c00011{bottom:146.556000px;}
.y23_c00011{bottom:186.915000px;}
.y22_c00011{bottom:217.875000px;}
.y21_c00011{bottom:248.835000px;}
.y20_c00011{bottom:280.185000px;}
.y1f_c00011{bottom:311.145000px;}
.y1e_c00011{bottom:342.105000px;}
.y1d_c00011{bottom:373.065000px;}
.y1c_c00011{bottom:404.430000px;}
.y1b_c00011{bottom:435.390000px;}
.y1a_c00011{bottom:466.350000px;}
.y19_c00011{bottom:497.310000px;}
.y18_c00011{bottom:528.660000px;}
.y17_c00011{bottom:559.620000px;}
.y16_c00011{bottom:590.580000px;}
.y15_c00011{bottom:621.540000px;}
.y14_c00011{bottom:652.890000px;}
.y13_c00011{bottom:683.850000px;}
.y12_c00011{bottom:714.810000px;}
.y11_c00011{bottom:745.770000px;}
.y10_c00011{bottom:777.135000px;}
.yf_c00011{bottom:808.095000px;}
.ye_c00011{bottom:839.055000px;}
.yd_c00011{bottom:870.015000px;}
.yc_c00011{bottom:901.005000px;}
.yb_c00011{bottom:941.325000px;}
.ya_c00011{bottom:972.285000px;}
.y9_c00011{bottom:1003.245000px;}
.y8_c00011{bottom:1034.610000px;}
.y7_c00011{bottom:1065.570000px;}
.y2_c00011{bottom:1113.090000px;}
.h2_c00011{height:20.910000px;}
.h3_c00011{height:41.395500px;}
.h1_c00011{height:64.546875px;}
.h4_c00011{height:70.664062px;}
.h5_c00011{height:72.562500px;}
.h0_c00011{height:1188.000000px;}
.w1_c00011{width:8.265000px;}
.w2_c00011{width:663.345000px;}
.w0_c00011{width:918.000000px;}
.x0_c00011{left:0.000000px;}
.x3_c00011{left:127.489500px;}
.x6_c00011{left:145.512000px;}
.x1_c00011{left:154.515000px;}
.x5_c00011{left:163.515000px;}
.x4_c00011{left:181.515000px;}
.x2_c00011{left:782.565000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls3_c00011{letter-spacing:-0.128000pt;}
.ls2_c00011{letter-spacing:0.000000pt;}
.ls4_c00011{letter-spacing:0.576000pt;}
.ls0_c00011{letter-spacing:0.640000pt;}
.ls1_c00011{letter-spacing:0.704000pt;}
.ws1_c00011{word-spacing:-16.640000pt;}
.ws3_c00011{word-spacing:-16.576000pt;}
.ws0_c00011{word-spacing:-16.000000pt;}
.ws2_c00011{word-spacing:-15.872000pt;}
.ws4_c00011{word-spacing:0.000000pt;}
._8_c00011{margin-left:-14.880000pt;}
._9_c00011{margin-left:-12.981333pt;}
._6_c00011{margin-left:-11.840000pt;}
._4_c00011{margin-left:-9.280000pt;}
._a_c00011{margin-left:-8.021333pt;}
._7_c00011{margin-left:-4.298667pt;}
._2_c00011{margin-left:-2.442667pt;}
._1_c00011{margin-left:-1.280000pt;}
._0_c00011{width:1.152000pt;}
._3_c00011{width:2.122667pt;}
._5_c00011{width:3.018667pt;}
.fs1_c00011{font-size:51.200000pt;}
.fs0_c00011{font-size:64.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y6_c00011{bottom:4.156000pt;}
.y3_c00011{bottom:4.160000pt;}
.y5_c00011{bottom:22.396000pt;}
.y4_c00011{bottom:29.156000pt;}
.y1_c00011{bottom:51.552000pt;}
.y24_c00011{bottom:130.272000pt;}
.y23_c00011{bottom:166.146667pt;}
.y22_c00011{bottom:193.666667pt;}
.y21_c00011{bottom:221.186667pt;}
.y20_c00011{bottom:249.053333pt;}
.y1f_c00011{bottom:276.573333pt;}
.y1e_c00011{bottom:304.093333pt;}
.y1d_c00011{bottom:331.613333pt;}
.y1c_c00011{bottom:359.493333pt;}
.y1b_c00011{bottom:387.013333pt;}
.y1a_c00011{bottom:414.533333pt;}
.y19_c00011{bottom:442.053333pt;}
.y18_c00011{bottom:469.920000pt;}
.y17_c00011{bottom:497.440000pt;}
.y16_c00011{bottom:524.960000pt;}
.y15_c00011{bottom:552.480000pt;}
.y14_c00011{bottom:580.346667pt;}
.y13_c00011{bottom:607.866667pt;}
.y12_c00011{bottom:635.386667pt;}
.y11_c00011{bottom:662.906667pt;}
.y10_c00011{bottom:690.786667pt;}
.yf_c00011{bottom:718.306667pt;}
.ye_c00011{bottom:745.826667pt;}
.yd_c00011{bottom:773.346667pt;}
.yc_c00011{bottom:800.893333pt;}
.yb_c00011{bottom:836.733333pt;}
.ya_c00011{bottom:864.253333pt;}
.y9_c00011{bottom:891.773333pt;}
.y8_c00011{bottom:919.653333pt;}
.y7_c00011{bottom:947.173333pt;}
.y2_c00011{bottom:989.413333pt;}
.h2_c00011{height:18.586667pt;}
.h3_c00011{height:36.796000pt;}
.h1_c00011{height:57.375000pt;}
.h4_c00011{height:62.812500pt;}
.h5_c00011{height:64.500000pt;}
.h0_c00011{height:1056.000000pt;}
.w1_c00011{width:7.346667pt;}
.w2_c00011{width:589.640000pt;}
.w0_c00011{width:816.000000pt;}
.x0_c00011{left:0.000000pt;}
.x3_c00011{left:113.324000pt;}
.x6_c00011{left:129.344000pt;}
.x1_c00011{left:137.346667pt;}
.x5_c00011{left:145.346667pt;}
.x4_c00011{left:161.346667pt;}
.x2_c00011{left:695.613333pt;}
}





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

.ir_c00012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00012;src:url('chunks/assets/font_1d2e80780505eec9e60e591d.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_705c68d4cd2d79156387777e.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_b2b507b34e25f5161559d0f1.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls5_c00012{letter-spacing:-1.584000px;}
.ls4_c00012{letter-spacing:-0.144000px;}
.ls3_c00012{letter-spacing:0.000000px;}
.ls1_c00012{letter-spacing:0.504000px;}
.ls0_c00012{letter-spacing:0.720000px;}
.ls2_c00012{letter-spacing:1.440000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-18.720000px;}
.ws1_c00012{word-spacing:-18.504000px;}
.ws2_c00012{word-spacing:-18.000000px;}
.ws3_c00012{word-spacing:-17.856000px;}
.ws4_c00012{word-spacing:-16.416000px;}
.ws5_c00012{word-spacing:0.000000px;}
._2_c00012{margin-left:-15.636000px;}
._0_c00012{margin-left:-1.440000px;}
._1_c00012{width:1.080000px;}
._3_c00012{width:3.096000px;}
.fc0_c00012{color:rgb(0,0,0);}
.fs1_c00012{font-size:57.600000px;}
.fs0_c00012{font-size:72.000000px;}
.y0_c00012{bottom:0.000000px;}
.y6_c00012{bottom:4.675500px;}
.y3_c00012{bottom:4.680000px;}
.y5_c00012{bottom:25.195500px;}
.y4_c00012{bottom:32.800500px;}
.y1_c00012{bottom:57.996000px;}
.y27_c00012{bottom:120.276000px;}
.y26_c00012{bottom:140.796000px;}
.y25_c00012{bottom:161.715000px;}
.y24_c00012{bottom:182.235000px;}
.y23_c00012{bottom:203.115000px;}
.y22_c00012{bottom:223.635000px;}
.y21_c00012{bottom:244.515000px;}
.y20_c00012{bottom:265.035000px;}
.y1f_c00012{bottom:285.945000px;}
.y1e_c00012{bottom:306.465000px;}
.y1d_c00012{bottom:327.345000px;}
.y1c_c00012{bottom:347.865000px;}
.y1b_c00012{bottom:368.745000px;}
.y1a_c00012{bottom:389.265000px;}
.y19_c00012{bottom:410.190000px;}
.y18_c00012{bottom:430.710000px;}
.y17_c00012{bottom:451.590000px;}
.y16_c00012{bottom:491.190000px;}
.y15_c00012{bottom:531.180000px;}
.y14_c00012{bottom:571.500000px;}
.y13_c00012{bottom:611.460000px;}
.y12_c00012{bottom:651.450000px;}
.y11_c00012{bottom:691.410000px;}
.y10_c00012{bottom:731.730000px;}
.yf_c00012{bottom:771.735000px;}
.ye_c00012{bottom:811.695000px;}
.yd_c00012{bottom:852.015000px;}
.yc_c00012{bottom:892.365000px;}
.yb_c00012{bottom:932.325000px;}
.ya_c00012{bottom:963.285000px;}
.y9_c00012{bottom:994.245000px;}
.y8_c00012{bottom:1025.250000px;}
.y7_c00012{bottom:1065.210000px;}
.y2_c00012{bottom:1113.090000px;}
.h2_c00012{height:20.910000px;}
.h3_c00012{height:41.395500px;}
.h1_c00012{height:64.546875px;}
.h5_c00012{height:70.664062px;}
.h4_c00012{height:72.562500px;}
.h0_c00012{height:1188.000000px;}
.w1_c00012{width:8.265000px;}
.w2_c00012{width:663.345000px;}
.w0_c00012{width:918.000000px;}
.x0_c00012{left:0.000000px;}
.x3_c00012{left:127.489500px;}
.x4_c00012{left:145.512000px;}
.x1_c00012{left:154.515000px;}
.x5_c00012{left:458.820000px;}
.x2_c00012{left:782.565000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls5_c00012{letter-spacing:-1.408000pt;}
.ls4_c00012{letter-spacing:-0.128000pt;}
.ls3_c00012{letter-spacing:0.000000pt;}
.ls1_c00012{letter-spacing:0.448000pt;}
.ls0_c00012{letter-spacing:0.640000pt;}
.ls2_c00012{letter-spacing:1.280000pt;}
.ws0_c00012{word-spacing:-16.640000pt;}
.ws1_c00012{word-spacing:-16.448000pt;}
.ws2_c00012{word-spacing:-16.000000pt;}
.ws3_c00012{word-spacing:-15.872000pt;}
.ws4_c00012{word-spacing:-14.592000pt;}
.ws5_c00012{word-spacing:0.000000pt;}
._2_c00012{margin-left:-13.898667pt;}
._0_c00012{margin-left:-1.280000pt;}
._1_c00012{width:0.960000pt;}
._3_c00012{width:2.752000pt;}
.fs1_c00012{font-size:51.200000pt;}
.fs0_c00012{font-size:64.000000pt;}
.y0_c00012{bottom:0.000000pt;}
.y6_c00012{bottom:4.156000pt;}
.y3_c00012{bottom:4.160000pt;}
.y5_c00012{bottom:22.396000pt;}
.y4_c00012{bottom:29.156000pt;}
.y1_c00012{bottom:51.552000pt;}
.y27_c00012{bottom:106.912000pt;}
.y26_c00012{bottom:125.152000pt;}
.y25_c00012{bottom:143.746667pt;}
.y24_c00012{bottom:161.986667pt;}
.y23_c00012{bottom:180.546667pt;}
.y22_c00012{bottom:198.786667pt;}
.y21_c00012{bottom:217.346667pt;}
.y20_c00012{bottom:235.586667pt;}
.y1f_c00012{bottom:254.173333pt;}
.y1e_c00012{bottom:272.413333pt;}
.y1d_c00012{bottom:290.973333pt;}
.y1c_c00012{bottom:309.213333pt;}
.y1b_c00012{bottom:327.773333pt;}
.y1a_c00012{bottom:346.013333pt;}
.y19_c00012{bottom:364.613333pt;}
.y18_c00012{bottom:382.853333pt;}
.y17_c00012{bottom:401.413333pt;}
.y16_c00012{bottom:436.613333pt;}
.y15_c00012{bottom:472.160000pt;}
.y14_c00012{bottom:508.000000pt;}
.y13_c00012{bottom:543.520000pt;}
.y12_c00012{bottom:579.066667pt;}
.y11_c00012{bottom:614.586667pt;}
.y10_c00012{bottom:650.426667pt;}
.yf_c00012{bottom:685.986667pt;}
.ye_c00012{bottom:721.506667pt;}
.yd_c00012{bottom:757.346667pt;}
.yc_c00012{bottom:793.213333pt;}
.yb_c00012{bottom:828.733333pt;}
.ya_c00012{bottom:856.253333pt;}
.y9_c00012{bottom:883.773333pt;}
.y8_c00012{bottom:911.333333pt;}
.y7_c00012{bottom:946.853333pt;}
.y2_c00012{bottom:989.413333pt;}
.h2_c00012{height:18.586667pt;}
.h3_c00012{height:36.796000pt;}
.h1_c00012{height:57.375000pt;}
.h5_c00012{height:62.812500pt;}
.h4_c00012{height:64.500000pt;}
.h0_c00012{height:1056.000000pt;}
.w1_c00012{width:7.346667pt;}
.w2_c00012{width:589.640000pt;}
.w0_c00012{width:816.000000pt;}
.x0_c00012{left:0.000000pt;}
.x3_c00012{left:113.324000pt;}
.x4_c00012{left:129.344000pt;}
.x1_c00012{left:137.346667pt;}
.x5_c00012{left:407.840000pt;}
.x2_c00012{left:695.613333pt;}
}





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

.ir_c00013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00013;src:url('chunks/assets/font_6d947b290fabe9607faec709.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls0_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:0.000000px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs0_c00013{font-size:72.000000px;}
.fs1_c00013{font-size:96.480000px;}
.y0_c00013{bottom:0.000000px;}
.y6_c00013{bottom:4.675500px;}
.y3_c00013{bottom:4.680000px;}
.y5_c00013{bottom:25.195500px;}
.y4_c00013{bottom:32.800500px;}
.y1_c00013{bottom:57.996000px;}
.y1b_c00013{bottom:131.436000px;}
.y1a_c00013{bottom:181.875000px;}
.y19_c00013{bottom:232.275000px;}
.y18_c00013{bottom:282.705000px;}
.y17_c00013{bottom:333.105000px;}
.y16_c00013{bottom:383.505000px;}
.y15_c00013{bottom:433.950000px;}
.y14_c00013{bottom:484.350000px;}
.y13_c00013{bottom:534.780000px;}
.y12_c00013{bottom:585.180000px;}
.y11_c00013{bottom:635.580000px;}
.y10_c00013{bottom:686.010000px;}
.yf_c00013{bottom:736.410000px;}
.ye_c00013{bottom:786.855000px;}
.yd_c00013{bottom:837.255000px;}
.yc_c00013{bottom:887.685000px;}
.yb_c00013{bottom:938.085000px;}
.ya_c00013{bottom:988.485000px;}
.y9_c00013{bottom:1024.170000px;}
.y8_c00013{bottom:1044.690000px;}
.y7_c00013{bottom:1065.570000px;}
.y2_c00013{bottom:1113.090000px;}
.h2_c00013{height:20.910000px;}
.h3_c00013{height:41.395500px;}
.h1_c00013{height:64.546875px;}
.h4_c00013{height:70.664062px;}
.h5_c00013{height:97.233750px;}
.h0_c00013{height:1188.000000px;}
.w1_c00013{width:8.265000px;}
.w2_c00013{width:663.345000px;}
.w0_c00013{width:918.000000px;}
.x0_c00013{left:0.000000px;}
.x3_c00013{left:127.489500px;}
.x1_c00013{left:154.515000px;}
.x4_c00013{left:458.820000px;}
.x2_c00013{left:782.565000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.000000pt;}
.fs0_c00013{font-size:64.000000pt;}
.fs1_c00013{font-size:85.760000pt;}
.y0_c00013{bottom:0.000000pt;}
.y6_c00013{bottom:4.156000pt;}
.y3_c00013{bottom:4.160000pt;}
.y5_c00013{bottom:22.396000pt;}
.y4_c00013{bottom:29.156000pt;}
.y1_c00013{bottom:51.552000pt;}
.y1b_c00013{bottom:116.832000pt;}
.y1a_c00013{bottom:161.666667pt;}
.y19_c00013{bottom:206.466667pt;}
.y18_c00013{bottom:251.293333pt;}
.y17_c00013{bottom:296.093333pt;}
.y16_c00013{bottom:340.893333pt;}
.y15_c00013{bottom:385.733333pt;}
.y14_c00013{bottom:430.533333pt;}
.y13_c00013{bottom:475.360000pt;}
.y12_c00013{bottom:520.160000pt;}
.y11_c00013{bottom:564.960000pt;}
.y10_c00013{bottom:609.786667pt;}
.yf_c00013{bottom:654.586667pt;}
.ye_c00013{bottom:699.426667pt;}
.yd_c00013{bottom:744.226667pt;}
.yc_c00013{bottom:789.053333pt;}
.yb_c00013{bottom:833.853333pt;}
.ya_c00013{bottom:878.653333pt;}
.y9_c00013{bottom:910.373333pt;}
.y8_c00013{bottom:928.613333pt;}
.y7_c00013{bottom:947.173333pt;}
.y2_c00013{bottom:989.413333pt;}
.h2_c00013{height:18.586667pt;}
.h3_c00013{height:36.796000pt;}
.h1_c00013{height:57.375000pt;}
.h4_c00013{height:62.812500pt;}
.h5_c00013{height:86.430000pt;}
.h0_c00013{height:1056.000000pt;}
.w1_c00013{width:7.346667pt;}
.w2_c00013{width:589.640000pt;}
.w0_c00013{width:816.000000pt;}
.x0_c00013{left:0.000000pt;}
.x3_c00013{left:113.324000pt;}
.x1_c00013{left:137.346667pt;}
.x4_c00013{left:407.840000pt;}
.x2_c00013{left:695.613333pt;}
}





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

.ir_c00014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00014;src:url('chunks/assets/font_d3d513adbd001a55221fd0b1.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_857124983b9e8ac18b7ea2d7.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls0_c00014{letter-spacing:0.000000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:0.000000px;}
._0_c00014{margin-left:-1.157953px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:72.000000px;}
.fs1_c00014{font-size:96.480000px;}
.y0_c00014{bottom:0.000000px;}
.y6_c00014{bottom:4.675500px;}
.y3_c00014{bottom:4.680000px;}
.y5_c00014{bottom:25.195500px;}
.y4_c00014{bottom:32.800500px;}
.y1_c00014{bottom:57.996000px;}
.y1e_c00014{bottom:122.436000px;}
.y1d_c00014{bottom:162.795000px;}
.y1c_c00014{bottom:202.755000px;}
.y1b_c00014{bottom:242.715000px;}
.y1a_c00014{bottom:282.705000px;}
.y19_c00014{bottom:323.025000px;}
.y18_c00014{bottom:363.345000px;}
.y17_c00014{bottom:394.350000px;}
.y16_c00014{bottom:425.310000px;}
.y15_c00014{bottom:456.630000px;}
.y14_c00014{bottom:487.590000px;}
.y13_c00014{bottom:518.580000px;}
.y12_c00014{bottom:549.540000px;}
.y11_c00014{bottom:580.860000px;}
.y10_c00014{bottom:611.820000px;}
.yf_c00014{bottom:656.490000px;}
.ye_c00014{bottom:706.890000px;}
.yd_c00014{bottom:757.290000px;}
.yc_c00014{bottom:807.735000px;}
.yb_c00014{bottom:858.135000px;}
.ya_c00014{bottom:908.565000px;}
.y9_c00014{bottom:958.965000px;}
.y8_c00014{bottom:1009.410000px;}
.y7_c00014{bottom:1059.810000px;}
.y2_c00014{bottom:1113.090000px;}
.h2_c00014{height:20.910000px;}
.h3_c00014{height:41.395500px;}
.h1_c00014{height:64.546875px;}
.h5_c00014{height:70.664062px;}
.h6_c00014{height:72.562500px;}
.h4_c00014{height:97.233750px;}
.h0_c00014{height:1188.000000px;}
.w1_c00014{width:8.265000px;}
.w2_c00014{width:663.345000px;}
.w0_c00014{width:918.000000px;}
.x0_c00014{left:0.000000px;}
.x3_c00014{left:127.489500px;}
.x1_c00014{left:154.515000px;}
.x5_c00014{left:399.030000px;}
.x4_c00014{left:458.820000px;}
.x2_c00014{left:782.565000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws0_c00014{word-spacing:0.000000pt;}
._0_c00014{margin-left:-1.029292pt;}
.fs0_c00014{font-size:64.000000pt;}
.fs1_c00014{font-size:85.760000pt;}
.y0_c00014{bottom:0.000000pt;}
.y6_c00014{bottom:4.156000pt;}
.y3_c00014{bottom:4.160000pt;}
.y5_c00014{bottom:22.396000pt;}
.y4_c00014{bottom:29.156000pt;}
.y1_c00014{bottom:51.552000pt;}
.y1e_c00014{bottom:108.832000pt;}
.y1d_c00014{bottom:144.706667pt;}
.y1c_c00014{bottom:180.226667pt;}
.y1b_c00014{bottom:215.746667pt;}
.y1a_c00014{bottom:251.293333pt;}
.y19_c00014{bottom:287.133333pt;}
.y18_c00014{bottom:322.973333pt;}
.y17_c00014{bottom:350.533333pt;}
.y16_c00014{bottom:378.053333pt;}
.y15_c00014{bottom:405.893333pt;}
.y14_c00014{bottom:433.413333pt;}
.y13_c00014{bottom:460.960000pt;}
.y12_c00014{bottom:488.480000pt;}
.y11_c00014{bottom:516.320000pt;}
.y10_c00014{bottom:543.840000pt;}
.yf_c00014{bottom:583.546667pt;}
.ye_c00014{bottom:628.346667pt;}
.yd_c00014{bottom:673.146667pt;}
.yc_c00014{bottom:717.986667pt;}
.yb_c00014{bottom:762.786667pt;}
.ya_c00014{bottom:807.613333pt;}
.y9_c00014{bottom:852.413333pt;}
.y8_c00014{bottom:897.253333pt;}
.y7_c00014{bottom:942.053333pt;}
.y2_c00014{bottom:989.413333pt;}
.h2_c00014{height:18.586667pt;}
.h3_c00014{height:36.796000pt;}
.h1_c00014{height:57.375000pt;}
.h5_c00014{height:62.812500pt;}
.h6_c00014{height:64.500000pt;}
.h4_c00014{height:86.430000pt;}
.h0_c00014{height:1056.000000pt;}
.w1_c00014{width:7.346667pt;}
.w2_c00014{width:589.640000pt;}
.w0_c00014{width:816.000000pt;}
.x0_c00014{left:0.000000pt;}
.x3_c00014{left:113.324000pt;}
.x1_c00014{left:137.346667pt;}
.x5_c00014{left:354.693333pt;}
.x4_c00014{left:407.840000pt;}
.x2_c00014{left:695.613333pt;}
}





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

.ir_c00015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00015;src:url('chunks/assets/font_dbd825f0273c8fb6b96831e6.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_857124983b9e8ac18b7ea2d7.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_26a2ea91860cac63d248f881.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_f6b7033032653531f72a63e8.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;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_c00015;src:url('chunks/assets/font_054158f6631236e0ff5930d4.woff2')format("woff");}.ff5_c00015{font-family:ff5_c00015;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls3_c00015{letter-spacing:-2.880000px;}
.ls1_c00015{letter-spacing:0.000000px;}
.ls2_c00015{letter-spacing:0.792000px;}
.ls0_c00015{letter-spacing:1.440000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:-18.000000px;}
.ws1_c00015{word-spacing:0.000000px;}
._2_c00015{margin-left:-3.024000px;}
._1_c00015{margin-left:-1.152000px;}
._0_c00015{width:1.368000px;}
._4_c00015{width:2.952000px;}
._3_c00015{width:3.960000px;}
._b_c00015{width:5.040000px;}
._6_c00015{width:6.120000px;}
._5_c00015{width:7.200000px;}
._7_c00015{width:9.012000px;}
._d_c00015{width:10.020000px;}
._e_c00015{width:11.076000px;}
._f_c00015{width:12.228000px;}
._c_c00015{width:16.488000px;}
._a_c00015{width:19.440000px;}
._8_c00015{width:28.800000px;}
._9_c00015{width:30.384000px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs0_c00015{font-size:72.000000px;}
.y0_c00015{bottom:0.000000px;}
.y6_c00015{bottom:4.675500px;}
.y3_c00015{bottom:4.680000px;}
.y5_c00015{bottom:25.195500px;}
.y4_c00015{bottom:32.800500px;}
.y1_c00015{bottom:57.996000px;}
.y24_c00015{bottom:119.916000px;}
.y23_c00015{bottom:150.915000px;}
.y22_c00015{bottom:181.875000px;}
.y21_c00015{bottom:212.835000px;}
.y20_c00015{bottom:244.155000px;}
.y1f_c00015{bottom:275.145000px;}
.y1e_c00015{bottom:306.105000px;}
.y1d_c00015{bottom:346.065000px;}
.y1c_c00015{bottom:377.385000px;}
.y1b_c00015{bottom:408.390000px;}
.y1a_c00015{bottom:439.350000px;}
.y19_c00015{bottom:470.310000px;}
.y18_c00015{bottom:501.630000px;}
.y17_c00015{bottom:532.620000px;}
.y16_c00015{bottom:563.580000px;}
.y15_c00015{bottom:594.540000px;}
.y14_c00015{bottom:625.860000px;}
.y13_c00015{bottom:656.850000px;}
.y12_c00015{bottom:687.810000px;}
.y11_c00015{bottom:727.770000px;}
.y10_c00015{bottom:759.090000px;}
.yf_c00015{bottom:790.095000px;}
.ye_c00015{bottom:821.055000px;}
.yd_c00015{bottom:852.015000px;}
.yc_c00015{bottom:883.335000px;}
.yb_c00015{bottom:914.325000px;}
.ya_c00015{bottom:945.285000px;}
.y9_c00015{bottom:984.885000px;}
.y8_c00015{bottom:1025.250000px;}
.y7_c00015{bottom:1065.210000px;}
.y2_c00015{bottom:1113.090000px;}
.h2_c00015{height:20.910000px;}
.h3_c00015{height:41.395500px;}
.h1_c00015{height:64.546875px;}
.h5_c00015{height:70.664062px;}
.h4_c00015{height:72.562500px;}
.h0_c00015{height:1188.000000px;}
.w1_c00015{width:8.265000px;}
.w2_c00015{width:663.345000px;}
.w0_c00015{width:918.000000px;}
.x0_c00015{left:0.000000px;}
.x3_c00015{left:127.489500px;}
.x1_c00015{left:154.515000px;}
.x5_c00015{left:180.795000px;}
.x4_c00015{left:413.790000px;}
.x2_c00015{left:782.565000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls3_c00015{letter-spacing:-2.560000pt;}
.ls1_c00015{letter-spacing:0.000000pt;}
.ls2_c00015{letter-spacing:0.704000pt;}
.ls0_c00015{letter-spacing:1.280000pt;}
.ws0_c00015{word-spacing:-16.000000pt;}
.ws1_c00015{word-spacing:0.000000pt;}
._2_c00015{margin-left:-2.688000pt;}
._1_c00015{margin-left:-1.024000pt;}
._0_c00015{width:1.216000pt;}
._4_c00015{width:2.624000pt;}
._3_c00015{width:3.520000pt;}
._b_c00015{width:4.480000pt;}
._6_c00015{width:5.440000pt;}
._5_c00015{width:6.400000pt;}
._7_c00015{width:8.010667pt;}
._d_c00015{width:8.906667pt;}
._e_c00015{width:9.845333pt;}
._f_c00015{width:10.869333pt;}
._c_c00015{width:14.656000pt;}
._a_c00015{width:17.280000pt;}
._8_c00015{width:25.600000pt;}
._9_c00015{width:27.008000pt;}
.fs0_c00015{font-size:64.000000pt;}
.y0_c00015{bottom:0.000000pt;}
.y6_c00015{bottom:4.156000pt;}
.y3_c00015{bottom:4.160000pt;}
.y5_c00015{bottom:22.396000pt;}
.y4_c00015{bottom:29.156000pt;}
.y1_c00015{bottom:51.552000pt;}
.y24_c00015{bottom:106.592000pt;}
.y23_c00015{bottom:134.146667pt;}
.y22_c00015{bottom:161.666667pt;}
.y21_c00015{bottom:189.186667pt;}
.y20_c00015{bottom:217.026667pt;}
.y1f_c00015{bottom:244.573333pt;}
.y1e_c00015{bottom:272.093333pt;}
.y1d_c00015{bottom:307.613333pt;}
.y1c_c00015{bottom:335.453333pt;}
.y1b_c00015{bottom:363.013333pt;}
.y1a_c00015{bottom:390.533333pt;}
.y19_c00015{bottom:418.053333pt;}
.y18_c00015{bottom:445.893333pt;}
.y17_c00015{bottom:473.440000pt;}
.y16_c00015{bottom:500.960000pt;}
.y15_c00015{bottom:528.480000pt;}
.y14_c00015{bottom:556.320000pt;}
.y13_c00015{bottom:583.866667pt;}
.y12_c00015{bottom:611.386667pt;}
.y11_c00015{bottom:646.906667pt;}
.y10_c00015{bottom:674.746667pt;}
.yf_c00015{bottom:702.306667pt;}
.ye_c00015{bottom:729.826667pt;}
.yd_c00015{bottom:757.346667pt;}
.yc_c00015{bottom:785.186667pt;}
.yb_c00015{bottom:812.733333pt;}
.ya_c00015{bottom:840.253333pt;}
.y9_c00015{bottom:875.453333pt;}
.y8_c00015{bottom:911.333333pt;}
.y7_c00015{bottom:946.853333pt;}
.y2_c00015{bottom:989.413333pt;}
.h2_c00015{height:18.586667pt;}
.h3_c00015{height:36.796000pt;}
.h1_c00015{height:57.375000pt;}
.h5_c00015{height:62.812500pt;}
.h4_c00015{height:64.500000pt;}
.h0_c00015{height:1056.000000pt;}
.w1_c00015{width:7.346667pt;}
.w2_c00015{width:589.640000pt;}
.w0_c00015{width:816.000000pt;}
.x0_c00015{left:0.000000pt;}
.x3_c00015{left:113.324000pt;}
.x1_c00015{left:137.346667pt;}
.x5_c00015{left:160.706667pt;}
.x4_c00015{left:367.813333pt;}
.x2_c00015{left:695.613333pt;}
}





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

.ir_c00016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00016;src:url('chunks/assets/font_b70710b437c69b276449f566.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_5d895f99e1fce3affbb51ba4.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_27f51361ff578f4f01a3436c.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;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_c00016;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls7_c00016{letter-spacing:-0.288000px;}
.ls6_c00016{letter-spacing:0.000000px;}
.ls2_c00016{letter-spacing:0.120000px;}
.ls0_c00016{letter-spacing:0.720000px;}
.ls3_c00016{letter-spacing:0.792000px;}
.ls4_c00016{letter-spacing:1.440000px;}
.ls5_c00016{letter-spacing:2.160000px;}
.ls1_c00016{letter-spacing:7.920000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00016{word-spacing:-18.000000px;}
.ws1_c00016{word-spacing:0.000000px;}
._6_c00016{margin-left:-3.240000px;}
._0_c00016{margin-left:-2.232000px;}
._3_c00016{margin-left:-1.224000px;}
._1_c00016{width:1.512000px;}
._4_c00016{width:2.664000px;}
._5_c00016{width:4.176000px;}
._13_c00016{width:5.184000px;}
._9_c00016{width:6.192000px;}
._a_c00016{width:7.272000px;}
._b_c00016{width:9.336000px;}
._f_c00016{width:11.100024px;}
._7_c00016{width:12.672000px;}
._8_c00016{width:14.184000px;}
._2_c00016{width:16.128000px;}
._17_c00016{width:20.160000px;}
._d_c00016{width:21.456000px;}
._c_c00016{width:22.896000px;}
._e_c00016{width:23.904000px;}
._16_c00016{width:25.704000px;}
._14_c00016{width:27.216000px;}
._15_c00016{width:28.656000px;}
._10_c00016{width:30.528000px;}
._12_c00016{width:31.680000px;}
._11_c00016{width:32.832000px;}
._18_c00016{width:34.056000px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:72.000000px;}
.y0_c00016{bottom:0.000000px;}
.y6_c00016{bottom:4.675500px;}
.y3_c00016{bottom:4.680000px;}
.y5_c00016{bottom:25.195500px;}
.y4_c00016{bottom:32.800500px;}
.y1_c00016{bottom:57.996000px;}
.y25_c00016{bottom:115.956000px;}
.y24_c00016{bottom:146.916000px;}
.y23_c00016{bottom:177.915000px;}
.y22_c00016{bottom:208.875000px;}
.y21_c00016{bottom:239.835000px;}
.y20_c00016{bottom:271.155000px;}
.y1f_c00016{bottom:302.145000px;}
.y1e_c00016{bottom:333.105000px;}
.y1d_c00016{bottom:364.065000px;}
.y1c_c00016{bottom:395.430000px;}
.y1b_c00016{bottom:426.390000px;}
.y1a_c00016{bottom:457.350000px;}
.y19_c00016{bottom:488.310000px;}
.y18_c00016{bottom:519.660000px;}
.y17_c00016{bottom:550.620000px;}
.y16_c00016{bottom:581.580000px;}
.y15_c00016{bottom:612.540000px;}
.y14_c00016{bottom:652.890000px;}
.y13_c00016{bottom:683.850000px;}
.y12_c00016{bottom:714.810000px;}
.y11_c00016{bottom:745.770000px;}
.y10_c00016{bottom:777.135000px;}
.yf_c00016{bottom:808.095000px;}
.ye_c00016{bottom:839.055000px;}
.yd_c00016{bottom:870.015000px;}
.yc_c00016{bottom:901.365000px;}
.yb_c00016{bottom:932.325000px;}
.ya_c00016{bottom:963.285000px;}
.y9_c00016{bottom:994.245000px;}
.y8_c00016{bottom:1025.610000px;}
.y7_c00016{bottom:1065.570000px;}
.y2_c00016{bottom:1113.090000px;}
.h2_c00016{height:20.910000px;}
.h3_c00016{height:41.395500px;}
.h1_c00016{height:64.546875px;}
.h4_c00016{height:70.664062px;}
.h0_c00016{height:1188.000000px;}
.w1_c00016{width:8.265000px;}
.w2_c00016{width:663.345000px;}
.w0_c00016{width:918.000000px;}
.x0_c00016{left:0.000000px;}
.x3_c00016{left:127.489500px;}
.x1_c00016{left:154.515000px;}
.x4_c00016{left:180.795000px;}
.x2_c00016{left:782.565000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls7_c00016{letter-spacing:-0.256000pt;}
.ls6_c00016{letter-spacing:0.000000pt;}
.ls2_c00016{letter-spacing:0.106667pt;}
.ls0_c00016{letter-spacing:0.640000pt;}
.ls3_c00016{letter-spacing:0.704000pt;}
.ls4_c00016{letter-spacing:1.280000pt;}
.ls5_c00016{letter-spacing:1.920000pt;}
.ls1_c00016{letter-spacing:7.040000pt;}
.ws0_c00016{word-spacing:-16.000000pt;}
.ws1_c00016{word-spacing:0.000000pt;}
._6_c00016{margin-left:-2.880000pt;}
._0_c00016{margin-left:-1.984000pt;}
._3_c00016{margin-left:-1.088000pt;}
._1_c00016{width:1.344000pt;}
._4_c00016{width:2.368000pt;}
._5_c00016{width:3.712000pt;}
._13_c00016{width:4.608000pt;}
._9_c00016{width:5.504000pt;}
._a_c00016{width:6.464000pt;}
._b_c00016{width:8.298667pt;}
._f_c00016{width:9.866688pt;}
._7_c00016{width:11.264000pt;}
._8_c00016{width:12.608000pt;}
._2_c00016{width:14.336000pt;}
._17_c00016{width:17.920000pt;}
._d_c00016{width:19.072000pt;}
._c_c00016{width:20.352000pt;}
._e_c00016{width:21.248000pt;}
._16_c00016{width:22.848000pt;}
._14_c00016{width:24.192000pt;}
._15_c00016{width:25.472000pt;}
._10_c00016{width:27.136000pt;}
._12_c00016{width:28.160000pt;}
._11_c00016{width:29.184000pt;}
._18_c00016{width:30.272000pt;}
.fs0_c00016{font-size:64.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y6_c00016{bottom:4.156000pt;}
.y3_c00016{bottom:4.160000pt;}
.y5_c00016{bottom:22.396000pt;}
.y4_c00016{bottom:29.156000pt;}
.y1_c00016{bottom:51.552000pt;}
.y25_c00016{bottom:103.072000pt;}
.y24_c00016{bottom:130.592000pt;}
.y23_c00016{bottom:158.146667pt;}
.y22_c00016{bottom:185.666667pt;}
.y21_c00016{bottom:213.186667pt;}
.y20_c00016{bottom:241.026667pt;}
.y1f_c00016{bottom:268.573333pt;}
.y1e_c00016{bottom:296.093333pt;}
.y1d_c00016{bottom:323.613333pt;}
.y1c_c00016{bottom:351.493333pt;}
.y1b_c00016{bottom:379.013333pt;}
.y1a_c00016{bottom:406.533333pt;}
.y19_c00016{bottom:434.053333pt;}
.y18_c00016{bottom:461.920000pt;}
.y17_c00016{bottom:489.440000pt;}
.y16_c00016{bottom:516.960000pt;}
.y15_c00016{bottom:544.480000pt;}
.y14_c00016{bottom:580.346667pt;}
.y13_c00016{bottom:607.866667pt;}
.y12_c00016{bottom:635.386667pt;}
.y11_c00016{bottom:662.906667pt;}
.y10_c00016{bottom:690.786667pt;}
.yf_c00016{bottom:718.306667pt;}
.ye_c00016{bottom:745.826667pt;}
.yd_c00016{bottom:773.346667pt;}
.yc_c00016{bottom:801.213333pt;}
.yb_c00016{bottom:828.733333pt;}
.ya_c00016{bottom:856.253333pt;}
.y9_c00016{bottom:883.773333pt;}
.y8_c00016{bottom:911.653333pt;}
.y7_c00016{bottom:947.173333pt;}
.y2_c00016{bottom:989.413333pt;}
.h2_c00016{height:18.586667pt;}
.h3_c00016{height:36.796000pt;}
.h1_c00016{height:57.375000pt;}
.h4_c00016{height:62.812500pt;}
.h0_c00016{height:1056.000000pt;}
.w1_c00016{width:7.346667pt;}
.w2_c00016{width:589.640000pt;}
.w0_c00016{width:816.000000pt;}
.x0_c00016{left:0.000000pt;}
.x3_c00016{left:113.324000pt;}
.x1_c00016{left:137.346667pt;}
.x4_c00016{left:160.706667pt;}
.x2_c00016{left:695.613333pt;}
}





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

.ir_c00017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00017;src:url('chunks/assets/font_889a5c9f6fcf23e49b8e4b21.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_7b991926dfb47f006432ecad.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_054158f6631236e0ff5930d4.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;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_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls1_c00017{letter-spacing:0.000000px;}
.ls0_c00017{letter-spacing:5.040000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:-18.000000px;}
.ws1_c00017{word-spacing:0.000000px;}
._0_c00017{margin-left:-2.736000px;}
._3_c00017{margin-left:-1.728000px;}
._1_c00017{width:1.368000px;}
._6_c00017{width:2.448000px;}
._10_c00017{width:4.152024px;}
._14_c00017{width:5.832000px;}
._11_c00017{width:7.704000px;}
._12_c00017{width:9.504000px;}
._8_c00017{width:10.800000px;}
._9_c00017{width:12.312000px;}
._c_c00017{width:13.320000px;}
._b_c00017{width:14.412024px;}
._d_c00017{width:15.467976px;}
._13_c00017{width:16.788024px;}
._7_c00017{width:19.224000px;}
._e_c00017{width:20.808000px;}
._f_c00017{width:22.104000px;}
._15_c00017{width:23.904000px;}
._5_c00017{width:26.208000px;}
._2_c00017{width:27.288000px;}
._4_c00017{width:28.296000px;}
._a_c00017{width:30.096000px;}
._16_c00017{width:35.208000px;}
._17_c00017{width:40.115952px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:72.000000px;}
.y0_c00017{bottom:0.000000px;}
.y6_c00017{bottom:4.675500px;}
.y3_c00017{bottom:4.680000px;}
.y5_c00017{bottom:25.195500px;}
.y4_c00017{bottom:32.800500px;}
.y1_c00017{bottom:57.996000px;}
.y25_c00017{bottom:115.956000px;}
.y24_c00017{bottom:146.916000px;}
.y23_c00017{bottom:177.915000px;}
.y22_c00017{bottom:208.875000px;}
.y21_c00017{bottom:239.835000px;}
.y20_c00017{bottom:271.155000px;}
.y1f_c00017{bottom:302.145000px;}
.y1e_c00017{bottom:333.105000px;}
.y1d_c00017{bottom:364.065000px;}
.y1c_c00017{bottom:395.430000px;}
.y1b_c00017{bottom:426.390000px;}
.y1a_c00017{bottom:457.350000px;}
.y19_c00017{bottom:488.310000px;}
.y18_c00017{bottom:519.660000px;}
.y17_c00017{bottom:550.620000px;}
.y16_c00017{bottom:581.580000px;}
.y15_c00017{bottom:612.540000px;}
.y14_c00017{bottom:643.890000px;}
.y13_c00017{bottom:674.850000px;}
.y12_c00017{bottom:705.810000px;}
.y11_c00017{bottom:736.770000px;}
.y10_c00017{bottom:768.135000px;}
.yf_c00017{bottom:799.095000px;}
.ye_c00017{bottom:839.055000px;}
.yd_c00017{bottom:870.015000px;}
.yc_c00017{bottom:901.365000px;}
.yb_c00017{bottom:932.325000px;}
.ya_c00017{bottom:963.285000px;}
.y9_c00017{bottom:994.245000px;}
.y8_c00017{bottom:1034.610000px;}
.y7_c00017{bottom:1065.570000px;}
.y2_c00017{bottom:1113.090000px;}
.h2_c00017{height:20.910000px;}
.h3_c00017{height:41.395500px;}
.h1_c00017{height:64.546875px;}
.h4_c00017{height:70.664062px;}
.h0_c00017{height:1188.000000px;}
.w1_c00017{width:8.265000px;}
.w2_c00017{width:663.345000px;}
.w0_c00017{width:918.000000px;}
.x0_c00017{left:0.000000px;}
.x3_c00017{left:127.489500px;}
.x1_c00017{left:154.515000px;}
.x4_c00017{left:178.635000px;}
.x5_c00017{left:180.795000px;}
.x2_c00017{left:782.565000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls1_c00017{letter-spacing:0.000000pt;}
.ls0_c00017{letter-spacing:4.480000pt;}
.ws0_c00017{word-spacing:-16.000000pt;}
.ws1_c00017{word-spacing:0.000000pt;}
._0_c00017{margin-left:-2.432000pt;}
._3_c00017{margin-left:-1.536000pt;}
._1_c00017{width:1.216000pt;}
._6_c00017{width:2.176000pt;}
._10_c00017{width:3.690688pt;}
._14_c00017{width:5.184000pt;}
._11_c00017{width:6.848000pt;}
._12_c00017{width:8.448000pt;}
._8_c00017{width:9.600000pt;}
._9_c00017{width:10.944000pt;}
._c_c00017{width:11.840000pt;}
._b_c00017{width:12.810688pt;}
._d_c00017{width:13.749312pt;}
._13_c00017{width:14.922688pt;}
._7_c00017{width:17.088000pt;}
._e_c00017{width:18.496000pt;}
._f_c00017{width:19.648000pt;}
._15_c00017{width:21.248000pt;}
._5_c00017{width:23.296000pt;}
._2_c00017{width:24.256000pt;}
._4_c00017{width:25.152000pt;}
._a_c00017{width:26.752000pt;}
._16_c00017{width:31.296000pt;}
._17_c00017{width:35.658624pt;}
.fs0_c00017{font-size:64.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y6_c00017{bottom:4.156000pt;}
.y3_c00017{bottom:4.160000pt;}
.y5_c00017{bottom:22.396000pt;}
.y4_c00017{bottom:29.156000pt;}
.y1_c00017{bottom:51.552000pt;}
.y25_c00017{bottom:103.072000pt;}
.y24_c00017{bottom:130.592000pt;}
.y23_c00017{bottom:158.146667pt;}
.y22_c00017{bottom:185.666667pt;}
.y21_c00017{bottom:213.186667pt;}
.y20_c00017{bottom:241.026667pt;}
.y1f_c00017{bottom:268.573333pt;}
.y1e_c00017{bottom:296.093333pt;}
.y1d_c00017{bottom:323.613333pt;}
.y1c_c00017{bottom:351.493333pt;}
.y1b_c00017{bottom:379.013333pt;}
.y1a_c00017{bottom:406.533333pt;}
.y19_c00017{bottom:434.053333pt;}
.y18_c00017{bottom:461.920000pt;}
.y17_c00017{bottom:489.440000pt;}
.y16_c00017{bottom:516.960000pt;}
.y15_c00017{bottom:544.480000pt;}
.y14_c00017{bottom:572.346667pt;}
.y13_c00017{bottom:599.866667pt;}
.y12_c00017{bottom:627.386667pt;}
.y11_c00017{bottom:654.906667pt;}
.y10_c00017{bottom:682.786667pt;}
.yf_c00017{bottom:710.306667pt;}
.ye_c00017{bottom:745.826667pt;}
.yd_c00017{bottom:773.346667pt;}
.yc_c00017{bottom:801.213333pt;}
.yb_c00017{bottom:828.733333pt;}
.ya_c00017{bottom:856.253333pt;}
.y9_c00017{bottom:883.773333pt;}
.y8_c00017{bottom:919.653333pt;}
.y7_c00017{bottom:947.173333pt;}
.y2_c00017{bottom:989.413333pt;}
.h2_c00017{height:18.586667pt;}
.h3_c00017{height:36.796000pt;}
.h1_c00017{height:57.375000pt;}
.h4_c00017{height:62.812500pt;}
.h0_c00017{height:1056.000000pt;}
.w1_c00017{width:7.346667pt;}
.w2_c00017{width:589.640000pt;}
.w0_c00017{width:816.000000pt;}
.x0_c00017{left:0.000000pt;}
.x3_c00017{left:113.324000pt;}
.x1_c00017{left:137.346667pt;}
.x4_c00017{left:158.786667pt;}
.x5_c00017{left:160.706667pt;}
.x2_c00017{left:695.613333pt;}
}





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

.ir_c00018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00018;src:url('chunks/assets/font_d6827ec675dc19194670a5ad.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00018;src:url('chunks/assets/font_89b8f77406abc88a4c30e09c.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_1f3a8afdcb59ee74d71ee0fa.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_41b644e40d7f7800f775b734.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00018;src:url('chunks/assets/font_c5eaffb16d8296bc819bd0ab.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;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_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls6_c00018{letter-spacing:-0.648000px;}
.ls5_c00018{letter-spacing:0.000000px;}
.ls0_c00018{letter-spacing:0.120000px;}
.ls2_c00018{letter-spacing:0.504000px;}
.ls1_c00018{letter-spacing:0.720000px;}
.ls3_c00018{letter-spacing:1.440000px;}
.ls4_c00018{letter-spacing:2.160000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:-18.000000px;}
.ws1_c00018{word-spacing:0.000000px;}
._3_c00018{margin-left:-2.376000px;}
._2_c00018{margin-left:-1.224000px;}
._1_c00018{width:1.440000px;}
._0_c00018{width:2.736000px;}
._4_c00018{width:4.452000px;}
._b_c00018{width:5.832000px;}
._11_c00018{width:6.948024px;}
._13_c00018{width:8.172000px;}
._10_c00018{width:9.432000px;}
._d_c00018{width:10.656000px;}
._c_c00018{width:12.744000px;}
._f_c00018{width:14.916000px;}
._e_c00018{width:16.284000px;}
._a_c00018{width:19.296000px;}
._12_c00018{width:23.112000px;}
._5_c00018{width:24.840000px;}
._7_c00018{width:25.871976px;}
._6_c00018{width:27.072000px;}
._9_c00018{width:32.112000px;}
._8_c00018{width:33.552000px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs0_c00018{font-size:72.000000px;}
.y0_c00018{bottom:0.000000px;}
.y6_c00018{bottom:4.675500px;}
.y3_c00018{bottom:4.680000px;}
.y5_c00018{bottom:25.195500px;}
.y4_c00018{bottom:32.800500px;}
.y1_c00018{bottom:57.996000px;}
.y25_c00018{bottom:124.956000px;}
.y24_c00018{bottom:155.955000px;}
.y23_c00018{bottom:186.915000px;}
.y22_c00018{bottom:217.875000px;}
.y21_c00018{bottom:248.835000px;}
.y20_c00018{bottom:289.185000px;}
.y1f_c00018{bottom:320.145000px;}
.y1e_c00018{bottom:351.105000px;}
.y1d_c00018{bottom:382.065000px;}
.y1c_c00018{bottom:413.430000px;}
.y1b_c00018{bottom:444.390000px;}
.y1a_c00018{bottom:475.350000px;}
.y19_c00018{bottom:506.310000px;}
.y18_c00018{bottom:537.660000px;}
.y17_c00018{bottom:568.620000px;}
.y16_c00018{bottom:599.580000px;}
.y15_c00018{bottom:630.540000px;}
.y14_c00018{bottom:661.890000px;}
.y13_c00018{bottom:692.850000px;}
.y12_c00018{bottom:723.810000px;}
.y11_c00018{bottom:754.770000px;}
.y10_c00018{bottom:786.135000px;}
.yf_c00018{bottom:817.095000px;}
.ye_c00018{bottom:848.055000px;}
.yd_c00018{bottom:879.015000px;}
.yc_c00018{bottom:910.365000px;}
.yb_c00018{bottom:941.325000px;}
.ya_c00018{bottom:972.285000px;}
.y9_c00018{bottom:1003.245000px;}
.y8_c00018{bottom:1034.610000px;}
.y7_c00018{bottom:1065.570000px;}
.y2_c00018{bottom:1113.090000px;}
.h2_c00018{height:20.910000px;}
.h3_c00018{height:41.395500px;}
.h1_c00018{height:64.546875px;}
.h4_c00018{height:70.664062px;}
.h0_c00018{height:1188.000000px;}
.w1_c00018{width:8.265000px;}
.w2_c00018{width:663.345000px;}
.w0_c00018{width:918.000000px;}
.x0_c00018{left:0.000000px;}
.x3_c00018{left:127.489500px;}
.x1_c00018{left:154.515000px;}
.x4_c00018{left:180.795000px;}
.x2_c00018{left:782.565000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls6_c00018{letter-spacing:-0.576000pt;}
.ls5_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:0.106667pt;}
.ls2_c00018{letter-spacing:0.448000pt;}
.ls1_c00018{letter-spacing:0.640000pt;}
.ls3_c00018{letter-spacing:1.280000pt;}
.ls4_c00018{letter-spacing:1.920000pt;}
.ws0_c00018{word-spacing:-16.000000pt;}
.ws1_c00018{word-spacing:0.000000pt;}
._3_c00018{margin-left:-2.112000pt;}
._2_c00018{margin-left:-1.088000pt;}
._1_c00018{width:1.280000pt;}
._0_c00018{width:2.432000pt;}
._4_c00018{width:3.957333pt;}
._b_c00018{width:5.184000pt;}
._11_c00018{width:6.176021pt;}
._13_c00018{width:7.264000pt;}
._10_c00018{width:8.384000pt;}
._d_c00018{width:9.472000pt;}
._c_c00018{width:11.328000pt;}
._f_c00018{width:13.258667pt;}
._e_c00018{width:14.474667pt;}
._a_c00018{width:17.152000pt;}
._12_c00018{width:20.544000pt;}
._5_c00018{width:22.080000pt;}
._7_c00018{width:22.997312pt;}
._6_c00018{width:24.064000pt;}
._9_c00018{width:28.544000pt;}
._8_c00018{width:29.824000pt;}
.fs0_c00018{font-size:64.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y6_c00018{bottom:4.156000pt;}
.y3_c00018{bottom:4.160000pt;}
.y5_c00018{bottom:22.396000pt;}
.y4_c00018{bottom:29.156000pt;}
.y1_c00018{bottom:51.552000pt;}
.y25_c00018{bottom:111.072000pt;}
.y24_c00018{bottom:138.626667pt;}
.y23_c00018{bottom:166.146667pt;}
.y22_c00018{bottom:193.666667pt;}
.y21_c00018{bottom:221.186667pt;}
.y20_c00018{bottom:257.053333pt;}
.y1f_c00018{bottom:284.573333pt;}
.y1e_c00018{bottom:312.093333pt;}
.y1d_c00018{bottom:339.613333pt;}
.y1c_c00018{bottom:367.493333pt;}
.y1b_c00018{bottom:395.013333pt;}
.y1a_c00018{bottom:422.533333pt;}
.y19_c00018{bottom:450.053333pt;}
.y18_c00018{bottom:477.920000pt;}
.y17_c00018{bottom:505.440000pt;}
.y16_c00018{bottom:532.960000pt;}
.y15_c00018{bottom:560.480000pt;}
.y14_c00018{bottom:588.346667pt;}
.y13_c00018{bottom:615.866667pt;}
.y12_c00018{bottom:643.386667pt;}
.y11_c00018{bottom:670.906667pt;}
.y10_c00018{bottom:698.786667pt;}
.yf_c00018{bottom:726.306667pt;}
.ye_c00018{bottom:753.826667pt;}
.yd_c00018{bottom:781.346667pt;}
.yc_c00018{bottom:809.213333pt;}
.yb_c00018{bottom:836.733333pt;}
.ya_c00018{bottom:864.253333pt;}
.y9_c00018{bottom:891.773333pt;}
.y8_c00018{bottom:919.653333pt;}
.y7_c00018{bottom:947.173333pt;}
.y2_c00018{bottom:989.413333pt;}
.h2_c00018{height:18.586667pt;}
.h3_c00018{height:36.796000pt;}
.h1_c00018{height:57.375000pt;}
.h4_c00018{height:62.812500pt;}
.h0_c00018{height:1056.000000pt;}
.w1_c00018{width:7.346667pt;}
.w2_c00018{width:589.640000pt;}
.w0_c00018{width:816.000000pt;}
.x0_c00018{left:0.000000pt;}
.x3_c00018{left:113.324000pt;}
.x1_c00018{left:137.346667pt;}
.x4_c00018{left:160.706667pt;}
.x2_c00018{left:695.613333pt;}
}





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

.ir_c00019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00019;src:url('chunks/assets/font_660016fb3ab0fd2f25f81b3a.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_74db45b3c0cba5a350cf9980.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_51b2bffbcdb4a8ff35aa2a4f.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;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_c00019;src:url('chunks/assets/font_7b3489d3f2638fbaea16bda1.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls4_c00019{letter-spacing:-1.440000px;}
.ls5_c00019{letter-spacing:-0.648000px;}
.ls3_c00019{letter-spacing:0.000000px;}
.ls1_c00019{letter-spacing:0.120000px;}
.ls0_c00019{letter-spacing:5.040000px;}
.ls2_c00019{letter-spacing:12.240000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00019{word-spacing:-72.000000px;}
.ws0_c00019{word-spacing:-18.000000px;}
.ws2_c00019{word-spacing:0.000000px;}
._2_c00019{margin-left:-2.736000px;}
._0_c00019{margin-left:-1.440000px;}
._3_c00019{width:1.368000px;}
._4_c00019{width:2.448000px;}
._1_c00019{width:3.600000px;}
._5_c00019{width:5.040000px;}
._6_c00019{width:6.264000px;}
._a_c00019{width:7.776000px;}
._7_c00019{width:9.000000px;}
._8_c00019{width:10.368000px;}
._9_c00019{width:11.651976px;}
._d_c00019{width:13.176000px;}
._e_c00019{width:14.760000px;}
._12_c00019{width:27.072000px;}
._11_c00019{width:28.296000px;}
._b_c00019{width:30.312000px;}
._c_c00019{width:31.392000px;}
._f_c00019{width:35.280000px;}
._10_c00019{width:36.792000px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs0_c00019{font-size:72.000000px;}
.y0_c00019{bottom:0.000000px;}
.y6_c00019{bottom:4.675500px;}
.y3_c00019{bottom:4.680000px;}
.y5_c00019{bottom:25.195500px;}
.y4_c00019{bottom:32.800500px;}
.y1_c00019{bottom:57.996000px;}
.y24_c00019{bottom:137.916000px;}
.y23_c00019{bottom:168.915000px;}
.y22_c00019{bottom:199.875000px;}
.y21_c00019{bottom:230.835000px;}
.y20_c00019{bottom:262.155000px;}
.y1f_c00019{bottom:302.145000px;}
.y1e_c00019{bottom:333.105000px;}
.y1d_c00019{bottom:364.065000px;}
.y1c_c00019{bottom:395.430000px;}
.y1b_c00019{bottom:426.390000px;}
.y1a_c00019{bottom:457.350000px;}
.y19_c00019{bottom:488.310000px;}
.y18_c00019{bottom:519.660000px;}
.y17_c00019{bottom:550.620000px;}
.y16_c00019{bottom:581.580000px;}
.y15_c00019{bottom:621.540000px;}
.y14_c00019{bottom:652.890000px;}
.y13_c00019{bottom:683.850000px;}
.y12_c00019{bottom:714.810000px;}
.y11_c00019{bottom:745.770000px;}
.y10_c00019{bottom:777.135000px;}
.yf_c00019{bottom:808.095000px;}
.ye_c00019{bottom:848.055000px;}
.yd_c00019{bottom:879.015000px;}
.yc_c00019{bottom:910.365000px;}
.yb_c00019{bottom:941.325000px;}
.ya_c00019{bottom:972.285000px;}
.y9_c00019{bottom:1003.245000px;}
.y8_c00019{bottom:1034.610000px;}
.y7_c00019{bottom:1065.570000px;}
.y2_c00019{bottom:1113.090000px;}
.h2_c00019{height:20.910000px;}
.h3_c00019{height:41.395500px;}
.h1_c00019{height:64.546875px;}
.h4_c00019{height:70.664062px;}
.h0_c00019{height:1188.000000px;}
.w1_c00019{width:8.265000px;}
.w2_c00019{width:663.345000px;}
.w0_c00019{width:918.000000px;}
.x0_c00019{left:0.000000px;}
.x3_c00019{left:127.489500px;}
.x1_c00019{left:154.515000px;}
.x4_c00019{left:180.795000px;}
.x2_c00019{left:782.565000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls4_c00019{letter-spacing:-1.280000pt;}
.ls5_c00019{letter-spacing:-0.576000pt;}
.ls3_c00019{letter-spacing:0.000000pt;}
.ls1_c00019{letter-spacing:0.106667pt;}
.ls0_c00019{letter-spacing:4.480000pt;}
.ls2_c00019{letter-spacing:10.880000pt;}
.ws1_c00019{word-spacing:-64.000000pt;}
.ws0_c00019{word-spacing:-16.000000pt;}
.ws2_c00019{word-spacing:0.000000pt;}
._2_c00019{margin-left:-2.432000pt;}
._0_c00019{margin-left:-1.280000pt;}
._3_c00019{width:1.216000pt;}
._4_c00019{width:2.176000pt;}
._1_c00019{width:3.200000pt;}
._5_c00019{width:4.480000pt;}
._6_c00019{width:5.568000pt;}
._a_c00019{width:6.912000pt;}
._7_c00019{width:8.000000pt;}
._8_c00019{width:9.216000pt;}
._9_c00019{width:10.357312pt;}
._d_c00019{width:11.712000pt;}
._e_c00019{width:13.120000pt;}
._12_c00019{width:24.064000pt;}
._11_c00019{width:25.152000pt;}
._b_c00019{width:26.944000pt;}
._c_c00019{width:27.904000pt;}
._f_c00019{width:31.360000pt;}
._10_c00019{width:32.704000pt;}
.fs0_c00019{font-size:64.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y6_c00019{bottom:4.156000pt;}
.y3_c00019{bottom:4.160000pt;}
.y5_c00019{bottom:22.396000pt;}
.y4_c00019{bottom:29.156000pt;}
.y1_c00019{bottom:51.552000pt;}
.y24_c00019{bottom:122.592000pt;}
.y23_c00019{bottom:150.146667pt;}
.y22_c00019{bottom:177.666667pt;}
.y21_c00019{bottom:205.186667pt;}
.y20_c00019{bottom:233.026667pt;}
.y1f_c00019{bottom:268.573333pt;}
.y1e_c00019{bottom:296.093333pt;}
.y1d_c00019{bottom:323.613333pt;}
.y1c_c00019{bottom:351.493333pt;}
.y1b_c00019{bottom:379.013333pt;}
.y1a_c00019{bottom:406.533333pt;}
.y19_c00019{bottom:434.053333pt;}
.y18_c00019{bottom:461.920000pt;}
.y17_c00019{bottom:489.440000pt;}
.y16_c00019{bottom:516.960000pt;}
.y15_c00019{bottom:552.480000pt;}
.y14_c00019{bottom:580.346667pt;}
.y13_c00019{bottom:607.866667pt;}
.y12_c00019{bottom:635.386667pt;}
.y11_c00019{bottom:662.906667pt;}
.y10_c00019{bottom:690.786667pt;}
.yf_c00019{bottom:718.306667pt;}
.ye_c00019{bottom:753.826667pt;}
.yd_c00019{bottom:781.346667pt;}
.yc_c00019{bottom:809.213333pt;}
.yb_c00019{bottom:836.733333pt;}
.ya_c00019{bottom:864.253333pt;}
.y9_c00019{bottom:891.773333pt;}
.y8_c00019{bottom:919.653333pt;}
.y7_c00019{bottom:947.173333pt;}
.y2_c00019{bottom:989.413333pt;}
.h2_c00019{height:18.586667pt;}
.h3_c00019{height:36.796000pt;}
.h1_c00019{height:57.375000pt;}
.h4_c00019{height:62.812500pt;}
.h0_c00019{height:1056.000000pt;}
.w1_c00019{width:7.346667pt;}
.w2_c00019{width:589.640000pt;}
.w0_c00019{width:816.000000pt;}
.x0_c00019{left:0.000000pt;}
.x3_c00019{left:113.324000pt;}
.x1_c00019{left:137.346667pt;}
.x4_c00019{left:160.706667pt;}
.x2_c00019{left:695.613333pt;}
}





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

.ir_c00020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00020;src:url('chunks/assets/font_0f37a932608fb5848dc10d2c.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_0fdf789241323b20e5e84da6.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_fa527ccf0ecd89c2b94107dd.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;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_c00020;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00020;src:url('chunks/assets/font_3bb1e8aa46a47c19fc6dd458.woff2')format("woff");}.ff5_c00020{font-family:ff5_c00020;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls4_c00020{letter-spacing:-2.880000px;}
.ls5_c00020{letter-spacing:-1.440000px;}
.ls6_c00020{letter-spacing:-0.648000px;}
.ls3_c00020{letter-spacing:0.000000px;}
.ls2_c00020{letter-spacing:0.120000px;}
.ls1_c00020{letter-spacing:0.792000px;}
.ls0_c00020{letter-spacing:2.160000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:-18.000000px;}
.ws1_c00020{word-spacing:-17.352000px;}
.ws2_c00020{word-spacing:0.000000px;}
._3_c00020{margin-left:-2.736000px;}
._0_c00020{margin-left:-1.296000px;}
._6_c00020{width:1.080000px;}
._2_c00020{width:2.160000px;}
._9_c00020{width:3.240000px;}
._b_c00020{width:4.248000px;}
._c_c00020{width:6.120000px;}
._10_c00020{width:7.200000px;}
._f_c00020{width:8.424000px;}
._11_c00020{width:9.516024px;}
._d_c00020{width:10.656000px;}
._1_c00020{width:11.880000px;}
._4_c00020{width:12.960000px;}
._5_c00020{width:14.040000px;}
._e_c00020{width:15.984000px;}
._12_c00020{width:19.080000px;}
._8_c00020{width:20.304000px;}
._7_c00020{width:22.176000px;}
._a_c00020{width:24.276000px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs0_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y6_c00020{bottom:4.675500px;}
.y3_c00020{bottom:4.680000px;}
.y5_c00020{bottom:25.195500px;}
.y4_c00020{bottom:32.800500px;}
.y1_c00020{bottom:57.996000px;}
.y25_c00020{bottom:124.956000px;}
.y24_c00020{bottom:155.955000px;}
.y23_c00020{bottom:186.915000px;}
.y22_c00020{bottom:217.875000px;}
.y21_c00020{bottom:248.835000px;}
.y20_c00020{bottom:280.185000px;}
.y1f_c00020{bottom:311.145000px;}
.y1e_c00020{bottom:342.105000px;}
.y1d_c00020{bottom:373.065000px;}
.y1c_c00020{bottom:413.430000px;}
.y1b_c00020{bottom:444.390000px;}
.y1a_c00020{bottom:475.350000px;}
.y19_c00020{bottom:506.310000px;}
.y18_c00020{bottom:537.660000px;}
.y17_c00020{bottom:568.620000px;}
.y16_c00020{bottom:599.580000px;}
.y15_c00020{bottom:630.540000px;}
.y14_c00020{bottom:661.890000px;}
.y13_c00020{bottom:692.850000px;}
.y12_c00020{bottom:723.810000px;}
.y11_c00020{bottom:754.770000px;}
.y10_c00020{bottom:786.135000px;}
.yf_c00020{bottom:817.095000px;}
.ye_c00020{bottom:848.055000px;}
.yd_c00020{bottom:879.015000px;}
.yc_c00020{bottom:910.365000px;}
.yb_c00020{bottom:941.325000px;}
.ya_c00020{bottom:972.285000px;}
.y9_c00020{bottom:1003.245000px;}
.y8_c00020{bottom:1034.610000px;}
.y7_c00020{bottom:1065.570000px;}
.y2_c00020{bottom:1113.090000px;}
.h2_c00020{height:20.910000px;}
.h3_c00020{height:41.395500px;}
.h1_c00020{height:64.546875px;}
.h4_c00020{height:70.664062px;}
.h0_c00020{height:1188.000000px;}
.w1_c00020{width:8.265000px;}
.w2_c00020{width:663.345000px;}
.w0_c00020{width:918.000000px;}
.x0_c00020{left:0.000000px;}
.x3_c00020{left:127.489500px;}
.x1_c00020{left:154.515000px;}
.x4_c00020{left:180.795000px;}
.x2_c00020{left:782.565000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls4_c00020{letter-spacing:-2.560000pt;}
.ls5_c00020{letter-spacing:-1.280000pt;}
.ls6_c00020{letter-spacing:-0.576000pt;}
.ls3_c00020{letter-spacing:0.000000pt;}
.ls2_c00020{letter-spacing:0.106667pt;}
.ls1_c00020{letter-spacing:0.704000pt;}
.ls0_c00020{letter-spacing:1.920000pt;}
.ws0_c00020{word-spacing:-16.000000pt;}
.ws1_c00020{word-spacing:-15.424000pt;}
.ws2_c00020{word-spacing:0.000000pt;}
._3_c00020{margin-left:-2.432000pt;}
._0_c00020{margin-left:-1.152000pt;}
._6_c00020{width:0.960000pt;}
._2_c00020{width:1.920000pt;}
._9_c00020{width:2.880000pt;}
._b_c00020{width:3.776000pt;}
._c_c00020{width:5.440000pt;}
._10_c00020{width:6.400000pt;}
._f_c00020{width:7.488000pt;}
._11_c00020{width:8.458688pt;}
._d_c00020{width:9.472000pt;}
._1_c00020{width:10.560000pt;}
._4_c00020{width:11.520000pt;}
._5_c00020{width:12.480000pt;}
._e_c00020{width:14.208000pt;}
._12_c00020{width:16.960000pt;}
._8_c00020{width:18.048000pt;}
._7_c00020{width:19.712000pt;}
._a_c00020{width:21.578667pt;}
.fs0_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y6_c00020{bottom:4.156000pt;}
.y3_c00020{bottom:4.160000pt;}
.y5_c00020{bottom:22.396000pt;}
.y4_c00020{bottom:29.156000pt;}
.y1_c00020{bottom:51.552000pt;}
.y25_c00020{bottom:111.072000pt;}
.y24_c00020{bottom:138.626667pt;}
.y23_c00020{bottom:166.146667pt;}
.y22_c00020{bottom:193.666667pt;}
.y21_c00020{bottom:221.186667pt;}
.y20_c00020{bottom:249.053333pt;}
.y1f_c00020{bottom:276.573333pt;}
.y1e_c00020{bottom:304.093333pt;}
.y1d_c00020{bottom:331.613333pt;}
.y1c_c00020{bottom:367.493333pt;}
.y1b_c00020{bottom:395.013333pt;}
.y1a_c00020{bottom:422.533333pt;}
.y19_c00020{bottom:450.053333pt;}
.y18_c00020{bottom:477.920000pt;}
.y17_c00020{bottom:505.440000pt;}
.y16_c00020{bottom:532.960000pt;}
.y15_c00020{bottom:560.480000pt;}
.y14_c00020{bottom:588.346667pt;}
.y13_c00020{bottom:615.866667pt;}
.y12_c00020{bottom:643.386667pt;}
.y11_c00020{bottom:670.906667pt;}
.y10_c00020{bottom:698.786667pt;}
.yf_c00020{bottom:726.306667pt;}
.ye_c00020{bottom:753.826667pt;}
.yd_c00020{bottom:781.346667pt;}
.yc_c00020{bottom:809.213333pt;}
.yb_c00020{bottom:836.733333pt;}
.ya_c00020{bottom:864.253333pt;}
.y9_c00020{bottom:891.773333pt;}
.y8_c00020{bottom:919.653333pt;}
.y7_c00020{bottom:947.173333pt;}
.y2_c00020{bottom:989.413333pt;}
.h2_c00020{height:18.586667pt;}
.h3_c00020{height:36.796000pt;}
.h1_c00020{height:57.375000pt;}
.h4_c00020{height:62.812500pt;}
.h0_c00020{height:1056.000000pt;}
.w1_c00020{width:7.346667pt;}
.w2_c00020{width:589.640000pt;}
.w0_c00020{width:816.000000pt;}
.x0_c00020{left:0.000000pt;}
.x3_c00020{left:113.324000pt;}
.x1_c00020{left:137.346667pt;}
.x4_c00020{left:160.706667pt;}
.x2_c00020{left:695.613333pt;}
}





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

.ir_c00021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00021;src:url('chunks/assets/font_1d2e80780505eec9e60e591d.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_60515cddcb89ed14089d729a.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_d51f4181112f97fda71d6f65.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_036841d80a0eff06d86e7751.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;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_c00021;src:url('chunks/assets/font_f2bde8521937d58a5d738478.woff2')format("woff");}.ff5_c00021{font-family:ff5_c00021;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls2_c00021{letter-spacing:0.000000px;}
.ls1_c00021{letter-spacing:0.288000px;}
.ls3_c00021{letter-spacing:0.720000px;}
.ls0_c00021{letter-spacing:1.440000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:-18.000000px;}
.ws1_c00021{word-spacing:0.000000px;}
._2_c00021{margin-left:-2.736000px;}
._0_c00021{margin-left:-1.296000px;}
._1_c00021{width:1.368000px;}
._3_c00021{width:2.807976px;}
._5_c00021{width:4.392000px;}
._4_c00021{width:5.832000px;}
._b_c00021{width:7.272000px;}
._a_c00021{width:9.000000px;}
._c_c00021{width:10.128072px;}
._d_c00021{width:11.880000px;}
._9_c00021{width:13.115952px;}
._7_c00021{width:14.256024px;}
._8_c00021{width:15.479952px;}
._6_c00021{width:16.560000px;}
._e_c00021{width:22.896000px;}
._f_c00021{width:24.444000px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs0_c00021{font-size:72.000000px;}
.y0_c00021{bottom:0.000000px;}
.y6_c00021{bottom:4.675500px;}
.y3_c00021{bottom:4.680000px;}
.y5_c00021{bottom:25.195500px;}
.y4_c00021{bottom:32.800500px;}
.y1_c00021{bottom:57.996000px;}
.y24_c00021{bottom:128.916000px;}
.y23_c00021{bottom:159.915000px;}
.y22_c00021{bottom:199.875000px;}
.y21_c00021{bottom:230.835000px;}
.y20_c00021{bottom:262.155000px;}
.y1f_c00021{bottom:293.145000px;}
.y1e_c00021{bottom:324.105000px;}
.y1d_c00021{bottom:364.065000px;}
.y1c_c00021{bottom:395.430000px;}
.y1b_c00021{bottom:426.390000px;}
.y1a_c00021{bottom:457.350000px;}
.y19_c00021{bottom:488.310000px;}
.y18_c00021{bottom:519.660000px;}
.y17_c00021{bottom:550.620000px;}
.y16_c00021{bottom:581.580000px;}
.y15_c00021{bottom:612.540000px;}
.y14_c00021{bottom:643.890000px;}
.y13_c00021{bottom:674.850000px;}
.y12_c00021{bottom:705.810000px;}
.y11_c00021{bottom:736.770000px;}
.y10_c00021{bottom:768.135000px;}
.yf_c00021{bottom:799.095000px;}
.ye_c00021{bottom:839.055000px;}
.yd_c00021{bottom:870.015000px;}
.yc_c00021{bottom:901.365000px;}
.yb_c00021{bottom:932.325000px;}
.ya_c00021{bottom:963.285000px;}
.y9_c00021{bottom:994.245000px;}
.y8_c00021{bottom:1025.610000px;}
.y7_c00021{bottom:1065.570000px;}
.y2_c00021{bottom:1113.090000px;}
.h2_c00021{height:20.910000px;}
.h3_c00021{height:41.395500px;}
.h1_c00021{height:64.546875px;}
.h4_c00021{height:70.664062px;}
.h0_c00021{height:1188.000000px;}
.w1_c00021{width:8.265000px;}
.w2_c00021{width:663.345000px;}
.w0_c00021{width:918.000000px;}
.x0_c00021{left:0.000000px;}
.x3_c00021{left:127.489500px;}
.x1_c00021{left:154.515000px;}
.x4_c00021{left:180.795000px;}
.x2_c00021{left:782.565000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls2_c00021{letter-spacing:0.000000pt;}
.ls1_c00021{letter-spacing:0.256000pt;}
.ls3_c00021{letter-spacing:0.640000pt;}
.ls0_c00021{letter-spacing:1.280000pt;}
.ws0_c00021{word-spacing:-16.000000pt;}
.ws1_c00021{word-spacing:0.000000pt;}
._2_c00021{margin-left:-2.432000pt;}
._0_c00021{margin-left:-1.152000pt;}
._1_c00021{width:1.216000pt;}
._3_c00021{width:2.495979pt;}
._5_c00021{width:3.904000pt;}
._4_c00021{width:5.184000pt;}
._b_c00021{width:6.464000pt;}
._a_c00021{width:8.000000pt;}
._c_c00021{width:9.002731pt;}
._d_c00021{width:10.560000pt;}
._9_c00021{width:11.658624pt;}
._7_c00021{width:12.672021pt;}
._8_c00021{width:13.759957pt;}
._6_c00021{width:14.720000pt;}
._e_c00021{width:20.352000pt;}
._f_c00021{width:21.728000pt;}
.fs0_c00021{font-size:64.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y6_c00021{bottom:4.156000pt;}
.y3_c00021{bottom:4.160000pt;}
.y5_c00021{bottom:22.396000pt;}
.y4_c00021{bottom:29.156000pt;}
.y1_c00021{bottom:51.552000pt;}
.y24_c00021{bottom:114.592000pt;}
.y23_c00021{bottom:142.146667pt;}
.y22_c00021{bottom:177.666667pt;}
.y21_c00021{bottom:205.186667pt;}
.y20_c00021{bottom:233.026667pt;}
.y1f_c00021{bottom:260.573333pt;}
.y1e_c00021{bottom:288.093333pt;}
.y1d_c00021{bottom:323.613333pt;}
.y1c_c00021{bottom:351.493333pt;}
.y1b_c00021{bottom:379.013333pt;}
.y1a_c00021{bottom:406.533333pt;}
.y19_c00021{bottom:434.053333pt;}
.y18_c00021{bottom:461.920000pt;}
.y17_c00021{bottom:489.440000pt;}
.y16_c00021{bottom:516.960000pt;}
.y15_c00021{bottom:544.480000pt;}
.y14_c00021{bottom:572.346667pt;}
.y13_c00021{bottom:599.866667pt;}
.y12_c00021{bottom:627.386667pt;}
.y11_c00021{bottom:654.906667pt;}
.y10_c00021{bottom:682.786667pt;}
.yf_c00021{bottom:710.306667pt;}
.ye_c00021{bottom:745.826667pt;}
.yd_c00021{bottom:773.346667pt;}
.yc_c00021{bottom:801.213333pt;}
.yb_c00021{bottom:828.733333pt;}
.ya_c00021{bottom:856.253333pt;}
.y9_c00021{bottom:883.773333pt;}
.y8_c00021{bottom:911.653333pt;}
.y7_c00021{bottom:947.173333pt;}
.y2_c00021{bottom:989.413333pt;}
.h2_c00021{height:18.586667pt;}
.h3_c00021{height:36.796000pt;}
.h1_c00021{height:57.375000pt;}
.h4_c00021{height:62.812500pt;}
.h0_c00021{height:1056.000000pt;}
.w1_c00021{width:7.346667pt;}
.w2_c00021{width:589.640000pt;}
.w0_c00021{width:816.000000pt;}
.x0_c00021{left:0.000000pt;}
.x3_c00021{left:113.324000pt;}
.x1_c00021{left:137.346667pt;}
.x4_c00021{left:160.706667pt;}
.x2_c00021{left:695.613333pt;}
}





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

.ir_c00022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00022;src:url('chunks/assets/font_b31f79f31a118f13bd4bec70.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_ecd6afc41e42eb935d7cb685.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_61ae150633d191c7fb63f808.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;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_c00022;src:url('chunks/assets/font_f2bde8521937d58a5d738478.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00022;src:url('chunks/assets/font_051e760388a21fe5c01747db.woff2')format("woff");}.ff5_c00022{font-family:ff5_c00022;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls2_c00022{letter-spacing:0.000000px;}
.ls0_c00022{letter-spacing:0.120000px;}
.ls1_c00022{letter-spacing:0.288000px;}
.ls3_c00022{letter-spacing:0.720000px;}
.ls4_c00022{letter-spacing:1.152000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:-18.000000px;}
.ws1_c00022{word-spacing:0.000000px;}
._1_c00022{margin-left:-2.736000px;}
._3_c00022{margin-left:-1.296000px;}
._0_c00022{width:1.080000px;}
._2_c00022{width:2.088000px;}
._4_c00022{width:3.816000px;}
._b_c00022{width:5.040000px;}
._13_c00022{width:6.120000px;}
._d_c00022{width:9.288000px;}
._c_c00022{width:10.800000px;}
._5_c00022{width:12.240000px;}
._a_c00022{width:13.440000px;}
._6_c00022{width:14.592000px;}
._7_c00022{width:16.560000px;}
._9_c00022{width:19.080000px;}
._8_c00022{width:21.096000px;}
._e_c00022{width:22.536000px;}
._12_c00022{width:28.008000px;}
._11_c00022{width:29.316024px;}
._10_c00022{width:34.440000px;}
._f_c00022{width:35.832000px;}
._14_c00022{width:168.636024px;}
.fc0_c00022{color:rgb(0,0,0);}
.fs0_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y6_c00022{bottom:4.675500px;}
.y3_c00022{bottom:4.680000px;}
.y5_c00022{bottom:25.195500px;}
.y4_c00022{bottom:32.800500px;}
.y1_c00022{bottom:57.996000px;}
.y24_c00022{bottom:137.916000px;}
.y23_c00022{bottom:168.915000px;}
.y22_c00022{bottom:199.875000px;}
.y21_c00022{bottom:239.835000px;}
.y20_c00022{bottom:271.155000px;}
.y1f_c00022{bottom:302.145000px;}
.y1e_c00022{bottom:333.105000px;}
.y1d_c00022{bottom:364.065000px;}
.y1c_c00022{bottom:395.430000px;}
.y1b_c00022{bottom:426.390000px;}
.y1a_c00022{bottom:457.350000px;}
.y19_c00022{bottom:488.310000px;}
.y18_c00022{bottom:519.660000px;}
.y17_c00022{bottom:550.620000px;}
.y16_c00022{bottom:581.580000px;}
.y15_c00022{bottom:621.540000px;}
.y14_c00022{bottom:652.890000px;}
.y13_c00022{bottom:683.850000px;}
.y12_c00022{bottom:723.810000px;}
.y11_c00022{bottom:754.770000px;}
.y10_c00022{bottom:786.135000px;}
.yf_c00022{bottom:817.095000px;}
.ye_c00022{bottom:848.055000px;}
.yd_c00022{bottom:879.015000px;}
.yc_c00022{bottom:910.365000px;}
.yb_c00022{bottom:941.325000px;}
.ya_c00022{bottom:972.285000px;}
.y9_c00022{bottom:1003.245000px;}
.y8_c00022{bottom:1034.610000px;}
.y7_c00022{bottom:1065.570000px;}
.y2_c00022{bottom:1113.090000px;}
.h2_c00022{height:20.910000px;}
.h3_c00022{height:41.395500px;}
.h1_c00022{height:64.546875px;}
.h4_c00022{height:70.664062px;}
.h0_c00022{height:1188.000000px;}
.w1_c00022{width:8.265000px;}
.w2_c00022{width:663.345000px;}
.w0_c00022{width:918.000000px;}
.x0_c00022{left:0.000000px;}
.x3_c00022{left:127.489500px;}
.x1_c00022{left:154.515000px;}
.x4_c00022{left:180.795000px;}
.x2_c00022{left:782.565000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls2_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:0.106667pt;}
.ls1_c00022{letter-spacing:0.256000pt;}
.ls3_c00022{letter-spacing:0.640000pt;}
.ls4_c00022{letter-spacing:1.024000pt;}
.ws0_c00022{word-spacing:-16.000000pt;}
.ws1_c00022{word-spacing:0.000000pt;}
._1_c00022{margin-left:-2.432000pt;}
._3_c00022{margin-left:-1.152000pt;}
._0_c00022{width:0.960000pt;}
._2_c00022{width:1.856000pt;}
._4_c00022{width:3.392000pt;}
._b_c00022{width:4.480000pt;}
._13_c00022{width:5.440000pt;}
._d_c00022{width:8.256000pt;}
._c_c00022{width:9.600000pt;}
._5_c00022{width:10.880000pt;}
._a_c00022{width:11.946667pt;}
._6_c00022{width:12.970667pt;}
._7_c00022{width:14.720000pt;}
._9_c00022{width:16.960000pt;}
._8_c00022{width:18.752000pt;}
._e_c00022{width:20.032000pt;}
._12_c00022{width:24.896000pt;}
._11_c00022{width:26.058688pt;}
._10_c00022{width:30.613333pt;}
._f_c00022{width:31.850667pt;}
._14_c00022{width:149.898688pt;}
.fs0_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y6_c00022{bottom:4.156000pt;}
.y3_c00022{bottom:4.160000pt;}
.y5_c00022{bottom:22.396000pt;}
.y4_c00022{bottom:29.156000pt;}
.y1_c00022{bottom:51.552000pt;}
.y24_c00022{bottom:122.592000pt;}
.y23_c00022{bottom:150.146667pt;}
.y22_c00022{bottom:177.666667pt;}
.y21_c00022{bottom:213.186667pt;}
.y20_c00022{bottom:241.026667pt;}
.y1f_c00022{bottom:268.573333pt;}
.y1e_c00022{bottom:296.093333pt;}
.y1d_c00022{bottom:323.613333pt;}
.y1c_c00022{bottom:351.493333pt;}
.y1b_c00022{bottom:379.013333pt;}
.y1a_c00022{bottom:406.533333pt;}
.y19_c00022{bottom:434.053333pt;}
.y18_c00022{bottom:461.920000pt;}
.y17_c00022{bottom:489.440000pt;}
.y16_c00022{bottom:516.960000pt;}
.y15_c00022{bottom:552.480000pt;}
.y14_c00022{bottom:580.346667pt;}
.y13_c00022{bottom:607.866667pt;}
.y12_c00022{bottom:643.386667pt;}
.y11_c00022{bottom:670.906667pt;}
.y10_c00022{bottom:698.786667pt;}
.yf_c00022{bottom:726.306667pt;}
.ye_c00022{bottom:753.826667pt;}
.yd_c00022{bottom:781.346667pt;}
.yc_c00022{bottom:809.213333pt;}
.yb_c00022{bottom:836.733333pt;}
.ya_c00022{bottom:864.253333pt;}
.y9_c00022{bottom:891.773333pt;}
.y8_c00022{bottom:919.653333pt;}
.y7_c00022{bottom:947.173333pt;}
.y2_c00022{bottom:989.413333pt;}
.h2_c00022{height:18.586667pt;}
.h3_c00022{height:36.796000pt;}
.h1_c00022{height:57.375000pt;}
.h4_c00022{height:62.812500pt;}
.h0_c00022{height:1056.000000pt;}
.w1_c00022{width:7.346667pt;}
.w2_c00022{width:589.640000pt;}
.w0_c00022{width:816.000000pt;}
.x0_c00022{left:0.000000pt;}
.x3_c00022{left:113.324000pt;}
.x1_c00022{left:137.346667pt;}
.x4_c00022{left:160.706667pt;}
.x2_c00022{left:695.613333pt;}
}





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

.ir_c00023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00023;src:url('chunks/assets/font_8d3c8bbb4daacd6acb1a3a4b.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_048e3229eda758515e3ca49e.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_ac72a93ea71f14f3a706d867.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;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_c00023;src:url('chunks/assets/font_e2a324f748135332850c4b36.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls1_c00023{letter-spacing:0.000000px;}
.ls2_c00023{letter-spacing:0.720000px;}
.ls0_c00023{letter-spacing:1.440000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:-18.000000px;}
.ws1_c00023{word-spacing:0.000000px;}
._5_c00023{margin-left:-2.880000px;}
._1_c00023{margin-left:-1.512000px;}
._2_c00023{width:1.512000px;}
._6_c00023{width:2.808000px;}
._7_c00023{width:3.875976px;}
._9_c00023{width:5.256000px;}
._3_c00023{width:6.984000px;}
._0_c00023{width:8.136000px;}
._4_c00023{width:9.504000px;}
._c_c00023{width:14.400000px;}
._a_c00023{width:16.560000px;}
._b_c00023{width:19.080000px;}
._8_c00023{width:21.960000px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs0_c00023{font-size:72.000000px;}
.y0_c00023{bottom:0.000000px;}
.y6_c00023{bottom:4.675500px;}
.y3_c00023{bottom:4.680000px;}
.y5_c00023{bottom:25.195500px;}
.y4_c00023{bottom:32.800500px;}
.y1_c00023{bottom:57.996000px;}
.y1c_c00023{bottom:360.465000px;}
.y1b_c00023{bottom:400.830000px;}
.y1a_c00023{bottom:440.790000px;}
.y19_c00023{bottom:480.750000px;}
.y18_c00023{bottom:520.740000px;}
.y17_c00023{bottom:550.620000px;}
.y16_c00023{bottom:590.580000px;}
.y15_c00023{bottom:621.540000px;}
.y14_c00023{bottom:652.890000px;}
.y13_c00023{bottom:683.850000px;}
.y12_c00023{bottom:714.810000px;}
.y11_c00023{bottom:754.770000px;}
.y10_c00023{bottom:786.135000px;}
.yf_c00023{bottom:817.095000px;}
.ye_c00023{bottom:848.055000px;}
.yd_c00023{bottom:879.015000px;}
.yc_c00023{bottom:910.365000px;}
.yb_c00023{bottom:941.325000px;}
.ya_c00023{bottom:972.285000px;}
.y9_c00023{bottom:1003.245000px;}
.y8_c00023{bottom:1034.610000px;}
.y7_c00023{bottom:1065.570000px;}
.y2_c00023{bottom:1113.090000px;}
.h2_c00023{height:20.910000px;}
.h3_c00023{height:41.395500px;}
.h1_c00023{height:64.546875px;}
.h4_c00023{height:70.664062px;}
.h0_c00023{height:1188.000000px;}
.w1_c00023{width:8.265000px;}
.w2_c00023{width:663.345000px;}
.w0_c00023{width:918.000000px;}
.x0_c00023{left:0.000000px;}
.x3_c00023{left:127.489500px;}
.x1_c00023{left:154.515000px;}
.x4_c00023{left:180.795000px;}
.x2_c00023{left:782.565000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls1_c00023{letter-spacing:0.000000pt;}
.ls2_c00023{letter-spacing:0.640000pt;}
.ls0_c00023{letter-spacing:1.280000pt;}
.ws0_c00023{word-spacing:-16.000000pt;}
.ws1_c00023{word-spacing:0.000000pt;}
._5_c00023{margin-left:-2.560000pt;}
._1_c00023{margin-left:-1.344000pt;}
._2_c00023{width:1.344000pt;}
._6_c00023{width:2.496000pt;}
._7_c00023{width:3.445312pt;}
._9_c00023{width:4.672000pt;}
._3_c00023{width:6.208000pt;}
._0_c00023{width:7.232000pt;}
._4_c00023{width:8.448000pt;}
._c_c00023{width:12.800000pt;}
._a_c00023{width:14.720000pt;}
._b_c00023{width:16.960000pt;}
._8_c00023{width:19.520000pt;}
.fs0_c00023{font-size:64.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y6_c00023{bottom:4.156000pt;}
.y3_c00023{bottom:4.160000pt;}
.y5_c00023{bottom:22.396000pt;}
.y4_c00023{bottom:29.156000pt;}
.y1_c00023{bottom:51.552000pt;}
.y1c_c00023{bottom:320.413333pt;}
.y1b_c00023{bottom:356.293333pt;}
.y1a_c00023{bottom:391.813333pt;}
.y19_c00023{bottom:427.333333pt;}
.y18_c00023{bottom:462.880000pt;}
.y17_c00023{bottom:489.440000pt;}
.y16_c00023{bottom:524.960000pt;}
.y15_c00023{bottom:552.480000pt;}
.y14_c00023{bottom:580.346667pt;}
.y13_c00023{bottom:607.866667pt;}
.y12_c00023{bottom:635.386667pt;}
.y11_c00023{bottom:670.906667pt;}
.y10_c00023{bottom:698.786667pt;}
.yf_c00023{bottom:726.306667pt;}
.ye_c00023{bottom:753.826667pt;}
.yd_c00023{bottom:781.346667pt;}
.yc_c00023{bottom:809.213333pt;}
.yb_c00023{bottom:836.733333pt;}
.ya_c00023{bottom:864.253333pt;}
.y9_c00023{bottom:891.773333pt;}
.y8_c00023{bottom:919.653333pt;}
.y7_c00023{bottom:947.173333pt;}
.y2_c00023{bottom:989.413333pt;}
.h2_c00023{height:18.586667pt;}
.h3_c00023{height:36.796000pt;}
.h1_c00023{height:57.375000pt;}
.h4_c00023{height:62.812500pt;}
.h0_c00023{height:1056.000000pt;}
.w1_c00023{width:7.346667pt;}
.w2_c00023{width:589.640000pt;}
.w0_c00023{width:816.000000pt;}
.x0_c00023{left:0.000000pt;}
.x3_c00023{left:113.324000pt;}
.x1_c00023{left:137.346667pt;}
.x4_c00023{left:160.706667pt;}
.x2_c00023{left:695.613333pt;}
}





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

.ir_c00024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00024;src:url('chunks/assets/font_a093c40a72c665f644cd8a59.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_e75302c6851ea4e489bdfc75.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00024{word-spacing:0.000000px;}
._1_c00024{margin-left:-4.341600px;}
._0_c00024{margin-left:-1.350624px;}
.fc0_c00024{color:rgb(0,0,0);}
.fs0_c00024{font-size:72.000000px;}
.fs1_c00024{font-size:96.480000px;}
.y0_c00024{bottom:0.000000px;}
.y25_c00024{bottom:131.796000px;}
.y24_c00024{bottom:152.715000px;}
.y23_c00024{bottom:173.235000px;}
.y22_c00024{bottom:194.115000px;}
.y21_c00024{bottom:214.635000px;}
.y20_c00024{bottom:235.515000px;}
.y1f_c00024{bottom:256.035000px;}
.y1e_c00024{bottom:276.945000px;}
.y1d_c00024{bottom:297.465000px;}
.y1c_c00024{bottom:318.345000px;}
.y1b_c00024{bottom:338.865000px;}
.y1a_c00024{bottom:359.745000px;}
.y19_c00024{bottom:380.265000px;}
.y18_c00024{bottom:401.190000px;}
.y17_c00024{bottom:421.710000px;}
.y16_c00024{bottom:442.590000px;}
.y15_c00024{bottom:463.110000px;}
.y14_c00024{bottom:483.990000px;}
.y13_c00024{bottom:504.510000px;}
.y12_c00024{bottom:525.420000px;}
.y11_c00024{bottom:545.940000px;}
.y10_c00024{bottom:566.820000px;}
.yf_c00024{bottom:587.340000px;}
.ye_c00024{bottom:622.980000px;}
.yd_c00024{bottom:676.650000px;}
.yc_c00024{bottom:721.290000px;}
.yb_c00024{bottom:741.810000px;}
.ya_c00024{bottom:762.735000px;}
.y9_c00024{bottom:783.255000px;}
.y8_c00024{bottom:804.135000px;}
.y7_c00024{bottom:824.655000px;}
.y6_c00024{bottom:859.935000px;}
.y5_c00024{bottom:909.285000px;}
.y4_c00024{bottom:958.245000px;}
.y3_c00024{bottom:1007.205000px;}
.y2_c00024{bottom:1056.570000px;}
.y1_c00024{bottom:1117.770000px;}
.h1_c00024{height:64.898438px;}
.h3_c00024{height:70.664062px;}
.h2_c00024{height:72.562500px;}
.h4_c00024{height:97.233750px;}
.h0_c00024{height:1188.000000px;}
.w0_c00024{width:918.000000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:127.476000px;}
.x3_c00024{left:395.430000px;}
.x2_c00024{left:458.820000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.000000pt;}
._1_c00024{margin-left:-3.859200pt;}
._0_c00024{margin-left:-1.200554pt;}
.fs0_c00024{font-size:64.000000pt;}
.fs1_c00024{font-size:85.760000pt;}
.y0_c00024{bottom:0.000000pt;}
.y25_c00024{bottom:117.152000pt;}
.y24_c00024{bottom:135.746667pt;}
.y23_c00024{bottom:153.986667pt;}
.y22_c00024{bottom:172.546667pt;}
.y21_c00024{bottom:190.786667pt;}
.y20_c00024{bottom:209.346667pt;}
.y1f_c00024{bottom:227.586667pt;}
.y1e_c00024{bottom:246.173333pt;}
.y1d_c00024{bottom:264.413333pt;}
.y1c_c00024{bottom:282.973333pt;}
.y1b_c00024{bottom:301.213333pt;}
.y1a_c00024{bottom:319.773333pt;}
.y19_c00024{bottom:338.013333pt;}
.y18_c00024{bottom:356.613333pt;}
.y17_c00024{bottom:374.853333pt;}
.y16_c00024{bottom:393.413333pt;}
.y15_c00024{bottom:411.653333pt;}
.y14_c00024{bottom:430.213333pt;}
.y13_c00024{bottom:448.453333pt;}
.y12_c00024{bottom:467.040000pt;}
.y11_c00024{bottom:485.280000pt;}
.y10_c00024{bottom:503.840000pt;}
.yf_c00024{bottom:522.080000pt;}
.ye_c00024{bottom:553.760000pt;}
.yd_c00024{bottom:601.466667pt;}
.yc_c00024{bottom:641.146667pt;}
.yb_c00024{bottom:659.386667pt;}
.ya_c00024{bottom:677.986667pt;}
.y9_c00024{bottom:696.226667pt;}
.y8_c00024{bottom:714.786667pt;}
.y7_c00024{bottom:733.026667pt;}
.y6_c00024{bottom:764.386667pt;}
.y5_c00024{bottom:808.253333pt;}
.y4_c00024{bottom:851.773333pt;}
.y3_c00024{bottom:895.293333pt;}
.y2_c00024{bottom:939.173333pt;}
.y1_c00024{bottom:993.573333pt;}
.h1_c00024{height:57.687500pt;}
.h3_c00024{height:62.812500pt;}
.h2_c00024{height:64.500000pt;}
.h4_c00024{height:86.430000pt;}
.h0_c00024{height:1056.000000pt;}
.w0_c00024{width:816.000000pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:113.312000pt;}
.x3_c00024{left:351.493333pt;}
.x2_c00024{left:407.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_c00025 {
    display:none;
  }
  .loading-indicator_c00025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00025 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00025 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00025" -> "#page-container .classname_c00025")
 */
.pf_c00025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00025 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00025 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00025 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00025 {overflow:visible;}
  }
}
.c_c00025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00025 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00025:after { /* webkit #35443 */
  content: '';
}
.t_c00025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00025 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00025 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00025 { /* info for Javascript */
  display:none;
}
.l_c00025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00025;src:url('chunks/assets/font_b82a92439b7769f7c9d2fe15.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_e75302c6851ea4e489bdfc75.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_b63c6b8c3c38ec5f57a66f45.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_77028316566d42400aa5e036.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;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_c00025;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00025;src:url('chunks/assets/font_9ae7ab9acb3421324d0df967.woff2')format("woff");}.ff6_c00025{font-family:ff6_c00025;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls1_c00025{letter-spacing:-0.648000px;}
.ls0_c00025{letter-spacing:0.000000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:-18.000000px;}
.ws1_c00025{word-spacing:0.000000px;}
._3_c00025{margin-left:-3.240000px;}
._5_c00025{margin-left:-2.232000px;}
._0_c00025{margin-left:-1.152000px;}
._2_c00025{width:1.584000px;}
._4_c00025{width:3.240000px;}
._1_c00025{width:4.968000px;}
._6_c00025{width:6.420024px;}
._a_c00025{width:7.464096px;}
._9_c00025{width:8.483976px;}
._f_c00025{width:9.792000px;}
._10_c00025{width:11.676024px;}
._11_c00025{width:12.816000px;}
._c_c00025{width:14.832000px;}
._b_c00025{width:15.984000px;}
._8_c00025{width:16.992000px;}
._7_c00025{width:20.232000px;}
._e_c00025{width:21.672000px;}
._d_c00025{width:23.112000px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs0_c00025{font-size:72.000000px;}
.y0_c00025{bottom:0.000000px;}
.y6_c00025{bottom:4.675500px;}
.y3_c00025{bottom:4.680000px;}
.y5_c00025{bottom:25.195500px;}
.y4_c00025{bottom:32.800500px;}
.y1_c00025{bottom:57.996000px;}
.y24_c00025{bottom:125.676000px;}
.y23_c00025{bottom:156.675000px;}
.y22_c00025{bottom:187.635000px;}
.y21_c00025{bottom:218.955000px;}
.y20_c00025{bottom:249.915000px;}
.y1f_c00025{bottom:280.905000px;}
.y1e_c00025{bottom:320.865000px;}
.y1d_c00025{bottom:352.185000px;}
.y1c_c00025{bottom:383.145000px;}
.y1b_c00025{bottom:414.150000px;}
.y1a_c00025{bottom:445.110000px;}
.y19_c00025{bottom:476.430000px;}
.y18_c00025{bottom:507.390000px;}
.y17_c00025{bottom:538.380000px;}
.y16_c00025{bottom:569.340000px;}
.y15_c00025{bottom:600.660000px;}
.y14_c00025{bottom:631.620000px;}
.y13_c00025{bottom:662.610000px;}
.y12_c00025{bottom:693.570000px;}
.y11_c00025{bottom:733.890000px;}
.y10_c00025{bottom:764.895000px;}
.yf_c00025{bottom:795.855000px;}
.ye_c00025{bottom:826.815000px;}
.yd_c00025{bottom:858.135000px;}
.yc_c00025{bottom:889.125000px;}
.yb_c00025{bottom:920.085000px;}
.ya_c00025{bottom:951.045000px;}
.y9_c00025{bottom:980.925000px;}
.y8_c00025{bottom:1016.250000px;}
.y7_c00025{bottom:1065.570000px;}
.y2_c00025{bottom:1113.090000px;}
.h2_c00025{height:20.910000px;}
.h3_c00025{height:41.395500px;}
.h1_c00025{height:64.546875px;}
.h5_c00025{height:70.664062px;}
.h4_c00025{height:72.562500px;}
.h0_c00025{height:1188.000000px;}
.w1_c00025{width:8.265000px;}
.w2_c00025{width:663.345000px;}
.w0_c00025{width:918.000000px;}
.x0_c00025{left:0.000000px;}
.x3_c00025{left:127.489500px;}
.x1_c00025{left:154.515000px;}
.x5_c00025{left:178.635000px;}
.x4_c00025{left:410.910000px;}
.x2_c00025{left:782.565000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls1_c00025{letter-spacing:-0.576000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:-16.000000pt;}
.ws1_c00025{word-spacing:0.000000pt;}
._3_c00025{margin-left:-2.880000pt;}
._5_c00025{margin-left:-1.984000pt;}
._0_c00025{margin-left:-1.024000pt;}
._2_c00025{width:1.408000pt;}
._4_c00025{width:2.880000pt;}
._1_c00025{width:4.416000pt;}
._6_c00025{width:5.706688pt;}
._a_c00025{width:6.634752pt;}
._9_c00025{width:7.541312pt;}
._f_c00025{width:8.704000pt;}
._10_c00025{width:10.378688pt;}
._11_c00025{width:11.392000pt;}
._c_c00025{width:13.184000pt;}
._b_c00025{width:14.208000pt;}
._8_c00025{width:15.104000pt;}
._7_c00025{width:17.984000pt;}
._e_c00025{width:19.264000pt;}
._d_c00025{width:20.544000pt;}
.fs0_c00025{font-size:64.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y6_c00025{bottom:4.156000pt;}
.y3_c00025{bottom:4.160000pt;}
.y5_c00025{bottom:22.396000pt;}
.y4_c00025{bottom:29.156000pt;}
.y1_c00025{bottom:51.552000pt;}
.y24_c00025{bottom:111.712000pt;}
.y23_c00025{bottom:139.266667pt;}
.y22_c00025{bottom:166.786667pt;}
.y21_c00025{bottom:194.626667pt;}
.y20_c00025{bottom:222.146667pt;}
.y1f_c00025{bottom:249.693333pt;}
.y1e_c00025{bottom:285.213333pt;}
.y1d_c00025{bottom:313.053333pt;}
.y1c_c00025{bottom:340.573333pt;}
.y1b_c00025{bottom:368.133333pt;}
.y1a_c00025{bottom:395.653333pt;}
.y19_c00025{bottom:423.493333pt;}
.y18_c00025{bottom:451.013333pt;}
.y17_c00025{bottom:478.560000pt;}
.y16_c00025{bottom:506.080000pt;}
.y15_c00025{bottom:533.920000pt;}
.y14_c00025{bottom:561.440000pt;}
.y13_c00025{bottom:588.986667pt;}
.y12_c00025{bottom:616.506667pt;}
.y11_c00025{bottom:652.346667pt;}
.y10_c00025{bottom:679.906667pt;}
.yf_c00025{bottom:707.426667pt;}
.ye_c00025{bottom:734.946667pt;}
.yd_c00025{bottom:762.786667pt;}
.yc_c00025{bottom:790.333333pt;}
.yb_c00025{bottom:817.853333pt;}
.ya_c00025{bottom:845.373333pt;}
.y9_c00025{bottom:871.933333pt;}
.y8_c00025{bottom:903.333333pt;}
.y7_c00025{bottom:947.173333pt;}
.y2_c00025{bottom:989.413333pt;}
.h2_c00025{height:18.586667pt;}
.h3_c00025{height:36.796000pt;}
.h1_c00025{height:57.375000pt;}
.h5_c00025{height:62.812500pt;}
.h4_c00025{height:64.500000pt;}
.h0_c00025{height:1056.000000pt;}
.w1_c00025{width:7.346667pt;}
.w2_c00025{width:589.640000pt;}
.w0_c00025{width:816.000000pt;}
.x0_c00025{left:0.000000pt;}
.x3_c00025{left:113.324000pt;}
.x1_c00025{left:137.346667pt;}
.x5_c00025{left:158.786667pt;}
.x4_c00025{left:365.253333pt;}
.x2_c00025{left:695.613333pt;}
}





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

.ir_c00026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00026;src:url('chunks/assets/font_5d95430668fc8f854c24c60d.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_580f3756436e217efb609efd.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_b0896bd85508cd193896e5f1.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;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_c00026;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls8_c00026{letter-spacing:-0.648000px;}
.ls9_c00026{letter-spacing:-0.288000px;}
.ls6_c00026{letter-spacing:0.000000px;}
.ls4_c00026{letter-spacing:0.144000px;}
.ls3_c00026{letter-spacing:0.504000px;}
.ls0_c00026{letter-spacing:0.720000px;}
.ls7_c00026{letter-spacing:1.152000px;}
.ls5_c00026{letter-spacing:1.440000px;}
.ls1_c00026{letter-spacing:7.920000px;}
.ls2_c00026{letter-spacing:32.400000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00026{word-spacing:-19.152000px;}
.ws0_c00026{word-spacing:-18.000000px;}
.ws2_c00026{word-spacing:-17.712000px;}
.ws3_c00026{word-spacing:0.000000px;}
._0_c00026{margin-left:-2.736000px;}
._2_c00026{margin-left:-1.152000px;}
._1_c00026{width:1.512000px;}
._3_c00026{width:2.952000px;}
._7_c00026{width:4.680000px;}
._a_c00026{width:5.700000px;}
._4_c00026{width:7.632000px;}
._5_c00026{width:8.640000px;}
._6_c00026{width:10.008000px;}
._8_c00026{width:11.676000px;}
._9_c00026{width:12.864000px;}
._11_c00026{width:13.884000px;}
._e_c00026{width:16.488000px;}
._d_c00026{width:19.224000px;}
._b_c00026{width:29.232000px;}
._c_c00026{width:30.600000px;}
._10_c00026{width:31.968000px;}
._f_c00026{width:33.324000px;}
.fc0_c00026{color:rgb(0,0,0);}
.fs0_c00026{font-size:72.000000px;}
.y0_c00026{bottom:0.000000px;}
.y6_c00026{bottom:4.675500px;}
.y3_c00026{bottom:4.680000px;}
.y5_c00026{bottom:25.195500px;}
.y4_c00026{bottom:32.800500px;}
.y1_c00026{bottom:57.996000px;}
.y25_c00026{bottom:115.956000px;}
.y24_c00026{bottom:146.916000px;}
.y23_c00026{bottom:177.915000px;}
.y22_c00026{bottom:208.875000px;}
.y21_c00026{bottom:239.835000px;}
.y20_c00026{bottom:271.155000px;}
.y1f_c00026{bottom:302.145000px;}
.y1e_c00026{bottom:333.105000px;}
.y1d_c00026{bottom:364.065000px;}
.y1c_c00026{bottom:395.430000px;}
.y1b_c00026{bottom:426.390000px;}
.y1a_c00026{bottom:457.350000px;}
.y19_c00026{bottom:488.310000px;}
.y18_c00026{bottom:519.660000px;}
.y17_c00026{bottom:550.620000px;}
.y16_c00026{bottom:581.580000px;}
.y15_c00026{bottom:612.540000px;}
.y14_c00026{bottom:652.890000px;}
.y13_c00026{bottom:683.850000px;}
.y12_c00026{bottom:714.810000px;}
.y11_c00026{bottom:745.770000px;}
.y10_c00026{bottom:777.135000px;}
.yf_c00026{bottom:808.095000px;}
.ye_c00026{bottom:839.055000px;}
.yd_c00026{bottom:870.015000px;}
.yc_c00026{bottom:901.365000px;}
.yb_c00026{bottom:932.325000px;}
.ya_c00026{bottom:963.285000px;}
.y9_c00026{bottom:994.245000px;}
.y8_c00026{bottom:1025.610000px;}
.y7_c00026{bottom:1065.570000px;}
.y2_c00026{bottom:1113.090000px;}
.h2_c00026{height:20.910000px;}
.h3_c00026{height:41.395500px;}
.h1_c00026{height:64.546875px;}
.h4_c00026{height:70.664062px;}
.h0_c00026{height:1188.000000px;}
.w1_c00026{width:8.265000px;}
.w2_c00026{width:663.345000px;}
.w0_c00026{width:918.000000px;}
.x0_c00026{left:0.000000px;}
.x3_c00026{left:127.489500px;}
.x1_c00026{left:154.515000px;}
.x4_c00026{left:178.635000px;}
.x2_c00026{left:782.565000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls8_c00026{letter-spacing:-0.576000pt;}
.ls9_c00026{letter-spacing:-0.256000pt;}
.ls6_c00026{letter-spacing:0.000000pt;}
.ls4_c00026{letter-spacing:0.128000pt;}
.ls3_c00026{letter-spacing:0.448000pt;}
.ls0_c00026{letter-spacing:0.640000pt;}
.ls7_c00026{letter-spacing:1.024000pt;}
.ls5_c00026{letter-spacing:1.280000pt;}
.ls1_c00026{letter-spacing:7.040000pt;}
.ls2_c00026{letter-spacing:28.800000pt;}
.ws1_c00026{word-spacing:-17.024000pt;}
.ws0_c00026{word-spacing:-16.000000pt;}
.ws2_c00026{word-spacing:-15.744000pt;}
.ws3_c00026{word-spacing:0.000000pt;}
._0_c00026{margin-left:-2.432000pt;}
._2_c00026{margin-left:-1.024000pt;}
._1_c00026{width:1.344000pt;}
._3_c00026{width:2.624000pt;}
._7_c00026{width:4.160000pt;}
._a_c00026{width:5.066667pt;}
._4_c00026{width:6.784000pt;}
._5_c00026{width:7.680000pt;}
._6_c00026{width:8.896000pt;}
._8_c00026{width:10.378667pt;}
._9_c00026{width:11.434667pt;}
._11_c00026{width:12.341333pt;}
._e_c00026{width:14.656000pt;}
._d_c00026{width:17.088000pt;}
._b_c00026{width:25.984000pt;}
._c_c00026{width:27.200000pt;}
._10_c00026{width:28.416000pt;}
._f_c00026{width:29.621333pt;}
.fs0_c00026{font-size:64.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y6_c00026{bottom:4.156000pt;}
.y3_c00026{bottom:4.160000pt;}
.y5_c00026{bottom:22.396000pt;}
.y4_c00026{bottom:29.156000pt;}
.y1_c00026{bottom:51.552000pt;}
.y25_c00026{bottom:103.072000pt;}
.y24_c00026{bottom:130.592000pt;}
.y23_c00026{bottom:158.146667pt;}
.y22_c00026{bottom:185.666667pt;}
.y21_c00026{bottom:213.186667pt;}
.y20_c00026{bottom:241.026667pt;}
.y1f_c00026{bottom:268.573333pt;}
.y1e_c00026{bottom:296.093333pt;}
.y1d_c00026{bottom:323.613333pt;}
.y1c_c00026{bottom:351.493333pt;}
.y1b_c00026{bottom:379.013333pt;}
.y1a_c00026{bottom:406.533333pt;}
.y19_c00026{bottom:434.053333pt;}
.y18_c00026{bottom:461.920000pt;}
.y17_c00026{bottom:489.440000pt;}
.y16_c00026{bottom:516.960000pt;}
.y15_c00026{bottom:544.480000pt;}
.y14_c00026{bottom:580.346667pt;}
.y13_c00026{bottom:607.866667pt;}
.y12_c00026{bottom:635.386667pt;}
.y11_c00026{bottom:662.906667pt;}
.y10_c00026{bottom:690.786667pt;}
.yf_c00026{bottom:718.306667pt;}
.ye_c00026{bottom:745.826667pt;}
.yd_c00026{bottom:773.346667pt;}
.yc_c00026{bottom:801.213333pt;}
.yb_c00026{bottom:828.733333pt;}
.ya_c00026{bottom:856.253333pt;}
.y9_c00026{bottom:883.773333pt;}
.y8_c00026{bottom:911.653333pt;}
.y7_c00026{bottom:947.173333pt;}
.y2_c00026{bottom:989.413333pt;}
.h2_c00026{height:18.586667pt;}
.h3_c00026{height:36.796000pt;}
.h1_c00026{height:57.375000pt;}
.h4_c00026{height:62.812500pt;}
.h0_c00026{height:1056.000000pt;}
.w1_c00026{width:7.346667pt;}
.w2_c00026{width:589.640000pt;}
.w0_c00026{width:816.000000pt;}
.x0_c00026{left:0.000000pt;}
.x3_c00026{left:113.324000pt;}
.x1_c00026{left:137.346667pt;}
.x4_c00026{left:158.786667pt;}
.x2_c00026{left:695.613333pt;}
}





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

.ir_c00027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00027;src:url('chunks/assets/font_f5f19d1e357c8fe49cf546a4.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_23c4bdc0180b508eb0e6573f.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_054158f6631236e0ff5930d4.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;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_c00027;src:url('chunks/assets/font_b012848bea162f97f86b6b9c.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls2_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:2.160000px;}
.ls1_c00027{letter-spacing:10.800000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00027{word-spacing:-40.608000px;}
.ws0_c00027{word-spacing:-18.000000px;}
.ws2_c00027{word-spacing:0.000000px;}
._8_c00027{margin-left:-3.168000px;}
._1_c00027{margin-left:-1.800000px;}
._2_c00027{width:1.368000px;}
._4_c00027{width:2.952000px;}
._5_c00027{width:3.960000px;}
._a_c00027{width:5.040000px;}
._6_c00027{width:6.300000px;}
._11_c00027{width:7.403976px;}
._7_c00027{width:8.568000px;}
._9_c00027{width:9.864000px;}
._b_c00027{width:10.944000px;}
._12_c00027{width:12.264000px;}
._f_c00027{width:13.968000px;}
._10_c00027{width:15.624000px;}
._13_c00027{width:19.584000px;}
._14_c00027{width:20.772000px;}
._0_c00027{width:22.104000px;}
._3_c00027{width:24.048000px;}
._e_c00027{width:25.488000px;}
._c_c00027{width:46.800000px;}
._d_c00027{width:49.044024px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs0_c00027{font-size:72.000000px;}
.y0_c00027{bottom:0.000000px;}
.y6_c00027{bottom:4.675500px;}
.y3_c00027{bottom:4.680000px;}
.y5_c00027{bottom:25.195500px;}
.y4_c00027{bottom:32.800500px;}
.y1_c00027{bottom:57.996000px;}
.y24_c00027{bottom:137.916000px;}
.y23_c00027{bottom:177.915000px;}
.y22_c00027{bottom:208.875000px;}
.y21_c00027{bottom:239.835000px;}
.y20_c00027{bottom:271.155000px;}
.y1f_c00027{bottom:302.145000px;}
.y1e_c00027{bottom:333.105000px;}
.y1d_c00027{bottom:364.065000px;}
.y1c_c00027{bottom:395.430000px;}
.y1b_c00027{bottom:426.390000px;}
.y1a_c00027{bottom:457.350000px;}
.y19_c00027{bottom:488.310000px;}
.y18_c00027{bottom:519.660000px;}
.y17_c00027{bottom:550.620000px;}
.y16_c00027{bottom:581.580000px;}
.y15_c00027{bottom:612.540000px;}
.y14_c00027{bottom:643.890000px;}
.y13_c00027{bottom:674.850000px;}
.y12_c00027{bottom:705.810000px;}
.y11_c00027{bottom:736.770000px;}
.y10_c00027{bottom:768.135000px;}
.yf_c00027{bottom:799.095000px;}
.ye_c00027{bottom:830.055000px;}
.yd_c00027{bottom:870.015000px;}
.yc_c00027{bottom:901.365000px;}
.yb_c00027{bottom:932.325000px;}
.ya_c00027{bottom:963.285000px;}
.y9_c00027{bottom:994.245000px;}
.y8_c00027{bottom:1034.610000px;}
.y7_c00027{bottom:1065.570000px;}
.y2_c00027{bottom:1113.090000px;}
.h2_c00027{height:20.910000px;}
.h3_c00027{height:41.395500px;}
.h1_c00027{height:64.546875px;}
.h4_c00027{height:70.664062px;}
.h0_c00027{height:1188.000000px;}
.w1_c00027{width:8.265000px;}
.w2_c00027{width:663.345000px;}
.w0_c00027{width:918.000000px;}
.x0_c00027{left:0.000000px;}
.x3_c00027{left:127.489500px;}
.x1_c00027{left:154.515000px;}
.x4_c00027{left:178.635000px;}
.x2_c00027{left:782.565000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls2_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:1.920000pt;}
.ls1_c00027{letter-spacing:9.600000pt;}
.ws1_c00027{word-spacing:-36.096000pt;}
.ws0_c00027{word-spacing:-16.000000pt;}
.ws2_c00027{word-spacing:0.000000pt;}
._8_c00027{margin-left:-2.816000pt;}
._1_c00027{margin-left:-1.600000pt;}
._2_c00027{width:1.216000pt;}
._4_c00027{width:2.624000pt;}
._5_c00027{width:3.520000pt;}
._a_c00027{width:4.480000pt;}
._6_c00027{width:5.600000pt;}
._11_c00027{width:6.581312pt;}
._7_c00027{width:7.616000pt;}
._9_c00027{width:8.768000pt;}
._b_c00027{width:9.728000pt;}
._12_c00027{width:10.901333pt;}
._f_c00027{width:12.416000pt;}
._10_c00027{width:13.888000pt;}
._13_c00027{width:17.408000pt;}
._14_c00027{width:18.464000pt;}
._0_c00027{width:19.648000pt;}
._3_c00027{width:21.376000pt;}
._e_c00027{width:22.656000pt;}
._c_c00027{width:41.600000pt;}
._d_c00027{width:43.594688pt;}
.fs0_c00027{font-size:64.000000pt;}
.y0_c00027{bottom:0.000000pt;}
.y6_c00027{bottom:4.156000pt;}
.y3_c00027{bottom:4.160000pt;}
.y5_c00027{bottom:22.396000pt;}
.y4_c00027{bottom:29.156000pt;}
.y1_c00027{bottom:51.552000pt;}
.y24_c00027{bottom:122.592000pt;}
.y23_c00027{bottom:158.146667pt;}
.y22_c00027{bottom:185.666667pt;}
.y21_c00027{bottom:213.186667pt;}
.y20_c00027{bottom:241.026667pt;}
.y1f_c00027{bottom:268.573333pt;}
.y1e_c00027{bottom:296.093333pt;}
.y1d_c00027{bottom:323.613333pt;}
.y1c_c00027{bottom:351.493333pt;}
.y1b_c00027{bottom:379.013333pt;}
.y1a_c00027{bottom:406.533333pt;}
.y19_c00027{bottom:434.053333pt;}
.y18_c00027{bottom:461.920000pt;}
.y17_c00027{bottom:489.440000pt;}
.y16_c00027{bottom:516.960000pt;}
.y15_c00027{bottom:544.480000pt;}
.y14_c00027{bottom:572.346667pt;}
.y13_c00027{bottom:599.866667pt;}
.y12_c00027{bottom:627.386667pt;}
.y11_c00027{bottom:654.906667pt;}
.y10_c00027{bottom:682.786667pt;}
.yf_c00027{bottom:710.306667pt;}
.ye_c00027{bottom:737.826667pt;}
.yd_c00027{bottom:773.346667pt;}
.yc_c00027{bottom:801.213333pt;}
.yb_c00027{bottom:828.733333pt;}
.ya_c00027{bottom:856.253333pt;}
.y9_c00027{bottom:883.773333pt;}
.y8_c00027{bottom:919.653333pt;}
.y7_c00027{bottom:947.173333pt;}
.y2_c00027{bottom:989.413333pt;}
.h2_c00027{height:18.586667pt;}
.h3_c00027{height:36.796000pt;}
.h1_c00027{height:57.375000pt;}
.h4_c00027{height:62.812500pt;}
.h0_c00027{height:1056.000000pt;}
.w1_c00027{width:7.346667pt;}
.w2_c00027{width:589.640000pt;}
.w0_c00027{width:816.000000pt;}
.x0_c00027{left:0.000000pt;}
.x3_c00027{left:113.324000pt;}
.x1_c00027{left:137.346667pt;}
.x4_c00027{left:158.786667pt;}
.x2_c00027{left:695.613333pt;}
}





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

.ir_c00028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00028;src:url('chunks/assets/font_fcaa6eea0af8f5031b52e74e.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_083bf490670b6c06724fa3ba.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_0f91ff21c0c82cc30f758842.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_41b644e40d7f7800f775b734.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00028;src:url('chunks/assets/font_61571c72fc5ac70ff61b2a73.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;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_c00028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls5_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:1.440000px;}
.ls2_c00028{letter-spacing:1.944000px;}
.ls4_c00028{letter-spacing:5.040000px;}
.ls3_c00028{letter-spacing:6.480000px;}
.ls1_c00028{letter-spacing:15.120000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-18.000000px;}
.ws1_c00028{word-spacing:0.000000px;}
._3_c00028{margin-left:-3.083976px;}
._0_c00028{margin-left:-1.152000px;}
._1_c00028{width:1.368000px;}
._4_c00028{width:3.155976px;}
._a_c00028{width:4.680000px;}
._b_c00028{width:5.904000px;}
._c_c00028{width:7.200000px;}
._f_c00028{width:8.975952px;}
._e_c00028{width:10.008000px;}
._10_c00028{width:12.120048px;}
._d_c00028{width:13.151952px;}
._8_c00028{width:14.280000px;}
._7_c00028{width:15.348000px;}
._9_c00028{width:16.512024px;}
._5_c00028{width:19.284000px;}
._2_c00028{width:20.604000px;}
._11_c00028{width:22.176000px;}
._6_c00028{width:23.327880px;}
.fc0_c00028{color:rgb(0,0,0);}
.fs0_c00028{font-size:72.000000px;}
.y0_c00028{bottom:0.000000px;}
.y6_c00028{bottom:4.675500px;}
.y3_c00028{bottom:4.680000px;}
.y5_c00028{bottom:25.195500px;}
.y4_c00028{bottom:32.800500px;}
.y1_c00028{bottom:57.996000px;}
.y25_c00028{bottom:124.956000px;}
.y24_c00028{bottom:155.955000px;}
.y23_c00028{bottom:186.915000px;}
.y22_c00028{bottom:217.875000px;}
.y21_c00028{bottom:248.835000px;}
.y20_c00028{bottom:280.185000px;}
.y1f_c00028{bottom:311.145000px;}
.y1e_c00028{bottom:351.105000px;}
.y1d_c00028{bottom:382.065000px;}
.y1c_c00028{bottom:413.430000px;}
.y1b_c00028{bottom:444.390000px;}
.y1a_c00028{bottom:475.350000px;}
.y19_c00028{bottom:506.310000px;}
.y18_c00028{bottom:537.660000px;}
.y17_c00028{bottom:568.620000px;}
.y16_c00028{bottom:599.580000px;}
.y15_c00028{bottom:630.540000px;}
.y14_c00028{bottom:661.890000px;}
.y13_c00028{bottom:692.850000px;}
.y12_c00028{bottom:723.810000px;}
.y11_c00028{bottom:754.770000px;}
.y10_c00028{bottom:786.135000px;}
.yf_c00028{bottom:817.095000px;}
.ye_c00028{bottom:848.055000px;}
.yd_c00028{bottom:879.015000px;}
.yc_c00028{bottom:910.365000px;}
.yb_c00028{bottom:941.325000px;}
.ya_c00028{bottom:972.285000px;}
.y9_c00028{bottom:1003.245000px;}
.y8_c00028{bottom:1034.610000px;}
.y7_c00028{bottom:1065.570000px;}
.y2_c00028{bottom:1113.090000px;}
.h2_c00028{height:20.910000px;}
.h3_c00028{height:41.395500px;}
.h1_c00028{height:64.546875px;}
.h4_c00028{height:70.664062px;}
.h0_c00028{height:1188.000000px;}
.w1_c00028{width:8.265000px;}
.w2_c00028{width:663.345000px;}
.w0_c00028{width:918.000000px;}
.x0_c00028{left:0.000000px;}
.x3_c00028{left:127.489500px;}
.x1_c00028{left:154.515000px;}
.x4_c00028{left:178.635000px;}
.x2_c00028{left:782.565000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls5_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:1.280000pt;}
.ls2_c00028{letter-spacing:1.728000pt;}
.ls4_c00028{letter-spacing:4.480000pt;}
.ls3_c00028{letter-spacing:5.760000pt;}
.ls1_c00028{letter-spacing:13.440000pt;}
.ws0_c00028{word-spacing:-16.000000pt;}
.ws1_c00028{word-spacing:0.000000pt;}
._3_c00028{margin-left:-2.741312pt;}
._0_c00028{margin-left:-1.024000pt;}
._1_c00028{width:1.216000pt;}
._4_c00028{width:2.805312pt;}
._a_c00028{width:4.160000pt;}
._b_c00028{width:5.248000pt;}
._c_c00028{width:6.400000pt;}
._f_c00028{width:7.978624pt;}
._e_c00028{width:8.896000pt;}
._10_c00028{width:10.773376pt;}
._d_c00028{width:11.690624pt;}
._8_c00028{width:12.693333pt;}
._7_c00028{width:13.642667pt;}
._9_c00028{width:14.677355pt;}
._5_c00028{width:17.141333pt;}
._2_c00028{width:18.314667pt;}
._11_c00028{width:19.712000pt;}
._6_c00028{width:20.735893pt;}
.fs0_c00028{font-size:64.000000pt;}
.y0_c00028{bottom:0.000000pt;}
.y6_c00028{bottom:4.156000pt;}
.y3_c00028{bottom:4.160000pt;}
.y5_c00028{bottom:22.396000pt;}
.y4_c00028{bottom:29.156000pt;}
.y1_c00028{bottom:51.552000pt;}
.y25_c00028{bottom:111.072000pt;}
.y24_c00028{bottom:138.626667pt;}
.y23_c00028{bottom:166.146667pt;}
.y22_c00028{bottom:193.666667pt;}
.y21_c00028{bottom:221.186667pt;}
.y20_c00028{bottom:249.053333pt;}
.y1f_c00028{bottom:276.573333pt;}
.y1e_c00028{bottom:312.093333pt;}
.y1d_c00028{bottom:339.613333pt;}
.y1c_c00028{bottom:367.493333pt;}
.y1b_c00028{bottom:395.013333pt;}
.y1a_c00028{bottom:422.533333pt;}
.y19_c00028{bottom:450.053333pt;}
.y18_c00028{bottom:477.920000pt;}
.y17_c00028{bottom:505.440000pt;}
.y16_c00028{bottom:532.960000pt;}
.y15_c00028{bottom:560.480000pt;}
.y14_c00028{bottom:588.346667pt;}
.y13_c00028{bottom:615.866667pt;}
.y12_c00028{bottom:643.386667pt;}
.y11_c00028{bottom:670.906667pt;}
.y10_c00028{bottom:698.786667pt;}
.yf_c00028{bottom:726.306667pt;}
.ye_c00028{bottom:753.826667pt;}
.yd_c00028{bottom:781.346667pt;}
.yc_c00028{bottom:809.213333pt;}
.yb_c00028{bottom:836.733333pt;}
.ya_c00028{bottom:864.253333pt;}
.y9_c00028{bottom:891.773333pt;}
.y8_c00028{bottom:919.653333pt;}
.y7_c00028{bottom:947.173333pt;}
.y2_c00028{bottom:989.413333pt;}
.h2_c00028{height:18.586667pt;}
.h3_c00028{height:36.796000pt;}
.h1_c00028{height:57.375000pt;}
.h4_c00028{height:62.812500pt;}
.h0_c00028{height:1056.000000pt;}
.w1_c00028{width:7.346667pt;}
.w2_c00028{width:589.640000pt;}
.w0_c00028{width:816.000000pt;}
.x0_c00028{left:0.000000pt;}
.x3_c00028{left:113.324000pt;}
.x1_c00028{left:137.346667pt;}
.x4_c00028{left:158.786667pt;}
.x2_c00028{left:695.613333pt;}
}





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

.ir_c00029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00029;src:url('chunks/assets/font_c89d9525b242984a2914e3eb.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_30005b37f4b92642a56a00fd.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_43d7f5b7801366bf3bca5e97.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_6544beec88b8fc0b836bc09f.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;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_c00029;src:url('chunks/assets/font_7b3489d3f2638fbaea16bda1.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls0_c00029{letter-spacing:0.000000px;}
.ls1_c00029{letter-spacing:0.720000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00029{word-spacing:-72.000000px;}
.ws0_c00029{word-spacing:-18.000000px;}
.ws2_c00029{word-spacing:0.000000px;}
._2_c00029{margin-left:-2.736000px;}
._0_c00029{margin-left:-1.296000px;}
._1_c00029{width:1.368000px;}
._5_c00029{width:3.168000px;}
._8_c00029{width:4.752000px;}
._9_c00029{width:6.696000px;}
._3_c00029{width:7.920000px;}
._4_c00029{width:9.360000px;}
._6_c00029{width:10.800000px;}
._7_c00029{width:12.011976px;}
._a_c00029{width:13.440096px;}
._f_c00029{width:14.531544px;}
._e_c00029{width:15.647904px;}
._10_c00029{width:19.152000px;}
._c_c00029{width:20.520000px;}
._b_c00029{width:21.684024px;}
._d_c00029{width:22.787928px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs0_c00029{font-size:72.000000px;}
.y0_c00029{bottom:0.000000px;}
.y6_c00029{bottom:4.675500px;}
.y3_c00029{bottom:4.680000px;}
.y5_c00029{bottom:25.195500px;}
.y4_c00029{bottom:32.800500px;}
.y1_c00029{bottom:57.996000px;}
.y24_c00029{bottom:137.916000px;}
.y23_c00029{bottom:168.915000px;}
.y22_c00029{bottom:199.875000px;}
.y21_c00029{bottom:230.835000px;}
.y20_c00029{bottom:262.155000px;}
.y1f_c00029{bottom:293.145000px;}
.y1e_c00029{bottom:324.105000px;}
.y1d_c00029{bottom:355.065000px;}
.y1c_c00029{bottom:395.430000px;}
.y1b_c00029{bottom:426.390000px;}
.y1a_c00029{bottom:457.350000px;}
.y19_c00029{bottom:488.310000px;}
.y18_c00029{bottom:519.660000px;}
.y17_c00029{bottom:550.620000px;}
.y16_c00029{bottom:581.580000px;}
.y15_c00029{bottom:612.540000px;}
.y14_c00029{bottom:643.890000px;}
.y13_c00029{bottom:674.850000px;}
.y12_c00029{bottom:714.810000px;}
.y11_c00029{bottom:745.770000px;}
.y10_c00029{bottom:777.135000px;}
.yf_c00029{bottom:808.095000px;}
.ye_c00029{bottom:839.055000px;}
.yd_c00029{bottom:870.015000px;}
.yc_c00029{bottom:901.365000px;}
.yb_c00029{bottom:941.325000px;}
.ya_c00029{bottom:972.285000px;}
.y9_c00029{bottom:1003.245000px;}
.y8_c00029{bottom:1034.610000px;}
.y7_c00029{bottom:1065.570000px;}
.y2_c00029{bottom:1113.090000px;}
.h2_c00029{height:20.910000px;}
.h3_c00029{height:41.395500px;}
.h1_c00029{height:64.546875px;}
.h4_c00029{height:70.664062px;}
.h0_c00029{height:1188.000000px;}
.w1_c00029{width:8.265000px;}
.w2_c00029{width:663.345000px;}
.w0_c00029{width:918.000000px;}
.x0_c00029{left:0.000000px;}
.x3_c00029{left:127.489500px;}
.x1_c00029{left:154.515000px;}
.x4_c00029{left:178.635000px;}
.x2_c00029{left:782.565000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ls1_c00029{letter-spacing:0.640000pt;}
.ws1_c00029{word-spacing:-64.000000pt;}
.ws0_c00029{word-spacing:-16.000000pt;}
.ws2_c00029{word-spacing:0.000000pt;}
._2_c00029{margin-left:-2.432000pt;}
._0_c00029{margin-left:-1.152000pt;}
._1_c00029{width:1.216000pt;}
._5_c00029{width:2.816000pt;}
._8_c00029{width:4.224000pt;}
._9_c00029{width:5.952000pt;}
._3_c00029{width:7.040000pt;}
._4_c00029{width:8.320000pt;}
._6_c00029{width:9.600000pt;}
._7_c00029{width:10.677312pt;}
._a_c00029{width:11.946752pt;}
._f_c00029{width:12.916928pt;}
._e_c00029{width:13.909248pt;}
._10_c00029{width:17.024000pt;}
._c_c00029{width:18.240000pt;}
._b_c00029{width:19.274688pt;}
._d_c00029{width:20.255936pt;}
.fs0_c00029{font-size:64.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y6_c00029{bottom:4.156000pt;}
.y3_c00029{bottom:4.160000pt;}
.y5_c00029{bottom:22.396000pt;}
.y4_c00029{bottom:29.156000pt;}
.y1_c00029{bottom:51.552000pt;}
.y24_c00029{bottom:122.592000pt;}
.y23_c00029{bottom:150.146667pt;}
.y22_c00029{bottom:177.666667pt;}
.y21_c00029{bottom:205.186667pt;}
.y20_c00029{bottom:233.026667pt;}
.y1f_c00029{bottom:260.573333pt;}
.y1e_c00029{bottom:288.093333pt;}
.y1d_c00029{bottom:315.613333pt;}
.y1c_c00029{bottom:351.493333pt;}
.y1b_c00029{bottom:379.013333pt;}
.y1a_c00029{bottom:406.533333pt;}
.y19_c00029{bottom:434.053333pt;}
.y18_c00029{bottom:461.920000pt;}
.y17_c00029{bottom:489.440000pt;}
.y16_c00029{bottom:516.960000pt;}
.y15_c00029{bottom:544.480000pt;}
.y14_c00029{bottom:572.346667pt;}
.y13_c00029{bottom:599.866667pt;}
.y12_c00029{bottom:635.386667pt;}
.y11_c00029{bottom:662.906667pt;}
.y10_c00029{bottom:690.786667pt;}
.yf_c00029{bottom:718.306667pt;}
.ye_c00029{bottom:745.826667pt;}
.yd_c00029{bottom:773.346667pt;}
.yc_c00029{bottom:801.213333pt;}
.yb_c00029{bottom:836.733333pt;}
.ya_c00029{bottom:864.253333pt;}
.y9_c00029{bottom:891.773333pt;}
.y8_c00029{bottom:919.653333pt;}
.y7_c00029{bottom:947.173333pt;}
.y2_c00029{bottom:989.413333pt;}
.h2_c00029{height:18.586667pt;}
.h3_c00029{height:36.796000pt;}
.h1_c00029{height:57.375000pt;}
.h4_c00029{height:62.812500pt;}
.h0_c00029{height:1056.000000pt;}
.w1_c00029{width:7.346667pt;}
.w2_c00029{width:589.640000pt;}
.w0_c00029{width:816.000000pt;}
.x0_c00029{left:0.000000pt;}
.x3_c00029{left:113.324000pt;}
.x1_c00029{left:137.346667pt;}
.x4_c00029{left:158.786667pt;}
.x2_c00029{left:695.613333pt;}
}





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

.ir_c00030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00030;src:url('chunks/assets/font_2afb1b5c72355ce4a04edea6.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_910950cfed05a096ebc6b383.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_05864c0bccd853783234c0ac.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;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_c00030;src:url('chunks/assets/font_366d5ed4b8b9bb9d304035d7.woff2')format("woff");}.ff5_c00030{font-family:ff5_c00030;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls4_c00030{letter-spacing:-0.648000px;}
.ls3_c00030{letter-spacing:0.000000px;}
.ls2_c00030{letter-spacing:0.180000px;}
.ls5_c00030{letter-spacing:0.720000px;}
.ls1_c00030{letter-spacing:1.440000px;}
.ls0_c00030{letter-spacing:2.160000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:-18.000000px;}
.ws1_c00030{word-spacing:-17.352000px;}
.ws2_c00030{word-spacing:0.000000px;}
._6_c00030{margin-left:-2.880000px;}
._3_c00030{margin-left:-1.656000px;}
._1_c00030{width:1.368000px;}
._5_c00030{width:2.472000px;}
._c_c00030{width:3.840000px;}
._e_c00030{width:5.040000px;}
._b_c00030{width:6.312000px;}
._a_c00030{width:8.184000px;}
._2_c00030{width:9.792000px;}
._0_c00030{width:11.232000px;}
._4_c00030{width:12.732000px;}
._d_c00030{width:13.896000px;}
._11_c00030{width:15.096000px;}
._13_c00030{width:16.920000px;}
._12_c00030{width:19.356000px;}
._14_c00030{width:22.896000px;}
._f_c00030{width:23.988000px;}
._10_c00030{width:25.032000px;}
._9_c00030{width:28.896000px;}
._8_c00030{width:30.024000px;}
._7_c00030{width:31.032000px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs0_c00030{font-size:72.000000px;}
.y0_c00030{bottom:0.000000px;}
.y6_c00030{bottom:4.675500px;}
.y3_c00030{bottom:4.680000px;}
.y5_c00030{bottom:25.195500px;}
.y4_c00030{bottom:32.800500px;}
.y1_c00030{bottom:57.996000px;}
.y25_c00030{bottom:115.956000px;}
.y24_c00030{bottom:146.916000px;}
.y23_c00030{bottom:177.915000px;}
.y22_c00030{bottom:208.875000px;}
.y21_c00030{bottom:239.835000px;}
.y20_c00030{bottom:280.185000px;}
.y1f_c00030{bottom:311.145000px;}
.y1e_c00030{bottom:342.105000px;}
.y1d_c00030{bottom:373.065000px;}
.y1c_c00030{bottom:404.430000px;}
.y1b_c00030{bottom:435.390000px;}
.y1a_c00030{bottom:466.350000px;}
.y19_c00030{bottom:497.310000px;}
.y18_c00030{bottom:528.660000px;}
.y17_c00030{bottom:568.620000px;}
.y16_c00030{bottom:599.580000px;}
.y15_c00030{bottom:630.540000px;}
.y14_c00030{bottom:661.890000px;}
.y13_c00030{bottom:692.850000px;}
.y12_c00030{bottom:723.810000px;}
.y11_c00030{bottom:754.770000px;}
.y10_c00030{bottom:786.135000px;}
.yf_c00030{bottom:817.095000px;}
.ye_c00030{bottom:848.055000px;}
.yd_c00030{bottom:879.015000px;}
.yc_c00030{bottom:910.365000px;}
.yb_c00030{bottom:941.325000px;}
.ya_c00030{bottom:972.285000px;}
.y9_c00030{bottom:1003.245000px;}
.y8_c00030{bottom:1034.610000px;}
.y7_c00030{bottom:1065.570000px;}
.y2_c00030{bottom:1113.090000px;}
.h2_c00030{height:20.910000px;}
.h3_c00030{height:41.395500px;}
.h1_c00030{height:64.546875px;}
.h4_c00030{height:70.664062px;}
.h0_c00030{height:1188.000000px;}
.w1_c00030{width:8.265000px;}
.w2_c00030{width:663.345000px;}
.w0_c00030{width:918.000000px;}
.x0_c00030{left:0.000000px;}
.x3_c00030{left:127.489500px;}
.x1_c00030{left:154.515000px;}
.x4_c00030{left:178.635000px;}
.x2_c00030{left:782.565000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls4_c00030{letter-spacing:-0.576000pt;}
.ls3_c00030{letter-spacing:0.000000pt;}
.ls2_c00030{letter-spacing:0.160000pt;}
.ls5_c00030{letter-spacing:0.640000pt;}
.ls1_c00030{letter-spacing:1.280000pt;}
.ls0_c00030{letter-spacing:1.920000pt;}
.ws0_c00030{word-spacing:-16.000000pt;}
.ws1_c00030{word-spacing:-15.424000pt;}
.ws2_c00030{word-spacing:0.000000pt;}
._6_c00030{margin-left:-2.560000pt;}
._3_c00030{margin-left:-1.472000pt;}
._1_c00030{width:1.216000pt;}
._5_c00030{width:2.197333pt;}
._c_c00030{width:3.413333pt;}
._e_c00030{width:4.480000pt;}
._b_c00030{width:5.610667pt;}
._a_c00030{width:7.274667pt;}
._2_c00030{width:8.704000pt;}
._0_c00030{width:9.984000pt;}
._4_c00030{width:11.317333pt;}
._d_c00030{width:12.352000pt;}
._11_c00030{width:13.418667pt;}
._13_c00030{width:15.040000pt;}
._12_c00030{width:17.205333pt;}
._14_c00030{width:20.352000pt;}
._f_c00030{width:21.322667pt;}
._10_c00030{width:22.250667pt;}
._9_c00030{width:25.685333pt;}
._8_c00030{width:26.688000pt;}
._7_c00030{width:27.584000pt;}
.fs0_c00030{font-size:64.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y6_c00030{bottom:4.156000pt;}
.y3_c00030{bottom:4.160000pt;}
.y5_c00030{bottom:22.396000pt;}
.y4_c00030{bottom:29.156000pt;}
.y1_c00030{bottom:51.552000pt;}
.y25_c00030{bottom:103.072000pt;}
.y24_c00030{bottom:130.592000pt;}
.y23_c00030{bottom:158.146667pt;}
.y22_c00030{bottom:185.666667pt;}
.y21_c00030{bottom:213.186667pt;}
.y20_c00030{bottom:249.053333pt;}
.y1f_c00030{bottom:276.573333pt;}
.y1e_c00030{bottom:304.093333pt;}
.y1d_c00030{bottom:331.613333pt;}
.y1c_c00030{bottom:359.493333pt;}
.y1b_c00030{bottom:387.013333pt;}
.y1a_c00030{bottom:414.533333pt;}
.y19_c00030{bottom:442.053333pt;}
.y18_c00030{bottom:469.920000pt;}
.y17_c00030{bottom:505.440000pt;}
.y16_c00030{bottom:532.960000pt;}
.y15_c00030{bottom:560.480000pt;}
.y14_c00030{bottom:588.346667pt;}
.y13_c00030{bottom:615.866667pt;}
.y12_c00030{bottom:643.386667pt;}
.y11_c00030{bottom:670.906667pt;}
.y10_c00030{bottom:698.786667pt;}
.yf_c00030{bottom:726.306667pt;}
.ye_c00030{bottom:753.826667pt;}
.yd_c00030{bottom:781.346667pt;}
.yc_c00030{bottom:809.213333pt;}
.yb_c00030{bottom:836.733333pt;}
.ya_c00030{bottom:864.253333pt;}
.y9_c00030{bottom:891.773333pt;}
.y8_c00030{bottom:919.653333pt;}
.y7_c00030{bottom:947.173333pt;}
.y2_c00030{bottom:989.413333pt;}
.h2_c00030{height:18.586667pt;}
.h3_c00030{height:36.796000pt;}
.h1_c00030{height:57.375000pt;}
.h4_c00030{height:62.812500pt;}
.h0_c00030{height:1056.000000pt;}
.w1_c00030{width:7.346667pt;}
.w2_c00030{width:589.640000pt;}
.w0_c00030{width:816.000000pt;}
.x0_c00030{left:0.000000pt;}
.x3_c00030{left:113.324000pt;}
.x1_c00030{left:137.346667pt;}
.x4_c00030{left:158.786667pt;}
.x2_c00030{left:695.613333pt;}
}





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

.ir_c00031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00031;src:url('chunks/assets/font_6d947b290fabe9607faec709.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_783b19d5afceb54ce8836724.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_65f1106bb24d5aec66788657.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;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_c00031;src:url('chunks/assets/font_e50c096230159ccf3200825c.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00031;src:url('chunks/assets/font_e2a324f748135332850c4b36.woff2')format("woff");}.ff5_c00031{font-family:ff5_c00031;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls1_c00031{letter-spacing:0.000000px;}
.ls2_c00031{letter-spacing:0.720000px;}
.ls0_c00031{letter-spacing:1.440000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:-18.000000px;}
.ws1_c00031{word-spacing:0.000000px;}
._4_c00031{margin-left:-2.736000px;}
._0_c00031{margin-left:-1.440000px;}
._2_c00031{width:1.512000px;}
._8_c00031{width:2.808000px;}
._1_c00031{width:4.680000px;}
._3_c00031{width:5.760000px;}
._5_c00031{width:6.768000px;}
._b_c00031{width:7.992000px;}
._a_c00031{width:9.504000px;}
._e_c00031{width:10.584000px;}
._f_c00031{width:11.651976px;}
._7_c00031{width:12.672000px;}
._6_c00031{width:14.184000px;}
._9_c00031{width:15.348024px;}
._10_c00031{width:16.488000px;}
._c_c00031{width:19.584000px;}
._d_c00031{width:20.592000px;}
._12_c00031{width:21.600000px;}
._13_c00031{width:22.608000px;}
._11_c00031{width:23.700024px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs0_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y6_c00031{bottom:4.675500px;}
.y3_c00031{bottom:4.680000px;}
.y5_c00031{bottom:25.195500px;}
.y4_c00031{bottom:32.800500px;}
.y1_c00031{bottom:57.996000px;}
.y24_c00031{bottom:137.916000px;}
.y23_c00031{bottom:168.915000px;}
.y22_c00031{bottom:199.875000px;}
.y21_c00031{bottom:230.835000px;}
.y20_c00031{bottom:262.155000px;}
.y1f_c00031{bottom:293.145000px;}
.y1e_c00031{bottom:324.105000px;}
.y1d_c00031{bottom:355.065000px;}
.y1c_c00031{bottom:386.385000px;}
.y1b_c00031{bottom:426.390000px;}
.y1a_c00031{bottom:457.350000px;}
.y19_c00031{bottom:488.310000px;}
.y18_c00031{bottom:519.660000px;}
.y17_c00031{bottom:550.620000px;}
.y16_c00031{bottom:590.580000px;}
.y15_c00031{bottom:621.540000px;}
.y14_c00031{bottom:652.890000px;}
.y13_c00031{bottom:683.850000px;}
.y12_c00031{bottom:714.810000px;}
.y11_c00031{bottom:745.770000px;}
.y10_c00031{bottom:777.135000px;}
.yf_c00031{bottom:808.095000px;}
.ye_c00031{bottom:839.055000px;}
.yd_c00031{bottom:870.015000px;}
.yc_c00031{bottom:901.365000px;}
.yb_c00031{bottom:932.325000px;}
.ya_c00031{bottom:963.285000px;}
.y9_c00031{bottom:994.245000px;}
.y8_c00031{bottom:1034.610000px;}
.y7_c00031{bottom:1065.570000px;}
.y2_c00031{bottom:1113.090000px;}
.h2_c00031{height:20.910000px;}
.h3_c00031{height:41.395500px;}
.h1_c00031{height:64.546875px;}
.h4_c00031{height:70.664062px;}
.h0_c00031{height:1188.000000px;}
.w1_c00031{width:8.265000px;}
.w2_c00031{width:663.345000px;}
.w0_c00031{width:918.000000px;}
.x0_c00031{left:0.000000px;}
.x3_c00031{left:127.489500px;}
.x1_c00031{left:154.515000px;}
.x4_c00031{left:178.635000px;}
.x2_c00031{left:782.565000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls1_c00031{letter-spacing:0.000000pt;}
.ls2_c00031{letter-spacing:0.640000pt;}
.ls0_c00031{letter-spacing:1.280000pt;}
.ws0_c00031{word-spacing:-16.000000pt;}
.ws1_c00031{word-spacing:0.000000pt;}
._4_c00031{margin-left:-2.432000pt;}
._0_c00031{margin-left:-1.280000pt;}
._2_c00031{width:1.344000pt;}
._8_c00031{width:2.496000pt;}
._1_c00031{width:4.160000pt;}
._3_c00031{width:5.120000pt;}
._5_c00031{width:6.016000pt;}
._b_c00031{width:7.104000pt;}
._a_c00031{width:8.448000pt;}
._e_c00031{width:9.408000pt;}
._f_c00031{width:10.357312pt;}
._7_c00031{width:11.264000pt;}
._6_c00031{width:12.608000pt;}
._9_c00031{width:13.642688pt;}
._10_c00031{width:14.656000pt;}
._c_c00031{width:17.408000pt;}
._d_c00031{width:18.304000pt;}
._12_c00031{width:19.200000pt;}
._13_c00031{width:20.096000pt;}
._11_c00031{width:21.066688pt;}
.fs0_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y6_c00031{bottom:4.156000pt;}
.y3_c00031{bottom:4.160000pt;}
.y5_c00031{bottom:22.396000pt;}
.y4_c00031{bottom:29.156000pt;}
.y1_c00031{bottom:51.552000pt;}
.y24_c00031{bottom:122.592000pt;}
.y23_c00031{bottom:150.146667pt;}
.y22_c00031{bottom:177.666667pt;}
.y21_c00031{bottom:205.186667pt;}
.y20_c00031{bottom:233.026667pt;}
.y1f_c00031{bottom:260.573333pt;}
.y1e_c00031{bottom:288.093333pt;}
.y1d_c00031{bottom:315.613333pt;}
.y1c_c00031{bottom:343.453333pt;}
.y1b_c00031{bottom:379.013333pt;}
.y1a_c00031{bottom:406.533333pt;}
.y19_c00031{bottom:434.053333pt;}
.y18_c00031{bottom:461.920000pt;}
.y17_c00031{bottom:489.440000pt;}
.y16_c00031{bottom:524.960000pt;}
.y15_c00031{bottom:552.480000pt;}
.y14_c00031{bottom:580.346667pt;}
.y13_c00031{bottom:607.866667pt;}
.y12_c00031{bottom:635.386667pt;}
.y11_c00031{bottom:662.906667pt;}
.y10_c00031{bottom:690.786667pt;}
.yf_c00031{bottom:718.306667pt;}
.ye_c00031{bottom:745.826667pt;}
.yd_c00031{bottom:773.346667pt;}
.yc_c00031{bottom:801.213333pt;}
.yb_c00031{bottom:828.733333pt;}
.ya_c00031{bottom:856.253333pt;}
.y9_c00031{bottom:883.773333pt;}
.y8_c00031{bottom:919.653333pt;}
.y7_c00031{bottom:947.173333pt;}
.y2_c00031{bottom:989.413333pt;}
.h2_c00031{height:18.586667pt;}
.h3_c00031{height:36.796000pt;}
.h1_c00031{height:57.375000pt;}
.h4_c00031{height:62.812500pt;}
.h0_c00031{height:1056.000000pt;}
.w1_c00031{width:7.346667pt;}
.w2_c00031{width:589.640000pt;}
.w0_c00031{width:816.000000pt;}
.x0_c00031{left:0.000000pt;}
.x3_c00031{left:113.324000pt;}
.x1_c00031{left:137.346667pt;}
.x4_c00031{left:158.786667pt;}
.x2_c00031{left:695.613333pt;}
}





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

.ir_c00032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00032;src:url('chunks/assets/font_8d3c8bbb4daacd6acb1a3a4b.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_a966268e00b29cd0b09ce49f.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_5e454848ced0d49f3727a290.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;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_c00032;src:url('chunks/assets/font_cbec145912cbbd87b5d17671.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00032;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls0_c00032{letter-spacing:0.000000px;}
.ls1_c00032{letter-spacing:0.720000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00032{word-spacing:-18.000000px;}
.ws1_c00032{word-spacing:0.000000px;}
._b_c00032{margin-left:-3.215880px;}
._1_c00032{margin-left:-2.160000px;}
._4_c00032{margin-left:-1.008000px;}
._0_c00032{width:1.152000px;}
._2_c00032{width:2.448000px;}
._3_c00032{width:4.464000px;}
._c_c00032{width:5.760000px;}
._7_c00032{width:7.560000px;}
._5_c00032{width:8.928000px;}
._6_c00032{width:10.224000px;}
._e_c00032{width:11.664000px;}
._d_c00032{width:12.791880px;}
._9_c00032{width:14.207976px;}
._8_c00032{width:15.912000px;}
._a_c00032{width:16.992000px;}
._f_c00032{width:21.191760px;}
._11_c00032{width:22.655880px;}
._10_c00032{width:24.000120px;}
.fc0_c00032{color:rgb(0,0,0);}
.fs0_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y6_c00032{bottom:4.675500px;}
.y3_c00032{bottom:4.680000px;}
.y5_c00032{bottom:25.195500px;}
.y4_c00032{bottom:32.800500px;}
.y1_c00032{bottom:57.996000px;}
.y24_c00032{bottom:137.916000px;}
.y23_c00032{bottom:168.915000px;}
.y22_c00032{bottom:199.875000px;}
.y21_c00032{bottom:230.835000px;}
.y20_c00032{bottom:262.155000px;}
.y1f_c00032{bottom:293.145000px;}
.y1e_c00032{bottom:324.105000px;}
.y1d_c00032{bottom:355.065000px;}
.y1c_c00032{bottom:386.385000px;}
.y1b_c00032{bottom:417.390000px;}
.y1a_c00032{bottom:457.350000px;}
.y19_c00032{bottom:488.310000px;}
.y18_c00032{bottom:519.660000px;}
.y17_c00032{bottom:550.620000px;}
.y16_c00032{bottom:581.580000px;}
.y15_c00032{bottom:612.540000px;}
.y14_c00032{bottom:643.890000px;}
.y13_c00032{bottom:674.850000px;}
.y12_c00032{bottom:705.810000px;}
.y11_c00032{bottom:736.770000px;}
.y10_c00032{bottom:768.135000px;}
.yf_c00032{bottom:799.095000px;}
.ye_c00032{bottom:839.055000px;}
.yd_c00032{bottom:870.015000px;}
.yc_c00032{bottom:901.365000px;}
.yb_c00032{bottom:941.325000px;}
.ya_c00032{bottom:972.285000px;}
.y9_c00032{bottom:1003.245000px;}
.y8_c00032{bottom:1034.610000px;}
.y7_c00032{bottom:1065.570000px;}
.y2_c00032{bottom:1113.090000px;}
.h2_c00032{height:20.910000px;}
.h3_c00032{height:41.395500px;}
.h1_c00032{height:64.546875px;}
.h4_c00032{height:70.664062px;}
.h0_c00032{height:1188.000000px;}
.w1_c00032{width:8.265000px;}
.w2_c00032{width:663.345000px;}
.w0_c00032{width:918.000000px;}
.x0_c00032{left:0.000000px;}
.x3_c00032{left:127.489500px;}
.x1_c00032{left:154.515000px;}
.x4_c00032{left:178.635000px;}
.x2_c00032{left:782.565000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ls1_c00032{letter-spacing:0.640000pt;}
.ws0_c00032{word-spacing:-16.000000pt;}
.ws1_c00032{word-spacing:0.000000pt;}
._b_c00032{margin-left:-2.858560pt;}
._1_c00032{margin-left:-1.920000pt;}
._4_c00032{margin-left:-0.896000pt;}
._0_c00032{width:1.024000pt;}
._2_c00032{width:2.176000pt;}
._3_c00032{width:3.968000pt;}
._c_c00032{width:5.120000pt;}
._7_c00032{width:6.720000pt;}
._5_c00032{width:7.936000pt;}
._6_c00032{width:9.088000pt;}
._e_c00032{width:10.368000pt;}
._d_c00032{width:11.370560pt;}
._9_c00032{width:12.629312pt;}
._8_c00032{width:14.144000pt;}
._a_c00032{width:15.104000pt;}
._f_c00032{width:18.837120pt;}
._11_c00032{width:20.138560pt;}
._10_c00032{width:21.333440pt;}
.fs0_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y6_c00032{bottom:4.156000pt;}
.y3_c00032{bottom:4.160000pt;}
.y5_c00032{bottom:22.396000pt;}
.y4_c00032{bottom:29.156000pt;}
.y1_c00032{bottom:51.552000pt;}
.y24_c00032{bottom:122.592000pt;}
.y23_c00032{bottom:150.146667pt;}
.y22_c00032{bottom:177.666667pt;}
.y21_c00032{bottom:205.186667pt;}
.y20_c00032{bottom:233.026667pt;}
.y1f_c00032{bottom:260.573333pt;}
.y1e_c00032{bottom:288.093333pt;}
.y1d_c00032{bottom:315.613333pt;}
.y1c_c00032{bottom:343.453333pt;}
.y1b_c00032{bottom:371.013333pt;}
.y1a_c00032{bottom:406.533333pt;}
.y19_c00032{bottom:434.053333pt;}
.y18_c00032{bottom:461.920000pt;}
.y17_c00032{bottom:489.440000pt;}
.y16_c00032{bottom:516.960000pt;}
.y15_c00032{bottom:544.480000pt;}
.y14_c00032{bottom:572.346667pt;}
.y13_c00032{bottom:599.866667pt;}
.y12_c00032{bottom:627.386667pt;}
.y11_c00032{bottom:654.906667pt;}
.y10_c00032{bottom:682.786667pt;}
.yf_c00032{bottom:710.306667pt;}
.ye_c00032{bottom:745.826667pt;}
.yd_c00032{bottom:773.346667pt;}
.yc_c00032{bottom:801.213333pt;}
.yb_c00032{bottom:836.733333pt;}
.ya_c00032{bottom:864.253333pt;}
.y9_c00032{bottom:891.773333pt;}
.y8_c00032{bottom:919.653333pt;}
.y7_c00032{bottom:947.173333pt;}
.y2_c00032{bottom:989.413333pt;}
.h2_c00032{height:18.586667pt;}
.h3_c00032{height:36.796000pt;}
.h1_c00032{height:57.375000pt;}
.h4_c00032{height:62.812500pt;}
.h0_c00032{height:1056.000000pt;}
.w1_c00032{width:7.346667pt;}
.w2_c00032{width:589.640000pt;}
.w0_c00032{width:816.000000pt;}
.x0_c00032{left:0.000000pt;}
.x3_c00032{left:113.324000pt;}
.x1_c00032{left:137.346667pt;}
.x4_c00032{left:158.786667pt;}
.x2_c00032{left:695.613333pt;}
}





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

.ir_c00033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00033;src:url('chunks/assets/font_acae039e0af64b70d0c5b84e.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_5d5451a0413b853c05d2ab83.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_ff9ae87359396aa5bc44eb6e.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;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_c00033;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00033;src:url('chunks/assets/font_b012848bea162f97f86b6b9c.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls2_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.180000px;}
.ls3_c00033{letter-spacing:0.720000px;}
.ls1_c00033{letter-spacing:7.920000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00033{word-spacing:-40.608000px;}
.ws0_c00033{word-spacing:-18.000000px;}
.ws2_c00033{word-spacing:0.000000px;}
._1_c00033{margin-left:-2.376000px;}
._3_c00033{margin-left:-1.080000px;}
._2_c00033{width:1.080000px;}
._0_c00033{width:2.160000px;}
._4_c00033{width:3.312000px;}
._5_c00033{width:4.968000px;}
._a_c00033{width:6.791976px;}
._b_c00033{width:7.908120px;}
._9_c00033{width:9.216000px;}
._8_c00033{width:10.355976px;}
._7_c00033{width:12.168000px;}
._6_c00033{width:13.392000px;}
.fc0_c00033{color:rgb(0,0,0);}
.fs0_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y6_c00033{bottom:4.675500px;}
.y3_c00033{bottom:4.680000px;}
.y5_c00033{bottom:25.195500px;}
.y4_c00033{bottom:32.800500px;}
.y1_c00033{bottom:57.996000px;}
.yf_c00033{bottom:808.095000px;}
.ye_c00033{bottom:839.055000px;}
.yd_c00033{bottom:870.015000px;}
.yc_c00033{bottom:901.365000px;}
.yb_c00033{bottom:932.325000px;}
.ya_c00033{bottom:972.285000px;}
.y9_c00033{bottom:1003.245000px;}
.y8_c00033{bottom:1034.610000px;}
.y7_c00033{bottom:1065.570000px;}
.y2_c00033{bottom:1113.090000px;}
.h2_c00033{height:20.910000px;}
.h3_c00033{height:41.395500px;}
.h1_c00033{height:64.546875px;}
.h4_c00033{height:70.664062px;}
.h0_c00033{height:1188.000000px;}
.w1_c00033{width:8.265000px;}
.w2_c00033{width:663.345000px;}
.w0_c00033{width:918.000000px;}
.x0_c00033{left:0.000000px;}
.x3_c00033{left:127.489500px;}
.x1_c00033{left:154.515000px;}
.x4_c00033{left:178.635000px;}
.x2_c00033{left:782.565000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls2_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.160000pt;}
.ls3_c00033{letter-spacing:0.640000pt;}
.ls1_c00033{letter-spacing:7.040000pt;}
.ws1_c00033{word-spacing:-36.096000pt;}
.ws0_c00033{word-spacing:-16.000000pt;}
.ws2_c00033{word-spacing:0.000000pt;}
._1_c00033{margin-left:-2.112000pt;}
._3_c00033{margin-left:-0.960000pt;}
._2_c00033{width:0.960000pt;}
._0_c00033{width:1.920000pt;}
._4_c00033{width:2.944000pt;}
._5_c00033{width:4.416000pt;}
._a_c00033{width:6.037312pt;}
._b_c00033{width:7.029440pt;}
._9_c00033{width:8.192000pt;}
._8_c00033{width:9.205312pt;}
._7_c00033{width:10.816000pt;}
._6_c00033{width:11.904000pt;}
.fs0_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y6_c00033{bottom:4.156000pt;}
.y3_c00033{bottom:4.160000pt;}
.y5_c00033{bottom:22.396000pt;}
.y4_c00033{bottom:29.156000pt;}
.y1_c00033{bottom:51.552000pt;}
.yf_c00033{bottom:718.306667pt;}
.ye_c00033{bottom:745.826667pt;}
.yd_c00033{bottom:773.346667pt;}
.yc_c00033{bottom:801.213333pt;}
.yb_c00033{bottom:828.733333pt;}
.ya_c00033{bottom:864.253333pt;}
.y9_c00033{bottom:891.773333pt;}
.y8_c00033{bottom:919.653333pt;}
.y7_c00033{bottom:947.173333pt;}
.y2_c00033{bottom:989.413333pt;}
.h2_c00033{height:18.586667pt;}
.h3_c00033{height:36.796000pt;}
.h1_c00033{height:57.375000pt;}
.h4_c00033{height:62.812500pt;}
.h0_c00033{height:1056.000000pt;}
.w1_c00033{width:7.346667pt;}
.w2_c00033{width:589.640000pt;}
.w0_c00033{width:816.000000pt;}
.x0_c00033{left:0.000000pt;}
.x3_c00033{left:113.324000pt;}
.x1_c00033{left:137.346667pt;}
.x4_c00033{left:158.786667pt;}
.x2_c00033{left:695.613333pt;}
}





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

.ir_c00034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00034;src:url('chunks/assets/font_a093c40a72c665f644cd8a59.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_c586996a3dd98641376db466.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_202f8c24aba799f2fa5291ab.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;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_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls0_c00034{letter-spacing:0.000000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:0.000000px;}
._2_c00034{margin-left:-8.208000px;}
._1_c00034{margin-left:-6.264000px;}
._3_c00034{margin-left:-4.752000px;}
._0_c00034{width:1.404000px;}
.fc0_c00034{color:rgb(0,0,0);}
.fs0_c00034{font-size:72.000000px;}
.fs1_c00034{font-size:108.000000px;}
.y0_c00034{bottom:0.000000px;}
.y19_c00034{bottom:140.076000px;}
.y18_c00034{bottom:180.075000px;}
.y17_c00034{bottom:220.035000px;}
.y16_c00034{bottom:260.355000px;}
.y15_c00034{bottom:300.345000px;}
.y14_c00034{bottom:340.305000px;}
.y13_c00034{bottom:380.265000px;}
.y12_c00034{bottom:420.630000px;}
.y11_c00034{bottom:460.230000px;}
.y10_c00034{bottom:491.190000px;}
.yf_c00034{bottom:522.180000px;}
.ye_c00034{bottom:553.500000px;}
.yd_c00034{bottom:584.460000px;}
.yc_c00034{bottom:631.260000px;}
.yb_c00034{bottom:687.090000px;}
.ya_c00034{bottom:736.050000px;}
.y9_c00034{bottom:776.055000px;}
.y8_c00034{bottom:816.015000px;}
.y7_c00034{bottom:856.335000px;}
.y6_c00034{bottom:896.325000px;}
.y5_c00034{bottom:936.285000px;}
.y4_c00034{bottom:976.245000px;}
.y3_c00034{bottom:1016.610000px;}
.y2_c00034{bottom:1056.570000px;}
.y1_c00034{bottom:1117.770000px;}
.h1_c00034{height:64.898438px;}
.h5_c00034{height:70.628906px;}
.h2_c00034{height:70.664062px;}
.h4_c00034{height:105.943359px;}
.h3_c00034{height:108.843750px;}
.h0_c00034{height:1188.000000px;}
.w0_c00034{width:918.000000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:127.476000px;}
.x4_c00034{left:306.825000px;}
.x3_c00034{left:347.550000px;}
.x2_c00034{left:458.820000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws0_c00034{word-spacing:0.000000pt;}
._2_c00034{margin-left:-7.296000pt;}
._1_c00034{margin-left:-5.568000pt;}
._3_c00034{margin-left:-4.224000pt;}
._0_c00034{width:1.248000pt;}
.fs0_c00034{font-size:64.000000pt;}
.fs1_c00034{font-size:96.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y19_c00034{bottom:124.512000pt;}
.y18_c00034{bottom:160.066667pt;}
.y17_c00034{bottom:195.586667pt;}
.y16_c00034{bottom:231.426667pt;}
.y15_c00034{bottom:266.973333pt;}
.y14_c00034{bottom:302.493333pt;}
.y13_c00034{bottom:338.013333pt;}
.y12_c00034{bottom:373.893333pt;}
.y11_c00034{bottom:409.093333pt;}
.y10_c00034{bottom:436.613333pt;}
.yf_c00034{bottom:464.160000pt;}
.ye_c00034{bottom:492.000000pt;}
.yd_c00034{bottom:519.520000pt;}
.yc_c00034{bottom:561.120000pt;}
.yb_c00034{bottom:610.746667pt;}
.ya_c00034{bottom:654.266667pt;}
.y9_c00034{bottom:689.826667pt;}
.y8_c00034{bottom:725.346667pt;}
.y7_c00034{bottom:761.186667pt;}
.y6_c00034{bottom:796.733333pt;}
.y5_c00034{bottom:832.253333pt;}
.y4_c00034{bottom:867.773333pt;}
.y3_c00034{bottom:903.653333pt;}
.y2_c00034{bottom:939.173333pt;}
.y1_c00034{bottom:993.573333pt;}
.h1_c00034{height:57.687500pt;}
.h5_c00034{height:62.781250pt;}
.h2_c00034{height:62.812500pt;}
.h4_c00034{height:94.171875pt;}
.h3_c00034{height:96.750000pt;}
.h0_c00034{height:1056.000000pt;}
.w0_c00034{width:816.000000pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:113.312000pt;}
.x4_c00034{left:272.733333pt;}
.x3_c00034{left:308.933333pt;}
.x2_c00034{left:407.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_c00035 {
    display:none;
  }
  .loading-indicator_c00035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00035 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00035 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00035" -> "#page-container .classname_c00035")
 */
.pf_c00035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00035 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00035 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00035 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00035 {overflow:visible;}
  }
}
.c_c00035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00035 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00035:after { /* webkit #35443 */
  content: '';
}
.t_c00035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00035 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00035 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00035 { /* info for Javascript */
  display:none;
}
.l_c00035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00035;src:url('chunks/assets/font_27b109edc0ae797c6fc79fb1.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_869a2ebe9b46e60ec80412d2.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00035;src:url('chunks/assets/font_07ad04a0669a2f1a659d7748.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;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_c00035;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00035;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00035;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00035{font-family:ff6_c00035;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls6_c00035{letter-spacing:-2.880000px;}
.ls5_c00035{letter-spacing:-1.440000px;}
.ls4_c00035{letter-spacing:0.000000px;}
.ls1_c00035{letter-spacing:0.720000px;}
.ls3_c00035{letter-spacing:1.440000px;}
.ls2_c00035{letter-spacing:3.600000px;}
.ls0_c00035{letter-spacing:13.656000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00035{word-spacing:-40.608000px;}
.ws0_c00035{word-spacing:-18.000000px;}
.ws2_c00035{word-spacing:0.000000px;}
._4_c00035{margin-left:-3.240000px;}
._0_c00035{margin-left:-1.872000px;}
._1_c00035{width:1.512000px;}
._2_c00035{width:2.664000px;}
._3_c00035{width:3.888000px;}
._9_c00035{width:5.184000px;}
._a_c00035{width:6.696000px;}
._e_c00035{width:8.712000px;}
._d_c00035{width:9.792000px;}
._f_c00035{width:10.872000px;}
._8_c00035{width:12.168000px;}
._7_c00035{width:13.464000px;}
._5_c00035{width:14.976000px;}
._6_c00035{width:16.200000px;}
._13_c00035{width:19.944000px;}
._b_c00035{width:23.184000px;}
._c_c00035{width:24.768000px;}
._12_c00035{width:26.712000px;}
._11_c00035{width:39.096000px;}
._10_c00035{width:40.680000px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs0_c00035{font-size:72.000000px;}
.y0_c00035{bottom:0.000000px;}
.y6_c00035{bottom:4.675500px;}
.y3_c00035{bottom:4.680000px;}
.y5_c00035{bottom:25.195500px;}
.y4_c00035{bottom:32.800500px;}
.y1_c00035{bottom:57.996000px;}
.y22_c00035{bottom:136.476000px;}
.y21_c00035{bottom:176.475000px;}
.y20_c00035{bottom:216.795000px;}
.y1f_c00035{bottom:256.755000px;}
.y1e_c00035{bottom:296.745000px;}
.y1d_c00035{bottom:336.705000px;}
.y1c_c00035{bottom:377.025000px;}
.y1b_c00035{bottom:417.030000px;}
.y1a_c00035{bottom:457.350000px;}
.y19_c00035{bottom:488.310000px;}
.y18_c00035{bottom:519.660000px;}
.y17_c00035{bottom:550.620000px;}
.y16_c00035{bottom:581.580000px;}
.y15_c00035{bottom:612.540000px;}
.y14_c00035{bottom:643.890000px;}
.y13_c00035{bottom:674.850000px;}
.y12_c00035{bottom:714.810000px;}
.y11_c00035{bottom:745.770000px;}
.y10_c00035{bottom:777.135000px;}
.yf_c00035{bottom:808.095000px;}
.ye_c00035{bottom:839.055000px;}
.yd_c00035{bottom:870.015000px;}
.yc_c00035{bottom:901.365000px;}
.yb_c00035{bottom:941.325000px;}
.ya_c00035{bottom:972.285000px;}
.y9_c00035{bottom:1003.245000px;}
.y8_c00035{bottom:1034.610000px;}
.y7_c00035{bottom:1065.570000px;}
.y2_c00035{bottom:1113.090000px;}
.h2_c00035{height:20.910000px;}
.h3_c00035{height:41.395500px;}
.h1_c00035{height:64.546875px;}
.h4_c00035{height:70.664062px;}
.h5_c00035{height:72.562500px;}
.h0_c00035{height:1188.000000px;}
.w1_c00035{width:8.265000px;}
.w2_c00035{width:663.345000px;}
.w0_c00035{width:918.000000px;}
.x0_c00035{left:0.000000px;}
.x3_c00035{left:127.489500px;}
.x1_c00035{left:154.515000px;}
.x4_c00035{left:178.635000px;}
.x2_c00035{left:782.565000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls6_c00035{letter-spacing:-2.560000pt;}
.ls5_c00035{letter-spacing:-1.280000pt;}
.ls4_c00035{letter-spacing:0.000000pt;}
.ls1_c00035{letter-spacing:0.640000pt;}
.ls3_c00035{letter-spacing:1.280000pt;}
.ls2_c00035{letter-spacing:3.200000pt;}
.ls0_c00035{letter-spacing:12.138667pt;}
.ws1_c00035{word-spacing:-36.096000pt;}
.ws0_c00035{word-spacing:-16.000000pt;}
.ws2_c00035{word-spacing:0.000000pt;}
._4_c00035{margin-left:-2.880000pt;}
._0_c00035{margin-left:-1.664000pt;}
._1_c00035{width:1.344000pt;}
._2_c00035{width:2.368000pt;}
._3_c00035{width:3.456000pt;}
._9_c00035{width:4.608000pt;}
._a_c00035{width:5.952000pt;}
._e_c00035{width:7.744000pt;}
._d_c00035{width:8.704000pt;}
._f_c00035{width:9.664000pt;}
._8_c00035{width:10.816000pt;}
._7_c00035{width:11.968000pt;}
._5_c00035{width:13.312000pt;}
._6_c00035{width:14.400000pt;}
._13_c00035{width:17.728000pt;}
._b_c00035{width:20.608000pt;}
._c_c00035{width:22.016000pt;}
._12_c00035{width:23.744000pt;}
._11_c00035{width:34.752000pt;}
._10_c00035{width:36.160000pt;}
.fs0_c00035{font-size:64.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y6_c00035{bottom:4.156000pt;}
.y3_c00035{bottom:4.160000pt;}
.y5_c00035{bottom:22.396000pt;}
.y4_c00035{bottom:29.156000pt;}
.y1_c00035{bottom:51.552000pt;}
.y22_c00035{bottom:121.312000pt;}
.y21_c00035{bottom:156.866667pt;}
.y20_c00035{bottom:192.706667pt;}
.y1f_c00035{bottom:228.226667pt;}
.y1e_c00035{bottom:263.773333pt;}
.y1d_c00035{bottom:299.293333pt;}
.y1c_c00035{bottom:335.133333pt;}
.y1b_c00035{bottom:370.693333pt;}
.y1a_c00035{bottom:406.533333pt;}
.y19_c00035{bottom:434.053333pt;}
.y18_c00035{bottom:461.920000pt;}
.y17_c00035{bottom:489.440000pt;}
.y16_c00035{bottom:516.960000pt;}
.y15_c00035{bottom:544.480000pt;}
.y14_c00035{bottom:572.346667pt;}
.y13_c00035{bottom:599.866667pt;}
.y12_c00035{bottom:635.386667pt;}
.y11_c00035{bottom:662.906667pt;}
.y10_c00035{bottom:690.786667pt;}
.yf_c00035{bottom:718.306667pt;}
.ye_c00035{bottom:745.826667pt;}
.yd_c00035{bottom:773.346667pt;}
.yc_c00035{bottom:801.213333pt;}
.yb_c00035{bottom:836.733333pt;}
.ya_c00035{bottom:864.253333pt;}
.y9_c00035{bottom:891.773333pt;}
.y8_c00035{bottom:919.653333pt;}
.y7_c00035{bottom:947.173333pt;}
.y2_c00035{bottom:989.413333pt;}
.h2_c00035{height:18.586667pt;}
.h3_c00035{height:36.796000pt;}
.h1_c00035{height:57.375000pt;}
.h4_c00035{height:62.812500pt;}
.h5_c00035{height:64.500000pt;}
.h0_c00035{height:1056.000000pt;}
.w1_c00035{width:7.346667pt;}
.w2_c00035{width:589.640000pt;}
.w0_c00035{width:816.000000pt;}
.x0_c00035{left:0.000000pt;}
.x3_c00035{left:113.324000pt;}
.x1_c00035{left:137.346667pt;}
.x4_c00035{left:158.786667pt;}
.x2_c00035{left:695.613333pt;}
}





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

.ir_c00036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00036;src:url('chunks/assets/font_dff8e9f9609c4bff93c6665b.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_f5a82fa1bc568bb393a7769a.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:0.000000px;}
._1_c00036{margin-left:-2.603802px;}
._0_c00036{margin-left:-1.061376px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs0_c00036{font-size:72.000000px;}
.fs1_c00036{font-size:96.480000px;}
.y0_c00036{bottom:0.000000px;}
.y6_c00036{bottom:4.675500px;}
.y3_c00036{bottom:4.680000px;}
.y5_c00036{bottom:25.195500px;}
.y4_c00036{bottom:32.800500px;}
.y1_c00036{bottom:57.996000px;}
.y1e_c00036{bottom:133.236000px;}
.y1d_c00036{bottom:173.595000px;}
.y1c_c00036{bottom:213.555000px;}
.y1b_c00036{bottom:253.515000px;}
.y1a_c00036{bottom:293.505000px;}
.y19_c00036{bottom:333.825000px;}
.y18_c00036{bottom:373.785000px;}
.y17_c00036{bottom:413.790000px;}
.y16_c00036{bottom:453.750000px;}
.y15_c00036{bottom:494.070000px;}
.y14_c00036{bottom:534.060000px;}
.y13_c00036{bottom:574.020000px;}
.y12_c00036{bottom:613.980000px;}
.y11_c00036{bottom:659.010000px;}
.y10_c00036{bottom:704.730000px;}
.yf_c00036{bottom:744.690000px;}
.ye_c00036{bottom:784.695000px;}
.yd_c00036{bottom:824.655000px;}
.yc_c00036{bottom:864.975000px;}
.yb_c00036{bottom:904.965000px;}
.ya_c00036{bottom:944.925000px;}
.y9_c00036{bottom:984.885000px;}
.y8_c00036{bottom:1025.250000px;}
.y7_c00036{bottom:1065.210000px;}
.y2_c00036{bottom:1113.090000px;}
.h2_c00036{height:20.910000px;}
.h3_c00036{height:41.395500px;}
.h1_c00036{height:64.546875px;}
.h4_c00036{height:72.562500px;}
.h5_c00036{height:97.233750px;}
.h0_c00036{height:1188.000000px;}
.w1_c00036{width:8.265000px;}
.w2_c00036{width:663.345000px;}
.w0_c00036{width:918.000000px;}
.x0_c00036{left:0.000000px;}
.x3_c00036{left:127.489500px;}
.x1_c00036{left:154.515000px;}
.x4_c00036{left:221.115000px;}
.x2_c00036{left:782.565000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
._1_c00036{margin-left:-2.314491pt;}
._0_c00036{margin-left:-0.943446pt;}
.fs0_c00036{font-size:64.000000pt;}
.fs1_c00036{font-size:85.760000pt;}
.y0_c00036{bottom:0.000000pt;}
.y6_c00036{bottom:4.156000pt;}
.y3_c00036{bottom:4.160000pt;}
.y5_c00036{bottom:22.396000pt;}
.y4_c00036{bottom:29.156000pt;}
.y1_c00036{bottom:51.552000pt;}
.y1e_c00036{bottom:118.432000pt;}
.y1d_c00036{bottom:154.306667pt;}
.y1c_c00036{bottom:189.826667pt;}
.y1b_c00036{bottom:225.346667pt;}
.y1a_c00036{bottom:260.893333pt;}
.y19_c00036{bottom:296.733333pt;}
.y18_c00036{bottom:332.253333pt;}
.y17_c00036{bottom:367.813333pt;}
.y16_c00036{bottom:403.333333pt;}
.y15_c00036{bottom:439.173333pt;}
.y14_c00036{bottom:474.720000pt;}
.y13_c00036{bottom:510.240000pt;}
.y12_c00036{bottom:545.760000pt;}
.y11_c00036{bottom:585.786667pt;}
.y10_c00036{bottom:626.426667pt;}
.yf_c00036{bottom:661.946667pt;}
.ye_c00036{bottom:697.506667pt;}
.yd_c00036{bottom:733.026667pt;}
.yc_c00036{bottom:768.866667pt;}
.yb_c00036{bottom:804.413333pt;}
.ya_c00036{bottom:839.933333pt;}
.y9_c00036{bottom:875.453333pt;}
.y8_c00036{bottom:911.333333pt;}
.y7_c00036{bottom:946.853333pt;}
.y2_c00036{bottom:989.413333pt;}
.h2_c00036{height:18.586667pt;}
.h3_c00036{height:36.796000pt;}
.h1_c00036{height:57.375000pt;}
.h4_c00036{height:64.500000pt;}
.h5_c00036{height:86.430000pt;}
.h0_c00036{height:1056.000000pt;}
.w1_c00036{width:7.346667pt;}
.w2_c00036{width:589.640000pt;}
.w0_c00036{width:816.000000pt;}
.x0_c00036{left:0.000000pt;}
.x3_c00036{left:113.324000pt;}
.x1_c00036{left:137.346667pt;}
.x4_c00036{left:196.546667pt;}
.x2_c00036{left:695.613333pt;}
}





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

.ir_c00037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00037;src:url('chunks/assets/font_38365768d86dd11013004aef.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_9e4dfb446c25082db89b5d41.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_c2fee3a51fe01bbcb13e0626.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00037;src:url('chunks/assets/font_5c6e567f81a2f1dfda8fd7f0.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;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_c00037;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls3_c00037{letter-spacing:-1.440000px;}
.ls2_c00037{letter-spacing:0.000000px;}
.ls1_c00037{letter-spacing:1.440000px;}
.ls0_c00037{letter-spacing:13.680000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00037{word-spacing:-18.000000px;}
.ws1_c00037{word-spacing:0.000000px;}
._4_c00037{margin-left:-2.736000px;}
._1_c00037{margin-left:-1.296000px;}
._0_c00037{width:1.296000px;}
._5_c00037{width:2.304000px;}
._6_c00037{width:3.384000px;}
._a_c00037{width:4.416000px;}
._7_c00037{width:6.348000px;}
._11_c00037{width:7.416000px;}
._8_c00037{width:8.484000px;}
._12_c00037{width:9.792000px;}
._9_c00037{width:12.900000px;}
._b_c00037{width:14.820000px;}
._c_c00037{width:16.776000px;}
._2_c00037{width:20.520000px;}
._10_c00037{width:21.528000px;}
._3_c00037{width:22.536000px;}
._d_c00037{width:24.552000px;}
._e_c00037{width:25.920000px;}
._f_c00037{width:27.432000px;}
.fc0_c00037{color:rgb(0,0,0);}
.fs0_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y6_c00037{bottom:4.675500px;}
.y3_c00037{bottom:4.680000px;}
.y5_c00037{bottom:25.195500px;}
.y4_c00037{bottom:32.800500px;}
.y1_c00037{bottom:57.996000px;}
.y24_c00037{bottom:137.916000px;}
.y23_c00037{bottom:168.915000px;}
.y22_c00037{bottom:199.875000px;}
.y21_c00037{bottom:230.835000px;}
.y20_c00037{bottom:262.155000px;}
.y1f_c00037{bottom:293.145000px;}
.y1e_c00037{bottom:324.105000px;}
.y1d_c00037{bottom:355.065000px;}
.y1c_c00037{bottom:386.385000px;}
.y1b_c00037{bottom:417.390000px;}
.y1a_c00037{bottom:448.350000px;}
.y19_c00037{bottom:479.310000px;}
.y18_c00037{bottom:519.660000px;}
.y17_c00037{bottom:550.620000px;}
.y16_c00037{bottom:581.580000px;}
.y15_c00037{bottom:612.540000px;}
.y14_c00037{bottom:643.890000px;}
.y13_c00037{bottom:674.850000px;}
.y12_c00037{bottom:705.810000px;}
.y11_c00037{bottom:736.770000px;}
.y10_c00037{bottom:768.135000px;}
.yf_c00037{bottom:799.095000px;}
.ye_c00037{bottom:830.055000px;}
.yd_c00037{bottom:861.015000px;}
.yc_c00037{bottom:892.365000px;}
.yb_c00037{bottom:923.325000px;}
.ya_c00037{bottom:954.285000px;}
.y9_c00037{bottom:985.245000px;}
.y8_c00037{bottom:1025.610000px;}
.y7_c00037{bottom:1065.210000px;}
.y2_c00037{bottom:1113.090000px;}
.h2_c00037{height:20.910000px;}
.h3_c00037{height:41.395500px;}
.h1_c00037{height:64.546875px;}
.h5_c00037{height:70.664062px;}
.h4_c00037{height:72.562500px;}
.h0_c00037{height:1188.000000px;}
.w1_c00037{width:8.265000px;}
.w2_c00037{width:663.345000px;}
.w0_c00037{width:918.000000px;}
.x0_c00037{left:0.000000px;}
.x3_c00037{left:127.489500px;}
.x1_c00037{left:154.515000px;}
.x5_c00037{left:180.795000px;}
.x4_c00037{left:271.545000px;}
.x2_c00037{left:782.565000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls3_c00037{letter-spacing:-1.280000pt;}
.ls2_c00037{letter-spacing:0.000000pt;}
.ls1_c00037{letter-spacing:1.280000pt;}
.ls0_c00037{letter-spacing:12.160000pt;}
.ws0_c00037{word-spacing:-16.000000pt;}
.ws1_c00037{word-spacing:0.000000pt;}
._4_c00037{margin-left:-2.432000pt;}
._1_c00037{margin-left:-1.152000pt;}
._0_c00037{width:1.152000pt;}
._5_c00037{width:2.048000pt;}
._6_c00037{width:3.008000pt;}
._a_c00037{width:3.925333pt;}
._7_c00037{width:5.642667pt;}
._11_c00037{width:6.592000pt;}
._8_c00037{width:7.541333pt;}
._12_c00037{width:8.704000pt;}
._9_c00037{width:11.466667pt;}
._b_c00037{width:13.173333pt;}
._c_c00037{width:14.912000pt;}
._2_c00037{width:18.240000pt;}
._10_c00037{width:19.136000pt;}
._3_c00037{width:20.032000pt;}
._d_c00037{width:21.824000pt;}
._e_c00037{width:23.040000pt;}
._f_c00037{width:24.384000pt;}
.fs0_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y6_c00037{bottom:4.156000pt;}
.y3_c00037{bottom:4.160000pt;}
.y5_c00037{bottom:22.396000pt;}
.y4_c00037{bottom:29.156000pt;}
.y1_c00037{bottom:51.552000pt;}
.y24_c00037{bottom:122.592000pt;}
.y23_c00037{bottom:150.146667pt;}
.y22_c00037{bottom:177.666667pt;}
.y21_c00037{bottom:205.186667pt;}
.y20_c00037{bottom:233.026667pt;}
.y1f_c00037{bottom:260.573333pt;}
.y1e_c00037{bottom:288.093333pt;}
.y1d_c00037{bottom:315.613333pt;}
.y1c_c00037{bottom:343.453333pt;}
.y1b_c00037{bottom:371.013333pt;}
.y1a_c00037{bottom:398.533333pt;}
.y19_c00037{bottom:426.053333pt;}
.y18_c00037{bottom:461.920000pt;}
.y17_c00037{bottom:489.440000pt;}
.y16_c00037{bottom:516.960000pt;}
.y15_c00037{bottom:544.480000pt;}
.y14_c00037{bottom:572.346667pt;}
.y13_c00037{bottom:599.866667pt;}
.y12_c00037{bottom:627.386667pt;}
.y11_c00037{bottom:654.906667pt;}
.y10_c00037{bottom:682.786667pt;}
.yf_c00037{bottom:710.306667pt;}
.ye_c00037{bottom:737.826667pt;}
.yd_c00037{bottom:765.346667pt;}
.yc_c00037{bottom:793.213333pt;}
.yb_c00037{bottom:820.733333pt;}
.ya_c00037{bottom:848.253333pt;}
.y9_c00037{bottom:875.773333pt;}
.y8_c00037{bottom:911.653333pt;}
.y7_c00037{bottom:946.853333pt;}
.y2_c00037{bottom:989.413333pt;}
.h2_c00037{height:18.586667pt;}
.h3_c00037{height:36.796000pt;}
.h1_c00037{height:57.375000pt;}
.h5_c00037{height:62.812500pt;}
.h4_c00037{height:64.500000pt;}
.h0_c00037{height:1056.000000pt;}
.w1_c00037{width:7.346667pt;}
.w2_c00037{width:589.640000pt;}
.w0_c00037{width:816.000000pt;}
.x0_c00037{left:0.000000pt;}
.x3_c00037{left:113.324000pt;}
.x1_c00037{left:137.346667pt;}
.x5_c00037{left:160.706667pt;}
.x4_c00037{left:241.373333pt;}
.x2_c00037{left:695.613333pt;}
}





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

.ir_c00038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00038;src:url('chunks/assets/font_161fda424c40c7b405d6e0a7.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_ab10f03990b44582a070a8ea.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls0_c00038{letter-spacing:0.000000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:0.000000px;}
._3_c00038{margin-left:-2.736000px;}
._1_c00038{margin-left:-1.584000px;}
._0_c00038{width:1.296000px;}
._5_c00038{width:2.520000px;}
._6_c00038{width:3.600000px;}
._10_c00038{width:4.680000px;}
._2_c00038{width:5.832000px;}
._4_c00038{width:6.984000px;}
._7_c00038{width:8.352000px;}
._d_c00038{width:9.576000px;}
._e_c00038{width:11.160000px;}
._f_c00038{width:13.116024px;}
._12_c00038{width:14.616000px;}
._11_c00038{width:16.488000px;}
._15_c00038{width:19.020024px;}
._9_c00038{width:20.160000px;}
._8_c00038{width:21.240000px;}
._a_c00038{width:23.112000px;}
._b_c00038{width:26.123976px;}
._16_c00038{width:28.728000px;}
._c_c00038{width:32.256000px;}
._14_c00038{width:33.624000px;}
._13_c00038{width:36.000000px;}
.fc0_c00038{color:rgb(0,0,0);}
.fs0_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y6_c00038{bottom:4.675500px;}
.y3_c00038{bottom:4.680000px;}
.y5_c00038{bottom:25.195500px;}
.y4_c00038{bottom:32.800500px;}
.y1_c00038{bottom:57.996000px;}
.y24_c00038{bottom:137.916000px;}
.y23_c00038{bottom:168.915000px;}
.y22_c00038{bottom:199.875000px;}
.y21_c00038{bottom:230.835000px;}
.y20_c00038{bottom:271.155000px;}
.y1f_c00038{bottom:302.145000px;}
.y1e_c00038{bottom:333.105000px;}
.y1d_c00038{bottom:364.065000px;}
.y1c_c00038{bottom:395.430000px;}
.y1b_c00038{bottom:426.390000px;}
.y1a_c00038{bottom:457.350000px;}
.y19_c00038{bottom:488.310000px;}
.y18_c00038{bottom:519.660000px;}
.y17_c00038{bottom:550.620000px;}
.y16_c00038{bottom:581.580000px;}
.y15_c00038{bottom:612.540000px;}
.y14_c00038{bottom:643.890000px;}
.y13_c00038{bottom:674.850000px;}
.y12_c00038{bottom:705.810000px;}
.y11_c00038{bottom:745.770000px;}
.y10_c00038{bottom:777.135000px;}
.yf_c00038{bottom:808.095000px;}
.ye_c00038{bottom:839.055000px;}
.yd_c00038{bottom:870.015000px;}
.yc_c00038{bottom:901.365000px;}
.yb_c00038{bottom:932.325000px;}
.ya_c00038{bottom:963.285000px;}
.y9_c00038{bottom:994.245000px;}
.y8_c00038{bottom:1025.610000px;}
.y7_c00038{bottom:1065.570000px;}
.y2_c00038{bottom:1113.090000px;}
.h2_c00038{height:20.910000px;}
.h3_c00038{height:41.395500px;}
.h1_c00038{height:64.546875px;}
.h4_c00038{height:70.664062px;}
.h0_c00038{height:1188.000000px;}
.w1_c00038{width:8.265000px;}
.w2_c00038{width:663.345000px;}
.w0_c00038{width:918.000000px;}
.x0_c00038{left:0.000000px;}
.x3_c00038{left:127.489500px;}
.x1_c00038{left:154.515000px;}
.x5_c00038{left:178.635000px;}
.x4_c00038{left:180.795000px;}
.x2_c00038{left:782.565000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:0.000000pt;}
._3_c00038{margin-left:-2.432000pt;}
._1_c00038{margin-left:-1.408000pt;}
._0_c00038{width:1.152000pt;}
._5_c00038{width:2.240000pt;}
._6_c00038{width:3.200000pt;}
._10_c00038{width:4.160000pt;}
._2_c00038{width:5.184000pt;}
._4_c00038{width:6.208000pt;}
._7_c00038{width:7.424000pt;}
._d_c00038{width:8.512000pt;}
._e_c00038{width:9.920000pt;}
._f_c00038{width:11.658688pt;}
._12_c00038{width:12.992000pt;}
._11_c00038{width:14.656000pt;}
._15_c00038{width:16.906688pt;}
._9_c00038{width:17.920000pt;}
._8_c00038{width:18.880000pt;}
._a_c00038{width:20.544000pt;}
._b_c00038{width:23.221312pt;}
._16_c00038{width:25.536000pt;}
._c_c00038{width:28.672000pt;}
._14_c00038{width:29.888000pt;}
._13_c00038{width:32.000000pt;}
.fs0_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y6_c00038{bottom:4.156000pt;}
.y3_c00038{bottom:4.160000pt;}
.y5_c00038{bottom:22.396000pt;}
.y4_c00038{bottom:29.156000pt;}
.y1_c00038{bottom:51.552000pt;}
.y24_c00038{bottom:122.592000pt;}
.y23_c00038{bottom:150.146667pt;}
.y22_c00038{bottom:177.666667pt;}
.y21_c00038{bottom:205.186667pt;}
.y20_c00038{bottom:241.026667pt;}
.y1f_c00038{bottom:268.573333pt;}
.y1e_c00038{bottom:296.093333pt;}
.y1d_c00038{bottom:323.613333pt;}
.y1c_c00038{bottom:351.493333pt;}
.y1b_c00038{bottom:379.013333pt;}
.y1a_c00038{bottom:406.533333pt;}
.y19_c00038{bottom:434.053333pt;}
.y18_c00038{bottom:461.920000pt;}
.y17_c00038{bottom:489.440000pt;}
.y16_c00038{bottom:516.960000pt;}
.y15_c00038{bottom:544.480000pt;}
.y14_c00038{bottom:572.346667pt;}
.y13_c00038{bottom:599.866667pt;}
.y12_c00038{bottom:627.386667pt;}
.y11_c00038{bottom:662.906667pt;}
.y10_c00038{bottom:690.786667pt;}
.yf_c00038{bottom:718.306667pt;}
.ye_c00038{bottom:745.826667pt;}
.yd_c00038{bottom:773.346667pt;}
.yc_c00038{bottom:801.213333pt;}
.yb_c00038{bottom:828.733333pt;}
.ya_c00038{bottom:856.253333pt;}
.y9_c00038{bottom:883.773333pt;}
.y8_c00038{bottom:911.653333pt;}
.y7_c00038{bottom:947.173333pt;}
.y2_c00038{bottom:989.413333pt;}
.h2_c00038{height:18.586667pt;}
.h3_c00038{height:36.796000pt;}
.h1_c00038{height:57.375000pt;}
.h4_c00038{height:62.812500pt;}
.h0_c00038{height:1056.000000pt;}
.w1_c00038{width:7.346667pt;}
.w2_c00038{width:589.640000pt;}
.w0_c00038{width:816.000000pt;}
.x0_c00038{left:0.000000pt;}
.x3_c00038{left:113.324000pt;}
.x1_c00038{left:137.346667pt;}
.x5_c00038{left:158.786667pt;}
.x4_c00038{left:160.706667pt;}
.x2_c00038{left:695.613333pt;}
}





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

.ir_c00039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00039;src:url('chunks/assets/font_7abdf19ba89432993adba2f6.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_0c76ed36bfba4235738bdacc.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_41a027f5df8789b3642074b0.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;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_c00039;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff5_c00039{font-family:ff5_c00039;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls5_c00039{letter-spacing:-1.440000px;}
.ls6_c00039{letter-spacing:-0.648000px;}
.ls4_c00039{letter-spacing:0.000000px;}
.ls3_c00039{letter-spacing:0.144000px;}
.ls2_c00039{letter-spacing:7.896000px;}
.ls0_c00039{letter-spacing:7.920000px;}
.ls1_c00039{letter-spacing:10.800000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:-40.608000px;}
.ws1_c00039{word-spacing:-18.000000px;}
.ws2_c00039{word-spacing:0.000000px;}
._3_c00039{margin-left:-2.736000px;}
._0_c00039{margin-left:-1.080000px;}
._1_c00039{width:1.512000px;}
._7_c00039{width:2.664000px;}
._6_c00039{width:3.960000px;}
._8_c00039{width:5.400000px;}
._c_c00039{width:6.708024px;}
._e_c00039{width:7.751952px;}
._2_c00039{width:8.784000px;}
._5_c00039{width:10.224000px;}
._4_c00039{width:11.363976px;}
._d_c00039{width:12.732120px;}
._f_c00039{width:14.483880px;}
._11_c00039{width:15.504480px;}
._10_c00039{width:16.692120px;}
._9_c00039{width:19.944000px;}
._a_c00039{width:21.024000px;}
._b_c00039{width:22.104000px;}
._14_c00039{width:29.520000px;}
._13_c00039{width:32.184000px;}
._12_c00039{width:33.480000px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs0_c00039{font-size:72.000000px;}
.y0_c00039{bottom:0.000000px;}
.y6_c00039{bottom:4.675500px;}
.y3_c00039{bottom:4.680000px;}
.y5_c00039{bottom:25.195500px;}
.y4_c00039{bottom:32.800500px;}
.y1_c00039{bottom:57.996000px;}
.y24_c00039{bottom:137.916000px;}
.y23_c00039{bottom:168.915000px;}
.y22_c00039{bottom:199.875000px;}
.y21_c00039{bottom:239.835000px;}
.y20_c00039{bottom:271.155000px;}
.y1f_c00039{bottom:302.145000px;}
.y1e_c00039{bottom:333.105000px;}
.y1d_c00039{bottom:364.065000px;}
.y1c_c00039{bottom:395.430000px;}
.y1b_c00039{bottom:426.390000px;}
.y1a_c00039{bottom:457.350000px;}
.y19_c00039{bottom:488.310000px;}
.y18_c00039{bottom:528.660000px;}
.y17_c00039{bottom:559.620000px;}
.y16_c00039{bottom:590.580000px;}
.y15_c00039{bottom:621.540000px;}
.y14_c00039{bottom:652.890000px;}
.y13_c00039{bottom:683.850000px;}
.y12_c00039{bottom:714.810000px;}
.y11_c00039{bottom:745.770000px;}
.y10_c00039{bottom:777.135000px;}
.yf_c00039{bottom:808.095000px;}
.ye_c00039{bottom:839.055000px;}
.yd_c00039{bottom:870.015000px;}
.yc_c00039{bottom:910.365000px;}
.yb_c00039{bottom:941.325000px;}
.ya_c00039{bottom:972.285000px;}
.y9_c00039{bottom:1003.245000px;}
.y8_c00039{bottom:1034.610000px;}
.y7_c00039{bottom:1065.570000px;}
.y2_c00039{bottom:1113.090000px;}
.h2_c00039{height:20.910000px;}
.h3_c00039{height:41.395500px;}
.h1_c00039{height:64.546875px;}
.h4_c00039{height:70.664062px;}
.h0_c00039{height:1188.000000px;}
.w1_c00039{width:8.265000px;}
.w2_c00039{width:663.345000px;}
.w0_c00039{width:918.000000px;}
.x0_c00039{left:0.000000px;}
.x3_c00039{left:127.489500px;}
.x1_c00039{left:154.515000px;}
.x4_c00039{left:180.795000px;}
.x2_c00039{left:782.565000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls5_c00039{letter-spacing:-1.280000pt;}
.ls6_c00039{letter-spacing:-0.576000pt;}
.ls4_c00039{letter-spacing:0.000000pt;}
.ls3_c00039{letter-spacing:0.128000pt;}
.ls2_c00039{letter-spacing:7.018667pt;}
.ls0_c00039{letter-spacing:7.040000pt;}
.ls1_c00039{letter-spacing:9.600000pt;}
.ws0_c00039{word-spacing:-36.096000pt;}
.ws1_c00039{word-spacing:-16.000000pt;}
.ws2_c00039{word-spacing:0.000000pt;}
._3_c00039{margin-left:-2.432000pt;}
._0_c00039{margin-left:-0.960000pt;}
._1_c00039{width:1.344000pt;}
._7_c00039{width:2.368000pt;}
._6_c00039{width:3.520000pt;}
._8_c00039{width:4.800000pt;}
._c_c00039{width:5.962688pt;}
._e_c00039{width:6.890624pt;}
._2_c00039{width:7.808000pt;}
._5_c00039{width:9.088000pt;}
._4_c00039{width:10.101312pt;}
._d_c00039{width:11.317440pt;}
._f_c00039{width:12.874560pt;}
._11_c00039{width:13.781760pt;}
._10_c00039{width:14.837440pt;}
._9_c00039{width:17.728000pt;}
._a_c00039{width:18.688000pt;}
._b_c00039{width:19.648000pt;}
._14_c00039{width:26.240000pt;}
._13_c00039{width:28.608000pt;}
._12_c00039{width:29.760000pt;}
.fs0_c00039{font-size:64.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y6_c00039{bottom:4.156000pt;}
.y3_c00039{bottom:4.160000pt;}
.y5_c00039{bottom:22.396000pt;}
.y4_c00039{bottom:29.156000pt;}
.y1_c00039{bottom:51.552000pt;}
.y24_c00039{bottom:122.592000pt;}
.y23_c00039{bottom:150.146667pt;}
.y22_c00039{bottom:177.666667pt;}
.y21_c00039{bottom:213.186667pt;}
.y20_c00039{bottom:241.026667pt;}
.y1f_c00039{bottom:268.573333pt;}
.y1e_c00039{bottom:296.093333pt;}
.y1d_c00039{bottom:323.613333pt;}
.y1c_c00039{bottom:351.493333pt;}
.y1b_c00039{bottom:379.013333pt;}
.y1a_c00039{bottom:406.533333pt;}
.y19_c00039{bottom:434.053333pt;}
.y18_c00039{bottom:469.920000pt;}
.y17_c00039{bottom:497.440000pt;}
.y16_c00039{bottom:524.960000pt;}
.y15_c00039{bottom:552.480000pt;}
.y14_c00039{bottom:580.346667pt;}
.y13_c00039{bottom:607.866667pt;}
.y12_c00039{bottom:635.386667pt;}
.y11_c00039{bottom:662.906667pt;}
.y10_c00039{bottom:690.786667pt;}
.yf_c00039{bottom:718.306667pt;}
.ye_c00039{bottom:745.826667pt;}
.yd_c00039{bottom:773.346667pt;}
.yc_c00039{bottom:809.213333pt;}
.yb_c00039{bottom:836.733333pt;}
.ya_c00039{bottom:864.253333pt;}
.y9_c00039{bottom:891.773333pt;}
.y8_c00039{bottom:919.653333pt;}
.y7_c00039{bottom:947.173333pt;}
.y2_c00039{bottom:989.413333pt;}
.h2_c00039{height:18.586667pt;}
.h3_c00039{height:36.796000pt;}
.h1_c00039{height:57.375000pt;}
.h4_c00039{height:62.812500pt;}
.h0_c00039{height:1056.000000pt;}
.w1_c00039{width:7.346667pt;}
.w2_c00039{width:589.640000pt;}
.w0_c00039{width:816.000000pt;}
.x0_c00039{left:0.000000pt;}
.x3_c00039{left:113.324000pt;}
.x1_c00039{left:137.346667pt;}
.x4_c00039{left:160.706667pt;}
.x2_c00039{left:695.613333pt;}
}





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

.ir_c00040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00040;src:url('chunks/assets/font_54eed7f73002e8c4e16568b4.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_563b5edf3ad880d91c359616.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_2b1206e5bdbc0735d1157b60.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;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_c00040;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00040;src:url('chunks/assets/font_abf73cfcd4b4c70761ca153c.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls3_c00040{letter-spacing:-1.440000px;}
.ls2_c00040{letter-spacing:0.000000px;}
.ls5_c00040{letter-spacing:0.504000px;}
.ls1_c00040{letter-spacing:0.720000px;}
.ls4_c00040{letter-spacing:1.152000px;}
.ls0_c00040{letter-spacing:2.160000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00040{word-spacing:-72.000000px;}
.ws4_c00040{word-spacing:-60.480000px;}
.ws2_c00040{word-spacing:-19.152000px;}
.ws3_c00040{word-spacing:-18.504000px;}
.ws0_c00040{word-spacing:-18.000000px;}
.ws5_c00040{word-spacing:0.000000px;}
._d_c00040{margin-left:-3.240000px;}
._3_c00040{margin-left:-2.160000px;}
._1_c00040{margin-left:-1.152000px;}
._0_c00040{width:1.512000px;}
._4_c00040{width:2.808000px;}
._b_c00040{width:3.888000px;}
._e_c00040{width:4.968000px;}
._f_c00040{width:6.503976px;}
._12_c00040{width:7.572024px;}
._11_c00040{width:8.784000px;}
._c_c00040{width:10.152000px;}
._9_c00040{width:11.232000px;}
._a_c00040{width:12.312000px;}
._15_c00040{width:13.968000px;}
._7_c00040{width:15.768000px;}
._8_c00040{width:16.920000px;}
._13_c00040{width:19.224000px;}
._5_c00040{width:20.448000px;}
._6_c00040{width:21.528000px;}
._2_c00040{width:22.536000px;}
._10_c00040{width:23.688000px;}
._14_c00040{width:25.272000px;}
.fc0_c00040{color:rgb(0,0,0);}
.fs2_c00040{font-size:38.880000px;}
.fs1_c00040{font-size:47.520000px;}
.fs3_c00040{font-size:60.480000px;}
.fs0_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y6_c00040{bottom:4.675500px;}
.y3_c00040{bottom:4.680000px;}
.y5_c00040{bottom:25.195500px;}
.y4_c00040{bottom:32.800500px;}
.y1_c00040{bottom:57.996000px;}
.y27_c00040{bottom:130.716000px;}
.y26_c00040{bottom:147.996000px;}
.y25_c00040{bottom:154.875000px;}
.y24_c00040{bottom:165.675000px;}
.y23_c00040{bottom:208.875000px;}
.y22_c00040{bottom:239.835000px;}
.y21_c00040{bottom:271.155000px;}
.y20_c00040{bottom:302.145000px;}
.y1f_c00040{bottom:333.105000px;}
.y1e_c00040{bottom:364.065000px;}
.y1d_c00040{bottom:395.430000px;}
.y1c_c00040{bottom:426.390000px;}
.y1a_c00040{bottom:457.350000px;}
.y1b_c00040{bottom:465.630000px;}
.y19_c00040{bottom:488.310000px;}
.y18_c00040{bottom:519.660000px;}
.y17_c00040{bottom:550.620000px;}
.y16_c00040{bottom:581.580000px;}
.y15_c00040{bottom:612.540000px;}
.y14_c00040{bottom:643.890000px;}
.y13_c00040{bottom:683.850000px;}
.y12_c00040{bottom:714.810000px;}
.y11_c00040{bottom:745.770000px;}
.y10_c00040{bottom:777.135000px;}
.yf_c00040{bottom:808.095000px;}
.ye_c00040{bottom:839.055000px;}
.yd_c00040{bottom:870.015000px;}
.yc_c00040{bottom:910.365000px;}
.yb_c00040{bottom:941.325000px;}
.ya_c00040{bottom:972.285000px;}
.y9_c00040{bottom:1003.245000px;}
.y8_c00040{bottom:1034.610000px;}
.y7_c00040{bottom:1065.570000px;}
.y2_c00040{bottom:1113.090000px;}
.h2_c00040{height:20.910000px;}
.h7_c00040{height:34.855313px;}
.h3_c00040{height:41.395500px;}
.h6_c00040{height:46.615078px;}
.h9_c00040{height:54.219375px;}
.h8_c00040{height:54.514688px;}
.h1_c00040{height:64.546875px;}
.h4_c00040{height:70.664062px;}
.h5_c00040{height:1187.995500px;}
.h0_c00040{height:1188.000000px;}
.w1_c00040{width:8.265000px;}
.w2_c00040{width:663.345000px;}
.w3_c00040{width:917.997000px;}
.w0_c00040{width:918.000000px;}
.x0_c00040{left:0.000000px;}
.x3_c00040{left:127.489500px;}
.x8_c00040{left:132.516000px;}
.x1_c00040{left:154.515000px;}
.x4_c00040{left:180.795000px;}
.x7_c00040{left:343.590000px;}
.x5_c00040{left:457.377000px;}
.x6_c00040{left:463.500000px;}
.x2_c00040{left:782.565000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls3_c00040{letter-spacing:-1.280000pt;}
.ls2_c00040{letter-spacing:0.000000pt;}
.ls5_c00040{letter-spacing:0.448000pt;}
.ls1_c00040{letter-spacing:0.640000pt;}
.ls4_c00040{letter-spacing:1.024000pt;}
.ls0_c00040{letter-spacing:1.920000pt;}
.ws1_c00040{word-spacing:-64.000000pt;}
.ws4_c00040{word-spacing:-53.760000pt;}
.ws2_c00040{word-spacing:-17.024000pt;}
.ws3_c00040{word-spacing:-16.448000pt;}
.ws0_c00040{word-spacing:-16.000000pt;}
.ws5_c00040{word-spacing:0.000000pt;}
._d_c00040{margin-left:-2.880000pt;}
._3_c00040{margin-left:-1.920000pt;}
._1_c00040{margin-left:-1.024000pt;}
._0_c00040{width:1.344000pt;}
._4_c00040{width:2.496000pt;}
._b_c00040{width:3.456000pt;}
._e_c00040{width:4.416000pt;}
._f_c00040{width:5.781312pt;}
._12_c00040{width:6.730688pt;}
._11_c00040{width:7.808000pt;}
._c_c00040{width:9.024000pt;}
._9_c00040{width:9.984000pt;}
._a_c00040{width:10.944000pt;}
._15_c00040{width:12.416000pt;}
._7_c00040{width:14.016000pt;}
._8_c00040{width:15.040000pt;}
._13_c00040{width:17.088000pt;}
._5_c00040{width:18.176000pt;}
._6_c00040{width:19.136000pt;}
._2_c00040{width:20.032000pt;}
._10_c00040{width:21.056000pt;}
._14_c00040{width:22.464000pt;}
.fs2_c00040{font-size:34.560000pt;}
.fs1_c00040{font-size:42.240000pt;}
.fs3_c00040{font-size:53.760000pt;}
.fs0_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y6_c00040{bottom:4.156000pt;}
.y3_c00040{bottom:4.160000pt;}
.y5_c00040{bottom:22.396000pt;}
.y4_c00040{bottom:29.156000pt;}
.y1_c00040{bottom:51.552000pt;}
.y27_c00040{bottom:116.192000pt;}
.y26_c00040{bottom:131.552000pt;}
.y25_c00040{bottom:137.666667pt;}
.y24_c00040{bottom:147.266667pt;}
.y23_c00040{bottom:185.666667pt;}
.y22_c00040{bottom:213.186667pt;}
.y21_c00040{bottom:241.026667pt;}
.y20_c00040{bottom:268.573333pt;}
.y1f_c00040{bottom:296.093333pt;}
.y1e_c00040{bottom:323.613333pt;}
.y1d_c00040{bottom:351.493333pt;}
.y1c_c00040{bottom:379.013333pt;}
.y1a_c00040{bottom:406.533333pt;}
.y1b_c00040{bottom:413.893333pt;}
.y19_c00040{bottom:434.053333pt;}
.y18_c00040{bottom:461.920000pt;}
.y17_c00040{bottom:489.440000pt;}
.y16_c00040{bottom:516.960000pt;}
.y15_c00040{bottom:544.480000pt;}
.y14_c00040{bottom:572.346667pt;}
.y13_c00040{bottom:607.866667pt;}
.y12_c00040{bottom:635.386667pt;}
.y11_c00040{bottom:662.906667pt;}
.y10_c00040{bottom:690.786667pt;}
.yf_c00040{bottom:718.306667pt;}
.ye_c00040{bottom:745.826667pt;}
.yd_c00040{bottom:773.346667pt;}
.yc_c00040{bottom:809.213333pt;}
.yb_c00040{bottom:836.733333pt;}
.ya_c00040{bottom:864.253333pt;}
.y9_c00040{bottom:891.773333pt;}
.y8_c00040{bottom:919.653333pt;}
.y7_c00040{bottom:947.173333pt;}
.y2_c00040{bottom:989.413333pt;}
.h2_c00040{height:18.586667pt;}
.h7_c00040{height:30.982500pt;}
.h3_c00040{height:36.796000pt;}
.h6_c00040{height:41.435625pt;}
.h9_c00040{height:48.195000pt;}
.h8_c00040{height:48.457500pt;}
.h1_c00040{height:57.375000pt;}
.h4_c00040{height:62.812500pt;}
.h5_c00040{height:1055.996000pt;}
.h0_c00040{height:1056.000000pt;}
.w1_c00040{width:7.346667pt;}
.w2_c00040{width:589.640000pt;}
.w3_c00040{width:815.997333pt;}
.w0_c00040{width:816.000000pt;}
.x0_c00040{left:0.000000pt;}
.x3_c00040{left:113.324000pt;}
.x8_c00040{left:117.792000pt;}
.x1_c00040{left:137.346667pt;}
.x4_c00040{left:160.706667pt;}
.x7_c00040{left:305.413333pt;}
.x5_c00040{left:406.557333pt;}
.x6_c00040{left:412.000000pt;}
.x2_c00040{left:695.613333pt;}
}





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

.ir_c00041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00041;src:url('chunks/assets/font_d3d513adbd001a55221fd0b1.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_2035de6e33860df11b543c06.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_f023438b632e728427ffd8a4.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;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_c00041;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls2_c00041{letter-spacing:-2.880000px;}
.ls1_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:0.720000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00041{word-spacing:-72.000000px;}
.ws0_c00041{word-spacing:-18.000000px;}
.ws2_c00041{word-spacing:0.000000px;}
._c_c00041{margin-left:-3.600000px;}
._2_c00041{margin-left:-2.304000px;}
._0_c00041{margin-left:-1.224000px;}
._1_c00041{width:1.512000px;}
._3_c00041{width:3.024000px;}
._4_c00041{width:4.176000px;}
._5_c00041{width:5.472000px;}
._b_c00041{width:6.768000px;}
._e_c00041{width:8.856000px;}
._d_c00041{width:10.080000px;}
._6_c00041{width:11.880000px;}
._7_c00041{width:13.824000px;}
._9_c00041{width:19.224000px;}
._a_c00041{width:20.232000px;}
._f_c00041{width:22.104000px;}
._8_c00041{width:168.636024px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs0_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y6_c00041{bottom:4.675500px;}
.y3_c00041{bottom:4.680000px;}
.y5_c00041{bottom:25.195500px;}
.y4_c00041{bottom:32.800500px;}
.y1_c00041{bottom:57.996000px;}
.y22_c00041{bottom:118.836000px;}
.y21_c00041{bottom:158.835000px;}
.y20_c00041{bottom:199.155000px;}
.y1f_c00041{bottom:239.115000px;}
.y1e_c00041{bottom:279.105000px;}
.y1d_c00041{bottom:319.065000px;}
.y1c_c00041{bottom:359.385000px;}
.y1b_c00041{bottom:399.390000px;}
.y1a_c00041{bottom:439.350000px;}
.y19_c00041{bottom:479.310000px;}
.y18_c00041{bottom:519.660000px;}
.y17_c00041{bottom:550.620000px;}
.y16_c00041{bottom:581.580000px;}
.y15_c00041{bottom:612.540000px;}
.y14_c00041{bottom:643.890000px;}
.y13_c00041{bottom:683.850000px;}
.y12_c00041{bottom:714.810000px;}
.y11_c00041{bottom:745.770000px;}
.y10_c00041{bottom:777.135000px;}
.yf_c00041{bottom:808.095000px;}
.ye_c00041{bottom:839.055000px;}
.yd_c00041{bottom:870.015000px;}
.yc_c00041{bottom:910.365000px;}
.yb_c00041{bottom:941.325000px;}
.ya_c00041{bottom:972.285000px;}
.y9_c00041{bottom:1003.245000px;}
.y8_c00041{bottom:1034.610000px;}
.y7_c00041{bottom:1065.570000px;}
.y2_c00041{bottom:1113.090000px;}
.h2_c00041{height:20.910000px;}
.h3_c00041{height:41.395500px;}
.h1_c00041{height:64.546875px;}
.h4_c00041{height:70.664062px;}
.h0_c00041{height:1188.000000px;}
.w1_c00041{width:8.265000px;}
.w2_c00041{width:663.345000px;}
.w0_c00041{width:918.000000px;}
.x0_c00041{left:0.000000px;}
.x3_c00041{left:127.489500px;}
.x1_c00041{left:154.515000px;}
.x4_c00041{left:180.795000px;}
.x2_c00041{left:782.565000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls2_c00041{letter-spacing:-2.560000pt;}
.ls1_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:0.640000pt;}
.ws1_c00041{word-spacing:-64.000000pt;}
.ws0_c00041{word-spacing:-16.000000pt;}
.ws2_c00041{word-spacing:0.000000pt;}
._c_c00041{margin-left:-3.200000pt;}
._2_c00041{margin-left:-2.048000pt;}
._0_c00041{margin-left:-1.088000pt;}
._1_c00041{width:1.344000pt;}
._3_c00041{width:2.688000pt;}
._4_c00041{width:3.712000pt;}
._5_c00041{width:4.864000pt;}
._b_c00041{width:6.016000pt;}
._e_c00041{width:7.872000pt;}
._d_c00041{width:8.960000pt;}
._6_c00041{width:10.560000pt;}
._7_c00041{width:12.288000pt;}
._9_c00041{width:17.088000pt;}
._a_c00041{width:17.984000pt;}
._f_c00041{width:19.648000pt;}
._8_c00041{width:149.898688pt;}
.fs0_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y6_c00041{bottom:4.156000pt;}
.y3_c00041{bottom:4.160000pt;}
.y5_c00041{bottom:22.396000pt;}
.y4_c00041{bottom:29.156000pt;}
.y1_c00041{bottom:51.552000pt;}
.y22_c00041{bottom:105.632000pt;}
.y21_c00041{bottom:141.186667pt;}
.y20_c00041{bottom:177.026667pt;}
.y1f_c00041{bottom:212.546667pt;}
.y1e_c00041{bottom:248.093333pt;}
.y1d_c00041{bottom:283.613333pt;}
.y1c_c00041{bottom:319.453333pt;}
.y1b_c00041{bottom:355.013333pt;}
.y1a_c00041{bottom:390.533333pt;}
.y19_c00041{bottom:426.053333pt;}
.y18_c00041{bottom:461.920000pt;}
.y17_c00041{bottom:489.440000pt;}
.y16_c00041{bottom:516.960000pt;}
.y15_c00041{bottom:544.480000pt;}
.y14_c00041{bottom:572.346667pt;}
.y13_c00041{bottom:607.866667pt;}
.y12_c00041{bottom:635.386667pt;}
.y11_c00041{bottom:662.906667pt;}
.y10_c00041{bottom:690.786667pt;}
.yf_c00041{bottom:718.306667pt;}
.ye_c00041{bottom:745.826667pt;}
.yd_c00041{bottom:773.346667pt;}
.yc_c00041{bottom:809.213333pt;}
.yb_c00041{bottom:836.733333pt;}
.ya_c00041{bottom:864.253333pt;}
.y9_c00041{bottom:891.773333pt;}
.y8_c00041{bottom:919.653333pt;}
.y7_c00041{bottom:947.173333pt;}
.y2_c00041{bottom:989.413333pt;}
.h2_c00041{height:18.586667pt;}
.h3_c00041{height:36.796000pt;}
.h1_c00041{height:57.375000pt;}
.h4_c00041{height:62.812500pt;}
.h0_c00041{height:1056.000000pt;}
.w1_c00041{width:7.346667pt;}
.w2_c00041{width:589.640000pt;}
.w0_c00041{width:816.000000pt;}
.x0_c00041{left:0.000000pt;}
.x3_c00041{left:113.324000pt;}
.x1_c00041{left:137.346667pt;}
.x4_c00041{left:160.706667pt;}
.x2_c00041{left:695.613333pt;}
}





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

.ir_c00042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00042;src:url('chunks/assets/font_452efd2a39e32aad6711cf10.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_522967f19cb07f2e53ea6e7d.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls0_c00042{letter-spacing:0.000000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:0.000000px;}
._0_c00042{margin-left:-1.929504px;}
.fc0_c00042{color:rgb(0,0,0);}
.fs0_c00042{font-size:72.000000px;}
.fs1_c00042{font-size:96.480000px;}
.y0_c00042{bottom:0.000000px;}
.y6_c00042{bottom:4.675500px;}
.y3_c00042{bottom:4.680000px;}
.y5_c00042{bottom:25.195500px;}
.y4_c00042{bottom:32.800500px;}
.y1_c00042{bottom:57.996000px;}
.y1e_c00042{bottom:133.596000px;}
.y1d_c00042{bottom:173.955000px;}
.y1c_c00042{bottom:213.915000px;}
.y1b_c00042{bottom:253.875000px;}
.y1a_c00042{bottom:293.865000px;}
.y19_c00042{bottom:334.185000px;}
.y18_c00042{bottom:374.145000px;}
.y17_c00042{bottom:414.150000px;}
.y16_c00042{bottom:454.110000px;}
.y15_c00042{bottom:494.430000px;}
.y14_c00042{bottom:534.420000px;}
.y13_c00042{bottom:574.380000px;}
.y12_c00042{bottom:619.020000px;}
.y11_c00042{bottom:664.770000px;}
.y10_c00042{bottom:705.090000px;}
.yf_c00042{bottom:745.050000px;}
.ye_c00042{bottom:785.055000px;}
.yd_c00042{bottom:825.015000px;}
.yc_c00042{bottom:865.335000px;}
.yb_c00042{bottom:905.325000px;}
.ya_c00042{bottom:945.285000px;}
.y9_c00042{bottom:985.245000px;}
.y8_c00042{bottom:1025.610000px;}
.y7_c00042{bottom:1065.570000px;}
.y2_c00042{bottom:1113.090000px;}
.h2_c00042{height:20.910000px;}
.h3_c00042{height:41.395500px;}
.h1_c00042{height:64.546875px;}
.h4_c00042{height:70.664062px;}
.h5_c00042{height:97.233750px;}
.h0_c00042{height:1188.000000px;}
.w1_c00042{width:8.265000px;}
.w2_c00042{width:663.345000px;}
.w0_c00042{width:918.000000px;}
.x0_c00042{left:0.000000px;}
.x3_c00042{left:127.489500px;}
.x1_c00042{left:154.515000px;}
.x4_c00042{left:180.795000px;}
.x5_c00042{left:390.750000px;}
.x2_c00042{left:782.565000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ws0_c00042{word-spacing:0.000000pt;}
._0_c00042{margin-left:-1.715114pt;}
.fs0_c00042{font-size:64.000000pt;}
.fs1_c00042{font-size:85.760000pt;}
.y0_c00042{bottom:0.000000pt;}
.y6_c00042{bottom:4.156000pt;}
.y3_c00042{bottom:4.160000pt;}
.y5_c00042{bottom:22.396000pt;}
.y4_c00042{bottom:29.156000pt;}
.y1_c00042{bottom:51.552000pt;}
.y1e_c00042{bottom:118.752000pt;}
.y1d_c00042{bottom:154.626667pt;}
.y1c_c00042{bottom:190.146667pt;}
.y1b_c00042{bottom:225.666667pt;}
.y1a_c00042{bottom:261.213333pt;}
.y19_c00042{bottom:297.053333pt;}
.y18_c00042{bottom:332.573333pt;}
.y17_c00042{bottom:368.133333pt;}
.y16_c00042{bottom:403.653333pt;}
.y15_c00042{bottom:439.493333pt;}
.y14_c00042{bottom:475.040000pt;}
.y13_c00042{bottom:510.560000pt;}
.y12_c00042{bottom:550.240000pt;}
.y11_c00042{bottom:590.906667pt;}
.y10_c00042{bottom:626.746667pt;}
.yf_c00042{bottom:662.266667pt;}
.ye_c00042{bottom:697.826667pt;}
.yd_c00042{bottom:733.346667pt;}
.yc_c00042{bottom:769.186667pt;}
.yb_c00042{bottom:804.733333pt;}
.ya_c00042{bottom:840.253333pt;}
.y9_c00042{bottom:875.773333pt;}
.y8_c00042{bottom:911.653333pt;}
.y7_c00042{bottom:947.173333pt;}
.y2_c00042{bottom:989.413333pt;}
.h2_c00042{height:18.586667pt;}
.h3_c00042{height:36.796000pt;}
.h1_c00042{height:57.375000pt;}
.h4_c00042{height:62.812500pt;}
.h5_c00042{height:86.430000pt;}
.h0_c00042{height:1056.000000pt;}
.w1_c00042{width:7.346667pt;}
.w2_c00042{width:589.640000pt;}
.w0_c00042{width:816.000000pt;}
.x0_c00042{left:0.000000pt;}
.x3_c00042{left:113.324000pt;}
.x1_c00042{left:137.346667pt;}
.x4_c00042{left:160.706667pt;}
.x5_c00042{left:347.333333pt;}
.x2_c00042{left:695.613333pt;}
}





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

.ir_c00043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00043;src:url('chunks/assets/font_4343c5271bc03705f5879de2.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_47f5a15280ff7e520285630d.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_05f29dd8e167d2b06ef4cf2f.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_c09b6d381ceff23e2944bc4f.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;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_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls1_c00043{letter-spacing:0.000000px;}
.ls0_c00043{letter-spacing:0.720000px;}
.ls2_c00043{letter-spacing:12.240000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:-15.120000px;}
.ws1_c00043{word-spacing:0.000000px;}
._4_c00043{margin-left:-3.312000px;}
._3_c00043{margin-left:-2.160000px;}
._1_c00043{margin-left:-1.008000px;}
._0_c00043{width:1.656000px;}
._6_c00043{width:2.736000px;}
._7_c00043{width:3.960000px;}
._d_c00043{width:5.904000px;}
._5_c00043{width:7.560000px;}
._2_c00043{width:9.216000px;}
._9_c00043{width:10.296000px;}
._8_c00043{width:11.880000px;}
._a_c00043{width:13.104000px;}
._13_c00043{width:16.632000px;}
._11_c00043{width:22.248000px;}
._10_c00043{width:23.328000px;}
._12_c00043{width:24.611976px;}
._e_c00043{width:25.632000px;}
._f_c00043{width:27.360000px;}
._b_c00043{width:32.184000px;}
._c_c00043{width:33.456024px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs2_c00043{font-size:38.880000px;}
.fs1_c00043{font-size:47.520000px;}
.fs3_c00043{font-size:60.480000px;}
.fs0_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y6_c00043{bottom:4.675500px;}
.y3_c00043{bottom:4.680000px;}
.y5_c00043{bottom:25.195500px;}
.y4_c00043{bottom:32.800500px;}
.y1_c00043{bottom:57.996000px;}
.y25_c00043{bottom:130.716000px;}
.y24_c00043{bottom:167.835000px;}
.y23_c00043{bottom:207.795000px;}
.y22_c00043{bottom:214.635000px;}
.y21_c00043{bottom:237.675000px;}
.y20_c00043{bottom:266.115000px;}
.y1f_c00043{bottom:297.105000px;}
.y1e_c00043{bottom:328.065000px;}
.y1d_c00043{bottom:359.385000px;}
.y1c_c00043{bottom:390.345000px;}
.y1b_c00043{bottom:421.350000px;}
.y1a_c00043{bottom:461.310000px;}
.y19_c00043{bottom:501.630000px;}
.y18_c00043{bottom:532.620000px;}
.y17_c00043{bottom:563.580000px;}
.y16_c00043{bottom:594.540000px;}
.y15_c00043{bottom:625.860000px;}
.y14_c00043{bottom:665.850000px;}
.y13_c00043{bottom:696.810000px;}
.y12_c00043{bottom:727.770000px;}
.y11_c00043{bottom:759.090000px;}
.yf_c00043{bottom:790.095000px;}
.y10_c00043{bottom:798.375000px;}
.ye_c00043{bottom:821.055000px;}
.yd_c00043{bottom:852.015000px;}
.yc_c00043{bottom:883.335000px;}
.yb_c00043{bottom:914.325000px;}
.ya_c00043{bottom:945.285000px;}
.y9_c00043{bottom:985.245000px;}
.y8_c00043{bottom:1025.610000px;}
.y7_c00043{bottom:1065.210000px;}
.y2_c00043{bottom:1113.090000px;}
.h2_c00043{height:20.910000px;}
.h9_c00043{height:38.158594px;}
.h3_c00043{height:41.395500px;}
.h7_c00043{height:46.638281px;}
.ha_c00043{height:54.219375px;}
.h1_c00043{height:64.546875px;}
.h8_c00043{height:70.628906px;}
.h5_c00043{height:70.664062px;}
.h4_c00043{height:72.562500px;}
.h6_c00043{height:1187.995500px;}
.h0_c00043{height:1188.000000px;}
.w1_c00043{width:8.265000px;}
.w2_c00043{width:663.345000px;}
.w3_c00043{width:917.997000px;}
.w0_c00043{width:918.000000px;}
.x0_c00043{left:0.000000px;}
.x3_c00043{left:127.489500px;}
.x9_c00043{left:132.516000px;}
.x1_c00043{left:154.515000px;}
.x5_c00043{left:180.795000px;}
.x8_c00043{left:343.590000px;}
.x4_c00043{left:376.710000px;}
.x6_c00043{left:441.897000px;}
.x7_c00043{left:448.020000px;}
.x2_c00043{left:782.565000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls1_c00043{letter-spacing:0.000000pt;}
.ls0_c00043{letter-spacing:0.640000pt;}
.ls2_c00043{letter-spacing:10.880000pt;}
.ws0_c00043{word-spacing:-13.440000pt;}
.ws1_c00043{word-spacing:0.000000pt;}
._4_c00043{margin-left:-2.944000pt;}
._3_c00043{margin-left:-1.920000pt;}
._1_c00043{margin-left:-0.896000pt;}
._0_c00043{width:1.472000pt;}
._6_c00043{width:2.432000pt;}
._7_c00043{width:3.520000pt;}
._d_c00043{width:5.248000pt;}
._5_c00043{width:6.720000pt;}
._2_c00043{width:8.192000pt;}
._9_c00043{width:9.152000pt;}
._8_c00043{width:10.560000pt;}
._a_c00043{width:11.648000pt;}
._13_c00043{width:14.784000pt;}
._11_c00043{width:19.776000pt;}
._10_c00043{width:20.736000pt;}
._12_c00043{width:21.877312pt;}
._e_c00043{width:22.784000pt;}
._f_c00043{width:24.320000pt;}
._b_c00043{width:28.608000pt;}
._c_c00043{width:29.738688pt;}
.fs2_c00043{font-size:34.560000pt;}
.fs1_c00043{font-size:42.240000pt;}
.fs3_c00043{font-size:53.760000pt;}
.fs0_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y6_c00043{bottom:4.156000pt;}
.y3_c00043{bottom:4.160000pt;}
.y5_c00043{bottom:22.396000pt;}
.y4_c00043{bottom:29.156000pt;}
.y1_c00043{bottom:51.552000pt;}
.y25_c00043{bottom:116.192000pt;}
.y24_c00043{bottom:149.186667pt;}
.y23_c00043{bottom:184.706667pt;}
.y22_c00043{bottom:190.786667pt;}
.y21_c00043{bottom:211.266667pt;}
.y20_c00043{bottom:236.546667pt;}
.y1f_c00043{bottom:264.093333pt;}
.y1e_c00043{bottom:291.613333pt;}
.y1d_c00043{bottom:319.453333pt;}
.y1c_c00043{bottom:346.973333pt;}
.y1b_c00043{bottom:374.533333pt;}
.y1a_c00043{bottom:410.053333pt;}
.y19_c00043{bottom:445.893333pt;}
.y18_c00043{bottom:473.440000pt;}
.y17_c00043{bottom:500.960000pt;}
.y16_c00043{bottom:528.480000pt;}
.y15_c00043{bottom:556.320000pt;}
.y14_c00043{bottom:591.866667pt;}
.y13_c00043{bottom:619.386667pt;}
.y12_c00043{bottom:646.906667pt;}
.y11_c00043{bottom:674.746667pt;}
.yf_c00043{bottom:702.306667pt;}
.y10_c00043{bottom:709.666667pt;}
.ye_c00043{bottom:729.826667pt;}
.yd_c00043{bottom:757.346667pt;}
.yc_c00043{bottom:785.186667pt;}
.yb_c00043{bottom:812.733333pt;}
.ya_c00043{bottom:840.253333pt;}
.y9_c00043{bottom:875.773333pt;}
.y8_c00043{bottom:911.653333pt;}
.y7_c00043{bottom:946.853333pt;}
.y2_c00043{bottom:989.413333pt;}
.h2_c00043{height:18.586667pt;}
.h9_c00043{height:33.918750pt;}
.h3_c00043{height:36.796000pt;}
.h7_c00043{height:41.456250pt;}
.ha_c00043{height:48.195000pt;}
.h1_c00043{height:57.375000pt;}
.h8_c00043{height:62.781250pt;}
.h5_c00043{height:62.812500pt;}
.h4_c00043{height:64.500000pt;}
.h6_c00043{height:1055.996000pt;}
.h0_c00043{height:1056.000000pt;}
.w1_c00043{width:7.346667pt;}
.w2_c00043{width:589.640000pt;}
.w3_c00043{width:815.997333pt;}
.w0_c00043{width:816.000000pt;}
.x0_c00043{left:0.000000pt;}
.x3_c00043{left:113.324000pt;}
.x9_c00043{left:117.792000pt;}
.x1_c00043{left:137.346667pt;}
.x5_c00043{left:160.706667pt;}
.x8_c00043{left:305.413333pt;}
.x4_c00043{left:334.853333pt;}
.x6_c00043{left:392.797333pt;}
.x7_c00043{left:398.240000pt;}
.x2_c00043{left:695.613333pt;}
}





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

.ir_c00044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00044;src:url('chunks/assets/font_1f91c977ba7500c2c18183bb.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_d587943abf5ceee51a607cef.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_62a5c020cd4af81075c956c7.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;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_c00044;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00044;src:url('chunks/assets/font_054158f6631236e0ff5930d4.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls1_c00044{letter-spacing:0.000000px;}
.ls0_c00044{letter-spacing:5.040000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:-40.608000px;}
.ws1_c00044{word-spacing:-18.000000px;}
.ws2_c00044{word-spacing:0.000000px;}
._2_c00044{margin-left:-2.736000px;}
._0_c00044{margin-left:-1.440000px;}
._1_c00044{width:1.080000px;}
._4_c00044{width:2.088000px;}
._3_c00044{width:3.240000px;}
._11_c00044{width:4.548024px;}
._f_c00044{width:6.192000px;}
._10_c00044{width:7.488000px;}
._e_c00044{width:9.000000px;}
._6_c00044{width:10.800000px;}
._7_c00044{width:11.880000px;}
._12_c00044{width:13.332000px;}
._b_c00044{width:14.688000px;}
._d_c00044{width:15.768000px;}
._c_c00044{width:16.920000px;}
._5_c00044{width:19.584000px;}
._8_c00044{width:34.560000px;}
._a_c00044{width:35.568000px;}
._9_c00044{width:37.139976px;}
.fc0_c00044{color:rgb(0,0,0);}
.fs0_c00044{font-size:72.000000px;}
.y0_c00044{bottom:0.000000px;}
.y6_c00044{bottom:4.675500px;}
.y3_c00044{bottom:4.680000px;}
.y5_c00044{bottom:25.195500px;}
.y4_c00044{bottom:32.800500px;}
.y1_c00044{bottom:57.996000px;}
.y24_c00044{bottom:128.916000px;}
.y23_c00044{bottom:159.915000px;}
.y22_c00044{bottom:199.875000px;}
.y21_c00044{bottom:230.835000px;}
.y20_c00044{bottom:262.155000px;}
.y1f_c00044{bottom:293.145000px;}
.y1e_c00044{bottom:324.105000px;}
.y1d_c00044{bottom:355.065000px;}
.y1c_c00044{bottom:386.385000px;}
.y1b_c00044{bottom:417.390000px;}
.y1a_c00044{bottom:448.350000px;}
.y19_c00044{bottom:488.310000px;}
.y18_c00044{bottom:519.660000px;}
.y17_c00044{bottom:550.620000px;}
.y16_c00044{bottom:581.580000px;}
.y15_c00044{bottom:612.540000px;}
.y14_c00044{bottom:643.890000px;}
.y13_c00044{bottom:674.850000px;}
.y12_c00044{bottom:705.810000px;}
.y11_c00044{bottom:736.770000px;}
.y10_c00044{bottom:768.135000px;}
.yf_c00044{bottom:808.095000px;}
.ye_c00044{bottom:848.055000px;}
.yd_c00044{bottom:879.015000px;}
.yc_c00044{bottom:910.365000px;}
.yb_c00044{bottom:941.325000px;}
.ya_c00044{bottom:972.285000px;}
.y9_c00044{bottom:1003.245000px;}
.y8_c00044{bottom:1034.610000px;}
.y7_c00044{bottom:1065.570000px;}
.y2_c00044{bottom:1113.090000px;}
.h2_c00044{height:20.910000px;}
.h3_c00044{height:41.395500px;}
.h1_c00044{height:64.546875px;}
.h5_c00044{height:70.628906px;}
.h4_c00044{height:70.664062px;}
.h0_c00044{height:1188.000000px;}
.w1_c00044{width:8.265000px;}
.w2_c00044{width:663.345000px;}
.w0_c00044{width:918.000000px;}
.x0_c00044{left:0.000000px;}
.x3_c00044{left:127.489500px;}
.x1_c00044{left:154.515000px;}
.x4_c00044{left:180.795000px;}
.x2_c00044{left:782.565000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls1_c00044{letter-spacing:0.000000pt;}
.ls0_c00044{letter-spacing:4.480000pt;}
.ws0_c00044{word-spacing:-36.096000pt;}
.ws1_c00044{word-spacing:-16.000000pt;}
.ws2_c00044{word-spacing:0.000000pt;}
._2_c00044{margin-left:-2.432000pt;}
._0_c00044{margin-left:-1.280000pt;}
._1_c00044{width:0.960000pt;}
._4_c00044{width:1.856000pt;}
._3_c00044{width:2.880000pt;}
._11_c00044{width:4.042688pt;}
._f_c00044{width:5.504000pt;}
._10_c00044{width:6.656000pt;}
._e_c00044{width:8.000000pt;}
._6_c00044{width:9.600000pt;}
._7_c00044{width:10.560000pt;}
._12_c00044{width:11.850667pt;}
._b_c00044{width:13.056000pt;}
._d_c00044{width:14.016000pt;}
._c_c00044{width:15.040000pt;}
._5_c00044{width:17.408000pt;}
._8_c00044{width:30.720000pt;}
._a_c00044{width:31.616000pt;}
._9_c00044{width:33.013312pt;}
.fs0_c00044{font-size:64.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y6_c00044{bottom:4.156000pt;}
.y3_c00044{bottom:4.160000pt;}
.y5_c00044{bottom:22.396000pt;}
.y4_c00044{bottom:29.156000pt;}
.y1_c00044{bottom:51.552000pt;}
.y24_c00044{bottom:114.592000pt;}
.y23_c00044{bottom:142.146667pt;}
.y22_c00044{bottom:177.666667pt;}
.y21_c00044{bottom:205.186667pt;}
.y20_c00044{bottom:233.026667pt;}
.y1f_c00044{bottom:260.573333pt;}
.y1e_c00044{bottom:288.093333pt;}
.y1d_c00044{bottom:315.613333pt;}
.y1c_c00044{bottom:343.453333pt;}
.y1b_c00044{bottom:371.013333pt;}
.y1a_c00044{bottom:398.533333pt;}
.y19_c00044{bottom:434.053333pt;}
.y18_c00044{bottom:461.920000pt;}
.y17_c00044{bottom:489.440000pt;}
.y16_c00044{bottom:516.960000pt;}
.y15_c00044{bottom:544.480000pt;}
.y14_c00044{bottom:572.346667pt;}
.y13_c00044{bottom:599.866667pt;}
.y12_c00044{bottom:627.386667pt;}
.y11_c00044{bottom:654.906667pt;}
.y10_c00044{bottom:682.786667pt;}
.yf_c00044{bottom:718.306667pt;}
.ye_c00044{bottom:753.826667pt;}
.yd_c00044{bottom:781.346667pt;}
.yc_c00044{bottom:809.213333pt;}
.yb_c00044{bottom:836.733333pt;}
.ya_c00044{bottom:864.253333pt;}
.y9_c00044{bottom:891.773333pt;}
.y8_c00044{bottom:919.653333pt;}
.y7_c00044{bottom:947.173333pt;}
.y2_c00044{bottom:989.413333pt;}
.h2_c00044{height:18.586667pt;}
.h3_c00044{height:36.796000pt;}
.h1_c00044{height:57.375000pt;}
.h5_c00044{height:62.781250pt;}
.h4_c00044{height:62.812500pt;}
.h0_c00044{height:1056.000000pt;}
.w1_c00044{width:7.346667pt;}
.w2_c00044{width:589.640000pt;}
.w0_c00044{width:816.000000pt;}
.x0_c00044{left:0.000000pt;}
.x3_c00044{left:113.324000pt;}
.x1_c00044{left:137.346667pt;}
.x4_c00044{left:160.706667pt;}
.x2_c00044{left:695.613333pt;}
}





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

.ir_c00045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00045;src:url('chunks/assets/font_9fd60b70c6def1dc52b81562.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_33fedcc2f29761f8c40881d4.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_9e506917f6a628ff40bdd29a.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;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_c00045;src:url('chunks/assets/font_8093befcd75e0857b2c58332.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls1_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:0.720000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:-18.000000px;}
.ws1_c00045{word-spacing:0.000000px;}
._12_c00045{margin-left:-9.360000px;}
._10_c00045{margin-left:-3.528000px;}
._2_c00045{margin-left:-2.520000px;}
._1_c00045{margin-left:-1.296000px;}
._0_c00045{width:1.080000px;}
._5_c00045{width:2.376000px;}
._a_c00045{width:3.528000px;}
._11_c00045{width:4.620024px;}
._b_c00045{width:5.819976px;}
._8_c00045{width:7.704000px;}
._7_c00045{width:9.516024px;}
._c_c00045{width:11.232000px;}
._d_c00045{width:12.312000px;}
._e_c00045{width:13.320000px;}
._f_c00045{width:14.472000px;}
._9_c00045{width:20.160000px;}
._4_c00045{width:21.312000px;}
._6_c00045{width:22.464000px;}
._3_c00045{width:24.264000px;}
._13_c00045{width:28.872000px;}
._14_c00045{width:30.096000px;}
.fc0_c00045{color:rgb(0,0,0);}
.fs0_c00045{font-size:72.000000px;}
.y0_c00045{bottom:0.000000px;}
.y6_c00045{bottom:4.675500px;}
.y3_c00045{bottom:4.680000px;}
.y5_c00045{bottom:25.195500px;}
.y4_c00045{bottom:32.800500px;}
.y1_c00045{bottom:57.996000px;}
.y24_c00045{bottom:110.916000px;}
.y23_c00045{bottom:141.876000px;}
.y22_c00045{bottom:172.875000px;}
.y21_c00045{bottom:203.835000px;}
.y20_c00045{bottom:235.155000px;}
.y1f_c00045{bottom:266.115000px;}
.y1e_c00045{bottom:297.105000px;}
.y1d_c00045{bottom:328.065000px;}
.y1c_c00045{bottom:368.385000px;}
.y1b_c00045{bottom:399.390000px;}
.y1a_c00045{bottom:439.350000px;}
.y19_c00045{bottom:470.310000px;}
.y18_c00045{bottom:501.630000px;}
.y17_c00045{bottom:532.620000px;}
.y16_c00045{bottom:572.580000px;}
.y15_c00045{bottom:603.540000px;}
.y14_c00045{bottom:634.860000px;}
.y13_c00045{bottom:665.850000px;}
.y12_c00045{bottom:705.810000px;}
.y11_c00045{bottom:736.770000px;}
.y10_c00045{bottom:768.135000px;}
.yf_c00045{bottom:808.095000px;}
.ye_c00045{bottom:848.055000px;}
.yd_c00045{bottom:879.015000px;}
.yc_c00045{bottom:910.365000px;}
.yb_c00045{bottom:941.325000px;}
.ya_c00045{bottom:972.285000px;}
.y9_c00045{bottom:1003.245000px;}
.y8_c00045{bottom:1034.610000px;}
.y7_c00045{bottom:1065.570000px;}
.y2_c00045{bottom:1113.090000px;}
.h2_c00045{height:20.910000px;}
.h3_c00045{height:41.395500px;}
.h1_c00045{height:64.546875px;}
.h5_c00045{height:70.628906px;}
.h4_c00045{height:70.664062px;}
.h0_c00045{height:1188.000000px;}
.w1_c00045{width:8.265000px;}
.w2_c00045{width:663.345000px;}
.w0_c00045{width:918.000000px;}
.x0_c00045{left:0.000000px;}
.x3_c00045{left:127.489500px;}
.x1_c00045{left:154.515000px;}
.x5_c00045{left:169.995000px;}
.x4_c00045{left:180.795000px;}
.x2_c00045{left:782.565000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls1_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:0.640000pt;}
.ws0_c00045{word-spacing:-16.000000pt;}
.ws1_c00045{word-spacing:0.000000pt;}
._12_c00045{margin-left:-8.320000pt;}
._10_c00045{margin-left:-3.136000pt;}
._2_c00045{margin-left:-2.240000pt;}
._1_c00045{margin-left:-1.152000pt;}
._0_c00045{width:0.960000pt;}
._5_c00045{width:2.112000pt;}
._a_c00045{width:3.136000pt;}
._11_c00045{width:4.106688pt;}
._b_c00045{width:5.173312pt;}
._8_c00045{width:6.848000pt;}
._7_c00045{width:8.458688pt;}
._c_c00045{width:9.984000pt;}
._d_c00045{width:10.944000pt;}
._e_c00045{width:11.840000pt;}
._f_c00045{width:12.864000pt;}
._9_c00045{width:17.920000pt;}
._4_c00045{width:18.944000pt;}
._6_c00045{width:19.968000pt;}
._3_c00045{width:21.568000pt;}
._13_c00045{width:25.664000pt;}
._14_c00045{width:26.752000pt;}
.fs0_c00045{font-size:64.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.y6_c00045{bottom:4.156000pt;}
.y3_c00045{bottom:4.160000pt;}
.y5_c00045{bottom:22.396000pt;}
.y4_c00045{bottom:29.156000pt;}
.y1_c00045{bottom:51.552000pt;}
.y24_c00045{bottom:98.592000pt;}
.y23_c00045{bottom:126.112000pt;}
.y22_c00045{bottom:153.666667pt;}
.y21_c00045{bottom:181.186667pt;}
.y20_c00045{bottom:209.026667pt;}
.y1f_c00045{bottom:236.546667pt;}
.y1e_c00045{bottom:264.093333pt;}
.y1d_c00045{bottom:291.613333pt;}
.y1c_c00045{bottom:327.453333pt;}
.y1b_c00045{bottom:355.013333pt;}
.y1a_c00045{bottom:390.533333pt;}
.y19_c00045{bottom:418.053333pt;}
.y18_c00045{bottom:445.893333pt;}
.y17_c00045{bottom:473.440000pt;}
.y16_c00045{bottom:508.960000pt;}
.y15_c00045{bottom:536.480000pt;}
.y14_c00045{bottom:564.320000pt;}
.y13_c00045{bottom:591.866667pt;}
.y12_c00045{bottom:627.386667pt;}
.y11_c00045{bottom:654.906667pt;}
.y10_c00045{bottom:682.786667pt;}
.yf_c00045{bottom:718.306667pt;}
.ye_c00045{bottom:753.826667pt;}
.yd_c00045{bottom:781.346667pt;}
.yc_c00045{bottom:809.213333pt;}
.yb_c00045{bottom:836.733333pt;}
.ya_c00045{bottom:864.253333pt;}
.y9_c00045{bottom:891.773333pt;}
.y8_c00045{bottom:919.653333pt;}
.y7_c00045{bottom:947.173333pt;}
.y2_c00045{bottom:989.413333pt;}
.h2_c00045{height:18.586667pt;}
.h3_c00045{height:36.796000pt;}
.h1_c00045{height:57.375000pt;}
.h5_c00045{height:62.781250pt;}
.h4_c00045{height:62.812500pt;}
.h0_c00045{height:1056.000000pt;}
.w1_c00045{width:7.346667pt;}
.w2_c00045{width:589.640000pt;}
.w0_c00045{width:816.000000pt;}
.x0_c00045{left:0.000000pt;}
.x3_c00045{left:113.324000pt;}
.x1_c00045{left:137.346667pt;}
.x5_c00045{left:151.106667pt;}
.x4_c00045{left:160.706667pt;}
.x2_c00045{left:695.613333pt;}
}





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

.ir_c00046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00046;src:url('chunks/assets/font_97cef99fc6356eb1f4b79a3c.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00046;src:url('chunks/assets/font_3689ff6c8a994265186d4cfc.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_413e47eab04af669b9bc36f8.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;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_c00046;src:url('chunks/assets/font_892d1747cdc9a8b94ec56ab3.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_c89222247356524c06580aed.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls2_c00046{letter-spacing:0.000000px;}
.ls1_c00046{letter-spacing:0.720000px;}
.ls0_c00046{letter-spacing:1.944000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:-18.000000px;}
.ws1_c00046{word-spacing:0.000000px;}
._1_c00046{margin-left:-2.736000px;}
._5_c00046{margin-left:-1.440000px;}
._0_c00046{width:1.800000px;}
._7_c00046{width:3.168000px;}
._4_c00046{width:4.680000px;}
._3_c00046{width:6.480000px;}
._e_c00046{width:7.500000px;}
._18_c00046{width:8.532000px;}
._14_c00046{width:10.008000px;}
._12_c00046{width:11.016000px;}
._13_c00046{width:12.024000px;}
._9_c00046{width:13.320000px;}
._a_c00046{width:14.328000px;}
._b_c00046{width:15.480000px;}
._f_c00046{width:16.716000px;}
._15_c00046{width:19.440000px;}
._8_c00046{width:20.952000px;}
._6_c00046{width:22.032000px;}
._17_c00046{width:25.920000px;}
._16_c00046{width:27.216000px;}
._10_c00046{width:28.728000px;}
._11_c00046{width:30.744000px;}
._c_c00046{width:38.016000px;}
._d_c00046{width:39.911976px;}
._2_c00046{width:168.636024px;}
.fc0_c00046{color:rgb(0,0,0);}
.fs2_c00046{font-size:38.880000px;}
.fs1_c00046{font-size:47.520000px;}
.fs3_c00046{font-size:60.480000px;}
.fs0_c00046{font-size:72.000000px;}
.y0_c00046{bottom:0.000000px;}
.y6_c00046{bottom:4.675500px;}
.y3_c00046{bottom:4.680000px;}
.y5_c00046{bottom:25.195500px;}
.y4_c00046{bottom:32.800500px;}
.y1_c00046{bottom:57.996000px;}
.y27_c00046{bottom:130.716000px;}
.y26_c00046{bottom:147.996000px;}
.y25_c00046{bottom:164.955000px;}
.y24_c00046{bottom:171.795000px;}
.y23_c00046{bottom:182.955000px;}
.y22_c00046{bottom:203.835000px;}
.y20_c00046{bottom:235.155000px;}
.y21_c00046{bottom:243.435000px;}
.y1f_c00046{bottom:266.115000px;}
.y1e_c00046{bottom:297.105000px;}
.y1d_c00046{bottom:328.065000px;}
.y1c_c00046{bottom:359.385000px;}
.y1b_c00046{bottom:399.390000px;}
.y1a_c00046{bottom:430.350000px;}
.y19_c00046{bottom:461.310000px;}
.y18_c00046{bottom:492.630000px;}
.y17_c00046{bottom:523.620000px;}
.y16_c00046{bottom:554.580000px;}
.y15_c00046{bottom:585.540000px;}
.y14_c00046{bottom:616.860000px;}
.y13_c00046{bottom:647.850000px;}
.y12_c00046{bottom:678.810000px;}
.y11_c00046{bottom:718.770000px;}
.y10_c00046{bottom:759.090000px;}
.yf_c00046{bottom:790.095000px;}
.ye_c00046{bottom:830.055000px;}
.yd_c00046{bottom:861.015000px;}
.yc_c00046{bottom:901.365000px;}
.yb_c00046{bottom:932.325000px;}
.ya_c00046{bottom:963.285000px;}
.y9_c00046{bottom:994.245000px;}
.y8_c00046{bottom:1025.610000px;}
.y7_c00046{bottom:1065.570000px;}
.y2_c00046{bottom:1113.090000px;}
.h2_c00046{height:20.910000px;}
.h8_c00046{height:34.855313px;}
.h3_c00046{height:41.395500px;}
.h7_c00046{height:46.638281px;}
.ha_c00046{height:54.219375px;}
.h9_c00046{height:54.514688px;}
.h1_c00046{height:64.546875px;}
.h5_c00046{height:70.628906px;}
.h4_c00046{height:70.664062px;}
.h6_c00046{height:1187.995500px;}
.h0_c00046{height:1188.000000px;}
.w1_c00046{width:8.265000px;}
.w2_c00046{width:663.345000px;}
.w3_c00046{width:917.997000px;}
.w0_c00046{width:918.000000px;}
.x0_c00046{left:0.000000px;}
.x3_c00046{left:127.489500px;}
.x8_c00046{left:132.516000px;}
.x1_c00046{left:154.515000px;}
.x4_c00046{left:180.795000px;}
.x5_c00046{left:187.632000px;}
.x6_c00046{left:193.755000px;}
.x7_c00046{left:343.590000px;}
.x2_c00046{left:782.565000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls2_c00046{letter-spacing:0.000000pt;}
.ls1_c00046{letter-spacing:0.640000pt;}
.ls0_c00046{letter-spacing:1.728000pt;}
.ws0_c00046{word-spacing:-16.000000pt;}
.ws1_c00046{word-spacing:0.000000pt;}
._1_c00046{margin-left:-2.432000pt;}
._5_c00046{margin-left:-1.280000pt;}
._0_c00046{width:1.600000pt;}
._7_c00046{width:2.816000pt;}
._4_c00046{width:4.160000pt;}
._3_c00046{width:5.760000pt;}
._e_c00046{width:6.666667pt;}
._18_c00046{width:7.584000pt;}
._14_c00046{width:8.896000pt;}
._12_c00046{width:9.792000pt;}
._13_c00046{width:10.688000pt;}
._9_c00046{width:11.840000pt;}
._a_c00046{width:12.736000pt;}
._b_c00046{width:13.760000pt;}
._f_c00046{width:14.858667pt;}
._15_c00046{width:17.280000pt;}
._8_c00046{width:18.624000pt;}
._6_c00046{width:19.584000pt;}
._17_c00046{width:23.040000pt;}
._16_c00046{width:24.192000pt;}
._10_c00046{width:25.536000pt;}
._11_c00046{width:27.328000pt;}
._c_c00046{width:33.792000pt;}
._d_c00046{width:35.477312pt;}
._2_c00046{width:149.898688pt;}
.fs2_c00046{font-size:34.560000pt;}
.fs1_c00046{font-size:42.240000pt;}
.fs3_c00046{font-size:53.760000pt;}
.fs0_c00046{font-size:64.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y6_c00046{bottom:4.156000pt;}
.y3_c00046{bottom:4.160000pt;}
.y5_c00046{bottom:22.396000pt;}
.y4_c00046{bottom:29.156000pt;}
.y1_c00046{bottom:51.552000pt;}
.y27_c00046{bottom:116.192000pt;}
.y26_c00046{bottom:131.552000pt;}
.y25_c00046{bottom:146.626667pt;}
.y24_c00046{bottom:152.706667pt;}
.y23_c00046{bottom:162.626667pt;}
.y22_c00046{bottom:181.186667pt;}
.y20_c00046{bottom:209.026667pt;}
.y21_c00046{bottom:216.386667pt;}
.y1f_c00046{bottom:236.546667pt;}
.y1e_c00046{bottom:264.093333pt;}
.y1d_c00046{bottom:291.613333pt;}
.y1c_c00046{bottom:319.453333pt;}
.y1b_c00046{bottom:355.013333pt;}
.y1a_c00046{bottom:382.533333pt;}
.y19_c00046{bottom:410.053333pt;}
.y18_c00046{bottom:437.893333pt;}
.y17_c00046{bottom:465.440000pt;}
.y16_c00046{bottom:492.960000pt;}
.y15_c00046{bottom:520.480000pt;}
.y14_c00046{bottom:548.320000pt;}
.y13_c00046{bottom:575.866667pt;}
.y12_c00046{bottom:603.386667pt;}
.y11_c00046{bottom:638.906667pt;}
.y10_c00046{bottom:674.746667pt;}
.yf_c00046{bottom:702.306667pt;}
.ye_c00046{bottom:737.826667pt;}
.yd_c00046{bottom:765.346667pt;}
.yc_c00046{bottom:801.213333pt;}
.yb_c00046{bottom:828.733333pt;}
.ya_c00046{bottom:856.253333pt;}
.y9_c00046{bottom:883.773333pt;}
.y8_c00046{bottom:911.653333pt;}
.y7_c00046{bottom:947.173333pt;}
.y2_c00046{bottom:989.413333pt;}
.h2_c00046{height:18.586667pt;}
.h8_c00046{height:30.982500pt;}
.h3_c00046{height:36.796000pt;}
.h7_c00046{height:41.456250pt;}
.ha_c00046{height:48.195000pt;}
.h9_c00046{height:48.457500pt;}
.h1_c00046{height:57.375000pt;}
.h5_c00046{height:62.781250pt;}
.h4_c00046{height:62.812500pt;}
.h6_c00046{height:1055.996000pt;}
.h0_c00046{height:1056.000000pt;}
.w1_c00046{width:7.346667pt;}
.w2_c00046{width:589.640000pt;}
.w3_c00046{width:815.997333pt;}
.w0_c00046{width:816.000000pt;}
.x0_c00046{left:0.000000pt;}
.x3_c00046{left:113.324000pt;}
.x8_c00046{left:117.792000pt;}
.x1_c00046{left:137.346667pt;}
.x4_c00046{left:160.706667pt;}
.x5_c00046{left:166.784000pt;}
.x6_c00046{left:172.226667pt;}
.x7_c00046{left:305.413333pt;}
.x2_c00046{left:695.613333pt;}
}





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

.ir_c00047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00047;src:url('chunks/assets/font_dc4ff1db7941c6ce59281253.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_fa0372241d0cd1c400bd9238.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_650973ed28b62f5082cf3d84.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;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_c00047;src:url('chunks/assets/font_1352c88ce6e3fdbe762539d5.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_155b164b2fd950d4fd6c707b.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls3_c00047{letter-spacing:-1.440000px;}
.ls2_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:0.180000px;}
.ls4_c00047{letter-spacing:1.152000px;}
.ls1_c00047{letter-spacing:5.040000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00047{word-spacing:-72.000000px;}
.ws0_c00047{word-spacing:-18.000000px;}
.ws2_c00047{word-spacing:0.000000px;}
._1_c00047{margin-left:-2.736000px;}
._2_c00047{margin-left:-1.008000px;}
._0_c00047{width:1.080000px;}
._3_c00047{width:2.160000px;}
._6_c00047{width:3.672000px;}
._a_c00047{width:5.832000px;}
._7_c00047{width:7.560000px;}
._b_c00047{width:8.640000px;}
._8_c00047{width:9.792000px;}
._c_c00047{width:11.718599px;}
._12_c00047{width:12.744000px;}
._9_c00047{width:14.472000px;}
._5_c00047{width:16.416000px;}
._4_c00047{width:19.944000px;}
._d_c00047{width:21.672000px;}
._e_c00047{width:23.196024px;}
._10_c00047{width:25.836000px;}
._f_c00047{width:26.928000px;}
._11_c00047{width:28.008000px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs1_c00047{font-size:60.480000px;}
.fs0_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y6_c00047{bottom:4.675500px;}
.y3_c00047{bottom:4.680000px;}
.y5_c00047{bottom:25.195500px;}
.y4_c00047{bottom:32.800500px;}
.y1_c00047{bottom:57.996000px;}
.y25_c00047{bottom:133.956000px;}
.y24_c00047{bottom:164.955000px;}
.y23_c00047{bottom:196.275000px;}
.y22_c00047{bottom:227.235000px;}
.y21_c00047{bottom:267.195000px;}
.y20_c00047{bottom:298.185000px;}
.y1f_c00047{bottom:329.505000px;}
.y1e_c00047{bottom:360.465000px;}
.y1d_c00047{bottom:391.425000px;}
.y1c_c00047{bottom:422.430000px;}
.y1b_c00047{bottom:453.750000px;}
.y1a_c00047{bottom:484.710000px;}
.y19_c00047{bottom:515.670000px;}
.y18_c00047{bottom:546.660000px;}
.y17_c00047{bottom:577.980000px;}
.y16_c00047{bottom:608.940000px;}
.y15_c00047{bottom:646.770000px;}
.y14_c00047{bottom:672.690000px;}
.y13_c00047{bottom:698.250000px;}
.y12_c00047{bottom:724.170000px;}
.y11_c00047{bottom:750.090000px;}
.y10_c00047{bottom:776.055000px;}
.yf_c00047{bottom:801.975000px;}
.ye_c00047{bottom:839.055000px;}
.yd_c00047{bottom:870.015000px;}
.yc_c00047{bottom:901.365000px;}
.yb_c00047{bottom:941.325000px;}
.ya_c00047{bottom:972.285000px;}
.y9_c00047{bottom:1003.245000px;}
.y8_c00047{bottom:1034.610000px;}
.y7_c00047{bottom:1065.570000px;}
.y2_c00047{bottom:1113.090000px;}
.h2_c00047{height:20.910000px;}
.h3_c00047{height:41.395500px;}
.h5_c00047{height:54.219375px;}
.h6_c00047{height:59.357813px;}
.h1_c00047{height:64.546875px;}
.h4_c00047{height:70.664062px;}
.h0_c00047{height:1188.000000px;}
.w1_c00047{width:8.265000px;}
.w2_c00047{width:663.345000px;}
.w0_c00047{width:918.000000px;}
.x0_c00047{left:0.000000px;}
.x3_c00047{left:127.489500px;}
.x1_c00047{left:154.515000px;}
.x4_c00047{left:169.995000px;}
.x2_c00047{left:782.565000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls3_c00047{letter-spacing:-1.280000pt;}
.ls2_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:0.160000pt;}
.ls4_c00047{letter-spacing:1.024000pt;}
.ls1_c00047{letter-spacing:4.480000pt;}
.ws1_c00047{word-spacing:-64.000000pt;}
.ws0_c00047{word-spacing:-16.000000pt;}
.ws2_c00047{word-spacing:0.000000pt;}
._1_c00047{margin-left:-2.432000pt;}
._2_c00047{margin-left:-0.896000pt;}
._0_c00047{width:0.960000pt;}
._3_c00047{width:1.920000pt;}
._6_c00047{width:3.264000pt;}
._a_c00047{width:5.184000pt;}
._7_c00047{width:6.720000pt;}
._b_c00047{width:7.680000pt;}
._8_c00047{width:8.704000pt;}
._c_c00047{width:10.416532pt;}
._12_c00047{width:11.328000pt;}
._9_c00047{width:12.864000pt;}
._5_c00047{width:14.592000pt;}
._4_c00047{width:17.728000pt;}
._d_c00047{width:19.264000pt;}
._e_c00047{width:20.618688pt;}
._10_c00047{width:22.965333pt;}
._f_c00047{width:23.936000pt;}
._11_c00047{width:24.896000pt;}
.fs1_c00047{font-size:53.760000pt;}
.fs0_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y6_c00047{bottom:4.156000pt;}
.y3_c00047{bottom:4.160000pt;}
.y5_c00047{bottom:22.396000pt;}
.y4_c00047{bottom:29.156000pt;}
.y1_c00047{bottom:51.552000pt;}
.y25_c00047{bottom:119.072000pt;}
.y24_c00047{bottom:146.626667pt;}
.y23_c00047{bottom:174.466667pt;}
.y22_c00047{bottom:201.986667pt;}
.y21_c00047{bottom:237.506667pt;}
.y20_c00047{bottom:265.053333pt;}
.y1f_c00047{bottom:292.893333pt;}
.y1e_c00047{bottom:320.413333pt;}
.y1d_c00047{bottom:347.933333pt;}
.y1c_c00047{bottom:375.493333pt;}
.y1b_c00047{bottom:403.333333pt;}
.y1a_c00047{bottom:430.853333pt;}
.y19_c00047{bottom:458.373333pt;}
.y18_c00047{bottom:485.920000pt;}
.y17_c00047{bottom:513.760000pt;}
.y16_c00047{bottom:541.280000pt;}
.y15_c00047{bottom:574.906667pt;}
.y14_c00047{bottom:597.946667pt;}
.y13_c00047{bottom:620.666667pt;}
.y12_c00047{bottom:643.706667pt;}
.y11_c00047{bottom:666.746667pt;}
.y10_c00047{bottom:689.826667pt;}
.yf_c00047{bottom:712.866667pt;}
.ye_c00047{bottom:745.826667pt;}
.yd_c00047{bottom:773.346667pt;}
.yc_c00047{bottom:801.213333pt;}
.yb_c00047{bottom:836.733333pt;}
.ya_c00047{bottom:864.253333pt;}
.y9_c00047{bottom:891.773333pt;}
.y8_c00047{bottom:919.653333pt;}
.y7_c00047{bottom:947.173333pt;}
.y2_c00047{bottom:989.413333pt;}
.h2_c00047{height:18.586667pt;}
.h3_c00047{height:36.796000pt;}
.h5_c00047{height:48.195000pt;}
.h6_c00047{height:52.762500pt;}
.h1_c00047{height:57.375000pt;}
.h4_c00047{height:62.812500pt;}
.h0_c00047{height:1056.000000pt;}
.w1_c00047{width:7.346667pt;}
.w2_c00047{width:589.640000pt;}
.w0_c00047{width:816.000000pt;}
.x0_c00047{left:0.000000pt;}
.x3_c00047{left:113.324000pt;}
.x1_c00047{left:137.346667pt;}
.x4_c00047{left:151.106667pt;}
.x2_c00047{left:695.613333pt;}
}





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

.ir_c00048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00048;src:url('chunks/assets/font_0b782e0b68f2e40e37aa740b.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_8bb857cb226a02f6eb337202.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_33c0a05f2ecfe15f6c628413.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00048;src:url('chunks/assets/font_fc4e785c8272bc1e0ffd6aaf.woff2')format("woff");}.ff5_c00048{font-family:ff5_c00048;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_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls6_c00048{letter-spacing:-2.880000px;}
.ls9_c00048{letter-spacing:-1.440000px;}
.ls7_c00048{letter-spacing:-0.954000px;}
.ls8_c00048{letter-spacing:-0.738000px;}
.ls5_c00048{letter-spacing:0.000000px;}
.lsa_c00048{letter-spacing:0.518400px;}
.ls1_c00048{letter-spacing:0.720000px;}
.ls4_c00048{letter-spacing:0.840000px;}
.ls0_c00048{letter-spacing:2.160000px;}
.ls3_c00048{letter-spacing:6.480000px;}
.ls2_c00048{letter-spacing:7.920000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00048{word-spacing:-72.000000px;}
.ws3_c00048{word-spacing:-60.480000px;}
.ws0_c00048{word-spacing:-18.000000px;}
.ws2_c00048{word-spacing:-15.120000px;}
.ws5_c00048{word-spacing:-14.382000px;}
.ws4_c00048{word-spacing:-14.166000px;}
.ws6_c00048{word-spacing:-13.680000px;}
.ws7_c00048{word-spacing:0.000000px;}
._5_c00048{margin-left:-2.964004px;}
._0_c00048{margin-left:-1.875001px;}
._1_c00048{width:1.391403px;}
._a_c00048{width:2.437828px;}
._4_c00048{width:3.449401px;}
._b_c00048{width:4.906803px;}
._8_c00048{width:5.926798px;}
._9_c00048{width:7.197604px;}
._7_c00048{width:8.708394px;}
._6_c00048{width:9.798002px;}
._3_c00048{width:11.188800px;}
._2_c00048{width:12.579598px;}
._10_c00048{width:19.659001px;}
._f_c00048{width:20.955001px;}
._e_c00048{width:22.835964px;}
._d_c00048{width:24.192000px;}
._c_c00048{width:25.758599px;}
.fc1_c00048{color:rgb(255,0,0);}
.fc0_c00048{color:rgb(0,0,0);}
.fs3_c00048{font-size:38.880000px;}
.fs2_c00048{font-size:47.520000px;}
.fs1_c00048{font-size:60.480000px;}
.fs0_c00048{font-size:72.000000px;}
.y0_c00048{bottom:0.000000px;}
.y6_c00048{bottom:4.675500px;}
.y3_c00048{bottom:4.680000px;}
.y5_c00048{bottom:25.195500px;}
.y4_c00048{bottom:32.800500px;}
.y1_c00048{bottom:57.996000px;}
.y2b_c00048{bottom:130.716000px;}
.y2a_c00048{bottom:137.556000px;}
.y29_c00048{bottom:147.996000px;}
.y28_c00048{bottom:164.955000px;}
.y27_c00048{bottom:182.235000px;}
.y26_c00048{bottom:199.515000px;}
.y25_c00048{bottom:206.355000px;}
.y24_c00048{bottom:217.515000px;}
.y23_c00048{bottom:279.105000px;}
.y22_c00048{bottom:310.065000px;}
.y21_c00048{bottom:341.025000px;}
.y20_c00048{bottom:371.985000px;}
.y1f_c00048{bottom:403.350000px;}
.y1e_c00048{bottom:434.310000px;}
.y1d_c00048{bottom:465.270000px;}
.y1c_c00048{bottom:496.230000px;}
.y1b_c00048{bottom:536.580000px;}
.y1a_c00048{bottom:567.540000px;}
.y19_c00048{bottom:598.500000px;}
.y18_c00048{bottom:629.460000px;}
.y17_c00048{bottom:667.290000px;}
.y16_c00048{bottom:693.210000px;}
.y15_c00048{bottom:719.130000px;}
.y13_c00048{bottom:756.210000px;}
.y14_c00048{bottom:764.535000px;}
.y11_c00048{bottom:787.215000px;}
.y12_c00048{bottom:795.495000px;}
.y10_c00048{bottom:818.535000px;}
.yf_c00048{bottom:849.495000px;}
.ye_c00048{bottom:887.325000px;}
.yd_c00048{bottom:913.245000px;}
.yc_c00048{bottom:938.805000px;}
.yb_c00048{bottom:964.725000px;}
.ya_c00048{bottom:990.645000px;}
.y9_c00048{bottom:1016.610000px;}
.y8_c00048{bottom:1042.530000px;}
.y7_c00048{bottom:1068.450000px;}
.y2_c00048{bottom:1113.090000px;}
.h2_c00048{height:20.910000px;}
.h8_c00048{height:38.158594px;}
.h3_c00048{height:41.395500px;}
.h7_c00048{height:46.638281px;}
.h4_c00048{height:59.357813px;}
.h1_c00048{height:64.546875px;}
.h5_c00048{height:70.664062px;}
.h6_c00048{height:1187.995500px;}
.h0_c00048{height:1188.000000px;}
.w1_c00048{width:8.265000px;}
.w2_c00048{width:663.345000px;}
.w3_c00048{width:917.997000px;}
.w0_c00048{width:918.000000px;}
.x0_c00048{left:0.000000px;}
.x3_c00048{left:127.489500px;}
.xa_c00048{left:132.516000px;}
.x1_c00048{left:154.515000px;}
.x4_c00048{left:169.995000px;}
.x5_c00048{left:172.512000px;}
.x6_c00048{left:178.635000px;}
.x7_c00048{left:266.502000px;}
.x8_c00048{left:272.625000px;}
.x9_c00048{left:343.590000px;}
.x2_c00048{left:782.565000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls6_c00048{letter-spacing:-2.560000pt;}
.ls9_c00048{letter-spacing:-1.280000pt;}
.ls7_c00048{letter-spacing:-0.848000pt;}
.ls8_c00048{letter-spacing:-0.656000pt;}
.ls5_c00048{letter-spacing:0.000000pt;}
.lsa_c00048{letter-spacing:0.460800pt;}
.ls1_c00048{letter-spacing:0.640000pt;}
.ls4_c00048{letter-spacing:0.746667pt;}
.ls0_c00048{letter-spacing:1.920000pt;}
.ls3_c00048{letter-spacing:5.760000pt;}
.ls2_c00048{letter-spacing:7.040000pt;}
.ws1_c00048{word-spacing:-64.000000pt;}
.ws3_c00048{word-spacing:-53.760000pt;}
.ws0_c00048{word-spacing:-16.000000pt;}
.ws2_c00048{word-spacing:-13.440000pt;}
.ws5_c00048{word-spacing:-12.784000pt;}
.ws4_c00048{word-spacing:-12.592000pt;}
.ws6_c00048{word-spacing:-12.160000pt;}
.ws7_c00048{word-spacing:0.000000pt;}
._5_c00048{margin-left:-2.634670pt;}
._0_c00048{margin-left:-1.666668pt;}
._1_c00048{width:1.236803pt;}
._a_c00048{width:2.166958pt;}
._4_c00048{width:3.066134pt;}
._b_c00048{width:4.361603pt;}
._8_c00048{width:5.268265pt;}
._9_c00048{width:6.397870pt;}
._7_c00048{width:7.740795pt;}
._6_c00048{width:8.709335pt;}
._3_c00048{width:9.945600pt;}
._2_c00048{width:11.181865pt;}
._10_c00048{width:17.474668pt;}
._f_c00048{width:18.626668pt;}
._e_c00048{width:20.298634pt;}
._d_c00048{width:21.504000pt;}
._c_c00048{width:22.896532pt;}
.fs3_c00048{font-size:34.560000pt;}
.fs2_c00048{font-size:42.240000pt;}
.fs1_c00048{font-size:53.760000pt;}
.fs0_c00048{font-size:64.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y6_c00048{bottom:4.156000pt;}
.y3_c00048{bottom:4.160000pt;}
.y5_c00048{bottom:22.396000pt;}
.y4_c00048{bottom:29.156000pt;}
.y1_c00048{bottom:51.552000pt;}
.y2b_c00048{bottom:116.192000pt;}
.y2a_c00048{bottom:122.272000pt;}
.y29_c00048{bottom:131.552000pt;}
.y28_c00048{bottom:146.626667pt;}
.y27_c00048{bottom:161.986667pt;}
.y26_c00048{bottom:177.346667pt;}
.y25_c00048{bottom:183.426667pt;}
.y24_c00048{bottom:193.346667pt;}
.y23_c00048{bottom:248.093333pt;}
.y22_c00048{bottom:275.613333pt;}
.y21_c00048{bottom:303.133333pt;}
.y20_c00048{bottom:330.653333pt;}
.y1f_c00048{bottom:358.533333pt;}
.y1e_c00048{bottom:386.053333pt;}
.y1d_c00048{bottom:413.573333pt;}
.y1c_c00048{bottom:441.093333pt;}
.y1b_c00048{bottom:476.960000pt;}
.y1a_c00048{bottom:504.480000pt;}
.y19_c00048{bottom:532.000000pt;}
.y18_c00048{bottom:559.520000pt;}
.y17_c00048{bottom:593.146667pt;}
.y16_c00048{bottom:616.186667pt;}
.y15_c00048{bottom:639.226667pt;}
.y13_c00048{bottom:672.186667pt;}
.y14_c00048{bottom:679.586667pt;}
.y11_c00048{bottom:699.746667pt;}
.y12_c00048{bottom:707.106667pt;}
.y10_c00048{bottom:727.586667pt;}
.yf_c00048{bottom:755.106667pt;}
.ye_c00048{bottom:788.733333pt;}
.yd_c00048{bottom:811.773333pt;}
.yc_c00048{bottom:834.493333pt;}
.yb_c00048{bottom:857.533333pt;}
.ya_c00048{bottom:880.573333pt;}
.y9_c00048{bottom:903.653333pt;}
.y8_c00048{bottom:926.693333pt;}
.y7_c00048{bottom:949.733333pt;}
.y2_c00048{bottom:989.413333pt;}
.h2_c00048{height:18.586667pt;}
.h8_c00048{height:33.918750pt;}
.h3_c00048{height:36.796000pt;}
.h7_c00048{height:41.456250pt;}
.h4_c00048{height:52.762500pt;}
.h1_c00048{height:57.375000pt;}
.h5_c00048{height:62.812500pt;}
.h6_c00048{height:1055.996000pt;}
.h0_c00048{height:1056.000000pt;}
.w1_c00048{width:7.346667pt;}
.w2_c00048{width:589.640000pt;}
.w3_c00048{width:815.997333pt;}
.w0_c00048{width:816.000000pt;}
.x0_c00048{left:0.000000pt;}
.x3_c00048{left:113.324000pt;}
.xa_c00048{left:117.792000pt;}
.x1_c00048{left:137.346667pt;}
.x4_c00048{left:151.106667pt;}
.x5_c00048{left:153.344000pt;}
.x6_c00048{left:158.786667pt;}
.x7_c00048{left:236.890667pt;}
.x8_c00048{left:242.333333pt;}
.x9_c00048{left:305.413333pt;}
.x2_c00048{left:695.613333pt;}
}





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

.ir_c00049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00049;src:url('chunks/assets/font_0ddde031b484022130bcc4b0.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_d54c856213d8d16c02f364e1.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_79ed92804fd1fe107b4790f8.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_1c083021af905b4ccaa995c1.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;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_c00049;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00049{font-family:ff5_c00049;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls4_c00049{letter-spacing:-1.908000px;}
.ls3_c00049{letter-spacing:-0.720000px;}
.ls2_c00049{letter-spacing:0.000000px;}
.ls6_c00049{letter-spacing:0.020400px;}
.ls0_c00049{letter-spacing:0.720000px;}
.ls5_c00049{letter-spacing:1.440000px;}
.ls1_c00049{letter-spacing:2.160000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00049{word-spacing:-72.000000px;}
.ws3_c00049{word-spacing:-60.480000px;}
.ws0_c00049{word-spacing:-18.000000px;}
.ws4_c00049{word-spacing:-15.140400px;}
.ws2_c00049{word-spacing:-15.120000px;}
.ws5_c00049{word-spacing:0.000000px;}
._4_c00049{margin-left:-2.736000px;}
._2_c00049{margin-left:-1.440000px;}
._1_c00049{width:1.080000px;}
._5_c00049{width:2.160000px;}
._7_c00049{width:3.888000px;}
._c_c00049{width:4.896000px;}
._0_c00049{width:6.336000px;}
._3_c00049{width:7.776000px;}
._8_c00049{width:9.288000px;}
._b_c00049{width:11.232000px;}
._a_c00049{width:12.312000px;}
._6_c00049{width:13.608000px;}
._9_c00049{width:15.768000px;}
._12_c00049{width:16.878841px;}
._13_c00049{width:18.356999px;}
._d_c00049{width:19.368000px;}
._f_c00049{width:22.011598px;}
._10_c00049{width:23.033416px;}
._11_c00049{width:25.234796px;}
._e_c00049{width:53.208000px;}
.fc1_c00049{color:rgb(255,0,0);}
.fc0_c00049{color:rgb(0,0,0);}
.fs2_c00049{font-size:38.880000px;}
.fs1_c00049{font-size:47.520000px;}
.fs3_c00049{font-size:60.480000px;}
.fs0_c00049{font-size:72.000000px;}
.y0_c00049{bottom:0.000000px;}
.y6_c00049{bottom:4.675500px;}
.y3_c00049{bottom:4.680000px;}
.y5_c00049{bottom:25.195500px;}
.y4_c00049{bottom:32.800500px;}
.y1_c00049{bottom:57.996000px;}
.y39_c00049{bottom:130.716000px;}
.y38_c00049{bottom:147.996000px;}
.y37_c00049{bottom:164.955000px;}
.y36_c00049{bottom:182.235000px;}
.y35_c00049{bottom:199.515000px;}
.y34_c00049{bottom:216.795000px;}
.y33_c00049{bottom:234.075000px;}
.y32_c00049{bottom:251.355000px;}
.y31_c00049{bottom:268.635000px;}
.y30_c00049{bottom:275.505000px;}
.y2f_c00049{bottom:285.945000px;}
.y2e_c00049{bottom:303.225000px;}
.y2d_c00049{bottom:320.505000px;}
.y2c_c00049{bottom:337.785000px;}
.y2b_c00049{bottom:354.705000px;}
.y2a_c00049{bottom:371.985000px;}
.y29_c00049{bottom:389.265000px;}
.y28_c00049{bottom:406.590000px;}
.y27_c00049{bottom:413.430000px;}
.y26_c00049{bottom:423.870000px;}
.y25_c00049{bottom:441.150000px;}
.y24_c00049{bottom:458.430000px;}
.y23_c00049{bottom:475.710000px;}
.y22_c00049{bottom:492.990000px;}
.y21_c00049{bottom:510.270000px;}
.y20_c00049{bottom:527.580000px;}
.y1f_c00049{bottom:534.420000px;}
.y1e_c00049{bottom:544.860000px;}
.y1d_c00049{bottom:561.780000px;}
.y1c_c00049{bottom:579.060000px;}
.y1b_c00049{bottom:596.340000px;}
.y1a_c00049{bottom:613.620000px;}
.y19_c00049{bottom:630.900000px;}
.y18_c00049{bottom:648.210000px;}
.y17_c00049{bottom:655.050000px;}
.y16_c00049{bottom:665.850000px;}
.y15_c00049{bottom:714.810000px;}
.y14_c00049{bottom:745.770000px;}
.y13_c00049{bottom:777.135000px;}
.y11_c00049{bottom:808.095000px;}
.y12_c00049{bottom:816.375000px;}
.y10_c00049{bottom:839.055000px;}
.yf_c00049{bottom:879.015000px;}
.ye_c00049{bottom:910.365000px;}
.yd_c00049{bottom:941.325000px;}
.yc_c00049{bottom:972.285000px;}
.ya_c00049{bottom:1003.245000px;}
.yb_c00049{bottom:1011.570000px;}
.y9_c00049{bottom:1034.610000px;}
.y7_c00049{bottom:1065.570000px;}
.y8_c00049{bottom:1073.850000px;}
.y2_c00049{bottom:1113.090000px;}
.h2_c00049{height:20.910000px;}
.h8_c00049{height:38.158594px;}
.h3_c00049{height:41.395500px;}
.h7_c00049{height:46.615078px;}
.h5_c00049{height:46.638281px;}
.h9_c00049{height:59.357813px;}
.h1_c00049{height:64.546875px;}
.h6_c00049{height:70.664062px;}
.h4_c00049{height:1187.995500px;}
.h0_c00049{height:1188.000000px;}
.w1_c00049{width:8.265000px;}
.w2_c00049{width:663.345000px;}
.w3_c00049{width:917.997000px;}
.w0_c00049{width:918.000000px;}
.x0_c00049{left:0.000000px;}
.x3_c00049{left:127.489500px;}
.xe_c00049{left:132.516000px;}
.x1_c00049{left:154.515000px;}
.x4_c00049{left:169.995000px;}
.xd_c00049{left:343.590000px;}
.x7_c00049{left:356.907000px;}
.x8_c00049{left:363.030000px;}
.x9_c00049{left:528.657000px;}
.xa_c00049{left:534.810000px;}
.x5_c00049{left:557.487000px;}
.x6_c00049{left:563.610000px;}
.xb_c00049{left:780.042000px;}
.x2_c00049{left:782.565000px;}
.xc_c00049{left:786.165000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls4_c00049{letter-spacing:-1.696000pt;}
.ls3_c00049{letter-spacing:-0.640000pt;}
.ls2_c00049{letter-spacing:0.000000pt;}
.ls6_c00049{letter-spacing:0.018133pt;}
.ls0_c00049{letter-spacing:0.640000pt;}
.ls5_c00049{letter-spacing:1.280000pt;}
.ls1_c00049{letter-spacing:1.920000pt;}
.ws1_c00049{word-spacing:-64.000000pt;}
.ws3_c00049{word-spacing:-53.760000pt;}
.ws0_c00049{word-spacing:-16.000000pt;}
.ws4_c00049{word-spacing:-13.458133pt;}
.ws2_c00049{word-spacing:-13.440000pt;}
.ws5_c00049{word-spacing:0.000000pt;}
._4_c00049{margin-left:-2.432000pt;}
._2_c00049{margin-left:-1.280000pt;}
._1_c00049{width:0.960000pt;}
._5_c00049{width:1.920000pt;}
._7_c00049{width:3.456000pt;}
._c_c00049{width:4.352000pt;}
._0_c00049{width:5.632000pt;}
._3_c00049{width:6.912000pt;}
._8_c00049{width:8.256000pt;}
._b_c00049{width:9.984000pt;}
._a_c00049{width:10.944000pt;}
._6_c00049{width:12.096000pt;}
._9_c00049{width:14.016000pt;}
._12_c00049{width:15.003414pt;}
._13_c00049{width:16.317332pt;}
._d_c00049{width:17.216000pt;}
._f_c00049{width:19.565865pt;}
._10_c00049{width:20.474148pt;}
._11_c00049{width:22.430930pt;}
._e_c00049{width:47.296000pt;}
.fs2_c00049{font-size:34.560000pt;}
.fs1_c00049{font-size:42.240000pt;}
.fs3_c00049{font-size:53.760000pt;}
.fs0_c00049{font-size:64.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y6_c00049{bottom:4.156000pt;}
.y3_c00049{bottom:4.160000pt;}
.y5_c00049{bottom:22.396000pt;}
.y4_c00049{bottom:29.156000pt;}
.y1_c00049{bottom:51.552000pt;}
.y39_c00049{bottom:116.192000pt;}
.y38_c00049{bottom:131.552000pt;}
.y37_c00049{bottom:146.626667pt;}
.y36_c00049{bottom:161.986667pt;}
.y35_c00049{bottom:177.346667pt;}
.y34_c00049{bottom:192.706667pt;}
.y33_c00049{bottom:208.066667pt;}
.y32_c00049{bottom:223.426667pt;}
.y31_c00049{bottom:238.786667pt;}
.y30_c00049{bottom:244.893333pt;}
.y2f_c00049{bottom:254.173333pt;}
.y2e_c00049{bottom:269.533333pt;}
.y2d_c00049{bottom:284.893333pt;}
.y2c_c00049{bottom:300.253333pt;}
.y2b_c00049{bottom:315.293333pt;}
.y2a_c00049{bottom:330.653333pt;}
.y29_c00049{bottom:346.013333pt;}
.y28_c00049{bottom:361.413333pt;}
.y27_c00049{bottom:367.493333pt;}
.y26_c00049{bottom:376.773333pt;}
.y25_c00049{bottom:392.133333pt;}
.y24_c00049{bottom:407.493333pt;}
.y23_c00049{bottom:422.853333pt;}
.y22_c00049{bottom:438.213333pt;}
.y21_c00049{bottom:453.573333pt;}
.y20_c00049{bottom:468.960000pt;}
.y1f_c00049{bottom:475.040000pt;}
.y1e_c00049{bottom:484.320000pt;}
.y1d_c00049{bottom:499.360000pt;}
.y1c_c00049{bottom:514.720000pt;}
.y1b_c00049{bottom:530.080000pt;}
.y1a_c00049{bottom:545.440000pt;}
.y19_c00049{bottom:560.800000pt;}
.y18_c00049{bottom:576.186667pt;}
.y17_c00049{bottom:582.266667pt;}
.y16_c00049{bottom:591.866667pt;}
.y15_c00049{bottom:635.386667pt;}
.y14_c00049{bottom:662.906667pt;}
.y13_c00049{bottom:690.786667pt;}
.y11_c00049{bottom:718.306667pt;}
.y12_c00049{bottom:725.666667pt;}
.y10_c00049{bottom:745.826667pt;}
.yf_c00049{bottom:781.346667pt;}
.ye_c00049{bottom:809.213333pt;}
.yd_c00049{bottom:836.733333pt;}
.yc_c00049{bottom:864.253333pt;}
.ya_c00049{bottom:891.773333pt;}
.yb_c00049{bottom:899.173333pt;}
.y9_c00049{bottom:919.653333pt;}
.y7_c00049{bottom:947.173333pt;}
.y8_c00049{bottom:954.533333pt;}
.y2_c00049{bottom:989.413333pt;}
.h2_c00049{height:18.586667pt;}
.h8_c00049{height:33.918750pt;}
.h3_c00049{height:36.796000pt;}
.h7_c00049{height:41.435625pt;}
.h5_c00049{height:41.456250pt;}
.h9_c00049{height:52.762500pt;}
.h1_c00049{height:57.375000pt;}
.h6_c00049{height:62.812500pt;}
.h4_c00049{height:1055.996000pt;}
.h0_c00049{height:1056.000000pt;}
.w1_c00049{width:7.346667pt;}
.w2_c00049{width:589.640000pt;}
.w3_c00049{width:815.997333pt;}
.w0_c00049{width:816.000000pt;}
.x0_c00049{left:0.000000pt;}
.x3_c00049{left:113.324000pt;}
.xe_c00049{left:117.792000pt;}
.x1_c00049{left:137.346667pt;}
.x4_c00049{left:151.106667pt;}
.xd_c00049{left:305.413333pt;}
.x7_c00049{left:317.250667pt;}
.x8_c00049{left:322.693333pt;}
.x9_c00049{left:469.917333pt;}
.xa_c00049{left:475.386667pt;}
.x5_c00049{left:495.544000pt;}
.x6_c00049{left:500.986667pt;}
.xb_c00049{left:693.370667pt;}
.x2_c00049{left:695.613333pt;}
.xc_c00049{left:698.813333pt;}
}





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

.ir_c00050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00050;src:url('chunks/assets/font_043be923f3c55e507d504e6d.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_13afbc4d2a4619170f70a806.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_5a1d5453a66e9669e1dba1fe.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;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_c00050;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00050;src:url('chunks/assets/font_7466e0eb605d0ef5c8d0c6cf.woff2')format("woff");}.ff5_c00050{font-family:ff5_c00050;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls3_c00050{letter-spacing:-1.440000px;}
.ls2_c00050{letter-spacing:0.000000px;}
.ls1_c00050{letter-spacing:0.720000px;}
.ls0_c00050{letter-spacing:18.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00050{word-spacing:-72.000000px;}
.ws0_c00050{word-spacing:-18.000000px;}
.ws2_c00050{word-spacing:-15.120000px;}
.ws3_c00050{word-spacing:0.000000px;}
._0_c00050{margin-left:-3.240000px;}
._3_c00050{margin-left:-1.296000px;}
._1_c00050{width:1.512000px;}
._2_c00050{width:2.664000px;}
._a_c00050{width:3.828000px;}
._b_c00050{width:5.232000px;}
._18_c00050{width:6.768000px;}
._11_c00050{width:8.640000px;}
._10_c00050{width:10.152000px;}
._12_c00050{width:11.376000px;}
._c_c00050{width:12.744000px;}
._d_c00050{width:14.328000px;}
._e_c00050{width:15.336000px;}
._f_c00050{width:16.632000px;}
._14_c00050{width:19.512000px;}
._13_c00050{width:20.736000px;}
._9_c00050{width:31.752000px;}
._8_c00050{width:32.904000px;}
._7_c00050{width:34.416000px;}
._5_c00050{width:35.712000px;}
._4_c00050{width:37.152000px;}
._6_c00050{width:38.232000px;}
._17_c00050{width:39.947976px;}
._15_c00050{width:51.624000px;}
._16_c00050{width:53.424000px;}
.fc0_c00050{color:rgb(0,0,0);}
.fs3_c00050{font-size:38.880000px;}
.fs2_c00050{font-size:47.520000px;}
.fs1_c00050{font-size:60.480000px;}
.fs0_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y6_c00050{bottom:4.675500px;}
.y3_c00050{bottom:4.680000px;}
.y5_c00050{bottom:25.195500px;}
.y4_c00050{bottom:32.800500px;}
.y1_c00050{bottom:57.996000px;}
.y27_c00050{bottom:130.716000px;}
.y26_c00050{bottom:147.996000px;}
.y25_c00050{bottom:164.955000px;}
.y24_c00050{bottom:171.795000px;}
.y23_c00050{bottom:182.955000px;}
.y22_c00050{bottom:242.715000px;}
.y21_c00050{bottom:273.705000px;}
.y20_c00050{bottom:304.665000px;}
.y1f_c00050{bottom:335.985000px;}
.y1d_c00050{bottom:366.945000px;}
.y1e_c00050{bottom:375.225000px;}
.y1c_c00050{bottom:397.950000px;}
.y1b_c00050{bottom:428.910000px;}
.y1a_c00050{bottom:460.230000px;}
.y19_c00050{bottom:491.190000px;}
.y18_c00050{bottom:522.180000px;}
.y17_c00050{bottom:562.140000px;}
.y16_c00050{bottom:593.460000px;}
.y15_c00050{bottom:624.420000px;}
.y14_c00050{bottom:655.410000px;}
.y13_c00050{bottom:693.210000px;}
.y12_c00050{bottom:719.130000px;}
.y11_c00050{bottom:745.050000px;}
.y10_c00050{bottom:771.015000px;}
.yf_c00050{bottom:808.095000px;}
.ye_c00050{bottom:839.055000px;}
.yd_c00050{bottom:870.015000px;}
.yc_c00050{bottom:910.365000px;}
.yb_c00050{bottom:941.325000px;}
.ya_c00050{bottom:972.285000px;}
.y9_c00050{bottom:1003.245000px;}
.y8_c00050{bottom:1034.610000px;}
.y7_c00050{bottom:1065.570000px;}
.y2_c00050{bottom:1113.090000px;}
.h2_c00050{height:20.910000px;}
.h9_c00050{height:34.855313px;}
.h3_c00050{height:41.395500px;}
.h8_c00050{height:46.638281px;}
.h5_c00050{height:54.219375px;}
.h6_c00050{height:59.357813px;}
.h1_c00050{height:64.546875px;}
.h4_c00050{height:70.664062px;}
.h7_c00050{height:1187.995500px;}
.h0_c00050{height:1188.000000px;}
.w1_c00050{width:8.265000px;}
.w2_c00050{width:663.345000px;}
.w3_c00050{width:917.997000px;}
.w0_c00050{width:918.000000px;}
.x0_c00050{left:0.000000px;}
.x3_c00050{left:127.489500px;}
.x8_c00050{left:137.556000px;}
.x1_c00050{left:154.515000px;}
.x4_c00050{left:169.995000px;}
.x7_c00050{left:343.590000px;}
.x5_c00050{left:711.972000px;}
.x6_c00050{left:724.215000px;}
.x2_c00050{left:782.565000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls3_c00050{letter-spacing:-1.280000pt;}
.ls2_c00050{letter-spacing:0.000000pt;}
.ls1_c00050{letter-spacing:0.640000pt;}
.ls0_c00050{letter-spacing:16.000000pt;}
.ws1_c00050{word-spacing:-64.000000pt;}
.ws0_c00050{word-spacing:-16.000000pt;}
.ws2_c00050{word-spacing:-13.440000pt;}
.ws3_c00050{word-spacing:0.000000pt;}
._0_c00050{margin-left:-2.880000pt;}
._3_c00050{margin-left:-1.152000pt;}
._1_c00050{width:1.344000pt;}
._2_c00050{width:2.368000pt;}
._a_c00050{width:3.402667pt;}
._b_c00050{width:4.650667pt;}
._18_c00050{width:6.016000pt;}
._11_c00050{width:7.680000pt;}
._10_c00050{width:9.024000pt;}
._12_c00050{width:10.112000pt;}
._c_c00050{width:11.328000pt;}
._d_c00050{width:12.736000pt;}
._e_c00050{width:13.632000pt;}
._f_c00050{width:14.784000pt;}
._14_c00050{width:17.344000pt;}
._13_c00050{width:18.432000pt;}
._9_c00050{width:28.224000pt;}
._8_c00050{width:29.248000pt;}
._7_c00050{width:30.592000pt;}
._5_c00050{width:31.744000pt;}
._4_c00050{width:33.024000pt;}
._6_c00050{width:33.984000pt;}
._17_c00050{width:35.509312pt;}
._15_c00050{width:45.888000pt;}
._16_c00050{width:47.488000pt;}
.fs3_c00050{font-size:34.560000pt;}
.fs2_c00050{font-size:42.240000pt;}
.fs1_c00050{font-size:53.760000pt;}
.fs0_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y6_c00050{bottom:4.156000pt;}
.y3_c00050{bottom:4.160000pt;}
.y5_c00050{bottom:22.396000pt;}
.y4_c00050{bottom:29.156000pt;}
.y1_c00050{bottom:51.552000pt;}
.y27_c00050{bottom:116.192000pt;}
.y26_c00050{bottom:131.552000pt;}
.y25_c00050{bottom:146.626667pt;}
.y24_c00050{bottom:152.706667pt;}
.y23_c00050{bottom:162.626667pt;}
.y22_c00050{bottom:215.746667pt;}
.y21_c00050{bottom:243.293333pt;}
.y20_c00050{bottom:270.813333pt;}
.y1f_c00050{bottom:298.653333pt;}
.y1d_c00050{bottom:326.173333pt;}
.y1e_c00050{bottom:333.533333pt;}
.y1c_c00050{bottom:353.733333pt;}
.y1b_c00050{bottom:381.253333pt;}
.y1a_c00050{bottom:409.093333pt;}
.y19_c00050{bottom:436.613333pt;}
.y18_c00050{bottom:464.160000pt;}
.y17_c00050{bottom:499.680000pt;}
.y16_c00050{bottom:527.520000pt;}
.y15_c00050{bottom:555.040000pt;}
.y14_c00050{bottom:582.586667pt;}
.y13_c00050{bottom:616.186667pt;}
.y12_c00050{bottom:639.226667pt;}
.y11_c00050{bottom:662.266667pt;}
.y10_c00050{bottom:685.346667pt;}
.yf_c00050{bottom:718.306667pt;}
.ye_c00050{bottom:745.826667pt;}
.yd_c00050{bottom:773.346667pt;}
.yc_c00050{bottom:809.213333pt;}
.yb_c00050{bottom:836.733333pt;}
.ya_c00050{bottom:864.253333pt;}
.y9_c00050{bottom:891.773333pt;}
.y8_c00050{bottom:919.653333pt;}
.y7_c00050{bottom:947.173333pt;}
.y2_c00050{bottom:989.413333pt;}
.h2_c00050{height:18.586667pt;}
.h9_c00050{height:30.982500pt;}
.h3_c00050{height:36.796000pt;}
.h8_c00050{height:41.456250pt;}
.h5_c00050{height:48.195000pt;}
.h6_c00050{height:52.762500pt;}
.h1_c00050{height:57.375000pt;}
.h4_c00050{height:62.812500pt;}
.h7_c00050{height:1055.996000pt;}
.h0_c00050{height:1056.000000pt;}
.w1_c00050{width:7.346667pt;}
.w2_c00050{width:589.640000pt;}
.w3_c00050{width:815.997333pt;}
.w0_c00050{width:816.000000pt;}
.x0_c00050{left:0.000000pt;}
.x3_c00050{left:113.324000pt;}
.x8_c00050{left:122.272000pt;}
.x1_c00050{left:137.346667pt;}
.x4_c00050{left:151.106667pt;}
.x7_c00050{left:305.413333pt;}
.x5_c00050{left:632.864000pt;}
.x6_c00050{left:643.746667pt;}
.x2_c00050{left:695.613333pt;}
}





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

.ir_c00051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00051;src:url('chunks/assets/font_dbd825f0273c8fb6b96831e6.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_d1c0e32c0885ce378050a820.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_206bce5111b622efe6f6ffeb.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_31abec9be6e7361c94163a18.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00051;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls4_c00051{letter-spacing:-0.720000px;}
.ls3_c00051{letter-spacing:0.000000px;}
.ls0_c00051{letter-spacing:0.720000px;}
.ls1_c00051{letter-spacing:2.160000px;}
.ls2_c00051{letter-spacing:13.824000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:-18.000000px;}
.ws1_c00051{word-spacing:0.000000px;}
._5_c00051{margin-left:-3.096000px;}
._1_c00051{margin-left:-1.440000px;}
._0_c00051{width:1.368000px;}
._4_c00051{width:2.448000px;}
._6_c00051{width:4.008024px;}
._7_c00051{width:5.399856px;}
._f_c00051{width:6.624000px;}
._2_c00051{width:7.992000px;}
._3_c00051{width:9.360000px;}
._10_c00051{width:10.800000px;}
._11_c00051{width:12.672000px;}
._9_c00051{width:14.400000px;}
._12_c00051{width:15.528024px;}
._8_c00051{width:16.632000px;}
._a_c00051{width:19.224000px;}
._d_c00051{width:20.304000px;}
._c_c00051{width:21.672000px;}
._e_c00051{width:22.680000px;}
._b_c00051{width:37.080000px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs2_c00051{font-size:38.880000px;}
.fs1_c00051{font-size:47.520000px;}
.fs3_c00051{font-size:60.480000px;}
.fs0_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y6_c00051{bottom:4.675500px;}
.y3_c00051{bottom:4.680000px;}
.y5_c00051{bottom:25.195500px;}
.y4_c00051{bottom:32.800500px;}
.y1_c00051{bottom:57.996000px;}
.y2c_c00051{bottom:130.716000px;}
.y2b_c00051{bottom:147.996000px;}
.y2a_c00051{bottom:164.955000px;}
.y29_c00051{bottom:182.235000px;}
.y28_c00051{bottom:199.515000px;}
.y27_c00051{bottom:206.355000px;}
.y26_c00051{bottom:216.795000px;}
.y25_c00051{bottom:234.075000px;}
.y24_c00051{bottom:251.355000px;}
.y23_c00051{bottom:268.635000px;}
.y22_c00051{bottom:285.945000px;}
.y21_c00051{bottom:292.785000px;}
.y20_c00051{bottom:303.585000px;}
.y1f_c00051{bottom:328.065000px;}
.y1e_c00051{bottom:368.385000px;}
.y1d_c00051{bottom:399.390000px;}
.y1c_c00051{bottom:430.350000px;}
.y1a_c00051{bottom:461.310000px;}
.y1b_c00051{bottom:469.590000px;}
.y19_c00051{bottom:501.630000px;}
.y18_c00051{bottom:541.620000px;}
.y17_c00051{bottom:572.580000px;}
.y16_c00051{bottom:603.540000px;}
.y15_c00051{bottom:634.860000px;}
.y13_c00051{bottom:665.850000px;}
.y14_c00051{bottom:674.130000px;}
.y12_c00051{bottom:696.810000px;}
.y11_c00051{bottom:727.770000px;}
.y10_c00051{bottom:759.090000px;}
.yf_c00051{bottom:790.095000px;}
.ye_c00051{bottom:821.055000px;}
.yd_c00051{bottom:861.015000px;}
.yc_c00051{bottom:901.365000px;}
.yb_c00051{bottom:932.325000px;}
.ya_c00051{bottom:963.285000px;}
.y9_c00051{bottom:994.245000px;}
.y8_c00051{bottom:1025.610000px;}
.y7_c00051{bottom:1065.570000px;}
.y2_c00051{bottom:1113.090000px;}
.h2_c00051{height:20.910000px;}
.h8_c00051{height:38.158594px;}
.h3_c00051{height:41.395500px;}
.h7_c00051{height:46.638281px;}
.ha_c00051{height:54.219375px;}
.h9_c00051{height:59.357813px;}
.h1_c00051{height:64.546875px;}
.h4_c00051{height:70.628906px;}
.h5_c00051{height:70.664062px;}
.h6_c00051{height:1187.995500px;}
.h0_c00051{height:1188.000000px;}
.w1_c00051{width:8.265000px;}
.w2_c00051{width:663.345000px;}
.w3_c00051{width:917.997000px;}
.w0_c00051{width:918.000000px;}
.x0_c00051{left:0.000000px;}
.x3_c00051{left:127.489500px;}
.xa_c00051{left:137.556000px;}
.x1_c00051{left:154.515000px;}
.x4_c00051{left:180.795000px;}
.x9_c00051{left:343.590000px;}
.x5_c00051{left:565.047000px;}
.x6_c00051{left:577.290000px;}
.x7_c00051{left:773.922000px;}
.x2_c00051{left:782.565000px;}
.x8_c00051{left:786.165000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls4_c00051{letter-spacing:-0.640000pt;}
.ls3_c00051{letter-spacing:0.000000pt;}
.ls0_c00051{letter-spacing:0.640000pt;}
.ls1_c00051{letter-spacing:1.920000pt;}
.ls2_c00051{letter-spacing:12.288000pt;}
.ws0_c00051{word-spacing:-16.000000pt;}
.ws1_c00051{word-spacing:0.000000pt;}
._5_c00051{margin-left:-2.752000pt;}
._1_c00051{margin-left:-1.280000pt;}
._0_c00051{width:1.216000pt;}
._4_c00051{width:2.176000pt;}
._6_c00051{width:3.562688pt;}
._7_c00051{width:4.799872pt;}
._f_c00051{width:5.888000pt;}
._2_c00051{width:7.104000pt;}
._3_c00051{width:8.320000pt;}
._10_c00051{width:9.600000pt;}
._11_c00051{width:11.264000pt;}
._9_c00051{width:12.800000pt;}
._12_c00051{width:13.802688pt;}
._8_c00051{width:14.784000pt;}
._a_c00051{width:17.088000pt;}
._d_c00051{width:18.048000pt;}
._c_c00051{width:19.264000pt;}
._e_c00051{width:20.160000pt;}
._b_c00051{width:32.960000pt;}
.fs2_c00051{font-size:34.560000pt;}
.fs1_c00051{font-size:42.240000pt;}
.fs3_c00051{font-size:53.760000pt;}
.fs0_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y6_c00051{bottom:4.156000pt;}
.y3_c00051{bottom:4.160000pt;}
.y5_c00051{bottom:22.396000pt;}
.y4_c00051{bottom:29.156000pt;}
.y1_c00051{bottom:51.552000pt;}
.y2c_c00051{bottom:116.192000pt;}
.y2b_c00051{bottom:131.552000pt;}
.y2a_c00051{bottom:146.626667pt;}
.y29_c00051{bottom:161.986667pt;}
.y28_c00051{bottom:177.346667pt;}
.y27_c00051{bottom:183.426667pt;}
.y26_c00051{bottom:192.706667pt;}
.y25_c00051{bottom:208.066667pt;}
.y24_c00051{bottom:223.426667pt;}
.y23_c00051{bottom:238.786667pt;}
.y22_c00051{bottom:254.173333pt;}
.y21_c00051{bottom:260.253333pt;}
.y20_c00051{bottom:269.853333pt;}
.y1f_c00051{bottom:291.613333pt;}
.y1e_c00051{bottom:327.453333pt;}
.y1d_c00051{bottom:355.013333pt;}
.y1c_c00051{bottom:382.533333pt;}
.y1a_c00051{bottom:410.053333pt;}
.y1b_c00051{bottom:417.413333pt;}
.y19_c00051{bottom:445.893333pt;}
.y18_c00051{bottom:481.440000pt;}
.y17_c00051{bottom:508.960000pt;}
.y16_c00051{bottom:536.480000pt;}
.y15_c00051{bottom:564.320000pt;}
.y13_c00051{bottom:591.866667pt;}
.y14_c00051{bottom:599.226667pt;}
.y12_c00051{bottom:619.386667pt;}
.y11_c00051{bottom:646.906667pt;}
.y10_c00051{bottom:674.746667pt;}
.yf_c00051{bottom:702.306667pt;}
.ye_c00051{bottom:729.826667pt;}
.yd_c00051{bottom:765.346667pt;}
.yc_c00051{bottom:801.213333pt;}
.yb_c00051{bottom:828.733333pt;}
.ya_c00051{bottom:856.253333pt;}
.y9_c00051{bottom:883.773333pt;}
.y8_c00051{bottom:911.653333pt;}
.y7_c00051{bottom:947.173333pt;}
.y2_c00051{bottom:989.413333pt;}
.h2_c00051{height:18.586667pt;}
.h8_c00051{height:33.918750pt;}
.h3_c00051{height:36.796000pt;}
.h7_c00051{height:41.456250pt;}
.ha_c00051{height:48.195000pt;}
.h9_c00051{height:52.762500pt;}
.h1_c00051{height:57.375000pt;}
.h4_c00051{height:62.781250pt;}
.h5_c00051{height:62.812500pt;}
.h6_c00051{height:1055.996000pt;}
.h0_c00051{height:1056.000000pt;}
.w1_c00051{width:7.346667pt;}
.w2_c00051{width:589.640000pt;}
.w3_c00051{width:815.997333pt;}
.w0_c00051{width:816.000000pt;}
.x0_c00051{left:0.000000pt;}
.x3_c00051{left:113.324000pt;}
.xa_c00051{left:122.272000pt;}
.x1_c00051{left:137.346667pt;}
.x4_c00051{left:160.706667pt;}
.x9_c00051{left:305.413333pt;}
.x5_c00051{left:502.264000pt;}
.x6_c00051{left:513.146667pt;}
.x7_c00051{left:687.930667pt;}
.x2_c00051{left:695.613333pt;}
.x8_c00051{left:698.813333pt;}
}





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

.ir_c00052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00052;src:url('chunks/assets/font_b82a92439b7769f7c9d2fe15.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_c45b86d69f9261fcf1ae25ca.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls0_c00052{letter-spacing:0.000000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:0.000000px;}
._8_c00052{margin-left:-3.312000px;}
._5_c00052{margin-left:-2.304000px;}
._0_c00052{margin-left:-1.296000px;}
._1_c00052{width:1.080000px;}
._4_c00052{width:2.160000px;}
._a_c00052{width:3.240000px;}
._c_c00052{width:4.392000px;}
._b_c00052{width:5.700024px;}
._7_c00052{width:7.128000px;}
._9_c00052{width:8.136000px;}
._2_c00052{width:10.080000px;}
._3_c00052{width:11.304000px;}
._6_c00052{width:15.539976px;}
.fc0_c00052{color:rgb(0,0,0);}
.fs0_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y6_c00052{bottom:4.675500px;}
.y3_c00052{bottom:4.680000px;}
.y5_c00052{bottom:25.195500px;}
.y4_c00052{bottom:32.800500px;}
.y1_c00052{bottom:57.996000px;}
.y20_c00052{bottom:136.116000px;}
.y1f_c00052{bottom:176.115000px;}
.y1e_c00052{bottom:216.075000px;}
.y1d_c00052{bottom:256.035000px;}
.y1c_c00052{bottom:296.385000px;}
.y1b_c00052{bottom:336.345000px;}
.y1a_c00052{bottom:376.305000px;}
.y19_c00052{bottom:416.310000px;}
.y18_c00052{bottom:456.630000px;}
.y17_c00052{bottom:496.590000px;}
.y16_c00052{bottom:536.580000px;}
.y15_c00052{bottom:576.540000px;}
.y14_c00052{bottom:616.860000px;}
.y13_c00052{bottom:656.850000px;}
.y12_c00052{bottom:696.810000px;}
.y11_c00052{bottom:736.770000px;}
.y10_c00052{bottom:777.135000px;}
.yf_c00052{bottom:817.095000px;}
.ye_c00052{bottom:848.055000px;}
.yd_c00052{bottom:879.015000px;}
.yc_c00052{bottom:910.365000px;}
.yb_c00052{bottom:941.325000px;}
.ya_c00052{bottom:972.285000px;}
.y9_c00052{bottom:1003.245000px;}
.y8_c00052{bottom:1034.610000px;}
.y7_c00052{bottom:1065.570000px;}
.y2_c00052{bottom:1113.090000px;}
.h2_c00052{height:20.910000px;}
.h3_c00052{height:41.395500px;}
.h1_c00052{height:64.546875px;}
.h4_c00052{height:70.664062px;}
.h0_c00052{height:1188.000000px;}
.w1_c00052{width:8.265000px;}
.w2_c00052{width:663.345000px;}
.w0_c00052{width:918.000000px;}
.x0_c00052{left:0.000000px;}
.x3_c00052{left:127.489500px;}
.x1_c00052{left:154.515000px;}
.x4_c00052{left:180.795000px;}
.x2_c00052{left:782.565000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws0_c00052{word-spacing:0.000000pt;}
._8_c00052{margin-left:-2.944000pt;}
._5_c00052{margin-left:-2.048000pt;}
._0_c00052{margin-left:-1.152000pt;}
._1_c00052{width:0.960000pt;}
._4_c00052{width:1.920000pt;}
._a_c00052{width:2.880000pt;}
._c_c00052{width:3.904000pt;}
._b_c00052{width:5.066688pt;}
._7_c00052{width:6.336000pt;}
._9_c00052{width:7.232000pt;}
._2_c00052{width:8.960000pt;}
._3_c00052{width:10.048000pt;}
._6_c00052{width:13.813312pt;}
.fs0_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y6_c00052{bottom:4.156000pt;}
.y3_c00052{bottom:4.160000pt;}
.y5_c00052{bottom:22.396000pt;}
.y4_c00052{bottom:29.156000pt;}
.y1_c00052{bottom:51.552000pt;}
.y20_c00052{bottom:120.992000pt;}
.y1f_c00052{bottom:156.546667pt;}
.y1e_c00052{bottom:192.066667pt;}
.y1d_c00052{bottom:227.586667pt;}
.y1c_c00052{bottom:263.453333pt;}
.y1b_c00052{bottom:298.973333pt;}
.y1a_c00052{bottom:334.493333pt;}
.y19_c00052{bottom:370.053333pt;}
.y18_c00052{bottom:405.893333pt;}
.y17_c00052{bottom:441.413333pt;}
.y16_c00052{bottom:476.960000pt;}
.y15_c00052{bottom:512.480000pt;}
.y14_c00052{bottom:548.320000pt;}
.y13_c00052{bottom:583.866667pt;}
.y12_c00052{bottom:619.386667pt;}
.y11_c00052{bottom:654.906667pt;}
.y10_c00052{bottom:690.786667pt;}
.yf_c00052{bottom:726.306667pt;}
.ye_c00052{bottom:753.826667pt;}
.yd_c00052{bottom:781.346667pt;}
.yc_c00052{bottom:809.213333pt;}
.yb_c00052{bottom:836.733333pt;}
.ya_c00052{bottom:864.253333pt;}
.y9_c00052{bottom:891.773333pt;}
.y8_c00052{bottom:919.653333pt;}
.y7_c00052{bottom:947.173333pt;}
.y2_c00052{bottom:989.413333pt;}
.h2_c00052{height:18.586667pt;}
.h3_c00052{height:36.796000pt;}
.h1_c00052{height:57.375000pt;}
.h4_c00052{height:62.812500pt;}
.h0_c00052{height:1056.000000pt;}
.w1_c00052{width:7.346667pt;}
.w2_c00052{width:589.640000pt;}
.w0_c00052{width:816.000000pt;}
.x0_c00052{left:0.000000pt;}
.x3_c00052{left:113.324000pt;}
.x1_c00052{left:137.346667pt;}
.x4_c00052{left:160.706667pt;}
.x2_c00052{left:695.613333pt;}
}





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

.ir_c00053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00053;src:url('chunks/assets/font_27b109edc0ae797c6fc79fb1.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:0.000000px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs0_c00053{font-size:72.000000px;}
.y0_c00053{bottom:0.000000px;}
.y6_c00053{bottom:4.675500px;}
.y3_c00053{bottom:4.680000px;}
.y5_c00053{bottom:25.195500px;}
.y4_c00053{bottom:32.800500px;}
.y1_c00053{bottom:57.996000px;}
.y1e_c00053{bottom:144.036000px;}
.y1d_c00053{bottom:184.035000px;}
.y1c_c00053{bottom:224.355000px;}
.y1b_c00053{bottom:264.315000px;}
.y1a_c00053{bottom:304.305000px;}
.y19_c00053{bottom:344.265000px;}
.y18_c00053{bottom:384.585000px;}
.y17_c00053{bottom:424.590000px;}
.y16_c00053{bottom:464.550000px;}
.y15_c00053{bottom:504.510000px;}
.y14_c00053{bottom:544.860000px;}
.y13_c00053{bottom:584.820000px;}
.y12_c00053{bottom:624.780000px;}
.y11_c00053{bottom:664.770000px;}
.y10_c00053{bottom:705.090000px;}
.yf_c00053{bottom:745.050000px;}
.ye_c00053{bottom:785.055000px;}
.yd_c00053{bottom:825.015000px;}
.yc_c00053{bottom:865.335000px;}
.yb_c00053{bottom:905.325000px;}
.ya_c00053{bottom:945.285000px;}
.y9_c00053{bottom:985.245000px;}
.y8_c00053{bottom:1025.610000px;}
.y7_c00053{bottom:1065.570000px;}
.y2_c00053{bottom:1113.090000px;}
.h2_c00053{height:20.910000px;}
.h3_c00053{height:41.395500px;}
.h1_c00053{height:64.546875px;}
.h4_c00053{height:70.664062px;}
.h0_c00053{height:1188.000000px;}
.w1_c00053{width:8.265000px;}
.w2_c00053{width:663.345000px;}
.w0_c00053{width:918.000000px;}
.x0_c00053{left:0.000000px;}
.x3_c00053{left:127.489500px;}
.x1_c00053{left:154.515000px;}
.x2_c00053{left:782.565000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:0.000000pt;}
.fs0_c00053{font-size:64.000000pt;}
.y0_c00053{bottom:0.000000pt;}
.y6_c00053{bottom:4.156000pt;}
.y3_c00053{bottom:4.160000pt;}
.y5_c00053{bottom:22.396000pt;}
.y4_c00053{bottom:29.156000pt;}
.y1_c00053{bottom:51.552000pt;}
.y1e_c00053{bottom:128.032000pt;}
.y1d_c00053{bottom:163.586667pt;}
.y1c_c00053{bottom:199.426667pt;}
.y1b_c00053{bottom:234.946667pt;}
.y1a_c00053{bottom:270.493333pt;}
.y19_c00053{bottom:306.013333pt;}
.y18_c00053{bottom:341.853333pt;}
.y17_c00053{bottom:377.413333pt;}
.y16_c00053{bottom:412.933333pt;}
.y15_c00053{bottom:448.453333pt;}
.y14_c00053{bottom:484.320000pt;}
.y13_c00053{bottom:519.840000pt;}
.y12_c00053{bottom:555.360000pt;}
.y11_c00053{bottom:590.906667pt;}
.y10_c00053{bottom:626.746667pt;}
.yf_c00053{bottom:662.266667pt;}
.ye_c00053{bottom:697.826667pt;}
.yd_c00053{bottom:733.346667pt;}
.yc_c00053{bottom:769.186667pt;}
.yb_c00053{bottom:804.733333pt;}
.ya_c00053{bottom:840.253333pt;}
.y9_c00053{bottom:875.773333pt;}
.y8_c00053{bottom:911.653333pt;}
.y7_c00053{bottom:947.173333pt;}
.y2_c00053{bottom:989.413333pt;}
.h2_c00053{height:18.586667pt;}
.h3_c00053{height:36.796000pt;}
.h1_c00053{height:57.375000pt;}
.h4_c00053{height:62.812500pt;}
.h0_c00053{height:1056.000000pt;}
.w1_c00053{width:7.346667pt;}
.w2_c00053{width:589.640000pt;}
.w0_c00053{width:816.000000pt;}
.x0_c00053{left:0.000000pt;}
.x3_c00053{left:113.324000pt;}
.x1_c00053{left:137.346667pt;}
.x2_c00053{left:695.613333pt;}
}





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

.ir_c00054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00054;src:url('chunks/assets/font_9fd60b70c6def1dc52b81562.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_0403007871a4d5965e5acee5.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;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_c00054;src:url('chunks/assets/font_312c0ec6ae11a64b60dedc16.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls0_c00054{letter-spacing:0.000000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:-24.120000px;}
.ws1_c00054{word-spacing:0.000000px;}
._0_c00054{margin-left:-1.061376px;}
.fc0_c00054{color:rgb(0,0,0);}
.fs0_c00054{font-size:72.000000px;}
.fs1_c00054{font-size:96.480000px;}
.y0_c00054{bottom:0.000000px;}
.y6_c00054{bottom:4.675500px;}
.y3_c00054{bottom:4.680000px;}
.y5_c00054{bottom:25.195500px;}
.y4_c00054{bottom:32.800500px;}
.y1_c00054{bottom:57.996000px;}
.y1e_c00054{bottom:133.596000px;}
.y1d_c00054{bottom:173.955000px;}
.y1c_c00054{bottom:213.915000px;}
.y1b_c00054{bottom:253.875000px;}
.y1a_c00054{bottom:293.865000px;}
.y19_c00054{bottom:334.185000px;}
.y18_c00054{bottom:374.145000px;}
.y17_c00054{bottom:414.150000px;}
.y16_c00054{bottom:454.110000px;}
.y15_c00054{bottom:494.430000px;}
.y14_c00054{bottom:534.420000px;}
.y13_c00054{bottom:574.380000px;}
.y12_c00054{bottom:619.020000px;}
.y11_c00054{bottom:664.770000px;}
.y10_c00054{bottom:705.090000px;}
.yf_c00054{bottom:745.050000px;}
.ye_c00054{bottom:785.055000px;}
.yd_c00054{bottom:825.015000px;}
.yc_c00054{bottom:865.335000px;}
.yb_c00054{bottom:905.325000px;}
.ya_c00054{bottom:945.285000px;}
.y9_c00054{bottom:985.245000px;}
.y8_c00054{bottom:1025.610000px;}
.y7_c00054{bottom:1065.570000px;}
.y2_c00054{bottom:1113.090000px;}
.h2_c00054{height:20.910000px;}
.h3_c00054{height:41.395500px;}
.h1_c00054{height:64.546875px;}
.h4_c00054{height:70.664062px;}
.h5_c00054{height:97.233750px;}
.h0_c00054{height:1188.000000px;}
.w1_c00054{width:8.265000px;}
.w2_c00054{width:663.345000px;}
.w0_c00054{width:918.000000px;}
.x0_c00054{left:0.000000px;}
.x3_c00054{left:127.489500px;}
.x1_c00054{left:154.515000px;}
.x4_c00054{left:216.435000px;}
.x2_c00054{left:782.565000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:-21.440000pt;}
.ws1_c00054{word-spacing:0.000000pt;}
._0_c00054{margin-left:-0.943446pt;}
.fs0_c00054{font-size:64.000000pt;}
.fs1_c00054{font-size:85.760000pt;}
.y0_c00054{bottom:0.000000pt;}
.y6_c00054{bottom:4.156000pt;}
.y3_c00054{bottom:4.160000pt;}
.y5_c00054{bottom:22.396000pt;}
.y4_c00054{bottom:29.156000pt;}
.y1_c00054{bottom:51.552000pt;}
.y1e_c00054{bottom:118.752000pt;}
.y1d_c00054{bottom:154.626667pt;}
.y1c_c00054{bottom:190.146667pt;}
.y1b_c00054{bottom:225.666667pt;}
.y1a_c00054{bottom:261.213333pt;}
.y19_c00054{bottom:297.053333pt;}
.y18_c00054{bottom:332.573333pt;}
.y17_c00054{bottom:368.133333pt;}
.y16_c00054{bottom:403.653333pt;}
.y15_c00054{bottom:439.493333pt;}
.y14_c00054{bottom:475.040000pt;}
.y13_c00054{bottom:510.560000pt;}
.y12_c00054{bottom:550.240000pt;}
.y11_c00054{bottom:590.906667pt;}
.y10_c00054{bottom:626.746667pt;}
.yf_c00054{bottom:662.266667pt;}
.ye_c00054{bottom:697.826667pt;}
.yd_c00054{bottom:733.346667pt;}
.yc_c00054{bottom:769.186667pt;}
.yb_c00054{bottom:804.733333pt;}
.ya_c00054{bottom:840.253333pt;}
.y9_c00054{bottom:875.773333pt;}
.y8_c00054{bottom:911.653333pt;}
.y7_c00054{bottom:947.173333pt;}
.y2_c00054{bottom:989.413333pt;}
.h2_c00054{height:18.586667pt;}
.h3_c00054{height:36.796000pt;}
.h1_c00054{height:57.375000pt;}
.h4_c00054{height:62.812500pt;}
.h5_c00054{height:86.430000pt;}
.h0_c00054{height:1056.000000pt;}
.w1_c00054{width:7.346667pt;}
.w2_c00054{width:589.640000pt;}
.w0_c00054{width:816.000000pt;}
.x0_c00054{left:0.000000pt;}
.x3_c00054{left:113.324000pt;}
.x1_c00054{left:137.346667pt;}
.x4_c00054{left:192.386667pt;}
.x2_c00054{left:695.613333pt;}
}





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

.ir_c00055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00055;src:url('chunks/assets/font_82792fd79101cd2ce97d2d29.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_02ad54a469f9388951515c3f.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_0403007871a4d5965e5acee5.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;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_c00055;src:url('chunks/assets/font_270687992d074778afa3e268.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00055;src:url('chunks/assets/font_7d256ec7f2ddafca61962278.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;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_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls0_c00055{letter-spacing:0.000000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:-18.000000px;}
.ws1_c00055{word-spacing:0.000000px;}
._3_c00055{margin-left:-3.096000px;}
._1_c00055{margin-left:-1.764000px;}
._0_c00055{width:1.440000px;}
._5_c00055{width:3.096000px;}
._6_c00055{width:4.260024px;}
._2_c00055{width:5.724000px;}
._4_c00055{width:6.948000px;}
._e_c00055{width:8.136000px;}
._9_c00055{width:9.324000px;}
._a_c00055{width:10.656000px;}
._b_c00055{width:11.664000px;}
._10_c00055{width:12.888000px;}
._f_c00055{width:14.076000px;}
._11_c00055{width:15.372000px;}
._15_c00055{width:16.416000px;}
._13_c00055{width:19.224000px;}
._12_c00055{width:20.520000px;}
._8_c00055{width:21.744000px;}
._7_c00055{width:22.824000px;}
._c_c00055{width:24.300000px;}
._d_c00055{width:25.740000px;}
._17_c00055{width:38.592000px;}
._16_c00055{width:40.176000px;}
._18_c00055{width:41.184000px;}
._14_c00055{width:144.336024px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs0_c00055{font-size:72.000000px;}
.y0_c00055{bottom:0.000000px;}
.y6_c00055{bottom:4.675500px;}
.y3_c00055{bottom:4.680000px;}
.y5_c00055{bottom:25.195500px;}
.y4_c00055{bottom:32.800500px;}
.y1_c00055{bottom:57.996000px;}
.y24_c00055{bottom:119.916000px;}
.y23_c00055{bottom:150.915000px;}
.y22_c00055{bottom:181.875000px;}
.y21_c00055{bottom:212.835000px;}
.y20_c00055{bottom:244.155000px;}
.y1f_c00055{bottom:275.145000px;}
.y1e_c00055{bottom:315.105000px;}
.y1d_c00055{bottom:346.065000px;}
.y1c_c00055{bottom:386.385000px;}
.y1b_c00055{bottom:426.390000px;}
.y1a_c00055{bottom:457.350000px;}
.y19_c00055{bottom:488.310000px;}
.y18_c00055{bottom:519.660000px;}
.y17_c00055{bottom:550.620000px;}
.y16_c00055{bottom:590.580000px;}
.y15_c00055{bottom:621.540000px;}
.y14_c00055{bottom:652.890000px;}
.y13_c00055{bottom:683.850000px;}
.y12_c00055{bottom:714.810000px;}
.y11_c00055{bottom:745.770000px;}
.y10_c00055{bottom:777.135000px;}
.yf_c00055{bottom:808.095000px;}
.ye_c00055{bottom:839.055000px;}
.yd_c00055{bottom:870.015000px;}
.yc_c00055{bottom:901.365000px;}
.yb_c00055{bottom:932.325000px;}
.ya_c00055{bottom:963.285000px;}
.y9_c00055{bottom:994.245000px;}
.y8_c00055{bottom:1025.610000px;}
.y7_c00055{bottom:1065.210000px;}
.y2_c00055{bottom:1113.090000px;}
.h2_c00055{height:20.910000px;}
.h3_c00055{height:41.395500px;}
.h1_c00055{height:64.546875px;}
.h5_c00055{height:70.664062px;}
.h4_c00055{height:72.562500px;}
.h0_c00055{height:1188.000000px;}
.w1_c00055{width:8.265000px;}
.w2_c00055{width:663.345000px;}
.w0_c00055{width:918.000000px;}
.x0_c00055{left:0.000000px;}
.x3_c00055{left:127.489500px;}
.x1_c00055{left:154.515000px;}
.x6_c00055{left:169.995000px;}
.x5_c00055{left:180.795000px;}
.x4_c00055{left:267.945000px;}
.x2_c00055{left:782.565000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:-16.000000pt;}
.ws1_c00055{word-spacing:0.000000pt;}
._3_c00055{margin-left:-2.752000pt;}
._1_c00055{margin-left:-1.568000pt;}
._0_c00055{width:1.280000pt;}
._5_c00055{width:2.752000pt;}
._6_c00055{width:3.786688pt;}
._2_c00055{width:5.088000pt;}
._4_c00055{width:6.176000pt;}
._e_c00055{width:7.232000pt;}
._9_c00055{width:8.288000pt;}
._a_c00055{width:9.472000pt;}
._b_c00055{width:10.368000pt;}
._10_c00055{width:11.456000pt;}
._f_c00055{width:12.512000pt;}
._11_c00055{width:13.664000pt;}
._15_c00055{width:14.592000pt;}
._13_c00055{width:17.088000pt;}
._12_c00055{width:18.240000pt;}
._8_c00055{width:19.328000pt;}
._7_c00055{width:20.288000pt;}
._c_c00055{width:21.600000pt;}
._d_c00055{width:22.880000pt;}
._17_c00055{width:34.304000pt;}
._16_c00055{width:35.712000pt;}
._18_c00055{width:36.608000pt;}
._14_c00055{width:128.298688pt;}
.fs0_c00055{font-size:64.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y6_c00055{bottom:4.156000pt;}
.y3_c00055{bottom:4.160000pt;}
.y5_c00055{bottom:22.396000pt;}
.y4_c00055{bottom:29.156000pt;}
.y1_c00055{bottom:51.552000pt;}
.y24_c00055{bottom:106.592000pt;}
.y23_c00055{bottom:134.146667pt;}
.y22_c00055{bottom:161.666667pt;}
.y21_c00055{bottom:189.186667pt;}
.y20_c00055{bottom:217.026667pt;}
.y1f_c00055{bottom:244.573333pt;}
.y1e_c00055{bottom:280.093333pt;}
.y1d_c00055{bottom:307.613333pt;}
.y1c_c00055{bottom:343.453333pt;}
.y1b_c00055{bottom:379.013333pt;}
.y1a_c00055{bottom:406.533333pt;}
.y19_c00055{bottom:434.053333pt;}
.y18_c00055{bottom:461.920000pt;}
.y17_c00055{bottom:489.440000pt;}
.y16_c00055{bottom:524.960000pt;}
.y15_c00055{bottom:552.480000pt;}
.y14_c00055{bottom:580.346667pt;}
.y13_c00055{bottom:607.866667pt;}
.y12_c00055{bottom:635.386667pt;}
.y11_c00055{bottom:662.906667pt;}
.y10_c00055{bottom:690.786667pt;}
.yf_c00055{bottom:718.306667pt;}
.ye_c00055{bottom:745.826667pt;}
.yd_c00055{bottom:773.346667pt;}
.yc_c00055{bottom:801.213333pt;}
.yb_c00055{bottom:828.733333pt;}
.ya_c00055{bottom:856.253333pt;}
.y9_c00055{bottom:883.773333pt;}
.y8_c00055{bottom:911.653333pt;}
.y7_c00055{bottom:946.853333pt;}
.y2_c00055{bottom:989.413333pt;}
.h2_c00055{height:18.586667pt;}
.h3_c00055{height:36.796000pt;}
.h1_c00055{height:57.375000pt;}
.h5_c00055{height:62.812500pt;}
.h4_c00055{height:64.500000pt;}
.h0_c00055{height:1056.000000pt;}
.w1_c00055{width:7.346667pt;}
.w2_c00055{width:589.640000pt;}
.w0_c00055{width:816.000000pt;}
.x0_c00055{left:0.000000pt;}
.x3_c00055{left:113.324000pt;}
.x1_c00055{left:137.346667pt;}
.x6_c00055{left:151.106667pt;}
.x5_c00055{left:160.706667pt;}
.x4_c00055{left:238.173333pt;}
.x2_c00055{left:695.613333pt;}
}





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

.ir_c00056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00056;src:url('chunks/assets/font_e78ae1511b37131975271a09.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_2d49d7135ec34d38454f5d86.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_0b35157026d0f562296a64f9.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_569decdae9d214ea7c762a80.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_27da5bd8fdbd600f27fcdd35.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;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_c00056;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff6_c00056{font-family:ff6_c00056;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls7_c00056{letter-spacing:-0.972000px;}
.ls6_c00056{letter-spacing:-0.912000px;}
.ls3_c00056{letter-spacing:-0.720000px;}
.ls5_c00056{letter-spacing:-0.241800px;}
.ls2_c00056{letter-spacing:0.000000px;}
.ls8_c00056{letter-spacing:0.486600px;}
.ls1_c00056{letter-spacing:0.486720px;}
.ls9_c00056{letter-spacing:0.507000px;}
.ls4_c00056{letter-spacing:0.529800px;}
.ls0_c00056{letter-spacing:0.720000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:-72.000000px;}
.ws1_c00056{word-spacing:-18.000000px;}
.ws6_c00056{word-spacing:-15.627000px;}
.ws5_c00056{word-spacing:-15.606600px;}
.ws2_c00056{word-spacing:-15.120000px;}
.ws3_c00056{word-spacing:-14.878200px;}
.ws4_c00056{word-spacing:-14.148000px;}
.ws7_c00056{word-spacing:0.000000px;}
._1_c00056{margin-left:-2.736000px;}
._3_c00056{margin-left:-1.584000px;}
._0_c00056{width:1.080000px;}
._5_c00056{width:2.952000px;}
._4_c00056{width:4.320000px;}
._6_c00056{width:5.472000px;}
._2_c00056{width:6.552000px;}
._10_c00056{width:7.640855px;}
._7_c00056{width:8.771976px;}
._f_c00056{width:9.936000px;}
._e_c00056{width:11.304000px;}
._c_c00056{width:12.744000px;}
._d_c00056{width:13.752000px;}
._b_c00056{width:16.416000px;}
._a_c00056{width:19.872000px;}
._8_c00056{width:20.952000px;}
._9_c00056{width:22.835952px;}
.fc0_c00056{color:rgb(0,0,0);}
.fs3_c00056{font-size:38.880000px;}
.fs1_c00056{font-size:47.520000px;}
.fs2_c00056{font-size:60.480000px;}
.fs0_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y6_c00056{bottom:4.675500px;}
.y3_c00056{bottom:4.680000px;}
.y5_c00056{bottom:25.195500px;}
.y4_c00056{bottom:32.800500px;}
.y1_c00056{bottom:57.996000px;}
.y2d_c00056{bottom:130.716000px;}
.y2c_c00056{bottom:147.996000px;}
.y2b_c00056{bottom:154.875000px;}
.y2a_c00056{bottom:164.955000px;}
.y29_c00056{bottom:182.235000px;}
.y28_c00056{bottom:199.515000px;}
.y27_c00056{bottom:216.795000px;}
.y26_c00056{bottom:234.075000px;}
.y25_c00056{bottom:251.355000px;}
.y24_c00056{bottom:268.635000px;}
.y23_c00056{bottom:285.945000px;}
.y22_c00056{bottom:303.225000px;}
.y21_c00056{bottom:310.065000px;}
.y20_c00056{bottom:320.865000px;}
.y1f_c00056{bottom:356.865000px;}
.y1e_c00056{bottom:391.785000px;}
.y1d_c00056{bottom:426.750000px;}
.y1c_c00056{bottom:461.670000px;}
.y1b_c00056{bottom:496.590000px;}
.y1a_c00056{bottom:531.540000px;}
.y19_c00056{bottom:568.620000px;}
.y18_c00056{bottom:599.580000px;}
.y17_c00056{bottom:630.540000px;}
.y16_c00056{bottom:661.890000px;}
.y15_c00056{bottom:692.850000px;}
.y13_c00056{bottom:723.810000px;}
.y14_c00056{bottom:732.090000px;}
.y12_c00056{bottom:754.770000px;}
.y11_c00056{bottom:786.135000px;}
.y10_c00056{bottom:817.095000px;}
.yf_c00056{bottom:848.055000px;}
.ye_c00056{bottom:879.015000px;}
.yd_c00056{bottom:910.365000px;}
.yc_c00056{bottom:941.325000px;}
.yb_c00056{bottom:972.285000px;}
.ya_c00056{bottom:1003.245000px;}
.y9_c00056{bottom:1034.610000px;}
.y7_c00056{bottom:1065.570000px;}
.y8_c00056{bottom:1073.850000px;}
.y2_c00056{bottom:1113.090000px;}
.h2_c00056{height:20.910000px;}
.h9_c00056{height:38.158594px;}
.h3_c00056{height:41.395500px;}
.h6_c00056{height:46.638281px;}
.h8_c00056{height:59.328281px;}
.h7_c00056{height:59.357813px;}
.h1_c00056{height:64.546875px;}
.h4_c00056{height:70.664062px;}
.h5_c00056{height:1187.995500px;}
.h0_c00056{height:1188.000000px;}
.w1_c00056{width:8.265000px;}
.w2_c00056{width:663.345000px;}
.w3_c00056{width:917.997000px;}
.w0_c00056{width:918.000000px;}
.x0_c00056{left:0.000000px;}
.x3_c00056{left:127.489500px;}
.xa_c00056{left:137.556000px;}
.x1_c00056{left:154.515000px;}
.x8_c00056{left:169.995000px;}
.x9_c00056{left:343.590000px;}
.x6_c00056{left:584.487000px;}
.x7_c00056{left:596.730000px;}
.x4_c00056{left:773.922000px;}
.x2_c00056{left:782.565000px;}
.x5_c00056{left:786.165000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls7_c00056{letter-spacing:-0.864000pt;}
.ls6_c00056{letter-spacing:-0.810667pt;}
.ls3_c00056{letter-spacing:-0.640000pt;}
.ls5_c00056{letter-spacing:-0.214933pt;}
.ls2_c00056{letter-spacing:0.000000pt;}
.ls8_c00056{letter-spacing:0.432533pt;}
.ls1_c00056{letter-spacing:0.432640pt;}
.ls9_c00056{letter-spacing:0.450667pt;}
.ls4_c00056{letter-spacing:0.470933pt;}
.ls0_c00056{letter-spacing:0.640000pt;}
.ws0_c00056{word-spacing:-64.000000pt;}
.ws1_c00056{word-spacing:-16.000000pt;}
.ws6_c00056{word-spacing:-13.890667pt;}
.ws5_c00056{word-spacing:-13.872533pt;}
.ws2_c00056{word-spacing:-13.440000pt;}
.ws3_c00056{word-spacing:-13.225067pt;}
.ws4_c00056{word-spacing:-12.576000pt;}
.ws7_c00056{word-spacing:0.000000pt;}
._1_c00056{margin-left:-2.432000pt;}
._3_c00056{margin-left:-1.408000pt;}
._0_c00056{width:0.960000pt;}
._5_c00056{width:2.624000pt;}
._4_c00056{width:3.840000pt;}
._6_c00056{width:4.864000pt;}
._2_c00056{width:5.824000pt;}
._10_c00056{width:6.791871pt;}
._7_c00056{width:7.797312pt;}
._f_c00056{width:8.832000pt;}
._e_c00056{width:10.048000pt;}
._c_c00056{width:11.328000pt;}
._d_c00056{width:12.224000pt;}
._b_c00056{width:14.592000pt;}
._a_c00056{width:17.664000pt;}
._8_c00056{width:18.624000pt;}
._9_c00056{width:20.298624pt;}
.fs3_c00056{font-size:34.560000pt;}
.fs1_c00056{font-size:42.240000pt;}
.fs2_c00056{font-size:53.760000pt;}
.fs0_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y6_c00056{bottom:4.156000pt;}
.y3_c00056{bottom:4.160000pt;}
.y5_c00056{bottom:22.396000pt;}
.y4_c00056{bottom:29.156000pt;}
.y1_c00056{bottom:51.552000pt;}
.y2d_c00056{bottom:116.192000pt;}
.y2c_c00056{bottom:131.552000pt;}
.y2b_c00056{bottom:137.666667pt;}
.y2a_c00056{bottom:146.626667pt;}
.y29_c00056{bottom:161.986667pt;}
.y28_c00056{bottom:177.346667pt;}
.y27_c00056{bottom:192.706667pt;}
.y26_c00056{bottom:208.066667pt;}
.y25_c00056{bottom:223.426667pt;}
.y24_c00056{bottom:238.786667pt;}
.y23_c00056{bottom:254.173333pt;}
.y22_c00056{bottom:269.533333pt;}
.y21_c00056{bottom:275.613333pt;}
.y20_c00056{bottom:285.213333pt;}
.y1f_c00056{bottom:317.213333pt;}
.y1e_c00056{bottom:348.253333pt;}
.y1d_c00056{bottom:379.333333pt;}
.y1c_c00056{bottom:410.373333pt;}
.y1b_c00056{bottom:441.413333pt;}
.y1a_c00056{bottom:472.480000pt;}
.y19_c00056{bottom:505.440000pt;}
.y18_c00056{bottom:532.960000pt;}
.y17_c00056{bottom:560.480000pt;}
.y16_c00056{bottom:588.346667pt;}
.y15_c00056{bottom:615.866667pt;}
.y13_c00056{bottom:643.386667pt;}
.y14_c00056{bottom:650.746667pt;}
.y12_c00056{bottom:670.906667pt;}
.y11_c00056{bottom:698.786667pt;}
.y10_c00056{bottom:726.306667pt;}
.yf_c00056{bottom:753.826667pt;}
.ye_c00056{bottom:781.346667pt;}
.yd_c00056{bottom:809.213333pt;}
.yc_c00056{bottom:836.733333pt;}
.yb_c00056{bottom:864.253333pt;}
.ya_c00056{bottom:891.773333pt;}
.y9_c00056{bottom:919.653333pt;}
.y7_c00056{bottom:947.173333pt;}
.y8_c00056{bottom:954.533333pt;}
.y2_c00056{bottom:989.413333pt;}
.h2_c00056{height:18.586667pt;}
.h9_c00056{height:33.918750pt;}
.h3_c00056{height:36.796000pt;}
.h6_c00056{height:41.456250pt;}
.h8_c00056{height:52.736250pt;}
.h7_c00056{height:52.762500pt;}
.h1_c00056{height:57.375000pt;}
.h4_c00056{height:62.812500pt;}
.h5_c00056{height:1055.996000pt;}
.h0_c00056{height:1056.000000pt;}
.w1_c00056{width:7.346667pt;}
.w2_c00056{width:589.640000pt;}
.w3_c00056{width:815.997333pt;}
.w0_c00056{width:816.000000pt;}
.x0_c00056{left:0.000000pt;}
.x3_c00056{left:113.324000pt;}
.xa_c00056{left:122.272000pt;}
.x1_c00056{left:137.346667pt;}
.x8_c00056{left:151.106667pt;}
.x9_c00056{left:305.413333pt;}
.x6_c00056{left:519.544000pt;}
.x7_c00056{left:530.426667pt;}
.x4_c00056{left:687.930667pt;}
.x2_c00056{left:695.613333pt;}
.x5_c00056{left:698.813333pt;}
}





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

.ir_c00057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00057;src:url('chunks/assets/font_af7f6d28e759dd45c5ec1737.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_5f605b0c413f352ba8216a06.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_49e17e057a40c7e10e69d231.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_49ab35d03baec7bbd0a929b4.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls2_c00057{letter-spacing:0.000000px;}
.ls3_c00057{letter-spacing:0.466800px;}
.ls0_c00057{letter-spacing:0.504000px;}
.ls1_c00057{letter-spacing:0.720000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:-18.000000px;}
.ws1_c00057{word-spacing:-15.586800px;}
.ws2_c00057{word-spacing:-15.120000px;}
.ws3_c00057{word-spacing:0.000000px;}
._11_c00057{margin-left:-3.571422px;}
._3_c00057{margin-left:-2.417990px;}
._0_c00057{margin-left:-1.330802px;}
._1_c00057{width:1.330802px;}
._2_c00057{width:2.919612px;}
._6_c00057{width:4.183188px;}
._7_c00057{width:5.479188px;}
._8_c00057{width:6.518419px;}
._4_c00057{width:7.855188px;}
._5_c00057{width:9.044387px;}
._d_c00057{width:10.890029px;}
._c_c00057{width:12.641990px;}
._e_c00057{width:13.724387px;}
._10_c00057{width:15.080406px;}
._9_c00057{width:16.200000px;}
._f_c00057{width:19.769990px;}
._a_c00057{width:22.933198px;}
._b_c00057{width:24.264000px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs2_c00057{font-size:38.880000px;}
.fs3_c00057{font-size:47.520000px;}
.fs1_c00057{font-size:60.480000px;}
.fs0_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y6_c00057{bottom:4.675500px;}
.y3_c00057{bottom:4.680000px;}
.y5_c00057{bottom:25.195500px;}
.y4_c00057{bottom:32.800500px;}
.y1_c00057{bottom:57.996000px;}
.y2d_c00057{bottom:130.716000px;}
.y2c_c00057{bottom:147.996000px;}
.y2b_c00057{bottom:164.955000px;}
.y2a_c00057{bottom:182.235000px;}
.y29_c00057{bottom:199.515000px;}
.y28_c00057{bottom:216.795000px;}
.y27_c00057{bottom:234.075000px;}
.y26_c00057{bottom:251.355000px;}
.y25_c00057{bottom:258.195000px;}
.y24_c00057{bottom:268.635000px;}
.y23_c00057{bottom:285.945000px;}
.y22_c00057{bottom:292.785000px;}
.y21_c00057{bottom:303.585000px;}
.y20_c00057{bottom:325.545000px;}
.y1f_c00057{bottom:356.505000px;}
.y1e_c00057{bottom:387.465000px;}
.y1d_c00057{bottom:418.830000px;}
.y1c_c00057{bottom:449.790000px;}
.y1b_c00057{bottom:480.750000px;}
.y1a_c00057{bottom:511.710000px;}
.y19_c00057{bottom:543.060000px;}
.y18_c00057{bottom:574.020000px;}
.y17_c00057{bottom:604.980000px;}
.y16_c00057{bottom:635.940000px;}
.y14_c00057{bottom:667.290000px;}
.y15_c00057{bottom:675.570000px;}
.y13_c00057{bottom:698.250000px;}
.y12_c00057{bottom:729.210000px;}
.y11_c00057{bottom:760.170000px;}
.y10_c00057{bottom:791.535000px;}
.yf_c00057{bottom:831.495000px;}
.ye_c00057{bottom:871.455000px;}
.yd_c00057{bottom:911.445000px;}
.yc_c00057{bottom:942.765000px;}
.yb_c00057{bottom:973.725000px;}
.ya_c00057{bottom:1004.685000px;}
.y8_c00057{bottom:1042.530000px;}
.y9_c00057{bottom:1049.370000px;}
.y7_c00057{bottom:1068.450000px;}
.y2_c00057{bottom:1113.090000px;}
.h2_c00057{height:20.910000px;}
.h9_c00057{height:34.855313px;}
.h6_c00057{height:38.139609px;}
.hb_c00057{height:38.158594px;}
.h3_c00057{height:41.395500px;}
.h8_c00057{height:46.638281px;}
.ha_c00057{height:54.219375px;}
.h4_c00057{height:59.328281px;}
.hc_c00057{height:59.357813px;}
.h1_c00057{height:64.546875px;}
.h7_c00057{height:70.664062px;}
.h5_c00057{height:1187.995500px;}
.h0_c00057{height:1188.000000px;}
.w1_c00057{width:8.265000px;}
.w2_c00057{width:663.345000px;}
.w3_c00057{width:917.997000px;}
.w0_c00057{width:918.000000px;}
.x0_c00057{left:0.000000px;}
.x3_c00057{left:127.489500px;}
.xb_c00057{left:137.556000px;}
.x1_c00057{left:154.515000px;}
.x4_c00057{left:169.995000px;}
.x7_c00057{left:180.795000px;}
.xa_c00057{left:343.590000px;}
.x5_c00057{left:581.967000px;}
.x6_c00057{left:592.050000px;}
.x8_c00057{left:741.522000px;}
.x9_c00057{left:753.765000px;}
.x2_c00057{left:782.565000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls2_c00057{letter-spacing:0.000000pt;}
.ls3_c00057{letter-spacing:0.414933pt;}
.ls0_c00057{letter-spacing:0.448000pt;}
.ls1_c00057{letter-spacing:0.640000pt;}
.ws0_c00057{word-spacing:-16.000000pt;}
.ws1_c00057{word-spacing:-13.854933pt;}
.ws2_c00057{word-spacing:-13.440000pt;}
.ws3_c00057{word-spacing:0.000000pt;}
._11_c00057{margin-left:-3.174597pt;}
._3_c00057{margin-left:-2.149325pt;}
._0_c00057{margin-left:-1.182935pt;}
._1_c00057{width:1.182935pt;}
._2_c00057{width:2.595210pt;}
._6_c00057{width:3.718390pt;}
._7_c00057{width:4.870390pt;}
._8_c00057{width:5.794150pt;}
._4_c00057{width:6.982390pt;}
._5_c00057{width:8.039455pt;}
._d_c00057{width:9.680026pt;}
._c_c00057{width:11.237325pt;}
._e_c00057{width:12.199455pt;}
._10_c00057{width:13.404805pt;}
._9_c00057{width:14.400000pt;}
._f_c00057{width:17.573325pt;}
._a_c00057{width:20.385065pt;}
._b_c00057{width:21.568000pt;}
.fs2_c00057{font-size:34.560000pt;}
.fs3_c00057{font-size:42.240000pt;}
.fs1_c00057{font-size:53.760000pt;}
.fs0_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y6_c00057{bottom:4.156000pt;}
.y3_c00057{bottom:4.160000pt;}
.y5_c00057{bottom:22.396000pt;}
.y4_c00057{bottom:29.156000pt;}
.y1_c00057{bottom:51.552000pt;}
.y2d_c00057{bottom:116.192000pt;}
.y2c_c00057{bottom:131.552000pt;}
.y2b_c00057{bottom:146.626667pt;}
.y2a_c00057{bottom:161.986667pt;}
.y29_c00057{bottom:177.346667pt;}
.y28_c00057{bottom:192.706667pt;}
.y27_c00057{bottom:208.066667pt;}
.y26_c00057{bottom:223.426667pt;}
.y25_c00057{bottom:229.506667pt;}
.y24_c00057{bottom:238.786667pt;}
.y23_c00057{bottom:254.173333pt;}
.y22_c00057{bottom:260.253333pt;}
.y21_c00057{bottom:269.853333pt;}
.y20_c00057{bottom:289.373333pt;}
.y1f_c00057{bottom:316.893333pt;}
.y1e_c00057{bottom:344.413333pt;}
.y1d_c00057{bottom:372.293333pt;}
.y1c_c00057{bottom:399.813333pt;}
.y1b_c00057{bottom:427.333333pt;}
.y1a_c00057{bottom:454.853333pt;}
.y19_c00057{bottom:482.720000pt;}
.y18_c00057{bottom:510.240000pt;}
.y17_c00057{bottom:537.760000pt;}
.y16_c00057{bottom:565.280000pt;}
.y14_c00057{bottom:593.146667pt;}
.y15_c00057{bottom:600.506667pt;}
.y13_c00057{bottom:620.666667pt;}
.y12_c00057{bottom:648.186667pt;}
.y11_c00057{bottom:675.706667pt;}
.y10_c00057{bottom:703.586667pt;}
.yf_c00057{bottom:739.106667pt;}
.ye_c00057{bottom:774.626667pt;}
.yd_c00057{bottom:810.173333pt;}
.yc_c00057{bottom:838.013333pt;}
.yb_c00057{bottom:865.533333pt;}
.ya_c00057{bottom:893.053333pt;}
.y8_c00057{bottom:926.693333pt;}
.y9_c00057{bottom:932.773333pt;}
.y7_c00057{bottom:949.733333pt;}
.y2_c00057{bottom:989.413333pt;}
.h2_c00057{height:18.586667pt;}
.h9_c00057{height:30.982500pt;}
.h6_c00057{height:33.901875pt;}
.hb_c00057{height:33.918750pt;}
.h3_c00057{height:36.796000pt;}
.h8_c00057{height:41.456250pt;}
.ha_c00057{height:48.195000pt;}
.h4_c00057{height:52.736250pt;}
.hc_c00057{height:52.762500pt;}
.h1_c00057{height:57.375000pt;}
.h7_c00057{height:62.812500pt;}
.h5_c00057{height:1055.996000pt;}
.h0_c00057{height:1056.000000pt;}
.w1_c00057{width:7.346667pt;}
.w2_c00057{width:589.640000pt;}
.w3_c00057{width:815.997333pt;}
.w0_c00057{width:816.000000pt;}
.x0_c00057{left:0.000000pt;}
.x3_c00057{left:113.324000pt;}
.xb_c00057{left:122.272000pt;}
.x1_c00057{left:137.346667pt;}
.x4_c00057{left:151.106667pt;}
.x7_c00057{left:160.706667pt;}
.xa_c00057{left:305.413333pt;}
.x5_c00057{left:517.304000pt;}
.x6_c00057{left:526.266667pt;}
.x8_c00057{left:659.130667pt;}
.x9_c00057{left:670.013333pt;}
.x2_c00057{left:695.613333pt;}
}





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

.ir_c00058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00058;src:url('chunks/assets/font_71dc64260b10015bcff4c953.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_0b9d279e219c8764ed40680e.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_6ccda3f3d982a4f72fba42b1.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;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_c00058;src:url('chunks/assets/font_fc02e3435d28642ade215337.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;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_c00058;src:url('chunks/assets/font_6b9645279b01922329458f35.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00058;src:url('chunks/assets/font_0abf23991d3f8d4c3eca58ee.woff2')format("woff");}.ff6_c00058{font-family:ff6_c00058;line-height:1.112305;font-style:normal;font-weight: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_c00058;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00058{font-family:ff7_c00058;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls1_c00058{letter-spacing:0.000000px;}
.ls2_c00058{letter-spacing:0.648000px;}
.ls0_c00058{letter-spacing:0.840000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00058{word-spacing:-72.000000px;}
.ws0_c00058{word-spacing:-18.648000px;}
.ws1_c00058{word-spacing:-18.000000px;}
.ws3_c00058{word-spacing:0.000000px;}
._4_c00058{margin-left:-2.880000px;}
._0_c00058{margin-left:-1.224000px;}
._3_c00058{width:1.512000px;}
._5_c00058{width:3.240000px;}
._7_c00058{width:5.040000px;}
._b_c00058{width:6.624000px;}
._8_c00058{width:8.424000px;}
._a_c00058{width:9.432000px;}
._9_c00058{width:10.656000px;}
._d_c00058{width:11.687976px;}
._2_c00058{width:12.960000px;}
._1_c00058{width:14.040000px;}
._6_c00058{width:15.192000px;}
._c_c00058{width:52.632000px;}
.fc1_c00058{color:rgb(255,0,0);}
.fc0_c00058{color:rgb(0,0,0);}
.fs0_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y6_c00058{bottom:4.675500px;}
.y3_c00058{bottom:4.680000px;}
.y5_c00058{bottom:25.195500px;}
.y4_c00058{bottom:32.800500px;}
.y1_c00058{bottom:57.996000px;}
.y21_c00058{bottom:121.716000px;}
.y20_c00058{bottom:153.075000px;}
.y1f_c00058{bottom:184.035000px;}
.y1e_c00058{bottom:223.995000px;}
.y1d_c00058{bottom:263.955000px;}
.y1c_c00058{bottom:303.945000px;}
.y1b_c00058{bottom:335.625000px;}
.y1a_c00058{bottom:378.105000px;}
.y19_c00058{bottom:419.550000px;}
.y18_c00058{bottom:460.230000px;}
.y17_c00058{bottom:501.630000px;}
.y16_c00058{bottom:541.620000px;}
.y15_c00058{bottom:573.300000px;}
.y14_c00058{bottom:615.780000px;}
.y13_c00058{bottom:656.850000px;}
.y12_c00058{bottom:696.810000px;}
.y11_c00058{bottom:736.770000px;}
.y10_c00058{bottom:777.135000px;}
.yf_c00058{bottom:808.095000px;}
.ye_c00058{bottom:839.055000px;}
.yd_c00058{bottom:870.015000px;}
.yc_c00058{bottom:910.365000px;}
.yb_c00058{bottom:941.325000px;}
.ya_c00058{bottom:972.285000px;}
.y9_c00058{bottom:1003.245000px;}
.y8_c00058{bottom:1034.610000px;}
.y7_c00058{bottom:1065.570000px;}
.y2_c00058{bottom:1113.090000px;}
.h2_c00058{height:20.910000px;}
.h3_c00058{height:41.395500px;}
.h1_c00058{height:64.546875px;}
.h5_c00058{height:70.628906px;}
.h4_c00058{height:70.664062px;}
.h6_c00058{height:72.562500px;}
.h0_c00058{height:1188.000000px;}
.w1_c00058{width:8.265000px;}
.w2_c00058{width:663.345000px;}
.w0_c00058{width:918.000000px;}
.x0_c00058{left:0.000000px;}
.x3_c00058{left:127.489500px;}
.x1_c00058{left:154.515000px;}
.x4_c00058{left:169.995000px;}
.x5_c00058{left:180.795000px;}
.x2_c00058{left:782.565000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls1_c00058{letter-spacing:0.000000pt;}
.ls2_c00058{letter-spacing:0.576000pt;}
.ls0_c00058{letter-spacing:0.746667pt;}
.ws2_c00058{word-spacing:-64.000000pt;}
.ws0_c00058{word-spacing:-16.576000pt;}
.ws1_c00058{word-spacing:-16.000000pt;}
.ws3_c00058{word-spacing:0.000000pt;}
._4_c00058{margin-left:-2.560000pt;}
._0_c00058{margin-left:-1.088000pt;}
._3_c00058{width:1.344000pt;}
._5_c00058{width:2.880000pt;}
._7_c00058{width:4.480000pt;}
._b_c00058{width:5.888000pt;}
._8_c00058{width:7.488000pt;}
._a_c00058{width:8.384000pt;}
._9_c00058{width:9.472000pt;}
._d_c00058{width:10.389312pt;}
._2_c00058{width:11.520000pt;}
._1_c00058{width:12.480000pt;}
._6_c00058{width:13.504000pt;}
._c_c00058{width:46.784000pt;}
.fs0_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y6_c00058{bottom:4.156000pt;}
.y3_c00058{bottom:4.160000pt;}
.y5_c00058{bottom:22.396000pt;}
.y4_c00058{bottom:29.156000pt;}
.y1_c00058{bottom:51.552000pt;}
.y21_c00058{bottom:108.192000pt;}
.y20_c00058{bottom:136.066667pt;}
.y1f_c00058{bottom:163.586667pt;}
.y1e_c00058{bottom:199.106667pt;}
.y1d_c00058{bottom:234.626667pt;}
.y1c_c00058{bottom:270.173333pt;}
.y1b_c00058{bottom:298.333333pt;}
.y1a_c00058{bottom:336.093333pt;}
.y19_c00058{bottom:372.933333pt;}
.y18_c00058{bottom:409.093333pt;}
.y17_c00058{bottom:445.893333pt;}
.y16_c00058{bottom:481.440000pt;}
.y15_c00058{bottom:509.600000pt;}
.y14_c00058{bottom:547.360000pt;}
.y13_c00058{bottom:583.866667pt;}
.y12_c00058{bottom:619.386667pt;}
.y11_c00058{bottom:654.906667pt;}
.y10_c00058{bottom:690.786667pt;}
.yf_c00058{bottom:718.306667pt;}
.ye_c00058{bottom:745.826667pt;}
.yd_c00058{bottom:773.346667pt;}
.yc_c00058{bottom:809.213333pt;}
.yb_c00058{bottom:836.733333pt;}
.ya_c00058{bottom:864.253333pt;}
.y9_c00058{bottom:891.773333pt;}
.y8_c00058{bottom:919.653333pt;}
.y7_c00058{bottom:947.173333pt;}
.y2_c00058{bottom:989.413333pt;}
.h2_c00058{height:18.586667pt;}
.h3_c00058{height:36.796000pt;}
.h1_c00058{height:57.375000pt;}
.h5_c00058{height:62.781250pt;}
.h4_c00058{height:62.812500pt;}
.h6_c00058{height:64.500000pt;}
.h0_c00058{height:1056.000000pt;}
.w1_c00058{width:7.346667pt;}
.w2_c00058{width:589.640000pt;}
.w0_c00058{width:816.000000pt;}
.x0_c00058{left:0.000000pt;}
.x3_c00058{left:113.324000pt;}
.x1_c00058{left:137.346667pt;}
.x4_c00058{left:151.106667pt;}
.x5_c00058{left:160.706667pt;}
.x2_c00058{left:695.613333pt;}
}





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

.ir_c00059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00059;src:url('chunks/assets/font_8119a80a4daa63e4120ebc1d.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_8be6a6a0d0ef147504a219b2.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_8c7e3ce3097f5ae4a7d34fdf.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;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_c00059;src:url('chunks/assets/font_fdee85da7840040980a9cefc.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00059;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00059;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff6_c00059{font-family:ff6_c00059;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls4_c00059{letter-spacing:0.000000px;}
.ls5_c00059{letter-spacing:0.504000px;}
.ls2_c00059{letter-spacing:0.506880px;}
.ls1_c00059{letter-spacing:0.720000px;}
.ls3_c00059{letter-spacing:3.600000px;}
.ls0_c00059{letter-spacing:26.640000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00059{word-spacing:-72.000000px;}
.ws1_c00059{word-spacing:-18.504000px;}
.ws0_c00059{word-spacing:-18.000000px;}
.ws3_c00059{word-spacing:-15.120000px;}
.ws4_c00059{word-spacing:0.000000px;}
._7_c00059{margin-left:-3.528000px;}
._4_c00059{margin-left:-2.304000px;}
._1_c00059{margin-left:-1.296000px;}
._0_c00059{width:1.368000px;}
._5_c00059{width:3.024000px;}
._6_c00059{width:4.248000px;}
._f_c00059{width:5.256576px;}
._e_c00059{width:6.263856px;}
._d_c00059{width:7.296048px;}
._9_c00059{width:8.699976px;}
._8_c00059{width:9.792000px;}
._b_c00059{width:11.232000px;}
._a_c00059{width:12.888000px;}
._c_c00059{width:14.256000px;}
._2_c00059{width:15.264000px;}
._3_c00059{width:16.632000px;}
._10_c00059{width:19.080000px;}
._11_c00059{width:20.664000px;}
._12_c00059{width:26.568000px;}
._13_c00059{width:27.648000px;}
._14_c00059{width:29.064000px;}
._15_c00059{width:30.240000px;}
.fc1_c00059{color:rgb(255,0,0);}
.fc0_c00059{color:rgb(0,0,0);}
.fs2_c00059{font-size:38.880000px;}
.fs1_c00059{font-size:47.520000px;}
.fs3_c00059{font-size:60.480000px;}
.fs0_c00059{font-size:72.000000px;}
.y0_c00059{bottom:0.000000px;}
.y6_c00059{bottom:4.675500px;}
.y3_c00059{bottom:4.680000px;}
.y5_c00059{bottom:25.195500px;}
.y4_c00059{bottom:32.800500px;}
.y1_c00059{bottom:57.996000px;}
.y2b_c00059{bottom:130.716000px;}
.y2a_c00059{bottom:147.996000px;}
.y29_c00059{bottom:164.955000px;}
.y28_c00059{bottom:182.235000px;}
.y27_c00059{bottom:189.075000px;}
.y26_c00059{bottom:199.515000px;}
.y25_c00059{bottom:216.795000px;}
.y24_c00059{bottom:223.635000px;}
.y23_c00059{bottom:234.795000px;}
.y22_c00059{bottom:280.185000px;}
.y21_c00059{bottom:311.145000px;}
.y20_c00059{bottom:342.105000px;}
.y1f_c00059{bottom:373.065000px;}
.y1e_c00059{bottom:404.430000px;}
.y1d_c00059{bottom:435.390000px;}
.y1b_c00059{bottom:466.350000px;}
.y1c_c00059{bottom:474.630000px;}
.y1a_c00059{bottom:497.310000px;}
.y19_c00059{bottom:528.660000px;}
.y18_c00059{bottom:559.620000px;}
.y17_c00059{bottom:590.580000px;}
.y16_c00059{bottom:621.540000px;}
.y15_c00059{bottom:652.890000px;}
.y14_c00059{bottom:683.850000px;}
.y13_c00059{bottom:723.810000px;}
.y12_c00059{bottom:754.770000px;}
.y11_c00059{bottom:786.135000px;}
.y10_c00059{bottom:817.095000px;}
.yf_c00059{bottom:848.055000px;}
.yd_c00059{bottom:879.015000px;}
.ye_c00059{bottom:887.325000px;}
.yc_c00059{bottom:910.365000px;}
.yb_c00059{bottom:941.325000px;}
.ya_c00059{bottom:972.285000px;}
.y9_c00059{bottom:1003.245000px;}
.y8_c00059{bottom:1034.610000px;}
.y7_c00059{bottom:1065.570000px;}
.y2_c00059{bottom:1113.090000px;}
.h2_c00059{height:20.910000px;}
.h8_c00059{height:38.158594px;}
.h3_c00059{height:41.395500px;}
.h6_c00059{height:46.638281px;}
.h9_c00059{height:59.357813px;}
.h1_c00059{height:64.546875px;}
.h7_c00059{height:70.628906px;}
.h4_c00059{height:70.664062px;}
.h5_c00059{height:1187.995500px;}
.h0_c00059{height:1188.000000px;}
.w1_c00059{width:8.265000px;}
.w2_c00059{width:663.345000px;}
.w3_c00059{width:917.997000px;}
.w0_c00059{width:918.000000px;}
.x0_c00059{left:0.000000px;}
.x3_c00059{left:127.489500px;}
.xa_c00059{left:137.556000px;}
.x1_c00059{left:154.515000px;}
.x6_c00059{left:180.795000px;}
.x4_c00059{left:279.102000px;}
.x5_c00059{left:291.345000px;}
.x9_c00059{left:343.590000px;}
.x7_c00059{left:778.242000px;}
.x2_c00059{left:782.565000px;}
.x8_c00059{left:790.485000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls4_c00059{letter-spacing:0.000000pt;}
.ls5_c00059{letter-spacing:0.448000pt;}
.ls2_c00059{letter-spacing:0.450560pt;}
.ls1_c00059{letter-spacing:0.640000pt;}
.ls3_c00059{letter-spacing:3.200000pt;}
.ls0_c00059{letter-spacing:23.680000pt;}
.ws2_c00059{word-spacing:-64.000000pt;}
.ws1_c00059{word-spacing:-16.448000pt;}
.ws0_c00059{word-spacing:-16.000000pt;}
.ws3_c00059{word-spacing:-13.440000pt;}
.ws4_c00059{word-spacing:0.000000pt;}
._7_c00059{margin-left:-3.136000pt;}
._4_c00059{margin-left:-2.048000pt;}
._1_c00059{margin-left:-1.152000pt;}
._0_c00059{width:1.216000pt;}
._5_c00059{width:2.688000pt;}
._6_c00059{width:3.776000pt;}
._f_c00059{width:4.672512pt;}
._e_c00059{width:5.567872pt;}
._d_c00059{width:6.485376pt;}
._9_c00059{width:7.733312pt;}
._8_c00059{width:8.704000pt;}
._b_c00059{width:9.984000pt;}
._a_c00059{width:11.456000pt;}
._c_c00059{width:12.672000pt;}
._2_c00059{width:13.568000pt;}
._3_c00059{width:14.784000pt;}
._10_c00059{width:16.960000pt;}
._11_c00059{width:18.368000pt;}
._12_c00059{width:23.616000pt;}
._13_c00059{width:24.576000pt;}
._14_c00059{width:25.834667pt;}
._15_c00059{width:26.880000pt;}
.fs2_c00059{font-size:34.560000pt;}
.fs1_c00059{font-size:42.240000pt;}
.fs3_c00059{font-size:53.760000pt;}
.fs0_c00059{font-size:64.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y6_c00059{bottom:4.156000pt;}
.y3_c00059{bottom:4.160000pt;}
.y5_c00059{bottom:22.396000pt;}
.y4_c00059{bottom:29.156000pt;}
.y1_c00059{bottom:51.552000pt;}
.y2b_c00059{bottom:116.192000pt;}
.y2a_c00059{bottom:131.552000pt;}
.y29_c00059{bottom:146.626667pt;}
.y28_c00059{bottom:161.986667pt;}
.y27_c00059{bottom:168.066667pt;}
.y26_c00059{bottom:177.346667pt;}
.y25_c00059{bottom:192.706667pt;}
.y24_c00059{bottom:198.786667pt;}
.y23_c00059{bottom:208.706667pt;}
.y22_c00059{bottom:249.053333pt;}
.y21_c00059{bottom:276.573333pt;}
.y20_c00059{bottom:304.093333pt;}
.y1f_c00059{bottom:331.613333pt;}
.y1e_c00059{bottom:359.493333pt;}
.y1d_c00059{bottom:387.013333pt;}
.y1b_c00059{bottom:414.533333pt;}
.y1c_c00059{bottom:421.893333pt;}
.y1a_c00059{bottom:442.053333pt;}
.y19_c00059{bottom:469.920000pt;}
.y18_c00059{bottom:497.440000pt;}
.y17_c00059{bottom:524.960000pt;}
.y16_c00059{bottom:552.480000pt;}
.y15_c00059{bottom:580.346667pt;}
.y14_c00059{bottom:607.866667pt;}
.y13_c00059{bottom:643.386667pt;}
.y12_c00059{bottom:670.906667pt;}
.y11_c00059{bottom:698.786667pt;}
.y10_c00059{bottom:726.306667pt;}
.yf_c00059{bottom:753.826667pt;}
.yd_c00059{bottom:781.346667pt;}
.ye_c00059{bottom:788.733333pt;}
.yc_c00059{bottom:809.213333pt;}
.yb_c00059{bottom:836.733333pt;}
.ya_c00059{bottom:864.253333pt;}
.y9_c00059{bottom:891.773333pt;}
.y8_c00059{bottom:919.653333pt;}
.y7_c00059{bottom:947.173333pt;}
.y2_c00059{bottom:989.413333pt;}
.h2_c00059{height:18.586667pt;}
.h8_c00059{height:33.918750pt;}
.h3_c00059{height:36.796000pt;}
.h6_c00059{height:41.456250pt;}
.h9_c00059{height:52.762500pt;}
.h1_c00059{height:57.375000pt;}
.h7_c00059{height:62.781250pt;}
.h4_c00059{height:62.812500pt;}
.h5_c00059{height:1055.996000pt;}
.h0_c00059{height:1056.000000pt;}
.w1_c00059{width:7.346667pt;}
.w2_c00059{width:589.640000pt;}
.w3_c00059{width:815.997333pt;}
.w0_c00059{width:816.000000pt;}
.x0_c00059{left:0.000000pt;}
.x3_c00059{left:113.324000pt;}
.xa_c00059{left:122.272000pt;}
.x1_c00059{left:137.346667pt;}
.x6_c00059{left:160.706667pt;}
.x4_c00059{left:248.090667pt;}
.x5_c00059{left:258.973333pt;}
.x9_c00059{left:305.413333pt;}
.x7_c00059{left:691.770667pt;}
.x2_c00059{left:695.613333pt;}
.x8_c00059{left:702.653333pt;}
}





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

.ir_c00060:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00060;src:url('chunks/assets/font_5d8de0ec0ae637cb7f4fb54f.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_06044682a656ac61e56309cc.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_0f4aa7dfc38998368f5be08d.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;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_c00060;src:url('chunks/assets/font_876e31dde4f35a77f8a0fc76.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00060;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00060;src:url('chunks/assets/font_4718bcac71981b2c8c4f5d62.woff2')format("woff");}.ff6_c00060{font-family:ff6_c00060;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls14_c00060{letter-spacing:-1.422000px;}
.lse_c00060{letter-spacing:-1.416000px;}
.ls11_c00060{letter-spacing:-0.532800px;}
.ls12_c00060{letter-spacing:-0.241800px;}
.lsc_c00060{letter-spacing:0.000000px;}
.ls0_c00060{letter-spacing:0.020400px;}
.lsf_c00060{letter-spacing:0.022800px;}
.ls13_c00060{letter-spacing:0.166800px;}
.lsd_c00060{letter-spacing:0.313800px;}
.ls2_c00060{letter-spacing:0.521400px;}
.ls10_c00060{letter-spacing:0.720000px;}
.ls7_c00060{letter-spacing:6.480000px;}
.ls6_c00060{letter-spacing:6.480153px;}
.ls5_c00060{letter-spacing:6.503039px;}
.ls8_c00060{letter-spacing:7.891490px;}
.ls1_c00060{letter-spacing:12.240000px;}
.ls3_c00060{letter-spacing:13.680000px;}
.ls4_c00060{letter-spacing:15.120000px;}
.ls9_c00060{letter-spacing:22.296960px;}
.lsb_c00060{letter-spacing:22.308482px;}
.lsa_c00060{letter-spacing:22.320000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00060{word-spacing:-18.000000px;}
.ws2_c00060{word-spacing:-15.641400px;}
.ws1_c00060{word-spacing:-15.433800px;}
.ws4_c00060{word-spacing:-15.286800px;}
.ws0_c00060{word-spacing:-15.120000px;}
.ws3_c00060{word-spacing:-14.878200px;}
.ws5_c00060{word-spacing:-13.698000px;}
.ws7_c00060{word-spacing:0.000000px;}
._1_c00060{margin-left:-2.736000px;}
._2_c00060{margin-left:-1.080000px;}
._0_c00060{width:1.224000px;}
._3_c00060{width:2.736000px;}
._4_c00060{width:4.104000px;}
._9_c00060{width:6.099598px;}
._a_c00060{width:7.145971px;}
._f_c00060{width:8.790110px;}
._6_c00060{width:10.607508px;}
._5_c00060{width:12.178320px;}
._7_c00060{width:13.417814px;}
._10_c00060{width:14.597040px;}
._8_c00060{width:16.309224px;}
._e_c00060{width:17.620688px;}
._11_c00060{width:19.937605px;}
._b_c00060{width:21.435572px;}
._d_c00060{width:22.522469px;}
._c_c00060{width:23.754056px;}
.fc0_c00060{color:rgb(0,0,0);}
.fs1_c00060{font-size:60.480000px;}
.fs0_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y6_c00060{bottom:4.675500px;}
.y3_c00060{bottom:4.680000px;}
.y5_c00060{bottom:25.195500px;}
.y4_c00060{bottom:32.800500px;}
.y1_c00060{bottom:57.996000px;}
.y26_c00060{bottom:110.916000px;}
.y25_c00060{bottom:141.876000px;}
.y24_c00060{bottom:172.875000px;}
.y23_c00060{bottom:203.835000px;}
.y22_c00060{bottom:235.155000px;}
.y21_c00060{bottom:266.115000px;}
.y20_c00060{bottom:297.105000px;}
.y1f_c00060{bottom:328.065000px;}
.y1e_c00060{bottom:359.385000px;}
.y1d_c00060{bottom:399.390000px;}
.y1c_c00060{bottom:430.350000px;}
.y1b_c00060{bottom:461.310000px;}
.y1a_c00060{bottom:492.630000px;}
.y19_c00060{bottom:523.620000px;}
.y18_c00060{bottom:554.580000px;}
.y17_c00060{bottom:585.540000px;}
.y16_c00060{bottom:616.860000px;}
.y15_c00060{bottom:654.690000px;}
.y14_c00060{bottom:689.250000px;}
.y13_c00060{bottom:715.170000px;}
.y12_c00060{bottom:741.090000px;}
.y11_c00060{bottom:767.055000px;}
.y10_c00060{bottom:792.975000px;}
.yf_c00060{bottom:827.895000px;}
.ye_c00060{bottom:853.815000px;}
.yd_c00060{bottom:879.375000px;}
.yc_c00060{bottom:905.325000px;}
.yb_c00060{bottom:931.245000px;}
.ya_c00060{bottom:966.165000px;}
.y9_c00060{bottom:1003.245000px;}
.y8_c00060{bottom:1034.610000px;}
.y7_c00060{bottom:1065.570000px;}
.y2_c00060{bottom:1113.090000px;}
.h2_c00060{height:20.910000px;}
.h3_c00060{height:41.395500px;}
.h7_c00060{height:59.328281px;}
.h5_c00060{height:59.357813px;}
.h6_c00060{height:60.952500px;}
.h1_c00060{height:64.546875px;}
.h4_c00060{height:70.664062px;}
.h0_c00060{height:1188.000000px;}
.w1_c00060{width:8.265000px;}
.w2_c00060{width:663.345000px;}
.w0_c00060{width:918.000000px;}
.x0_c00060{left:0.000000px;}
.x3_c00060{left:127.489500px;}
.x1_c00060{left:154.515000px;}
.x4_c00060{left:169.995000px;}
.x2_c00060{left:782.565000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls14_c00060{letter-spacing:-1.264000pt;}
.lse_c00060{letter-spacing:-1.258667pt;}
.ls11_c00060{letter-spacing:-0.473600pt;}
.ls12_c00060{letter-spacing:-0.214933pt;}
.lsc_c00060{letter-spacing:0.000000pt;}
.ls0_c00060{letter-spacing:0.018133pt;}
.lsf_c00060{letter-spacing:0.020267pt;}
.ls13_c00060{letter-spacing:0.148267pt;}
.lsd_c00060{letter-spacing:0.278933pt;}
.ls2_c00060{letter-spacing:0.463467pt;}
.ls10_c00060{letter-spacing:0.640000pt;}
.ls7_c00060{letter-spacing:5.760000pt;}
.ls6_c00060{letter-spacing:5.760136pt;}
.ls5_c00060{letter-spacing:5.780479pt;}
.ls8_c00060{letter-spacing:7.014658pt;}
.ls1_c00060{letter-spacing:10.880000pt;}
.ls3_c00060{letter-spacing:12.160000pt;}
.ls4_c00060{letter-spacing:13.440000pt;}
.ls9_c00060{letter-spacing:19.819520pt;}
.lsb_c00060{letter-spacing:19.829762pt;}
.lsa_c00060{letter-spacing:19.840000pt;}
.ws6_c00060{word-spacing:-16.000000pt;}
.ws2_c00060{word-spacing:-13.903467pt;}
.ws1_c00060{word-spacing:-13.718933pt;}
.ws4_c00060{word-spacing:-13.588267pt;}
.ws0_c00060{word-spacing:-13.440000pt;}
.ws3_c00060{word-spacing:-13.225067pt;}
.ws5_c00060{word-spacing:-12.176000pt;}
.ws7_c00060{word-spacing:0.000000pt;}
._1_c00060{margin-left:-2.432000pt;}
._2_c00060{margin-left:-0.960000pt;}
._0_c00060{width:1.088000pt;}
._3_c00060{width:2.432000pt;}
._4_c00060{width:3.648000pt;}
._9_c00060{width:5.421865pt;}
._a_c00060{width:6.351974pt;}
._f_c00060{width:7.813431pt;}
._6_c00060{width:9.428896pt;}
._5_c00060{width:10.825173pt;}
._7_c00060{width:11.926946pt;}
._10_c00060{width:12.975147pt;}
._8_c00060{width:14.497088pt;}
._e_c00060{width:15.662833pt;}
._11_c00060{width:17.722316pt;}
._b_c00060{width:19.053842pt;}
._d_c00060{width:20.019972pt;}
._c_c00060{width:21.114716pt;}
.fs1_c00060{font-size:53.760000pt;}
.fs0_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y6_c00060{bottom:4.156000pt;}
.y3_c00060{bottom:4.160000pt;}
.y5_c00060{bottom:22.396000pt;}
.y4_c00060{bottom:29.156000pt;}
.y1_c00060{bottom:51.552000pt;}
.y26_c00060{bottom:98.592000pt;}
.y25_c00060{bottom:126.112000pt;}
.y24_c00060{bottom:153.666667pt;}
.y23_c00060{bottom:181.186667pt;}
.y22_c00060{bottom:209.026667pt;}
.y21_c00060{bottom:236.546667pt;}
.y20_c00060{bottom:264.093333pt;}
.y1f_c00060{bottom:291.613333pt;}
.y1e_c00060{bottom:319.453333pt;}
.y1d_c00060{bottom:355.013333pt;}
.y1c_c00060{bottom:382.533333pt;}
.y1b_c00060{bottom:410.053333pt;}
.y1a_c00060{bottom:437.893333pt;}
.y19_c00060{bottom:465.440000pt;}
.y18_c00060{bottom:492.960000pt;}
.y17_c00060{bottom:520.480000pt;}
.y16_c00060{bottom:548.320000pt;}
.y15_c00060{bottom:581.946667pt;}
.y14_c00060{bottom:612.666667pt;}
.y13_c00060{bottom:635.706667pt;}
.y12_c00060{bottom:658.746667pt;}
.y11_c00060{bottom:681.826667pt;}
.y10_c00060{bottom:704.866667pt;}
.yf_c00060{bottom:735.906667pt;}
.ye_c00060{bottom:758.946667pt;}
.yd_c00060{bottom:781.666667pt;}
.yc_c00060{bottom:804.733333pt;}
.yb_c00060{bottom:827.773333pt;}
.ya_c00060{bottom:858.813333pt;}
.y9_c00060{bottom:891.773333pt;}
.y8_c00060{bottom:919.653333pt;}
.y7_c00060{bottom:947.173333pt;}
.y2_c00060{bottom:989.413333pt;}
.h2_c00060{height:18.586667pt;}
.h3_c00060{height:36.796000pt;}
.h7_c00060{height:52.736250pt;}
.h5_c00060{height:52.762500pt;}
.h6_c00060{height:54.180000pt;}
.h1_c00060{height:57.375000pt;}
.h4_c00060{height:62.812500pt;}
.h0_c00060{height:1056.000000pt;}
.w1_c00060{width:7.346667pt;}
.w2_c00060{width:589.640000pt;}
.w0_c00060{width:816.000000pt;}
.x0_c00060{left:0.000000pt;}
.x3_c00060{left:113.324000pt;}
.x1_c00060{left:137.346667pt;}
.x4_c00060{left:151.106667pt;}
.x2_c00060{left:695.613333pt;}
}





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

.ir_c00061:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00061;src:url('chunks/assets/font_b70710b437c69b276449f566.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_da474c34f3cb05287d89224e.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_e111d08ad8efbf1888438b12.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;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_c00061;src:url('chunks/assets/font_6c3b2b2392c910c2041c177a.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00061;src:url('chunks/assets/font_753ac6e4245bcc36b8d82d5e.woff2')format("woff");}.ff5_c00061{font-family:ff5_c00061;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls1_c00061{letter-spacing:0.000000px;}
.ls0_c00061{letter-spacing:0.504000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00061{word-spacing:-72.000000px;}
.ws0_c00061{word-spacing:-18.000000px;}
.ws2_c00061{word-spacing:-15.120000px;}
.ws3_c00061{word-spacing:0.000000px;}
._0_c00061{margin-left:-2.880000px;}
._2_c00061{margin-left:-1.296000px;}
._5_c00061{width:1.080000px;}
._1_c00061{width:2.088000px;}
._6_c00061{width:3.816000px;}
._4_c00061{width:5.688000px;}
._9_c00061{width:7.488000px;}
._10_c00061{width:8.568000px;}
._11_c00061{width:9.576000px;}
._f_c00061{width:10.872000px;}
._d_c00061{width:11.952000px;}
._e_c00061{width:13.104000px;}
._a_c00061{width:15.552000px;}
._8_c00061{width:16.992000px;}
._7_c00061{width:19.512000px;}
._b_c00061{width:21.024000px;}
._c_c00061{width:22.464000px;}
._3_c00061{width:168.636024px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs1_c00061{font-size:60.480000px;}
.fs0_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y6_c00061{bottom:4.675500px;}
.y3_c00061{bottom:4.680000px;}
.y5_c00061{bottom:25.195500px;}
.y4_c00061{bottom:32.800500px;}
.y1_c00061{bottom:57.996000px;}
.y24_c00061{bottom:131.796000px;}
.y23_c00061{bottom:168.915000px;}
.y22_c00061{bottom:199.875000px;}
.y21_c00061{bottom:230.835000px;}
.y20_c00061{bottom:262.155000px;}
.y1f_c00061{bottom:293.145000px;}
.y1e_c00061{bottom:324.105000px;}
.y1d_c00061{bottom:355.065000px;}
.y1c_c00061{bottom:386.385000px;}
.y1b_c00061{bottom:426.390000px;}
.y1a_c00061{bottom:457.350000px;}
.y19_c00061{bottom:488.310000px;}
.y18_c00061{bottom:519.660000px;}
.y17_c00061{bottom:550.620000px;}
.y16_c00061{bottom:581.580000px;}
.y15_c00061{bottom:612.540000px;}
.y14_c00061{bottom:643.890000px;}
.y13_c00061{bottom:674.850000px;}
.y12_c00061{bottom:714.810000px;}
.y11_c00061{bottom:745.770000px;}
.y10_c00061{bottom:777.135000px;}
.yf_c00061{bottom:808.095000px;}
.ye_c00061{bottom:839.055000px;}
.yd_c00061{bottom:870.015000px;}
.yc_c00061{bottom:901.365000px;}
.yb_c00061{bottom:932.325000px;}
.ya_c00061{bottom:963.285000px;}
.y9_c00061{bottom:994.245000px;}
.y8_c00061{bottom:1025.610000px;}
.y7_c00061{bottom:1065.570000px;}
.y2_c00061{bottom:1113.090000px;}
.h2_c00061{height:20.910000px;}
.h3_c00061{height:41.395500px;}
.h5_c00061{height:59.357813px;}
.h1_c00061{height:64.546875px;}
.h4_c00061{height:70.664062px;}
.h0_c00061{height:1188.000000px;}
.w1_c00061{width:8.265000px;}
.w2_c00061{width:663.345000px;}
.w0_c00061{width:918.000000px;}
.x0_c00061{left:0.000000px;}
.x3_c00061{left:127.489500px;}
.x1_c00061{left:154.515000px;}
.x5_c00061{left:169.995000px;}
.x4_c00061{left:180.795000px;}
.x2_c00061{left:782.565000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls1_c00061{letter-spacing:0.000000pt;}
.ls0_c00061{letter-spacing:0.448000pt;}
.ws1_c00061{word-spacing:-64.000000pt;}
.ws0_c00061{word-spacing:-16.000000pt;}
.ws2_c00061{word-spacing:-13.440000pt;}
.ws3_c00061{word-spacing:0.000000pt;}
._0_c00061{margin-left:-2.560000pt;}
._2_c00061{margin-left:-1.152000pt;}
._5_c00061{width:0.960000pt;}
._1_c00061{width:1.856000pt;}
._6_c00061{width:3.392000pt;}
._4_c00061{width:5.056000pt;}
._9_c00061{width:6.656000pt;}
._10_c00061{width:7.616000pt;}
._11_c00061{width:8.512000pt;}
._f_c00061{width:9.664000pt;}
._d_c00061{width:10.624000pt;}
._e_c00061{width:11.648000pt;}
._a_c00061{width:13.824000pt;}
._8_c00061{width:15.104000pt;}
._7_c00061{width:17.344000pt;}
._b_c00061{width:18.688000pt;}
._c_c00061{width:19.968000pt;}
._3_c00061{width:149.898688pt;}
.fs1_c00061{font-size:53.760000pt;}
.fs0_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y6_c00061{bottom:4.156000pt;}
.y3_c00061{bottom:4.160000pt;}
.y5_c00061{bottom:22.396000pt;}
.y4_c00061{bottom:29.156000pt;}
.y1_c00061{bottom:51.552000pt;}
.y24_c00061{bottom:117.152000pt;}
.y23_c00061{bottom:150.146667pt;}
.y22_c00061{bottom:177.666667pt;}
.y21_c00061{bottom:205.186667pt;}
.y20_c00061{bottom:233.026667pt;}
.y1f_c00061{bottom:260.573333pt;}
.y1e_c00061{bottom:288.093333pt;}
.y1d_c00061{bottom:315.613333pt;}
.y1c_c00061{bottom:343.453333pt;}
.y1b_c00061{bottom:379.013333pt;}
.y1a_c00061{bottom:406.533333pt;}
.y19_c00061{bottom:434.053333pt;}
.y18_c00061{bottom:461.920000pt;}
.y17_c00061{bottom:489.440000pt;}
.y16_c00061{bottom:516.960000pt;}
.y15_c00061{bottom:544.480000pt;}
.y14_c00061{bottom:572.346667pt;}
.y13_c00061{bottom:599.866667pt;}
.y12_c00061{bottom:635.386667pt;}
.y11_c00061{bottom:662.906667pt;}
.y10_c00061{bottom:690.786667pt;}
.yf_c00061{bottom:718.306667pt;}
.ye_c00061{bottom:745.826667pt;}
.yd_c00061{bottom:773.346667pt;}
.yc_c00061{bottom:801.213333pt;}
.yb_c00061{bottom:828.733333pt;}
.ya_c00061{bottom:856.253333pt;}
.y9_c00061{bottom:883.773333pt;}
.y8_c00061{bottom:911.653333pt;}
.y7_c00061{bottom:947.173333pt;}
.y2_c00061{bottom:989.413333pt;}
.h2_c00061{height:18.586667pt;}
.h3_c00061{height:36.796000pt;}
.h5_c00061{height:52.762500pt;}
.h1_c00061{height:57.375000pt;}
.h4_c00061{height:62.812500pt;}
.h0_c00061{height:1056.000000pt;}
.w1_c00061{width:7.346667pt;}
.w2_c00061{width:589.640000pt;}
.w0_c00061{width:816.000000pt;}
.x0_c00061{left:0.000000pt;}
.x3_c00061{left:113.324000pt;}
.x1_c00061{left:137.346667pt;}
.x5_c00061{left:151.106667pt;}
.x4_c00061{left:160.706667pt;}
.x2_c00061{left:695.613333pt;}
}





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

.ir_c00062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00062;src:url('chunks/assets/font_5d95430668fc8f854c24c60d.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_45bed8333990e574b9ceb636.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_81986234114d4643b75b0024.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_1ea658f951ed138674b2a19d.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00062;src:url('chunks/assets/font_769a1dff402192cc87076794.woff2')format("woff");}.ff5_c00062{font-family:ff5_c00062;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_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.lsc_c00062{letter-spacing:-1.416000px;}
.lse_c00062{letter-spacing:-1.380000px;}
.ls11_c00062{letter-spacing:-0.532800px;}
.lsf_c00062{letter-spacing:-0.241800px;}
.ls9_c00062{letter-spacing:0.000000px;}
.ls10_c00062{letter-spacing:0.022800px;}
.lsa_c00062{letter-spacing:0.166800px;}
.ls1_c00062{letter-spacing:0.302400px;}
.ls3_c00062{letter-spacing:0.518400px;}
.lsb_c00062{letter-spacing:0.529800px;}
.lsd_c00062{letter-spacing:0.702000px;}
.ls6_c00062{letter-spacing:0.708480px;}
.ls2_c00062{letter-spacing:0.720000px;}
.ls0_c00062{letter-spacing:0.840000px;}
.ls8_c00062{letter-spacing:2.160000px;}
.ls4_c00062{letter-spacing:15.120000px;}
.ls5_c00062{letter-spacing:16.560000px;}
.ls7_c00062{letter-spacing:26.640000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00062{word-spacing:-18.000000px;}
.ws2_c00062{word-spacing:-15.822000px;}
.ws1_c00062{word-spacing:-15.286800px;}
.ws4_c00062{word-spacing:-15.142800px;}
.ws0_c00062{word-spacing:-15.120000px;}
.ws3_c00062{word-spacing:-14.878200px;}
.ws5_c00062{word-spacing:-14.587200px;}
.ws7_c00062{word-spacing:0.000000px;}
._8_c00062{margin-left:-2.750412px;}
._0_c00062{margin-left:-1.664410px;}
._1_c00062{width:1.482607px;}
._7_c00062{width:2.814618px;}
._6_c00062{width:3.931805px;}
._4_c00062{width:4.959602px;}
._5_c00062{width:6.925807px;}
._f_c00062{width:10.220008px;}
._c_c00062{width:11.323786px;}
._b_c00062{width:12.753608px;}
._d_c00062{width:14.507395px;}
._2_c00062{width:16.284554px;}
._3_c00062{width:17.377005px;}
._a_c00062{width:25.416000px;}
._9_c00062{width:26.614212px;}
._e_c00062{width:32.359833px;}
.fc0_c00062{color:rgb(0,0,0);}
.fs3_c00062{font-size:38.880000px;}
.fs2_c00062{font-size:47.520000px;}
.fs1_c00062{font-size:60.480000px;}
.fs0_c00062{font-size:72.000000px;}
.y0_c00062{bottom:0.000000px;}
.y6_c00062{bottom:4.675500px;}
.y3_c00062{bottom:4.680000px;}
.y5_c00062{bottom:25.195500px;}
.y4_c00062{bottom:32.800500px;}
.y1_c00062{bottom:57.996000px;}
.y2c_c00062{bottom:130.716000px;}
.y2b_c00062{bottom:147.996000px;}
.y2a_c00062{bottom:164.955000px;}
.y29_c00062{bottom:182.235000px;}
.y28_c00062{bottom:199.515000px;}
.y27_c00062{bottom:206.355000px;}
.y26_c00062{bottom:216.795000px;}
.y25_c00062{bottom:234.075000px;}
.y24_c00062{bottom:240.915000px;}
.y23_c00062{bottom:252.075000px;}
.y22_c00062{bottom:281.625000px;}
.y20_c00062{bottom:312.585000px;}
.y21_c00062{bottom:320.865000px;}
.y1f_c00062{bottom:343.905000px;}
.y1e_c00062{bottom:374.865000px;}
.y1d_c00062{bottom:405.870000px;}
.y1c_c00062{bottom:436.830000px;}
.y1b_c00062{bottom:477.150000px;}
.y1a_c00062{bottom:508.110000px;}
.y19_c00062{bottom:548.100000px;}
.y18_c00062{bottom:588.060000px;}
.y17_c00062{bottom:619.380000px;}
.y16_c00062{bottom:659.370000px;}
.y15_c00062{bottom:690.330000px;}
.y13_c00062{bottom:721.290000px;}
.y14_c00062{bottom:729.570000px;}
.y12_c00062{bottom:752.250000px;}
.y11_c00062{bottom:783.615000px;}
.y10_c00062{bottom:814.575000px;}
.yf_c00062{bottom:852.375000px;}
.ye_c00062{bottom:878.295000px;}
.yd_c00062{bottom:904.245000px;}
.yc_c00062{bottom:929.805000px;}
.yb_c00062{bottom:955.725000px;}
.ya_c00062{bottom:990.645000px;}
.y9_c00062{bottom:1016.610000px;}
.y8_c00062{bottom:1042.530000px;}
.y7_c00062{bottom:1068.450000px;}
.y2_c00062{bottom:1113.090000px;}
.h2_c00062{height:20.910000px;}
.hc_c00062{height:38.158594px;}
.h3_c00062{height:41.395500px;}
.ha_c00062{height:46.638281px;}
.h5_c00062{height:54.219375px;}
.h6_c00062{height:54.514688px;}
.h7_c00062{height:59.328281px;}
.h4_c00062{height:59.357813px;}
.h1_c00062{height:64.546875px;}
.hb_c00062{height:70.628906px;}
.h8_c00062{height:70.664062px;}
.h9_c00062{height:1187.995500px;}
.h0_c00062{height:1188.000000px;}
.w1_c00062{width:8.265000px;}
.w2_c00062{width:663.345000px;}
.w3_c00062{width:917.997000px;}
.w0_c00062{width:918.000000px;}
.x0_c00062{left:0.000000px;}
.x3_c00062{left:127.489500px;}
.xb_c00062{left:137.556000px;}
.x1_c00062{left:154.515000px;}
.x4_c00062{left:169.995000px;}
.x7_c00062{left:180.795000px;}
.xa_c00062{left:343.590000px;}
.x5_c00062{left:430.707000px;}
.x6_c00062{left:442.980000px;}
.x8_c00062{left:654.372000px;}
.x9_c00062{left:666.615000px;}
.x2_c00062{left:782.565000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.lsc_c00062{letter-spacing:-1.258667pt;}
.lse_c00062{letter-spacing:-1.226667pt;}
.ls11_c00062{letter-spacing:-0.473600pt;}
.lsf_c00062{letter-spacing:-0.214933pt;}
.ls9_c00062{letter-spacing:0.000000pt;}
.ls10_c00062{letter-spacing:0.020267pt;}
.lsa_c00062{letter-spacing:0.148267pt;}
.ls1_c00062{letter-spacing:0.268800pt;}
.ls3_c00062{letter-spacing:0.460800pt;}
.lsb_c00062{letter-spacing:0.470933pt;}
.lsd_c00062{letter-spacing:0.624000pt;}
.ls6_c00062{letter-spacing:0.629760pt;}
.ls2_c00062{letter-spacing:0.640000pt;}
.ls0_c00062{letter-spacing:0.746667pt;}
.ls8_c00062{letter-spacing:1.920000pt;}
.ls4_c00062{letter-spacing:13.440000pt;}
.ls5_c00062{letter-spacing:14.720000pt;}
.ls7_c00062{letter-spacing:23.680000pt;}
.ws6_c00062{word-spacing:-16.000000pt;}
.ws2_c00062{word-spacing:-14.064000pt;}
.ws1_c00062{word-spacing:-13.588267pt;}
.ws4_c00062{word-spacing:-13.460267pt;}
.ws0_c00062{word-spacing:-13.440000pt;}
.ws3_c00062{word-spacing:-13.225067pt;}
.ws5_c00062{word-spacing:-12.966400pt;}
.ws7_c00062{word-spacing:0.000000pt;}
._8_c00062{margin-left:-2.444810pt;}
._0_c00062{margin-left:-1.479475pt;}
._1_c00062{width:1.317873pt;}
._7_c00062{width:2.501883pt;}
._6_c00062{width:3.494938pt;}
._4_c00062{width:4.408535pt;}
._5_c00062{width:6.156273pt;}
._f_c00062{width:9.084452pt;}
._c_c00062{width:10.065587pt;}
._b_c00062{width:11.336540pt;}
._d_c00062{width:12.895462pt;}
._2_c00062{width:14.475159pt;}
._3_c00062{width:15.446227pt;}
._a_c00062{width:22.592000pt;}
._9_c00062{width:23.657078pt;}
._e_c00062{width:28.764296pt;}
.fs3_c00062{font-size:34.560000pt;}
.fs2_c00062{font-size:42.240000pt;}
.fs1_c00062{font-size:53.760000pt;}
.fs0_c00062{font-size:64.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y6_c00062{bottom:4.156000pt;}
.y3_c00062{bottom:4.160000pt;}
.y5_c00062{bottom:22.396000pt;}
.y4_c00062{bottom:29.156000pt;}
.y1_c00062{bottom:51.552000pt;}
.y2c_c00062{bottom:116.192000pt;}
.y2b_c00062{bottom:131.552000pt;}
.y2a_c00062{bottom:146.626667pt;}
.y29_c00062{bottom:161.986667pt;}
.y28_c00062{bottom:177.346667pt;}
.y27_c00062{bottom:183.426667pt;}
.y26_c00062{bottom:192.706667pt;}
.y25_c00062{bottom:208.066667pt;}
.y24_c00062{bottom:214.146667pt;}
.y23_c00062{bottom:224.066667pt;}
.y22_c00062{bottom:250.333333pt;}
.y20_c00062{bottom:277.853333pt;}
.y21_c00062{bottom:285.213333pt;}
.y1f_c00062{bottom:305.693333pt;}
.y1e_c00062{bottom:333.213333pt;}
.y1d_c00062{bottom:360.773333pt;}
.y1c_c00062{bottom:388.293333pt;}
.y1b_c00062{bottom:424.133333pt;}
.y1a_c00062{bottom:451.653333pt;}
.y19_c00062{bottom:487.200000pt;}
.y18_c00062{bottom:522.720000pt;}
.y17_c00062{bottom:550.560000pt;}
.y16_c00062{bottom:586.106667pt;}
.y15_c00062{bottom:613.626667pt;}
.y13_c00062{bottom:641.146667pt;}
.y14_c00062{bottom:648.506667pt;}
.y12_c00062{bottom:668.666667pt;}
.y11_c00062{bottom:696.546667pt;}
.y10_c00062{bottom:724.066667pt;}
.yf_c00062{bottom:757.666667pt;}
.ye_c00062{bottom:780.706667pt;}
.yd_c00062{bottom:803.773333pt;}
.yc_c00062{bottom:826.493333pt;}
.yb_c00062{bottom:849.533333pt;}
.ya_c00062{bottom:880.573333pt;}
.y9_c00062{bottom:903.653333pt;}
.y8_c00062{bottom:926.693333pt;}
.y7_c00062{bottom:949.733333pt;}
.y2_c00062{bottom:989.413333pt;}
.h2_c00062{height:18.586667pt;}
.hc_c00062{height:33.918750pt;}
.h3_c00062{height:36.796000pt;}
.ha_c00062{height:41.456250pt;}
.h5_c00062{height:48.195000pt;}
.h6_c00062{height:48.457500pt;}
.h7_c00062{height:52.736250pt;}
.h4_c00062{height:52.762500pt;}
.h1_c00062{height:57.375000pt;}
.hb_c00062{height:62.781250pt;}
.h8_c00062{height:62.812500pt;}
.h9_c00062{height:1055.996000pt;}
.h0_c00062{height:1056.000000pt;}
.w1_c00062{width:7.346667pt;}
.w2_c00062{width:589.640000pt;}
.w3_c00062{width:815.997333pt;}
.w0_c00062{width:816.000000pt;}
.x0_c00062{left:0.000000pt;}
.x3_c00062{left:113.324000pt;}
.xb_c00062{left:122.272000pt;}
.x1_c00062{left:137.346667pt;}
.x4_c00062{left:151.106667pt;}
.x7_c00062{left:160.706667pt;}
.xa_c00062{left:305.413333pt;}
.x5_c00062{left:382.850667pt;}
.x6_c00062{left:393.760000pt;}
.x8_c00062{left:581.664000pt;}
.x9_c00062{left:592.546667pt;}
.x2_c00062{left:695.613333pt;}
}





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

.ir_c00063:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00063;src:url('chunks/assets/font_dff8e9f9609c4bff93c6665b.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_af1f3437d1163fca5ec5c9f4.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_d250a5aa747b5f41687bcebd.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;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_c00063;src:url('chunks/assets/font_f713a1ac17d03a26d56ba380.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00063;src:url('chunks/assets/font_b204df4641d3c004dfafcb36.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls9_c00063{letter-spacing:-1.752000px;}
.ls19_c00063{letter-spacing:-1.692000px;}
.lsd_c00063{letter-spacing:-1.656000px;}
.ls16_c00063{letter-spacing:-1.512000px;}
.ls13_c00063{letter-spacing:-1.386000px;}
.ls11_c00063{letter-spacing:-0.942000px;}
.ls18_c00063{letter-spacing:-0.696000px;}
.lsf_c00063{letter-spacing:-0.618000px;}
.lsa_c00063{letter-spacing:-0.498000px;}
.ls12_c00063{letter-spacing:-0.397200px;}
.ls17_c00063{letter-spacing:-0.291000px;}
.ls15_c00063{letter-spacing:-0.273600px;}
.lsc_c00063{letter-spacing:-0.253200px;}
.lse_c00063{letter-spacing:-0.219000px;}
.lsb_c00063{letter-spacing:-0.069000px;}
.ls8_c00063{letter-spacing:0.000000px;}
.ls2_c00063{letter-spacing:0.126720px;}
.ls10_c00063{letter-spacing:0.184200px;}
.ls3_c00063{letter-spacing:0.495840px;}
.ls14_c00063{letter-spacing:0.630000px;}
.ls0_c00063{letter-spacing:0.720000px;}
.ls4_c00063{letter-spacing:621.600000px;}
.ls1_c00063{letter-spacing:695.040000px;}
.ls6_c00063{letter-spacing:719.520000px;}
.ls5_c00063{letter-spacing:745.440000px;}
.ls7_c00063{letter-spacing:767.040000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:-18.000000px;}
.ws8_c00063{word-spacing:-14.310000px;}
.ws3_c00063{word-spacing:-13.680000px;}
.ws5_c00063{word-spacing:-13.461000px;}
.ws9_c00063{word-spacing:-13.406400px;}
.wsb_c00063{word-spacing:-13.389000px;}
.ws7_c00063{word-spacing:-13.282800px;}
.ws2_c00063{word-spacing:-13.182000px;}
.wsc_c00063{word-spacing:-12.984000px;}
.ws6_c00063{word-spacing:-12.738000px;}
.ws4_c00063{word-spacing:-12.600000px;}
.wsa_c00063{word-spacing:-12.168000px;}
.wsd_c00063{word-spacing:-11.988000px;}
.ws1_c00063{word-spacing:-11.928000px;}
.wse_c00063{word-spacing:0.000000px;}
._2_c00063{margin-left:-2.736000px;}
._0_c00063{margin-left:-1.728000px;}
._3_c00063{width:1.008000px;}
._1_c00063{width:2.088000px;}
._4_c00063{width:3.828000px;}
.fc0_c00063{color:rgb(0,0,0);}
.fs2_c00063{font-size:47.520000px;}
.fs1_c00063{font-size:54.720000px;}
.fs0_c00063{font-size:72.000000px;}
.y0_c00063{bottom:0.000000px;}
.y6_c00063{bottom:4.675500px;}
.y3_c00063{bottom:4.680000px;}
.y5_c00063{bottom:25.195500px;}
.y4_c00063{bottom:32.800500px;}
.y1_c00063{bottom:57.996000px;}
.y24_c00063{bottom:125.316000px;}
.y23_c00063{bottom:157.755000px;}
.y22_c00063{bottom:190.155000px;}
.y21_c00063{bottom:222.195000px;}
.y20_c00063{bottom:254.595000px;}
.y1f_c00063{bottom:287.025000px;}
.y1e_c00063{bottom:319.425000px;}
.y1d_c00063{bottom:351.465000px;}
.y1c_c00063{bottom:383.865000px;}
.y1b_c00063{bottom:416.310000px;}
.y1a_c00063{bottom:448.350000px;}
.y19_c00063{bottom:480.750000px;}
.y18_c00063{bottom:513.150000px;}
.y17_c00063{bottom:545.220000px;}
.y16_c00063{bottom:577.620000px;}
.y15_c00063{bottom:610.020000px;}
.y14_c00063{bottom:642.090000px;}
.y13_c00063{bottom:674.490000px;}
.y12_c00063{bottom:706.890000px;}
.y11_c00063{bottom:738.930000px;}
.y10_c00063{bottom:771.375000px;}
.yf_c00063{bottom:803.775000px;}
.ye_c00063{bottom:835.815000px;}
.yd_c00063{bottom:868.215000px;}
.yc_c00063{bottom:900.645000px;}
.yb_c00063{bottom:933.045000px;}
.ya_c00063{bottom:965.085000px;}
.y9_c00063{bottom:997.485000px;}
.y8_c00063{bottom:1029.930000px;}
.y7_c00063{bottom:1065.570000px;}
.y2_c00063{bottom:1113.090000px;}
.h2_c00063{height:20.910000px;}
.h3_c00063{height:41.395500px;}
.h5_c00063{height:53.704687px;}
.h1_c00063{height:64.546875px;}
.h4_c00063{height:70.664062px;}
.h0_c00063{height:1188.000000px;}
.w1_c00063{width:8.265000px;}
.w2_c00063{width:663.345000px;}
.w0_c00063{width:918.000000px;}
.x0_c00063{left:0.000000px;}
.x3_c00063{left:127.489500px;}
.x1_c00063{left:154.515000px;}
.x4_c00063{left:169.995000px;}
.x2_c00063{left:782.565000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls9_c00063{letter-spacing:-1.557333pt;}
.ls19_c00063{letter-spacing:-1.504000pt;}
.lsd_c00063{letter-spacing:-1.472000pt;}
.ls16_c00063{letter-spacing:-1.344000pt;}
.ls13_c00063{letter-spacing:-1.232000pt;}
.ls11_c00063{letter-spacing:-0.837333pt;}
.ls18_c00063{letter-spacing:-0.618667pt;}
.lsf_c00063{letter-spacing:-0.549333pt;}
.lsa_c00063{letter-spacing:-0.442667pt;}
.ls12_c00063{letter-spacing:-0.353067pt;}
.ls17_c00063{letter-spacing:-0.258667pt;}
.ls15_c00063{letter-spacing:-0.243200pt;}
.lsc_c00063{letter-spacing:-0.225067pt;}
.lse_c00063{letter-spacing:-0.194667pt;}
.lsb_c00063{letter-spacing:-0.061333pt;}
.ls8_c00063{letter-spacing:0.000000pt;}
.ls2_c00063{letter-spacing:0.112640pt;}
.ls10_c00063{letter-spacing:0.163733pt;}
.ls3_c00063{letter-spacing:0.440747pt;}
.ls14_c00063{letter-spacing:0.560000pt;}
.ls0_c00063{letter-spacing:0.640000pt;}
.ls4_c00063{letter-spacing:552.533333pt;}
.ls1_c00063{letter-spacing:617.813333pt;}
.ls6_c00063{letter-spacing:639.573333pt;}
.ls5_c00063{letter-spacing:662.613333pt;}
.ls7_c00063{letter-spacing:681.813333pt;}
.ws0_c00063{word-spacing:-16.000000pt;}
.ws8_c00063{word-spacing:-12.720000pt;}
.ws3_c00063{word-spacing:-12.160000pt;}
.ws5_c00063{word-spacing:-11.965333pt;}
.ws9_c00063{word-spacing:-11.916800pt;}
.wsb_c00063{word-spacing:-11.901333pt;}
.ws7_c00063{word-spacing:-11.806933pt;}
.ws2_c00063{word-spacing:-11.717333pt;}
.wsc_c00063{word-spacing:-11.541333pt;}
.ws6_c00063{word-spacing:-11.322667pt;}
.ws4_c00063{word-spacing:-11.200000pt;}
.wsa_c00063{word-spacing:-10.816000pt;}
.wsd_c00063{word-spacing:-10.656000pt;}
.ws1_c00063{word-spacing:-10.602667pt;}
.wse_c00063{word-spacing:0.000000pt;}
._2_c00063{margin-left:-2.432000pt;}
._0_c00063{margin-left:-1.536000pt;}
._3_c00063{width:0.896000pt;}
._1_c00063{width:1.856000pt;}
._4_c00063{width:3.402667pt;}
.fs2_c00063{font-size:42.240000pt;}
.fs1_c00063{font-size:48.640000pt;}
.fs0_c00063{font-size:64.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y6_c00063{bottom:4.156000pt;}
.y3_c00063{bottom:4.160000pt;}
.y5_c00063{bottom:22.396000pt;}
.y4_c00063{bottom:29.156000pt;}
.y1_c00063{bottom:51.552000pt;}
.y24_c00063{bottom:111.392000pt;}
.y23_c00063{bottom:140.226667pt;}
.y22_c00063{bottom:169.026667pt;}
.y21_c00063{bottom:197.506667pt;}
.y20_c00063{bottom:226.306667pt;}
.y1f_c00063{bottom:255.133333pt;}
.y1e_c00063{bottom:283.933333pt;}
.y1d_c00063{bottom:312.413333pt;}
.y1c_c00063{bottom:341.213333pt;}
.y1b_c00063{bottom:370.053333pt;}
.y1a_c00063{bottom:398.533333pt;}
.y19_c00063{bottom:427.333333pt;}
.y18_c00063{bottom:456.133333pt;}
.y17_c00063{bottom:484.640000pt;}
.y16_c00063{bottom:513.440000pt;}
.y15_c00063{bottom:542.240000pt;}
.y14_c00063{bottom:570.746667pt;}
.y13_c00063{bottom:599.546667pt;}
.y12_c00063{bottom:628.346667pt;}
.y11_c00063{bottom:656.826667pt;}
.y10_c00063{bottom:685.666667pt;}
.yf_c00063{bottom:714.466667pt;}
.ye_c00063{bottom:742.946667pt;}
.yd_c00063{bottom:771.746667pt;}
.yc_c00063{bottom:800.573333pt;}
.yb_c00063{bottom:829.373333pt;}
.ya_c00063{bottom:857.853333pt;}
.y9_c00063{bottom:886.653333pt;}
.y8_c00063{bottom:915.493333pt;}
.y7_c00063{bottom:947.173333pt;}
.y2_c00063{bottom:989.413333pt;}
.h2_c00063{height:18.586667pt;}
.h3_c00063{height:36.796000pt;}
.h5_c00063{height:47.737500pt;}
.h1_c00063{height:57.375000pt;}
.h4_c00063{height:62.812500pt;}
.h0_c00063{height:1056.000000pt;}
.w1_c00063{width:7.346667pt;}
.w2_c00063{width:589.640000pt;}
.w0_c00063{width:816.000000pt;}
.x0_c00063{left:0.000000pt;}
.x3_c00063{left:113.324000pt;}
.x1_c00063{left:137.346667pt;}
.x4_c00063{left:151.106667pt;}
.x2_c00063{left:695.613333pt;}
}





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

.ir_c00064:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00064;src:url('chunks/assets/font_3eee2e02f0569a2013fe6f14.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_6b12d094a5ecc01446d4ccda.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_ff54d9e9862cd71f29a70260.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_0c921c49c14d42d8c4c20dd1.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;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_c00064;src:url('chunks/assets/font_c73b4a6d86271f8d0dd0c412.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;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_c00064;src:url('chunks/assets/font_5eb9e8a9611e4967c9e638b8.woff2')format("woff");}.ff6_c00064{font-family:ff6_c00064;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls5_c00064{letter-spacing:-1.296000px;}
.ls4_c00064{letter-spacing:-0.498000px;}
.ls3_c00064{letter-spacing:-0.313800px;}
.ls6_c00064{letter-spacing:-0.288000px;}
.ls2_c00064{letter-spacing:0.000000px;}
.ls0_c00064{letter-spacing:3.600000px;}
.ls1_c00064{letter-spacing:9.360000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00064{word-spacing:-18.000000px;}
.ws2_c00064{word-spacing:-13.680000px;}
.ws0_c00064{word-spacing:-13.366200px;}
.ws1_c00064{word-spacing:-13.182000px;}
.ws4_c00064{word-spacing:0.000000px;}
._f_c00064{margin-left:-3.200599px;}
._3_c00064{margin-left:-2.174291px;}
._0_c00064{margin-left:-1.163520px;}
._1_c00064{width:1.033680px;}
._2_c00064{width:2.160017px;}
._4_c00064{width:3.700913px;}
._5_c00064{width:4.924800px;}
._6_c00064{width:5.935625px;}
._a_c00064{width:6.989924px;}
._8_c00064{width:8.926678px;}
._9_c00064{width:9.951486px;}
._7_c00064{width:11.004775px;}
._11_c00064{width:12.418931px;}
._12_c00064{width:14.054291px;}
._10_c00064{width:19.958291px;}
._13_c00064{width:21.293239px;}
._b_c00064{width:23.702291px;}
._c_c00064{width:24.890143px;}
._d_c00064{width:25.980872px;}
._e_c00064{width:27.229768px;}
._14_c00064{width:28.524025px;}
.fc0_c00064{color:rgb(0,0,0);}
.fs1_c00064{font-size:54.720000px;}
.fs0_c00064{font-size:72.000000px;}
.y0_c00064{bottom:0.000000px;}
.y6_c00064{bottom:4.675500px;}
.y3_c00064{bottom:4.680000px;}
.y5_c00064{bottom:25.195500px;}
.y4_c00064{bottom:32.800500px;}
.y1_c00064{bottom:57.996000px;}
.y29_c00064{bottom:114.516000px;}
.y28_c00064{bottom:154.515000px;}
.y27_c00064{bottom:185.835000px;}
.y26_c00064{bottom:216.795000px;}
.y25_c00064{bottom:247.755000px;}
.y24_c00064{bottom:278.745000px;}
.y23_c00064{bottom:310.065000px;}
.y22_c00064{bottom:341.025000px;}
.y21_c00064{bottom:371.985000px;}
.y20_c00064{bottom:402.990000px;}
.y1f_c00064{bottom:433.950000px;}
.y1e_c00064{bottom:465.270000px;}
.y1d_c00064{bottom:496.230000px;}
.y1c_c00064{bottom:527.220000px;}
.y1b_c00064{bottom:558.180000px;}
.y1a_c00064{bottom:589.500000px;}
.y19_c00064{bottom:620.460000px;}
.y18_c00064{bottom:651.450000px;}
.y17_c00064{bottom:688.170000px;}
.y16_c00064{bottom:711.570000px;}
.y15_c00064{bottom:734.610000px;}
.y14_c00064{bottom:758.010000px;}
.y13_c00064{bottom:781.455000px;}
.y12_c00064{bottom:804.495000px;}
.y11_c00064{bottom:827.895000px;}
.y10_c00064{bottom:851.295000px;}
.yf_c00064{bottom:874.335000px;}
.ye_c00064{bottom:897.765000px;}
.yd_c00064{bottom:921.165000px;}
.yc_c00064{bottom:944.205000px;}
.yb_c00064{bottom:967.605000px;}
.ya_c00064{bottom:991.005000px;}
.y9_c00064{bottom:1014.090000px;}
.y8_c00064{bottom:1037.490000px;}
.y7_c00064{bottom:1069.890000px;}
.y2_c00064{bottom:1113.090000px;}
.h2_c00064{height:20.910000px;}
.h3_c00064{height:41.395500px;}
.h6_c00064{height:49.322812px;}
.h5_c00064{height:53.677969px;}
.h4_c00064{height:53.704687px;}
.h1_c00064{height:64.546875px;}
.h7_c00064{height:70.664062px;}
.h0_c00064{height:1188.000000px;}
.w1_c00064{width:8.265000px;}
.w2_c00064{width:663.345000px;}
.w0_c00064{width:918.000000px;}
.x0_c00064{left:0.000000px;}
.x3_c00064{left:127.489500px;}
.x1_c00064{left:154.515000px;}
.x4_c00064{left:169.995000px;}
.x2_c00064{left:782.565000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls5_c00064{letter-spacing:-1.152000pt;}
.ls4_c00064{letter-spacing:-0.442667pt;}
.ls3_c00064{letter-spacing:-0.278933pt;}
.ls6_c00064{letter-spacing:-0.256000pt;}
.ls2_c00064{letter-spacing:0.000000pt;}
.ls0_c00064{letter-spacing:3.200000pt;}
.ls1_c00064{letter-spacing:8.320000pt;}
.ws3_c00064{word-spacing:-16.000000pt;}
.ws2_c00064{word-spacing:-12.160000pt;}
.ws0_c00064{word-spacing:-11.881067pt;}
.ws1_c00064{word-spacing:-11.717333pt;}
.ws4_c00064{word-spacing:0.000000pt;}
._f_c00064{margin-left:-2.844977pt;}
._3_c00064{margin-left:-1.932703pt;}
._0_c00064{margin-left:-1.034240pt;}
._1_c00064{width:0.918827pt;}
._2_c00064{width:1.920015pt;}
._4_c00064{width:3.289701pt;}
._5_c00064{width:4.377600pt;}
._6_c00064{width:5.276111pt;}
._a_c00064{width:6.213266pt;}
._8_c00064{width:7.934825pt;}
._9_c00064{width:8.845765pt;}
._7_c00064{width:9.782022pt;}
._11_c00064{width:11.039049pt;}
._12_c00064{width:12.492703pt;}
._10_c00064{width:17.740703pt;}
._13_c00064{width:18.927323pt;}
._b_c00064{width:21.068703pt;}
._c_c00064{width:22.124571pt;}
._d_c00064{width:23.094108pt;}
._e_c00064{width:24.204239pt;}
._14_c00064{width:25.354689pt;}
.fs1_c00064{font-size:48.640000pt;}
.fs0_c00064{font-size:64.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y6_c00064{bottom:4.156000pt;}
.y3_c00064{bottom:4.160000pt;}
.y5_c00064{bottom:22.396000pt;}
.y4_c00064{bottom:29.156000pt;}
.y1_c00064{bottom:51.552000pt;}
.y29_c00064{bottom:101.792000pt;}
.y28_c00064{bottom:137.346667pt;}
.y27_c00064{bottom:165.186667pt;}
.y26_c00064{bottom:192.706667pt;}
.y25_c00064{bottom:220.226667pt;}
.y24_c00064{bottom:247.773333pt;}
.y23_c00064{bottom:275.613333pt;}
.y22_c00064{bottom:303.133333pt;}
.y21_c00064{bottom:330.653333pt;}
.y20_c00064{bottom:358.213333pt;}
.y1f_c00064{bottom:385.733333pt;}
.y1e_c00064{bottom:413.573333pt;}
.y1d_c00064{bottom:441.093333pt;}
.y1c_c00064{bottom:468.640000pt;}
.y1b_c00064{bottom:496.160000pt;}
.y1a_c00064{bottom:524.000000pt;}
.y19_c00064{bottom:551.520000pt;}
.y18_c00064{bottom:579.066667pt;}
.y17_c00064{bottom:611.706667pt;}
.y16_c00064{bottom:632.506667pt;}
.y15_c00064{bottom:652.986667pt;}
.y14_c00064{bottom:673.786667pt;}
.y13_c00064{bottom:694.626667pt;}
.y12_c00064{bottom:715.106667pt;}
.y11_c00064{bottom:735.906667pt;}
.y10_c00064{bottom:756.706667pt;}
.yf_c00064{bottom:777.186667pt;}
.ye_c00064{bottom:798.013333pt;}
.yd_c00064{bottom:818.813333pt;}
.yc_c00064{bottom:839.293333pt;}
.yb_c00064{bottom:860.093333pt;}
.ya_c00064{bottom:880.893333pt;}
.y9_c00064{bottom:901.413333pt;}
.y8_c00064{bottom:922.213333pt;}
.y7_c00064{bottom:951.013333pt;}
.y2_c00064{bottom:989.413333pt;}
.h2_c00064{height:18.586667pt;}
.h3_c00064{height:36.796000pt;}
.h6_c00064{height:43.842500pt;}
.h5_c00064{height:47.713750pt;}
.h4_c00064{height:47.737500pt;}
.h1_c00064{height:57.375000pt;}
.h7_c00064{height:62.812500pt;}
.h0_c00064{height:1056.000000pt;}
.w1_c00064{width:7.346667pt;}
.w2_c00064{width:589.640000pt;}
.w0_c00064{width:816.000000pt;}
.x0_c00064{left:0.000000pt;}
.x3_c00064{left:113.324000pt;}
.x1_c00064{left:137.346667pt;}
.x4_c00064{left:151.106667pt;}
.x2_c00064{left:695.613333pt;}
}





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

.ir_c00065:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00065;src:url('chunks/assets/font_e78ae1511b37131975271a09.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_dccb8a023436771538a2367c.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_2cb31166e713acccd3456327.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;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_c00065;src:url('chunks/assets/font_b12f9e2ec445cf7acf21e80c.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00065;src:url('chunks/assets/font_bae6a4ac48211caf0f9b6768.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls1_c00065{letter-spacing:0.000000px;}
.ls2_c00065{letter-spacing:0.020400px;}
.ls0_c00065{letter-spacing:0.720000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:-18.000000px;}
.ws2_c00065{word-spacing:-15.840000px;}
.ws3_c00065{word-spacing:-15.140400px;}
.ws1_c00065{word-spacing:-15.120000px;}
.ws4_c00065{word-spacing:0.000000px;}
._1_c00065{margin-left:-2.736000px;}
._2_c00065{margin-left:-1.008000px;}
._0_c00065{width:1.080000px;}
._5_c00065{width:2.520000px;}
._8_c00065{width:3.528000px;}
._9_c00065{width:4.824000px;}
._7_c00065{width:5.832000px;}
._6_c00065{width:7.056000px;}
._e_c00065{width:8.352000px;}
._d_c00065{width:9.660024px;}
._3_c00065{width:10.728000px;}
._4_c00065{width:11.736000px;}
._f_c00065{width:12.767952px;}
._c_c00065{width:16.200000px;}
._10_c00065{width:17.369991px;}
._11_c00065{width:18.913202px;}
._a_c00065{width:46.872000px;}
._b_c00065{width:48.600000px;}
.fc0_c00065{color:rgb(0,0,0);}
.fs3_c00065{font-size:38.880000px;}
.fs1_c00065{font-size:47.520000px;}
.fs2_c00065{font-size:60.480000px;}
.fs0_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y6_c00065{bottom:4.675500px;}
.y3_c00065{bottom:4.680000px;}
.y25_c00065{bottom:8.640000px;}
.y1d_c00065{bottom:12.960000px;}
.y5_c00065{bottom:25.195500px;}
.y24_c00065{bottom:25.920000px;}
.y4_c00065{bottom:32.800500px;}
.y20_c00065{bottom:38.880000px;}
.y23_c00065{bottom:43.200000px;}
.y1_c00065{bottom:57.996000px;}
.y22_c00065{bottom:60.480000px;}
.y21_c00065{bottom:65.160000px;}
.y32_c00065{bottom:130.716000px;}
.y31_c00065{bottom:147.996000px;}
.y30_c00065{bottom:154.875000px;}
.y2f_c00065{bottom:164.955000px;}
.y2e_c00065{bottom:182.235000px;}
.y2d_c00065{bottom:199.515000px;}
.y2c_c00065{bottom:216.795000px;}
.y2b_c00065{bottom:234.075000px;}
.y2a_c00065{bottom:240.915000px;}
.y29_c00065{bottom:251.355000px;}
.y28_c00065{bottom:268.635000px;}
.y27_c00065{bottom:275.505000px;}
.y26_c00065{bottom:286.305000px;}
.y1f_c00065{bottom:308.265000px;}
.y1e_c00065{bottom:396.510000px;}
.y1c_c00065{bottom:432.510000px;}
.y1a_c00065{bottom:492.630000px;}
.y1b_c00065{bottom:500.910000px;}
.y19_c00065{bottom:532.620000px;}
.y18_c00065{bottom:563.580000px;}
.y17_c00065{bottom:594.540000px;}
.y15_c00065{bottom:625.860000px;}
.y16_c00065{bottom:634.140000px;}
.y14_c00065{bottom:656.850000px;}
.y13_c00065{bottom:687.810000px;}
.y12_c00065{bottom:718.770000px;}
.y11_c00065{bottom:750.090000px;}
.yf_c00065{bottom:781.095000px;}
.y10_c00065{bottom:789.375000px;}
.ye_c00065{bottom:812.055000px;}
.yd_c00065{bottom:843.015000px;}
.yc_c00065{bottom:883.335000px;}
.yb_c00065{bottom:923.325000px;}
.ya_c00065{bottom:963.285000px;}
.y9_c00065{bottom:1003.245000px;}
.y8_c00065{bottom:1034.610000px;}
.y7_c00065{bottom:1065.570000px;}
.y2_c00065{bottom:1113.090000px;}
.h2_c00065{height:20.910000px;}
.h9_c00065{height:35.265000px;}
.hd_c00065{height:38.158594px;}
.h3_c00065{height:41.395500px;}
.h8_c00065{height:46.615078px;}
.h7_c00065{height:46.638281px;}
.hb_c00065{height:59.328281px;}
.ha_c00065{height:59.357813px;}
.h1_c00065{height:64.546875px;}
.h5_c00065{height:70.628906px;}
.h4_c00065{height:70.664062px;}
.hc_c00065{height:87.510000px;}
.h6_c00065{height:1187.995500px;}
.h0_c00065{height:1188.000000px;}
.w1_c00065{width:8.265000px;}
.w6_c00065{width:167.430000px;}
.w4_c00065{width:167.445000px;}
.w5_c00065{width:167.835000px;}
.w2_c00065{width:663.345000px;}
.w3_c00065{width:917.997000px;}
.w0_c00065{width:918.000000px;}
.x0_c00065{left:0.000000px;}
.xe_c00065{left:7.546500px;}
.xd_c00065{left:119.929500px;}
.x3_c00065{left:127.489500px;}
.x13_c00065{left:137.556000px;}
.xa_c00065{left:147.672000px;}
.x1_c00065{left:154.515000px;}
.x5_c00065{left:178.635000px;}
.x4_c00065{left:180.795000px;}
.xf_c00065{left:288.105000px;}
.x12_c00065{left:343.590000px;}
.x10_c00065{left:456.660000px;}
.x11_c00065{left:624.825000px;}
.x6_c00065{left:655.452000px;}
.x7_c00065{left:667.695000px;}
.x8_c00065{left:737.922000px;}
.x9_c00065{left:750.165000px;}
.xb_c00065{left:758.082000px;}
.xc_c00065{left:770.325000px;}
.x2_c00065{left:782.565000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls1_c00065{letter-spacing:0.000000pt;}
.ls2_c00065{letter-spacing:0.018133pt;}
.ls0_c00065{letter-spacing:0.640000pt;}
.ws0_c00065{word-spacing:-16.000000pt;}
.ws2_c00065{word-spacing:-14.080000pt;}
.ws3_c00065{word-spacing:-13.458133pt;}
.ws1_c00065{word-spacing:-13.440000pt;}
.ws4_c00065{word-spacing:0.000000pt;}
._1_c00065{margin-left:-2.432000pt;}
._2_c00065{margin-left:-0.896000pt;}
._0_c00065{width:0.960000pt;}
._5_c00065{width:2.240000pt;}
._8_c00065{width:3.136000pt;}
._9_c00065{width:4.288000pt;}
._7_c00065{width:5.184000pt;}
._6_c00065{width:6.272000pt;}
._e_c00065{width:7.424000pt;}
._d_c00065{width:8.586688pt;}
._3_c00065{width:9.536000pt;}
._4_c00065{width:10.432000pt;}
._f_c00065{width:11.349291pt;}
._c_c00065{width:14.400000pt;}
._10_c00065{width:15.439992pt;}
._11_c00065{width:16.811735pt;}
._a_c00065{width:41.664000pt;}
._b_c00065{width:43.200000pt;}
.fs3_c00065{font-size:34.560000pt;}
.fs1_c00065{font-size:42.240000pt;}
.fs2_c00065{font-size:53.760000pt;}
.fs0_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y6_c00065{bottom:4.156000pt;}
.y3_c00065{bottom:4.160000pt;}
.y25_c00065{bottom:7.680000pt;}
.y1d_c00065{bottom:11.520000pt;}
.y5_c00065{bottom:22.396000pt;}
.y24_c00065{bottom:23.040000pt;}
.y4_c00065{bottom:29.156000pt;}
.y20_c00065{bottom:34.560000pt;}
.y23_c00065{bottom:38.400000pt;}
.y1_c00065{bottom:51.552000pt;}
.y22_c00065{bottom:53.760000pt;}
.y21_c00065{bottom:57.920000pt;}
.y32_c00065{bottom:116.192000pt;}
.y31_c00065{bottom:131.552000pt;}
.y30_c00065{bottom:137.666667pt;}
.y2f_c00065{bottom:146.626667pt;}
.y2e_c00065{bottom:161.986667pt;}
.y2d_c00065{bottom:177.346667pt;}
.y2c_c00065{bottom:192.706667pt;}
.y2b_c00065{bottom:208.066667pt;}
.y2a_c00065{bottom:214.146667pt;}
.y29_c00065{bottom:223.426667pt;}
.y28_c00065{bottom:238.786667pt;}
.y27_c00065{bottom:244.893333pt;}
.y26_c00065{bottom:254.493333pt;}
.y1f_c00065{bottom:274.013333pt;}
.y1e_c00065{bottom:352.453333pt;}
.y1c_c00065{bottom:384.453333pt;}
.y1a_c00065{bottom:437.893333pt;}
.y1b_c00065{bottom:445.253333pt;}
.y19_c00065{bottom:473.440000pt;}
.y18_c00065{bottom:500.960000pt;}
.y17_c00065{bottom:528.480000pt;}
.y15_c00065{bottom:556.320000pt;}
.y16_c00065{bottom:563.680000pt;}
.y14_c00065{bottom:583.866667pt;}
.y13_c00065{bottom:611.386667pt;}
.y12_c00065{bottom:638.906667pt;}
.y11_c00065{bottom:666.746667pt;}
.yf_c00065{bottom:694.306667pt;}
.y10_c00065{bottom:701.666667pt;}
.ye_c00065{bottom:721.826667pt;}
.yd_c00065{bottom:749.346667pt;}
.yc_c00065{bottom:785.186667pt;}
.yb_c00065{bottom:820.733333pt;}
.ya_c00065{bottom:856.253333pt;}
.y9_c00065{bottom:891.773333pt;}
.y8_c00065{bottom:919.653333pt;}
.y7_c00065{bottom:947.173333pt;}
.y2_c00065{bottom:989.413333pt;}
.h2_c00065{height:18.586667pt;}
.h9_c00065{height:31.346667pt;}
.hd_c00065{height:33.918750pt;}
.h3_c00065{height:36.796000pt;}
.h8_c00065{height:41.435625pt;}
.h7_c00065{height:41.456250pt;}
.hb_c00065{height:52.736250pt;}
.ha_c00065{height:52.762500pt;}
.h1_c00065{height:57.375000pt;}
.h5_c00065{height:62.781250pt;}
.h4_c00065{height:62.812500pt;}
.hc_c00065{height:77.786667pt;}
.h6_c00065{height:1055.996000pt;}
.h0_c00065{height:1056.000000pt;}
.w1_c00065{width:7.346667pt;}
.w6_c00065{width:148.826667pt;}
.w4_c00065{width:148.840000pt;}
.w5_c00065{width:149.186667pt;}
.w2_c00065{width:589.640000pt;}
.w3_c00065{width:815.997333pt;}
.w0_c00065{width:816.000000pt;}
.x0_c00065{left:0.000000pt;}
.xe_c00065{left:6.708000pt;}
.xd_c00065{left:106.604000pt;}
.x3_c00065{left:113.324000pt;}
.x13_c00065{left:122.272000pt;}
.xa_c00065{left:131.264000pt;}
.x1_c00065{left:137.346667pt;}
.x5_c00065{left:158.786667pt;}
.x4_c00065{left:160.706667pt;}
.xf_c00065{left:256.093333pt;}
.x12_c00065{left:305.413333pt;}
.x10_c00065{left:405.920000pt;}
.x11_c00065{left:555.400000pt;}
.x6_c00065{left:582.624000pt;}
.x7_c00065{left:593.506667pt;}
.x8_c00065{left:655.930667pt;}
.x9_c00065{left:666.813333pt;}
.xb_c00065{left:673.850667pt;}
.xc_c00065{left:684.733333pt;}
.x2_c00065{left:695.613333pt;}
}





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

.ir_c00066:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00066;src:url('chunks/assets/font_d625fa8e003c0ea9359d26c4.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_734423206c98e9c6f915f6d4.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00066;src:url('chunks/assets/font_c350e3c41938dc0b4591905f.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_2305af071939fc1a9d4208b8.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls3_c00066{letter-spacing:-0.051600px;}
.ls2_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:0.020400px;}
.ls4_c00066{letter-spacing:0.507000px;}
.ls1_c00066{letter-spacing:0.720000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00066{word-spacing:-15.627000px;}
.ws0_c00066{word-spacing:-15.140400px;}
.ws1_c00066{word-spacing:-15.120000px;}
.ws2_c00066{word-spacing:-15.068400px;}
.ws4_c00066{word-spacing:0.000000px;}
._2_c00066{margin-left:-3.271438px;}
._3_c00066{margin-left:-2.030993px;}
._0_c00066{margin-left:-1.028402px;}
._1_c00066{width:1.440000px;}
.fc1_c00066{color:rgb(0,0,255);}
.fc0_c00066{color:rgb(0,0,0);}
.fs1_c00066{font-size:60.480000px;}
.fs0_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y3c_c00066{bottom:3.955500px;}
.y6_c00066{bottom:4.675500px;}
.y3_c00066{bottom:4.680000px;}
.y30_c00066{bottom:12.945000px;}
.yb_c00066{bottom:13.005000px;}
.y3b_c00066{bottom:21.235500px;}
.y5_c00066{bottom:25.195500px;}
.y2f_c00066{bottom:30.225000px;}
.ya_c00066{bottom:30.285000px;}
.y4_c00066{bottom:32.800500px;}
.y3a_c00066{bottom:38.554500px;}
.y9_c00066{bottom:47.565000px;}
.y36_c00066{bottom:51.874500px;}
.y39_c00066{bottom:55.834500px;}
.y2e_c00066{bottom:56.535000px;}
.y1_c00066{bottom:57.996000px;}
.y8_c00066{bottom:64.845000px;}
.y38_c00066{bottom:73.114500px;}
.y2d_c00066{bottom:82.815000px;}
.y37_c00066{bottom:90.394500px;}
.y2c_c00066{bottom:100.095000px;}
.y35_c00066{bottom:122.800500px;}
.y2b_c00066{bottom:126.375000px;}
.y2a_c00066{bottom:152.295000px;}
.y29_c00066{bottom:178.620000px;}
.y28_c00066{bottom:195.900000px;}
.y27_c00066{bottom:213.180000px;}
.yc_c00066{bottom:236.250000px;}
.y26_c00066{bottom:239.460000px;}
.y25_c00066{bottom:256.740000px;}
.y24_c00066{bottom:283.050000px;}
.y23_c00066{bottom:309.330000px;}
.y22_c00066{bottom:326.610000px;}
.y34_c00066{bottom:343.890000px;}
.y21_c00066{bottom:352.890000px;}
.y33_c00066{bottom:361.170000px;}
.yd_c00066{bottom:378.090000px;}
.y20_c00066{bottom:379.170000px;}
.y32_c00066{bottom:395.370000px;}
.y1f_c00066{bottom:396.090000px;}
.y31_c00066{bottom:412.680000px;}
.y1e_c00066{bottom:413.400000px;}
.y1d_c00066{bottom:439.680000px;}
.y1c_c00066{bottom:456.960000px;}
.y1b_c00066{bottom:483.240000px;}
.y1a_c00066{bottom:509.520000px;}
.y19_c00066{bottom:526.845000px;}
.y18_c00066{bottom:544.125000px;}
.y17_c00066{bottom:561.405000px;}
.y16_c00066{bottom:587.685000px;}
.y15_c00066{bottom:604.965000px;}
.y14_c00066{bottom:621.885000px;}
.y13_c00066{bottom:648.165000px;}
.y12_c00066{bottom:665.475000px;}
.y11_c00066{bottom:682.755000px;}
.y10_c00066{bottom:700.035000px;}
.yf_c00066{bottom:717.315000px;}
.ye_c00066{bottom:743.595000px;}
.y7_c00066{bottom:1002.885000px;}
.y2_c00066{bottom:1113.090000px;}
.h2_c00066{height:20.910000px;}
.h3_c00066{height:41.395500px;}
.h8_c00066{height:54.514688px;}
.h5_c00066{height:59.328281px;}
.h7_c00066{height:59.357813px;}
.h1_c00066{height:64.546875px;}
.h4_c00066{height:78.150000px;}
.h9_c00066{height:112.711500px;}
.h6_c00066{height:765.900000px;}
.h0_c00066{height:1188.000000px;}
.w1_c00066{width:8.265000px;}
.w3_c00066{width:167.445000px;}
.w7_c00066{width:168.840000px;}
.w6_c00066{width:168.870000px;}
.w4_c00066{width:168.885000px;}
.w5_c00066{width:169.275000px;}
.w2_c00066{width:663.345000px;}
.w0_c00066{width:918.000000px;}
.x0_c00066{left:0.000000px;}
.x5_c00066{left:7.590000px;}
.x6_c00066{left:119.929500px;}
.x3_c00066{left:127.489500px;}
.x1_c00066{left:154.515000px;}
.x7_c00066{left:289.545000px;}
.x8_c00066{left:459.540000px;}
.x4_c00066{left:624.825000px;}
.x9_c00066{left:629.550000px;}
.x2_c00066{left:782.565000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls3_c00066{letter-spacing:-0.045867pt;}
.ls2_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:0.018133pt;}
.ls4_c00066{letter-spacing:0.450667pt;}
.ls1_c00066{letter-spacing:0.640000pt;}
.ws3_c00066{word-spacing:-13.890667pt;}
.ws0_c00066{word-spacing:-13.458133pt;}
.ws1_c00066{word-spacing:-13.440000pt;}
.ws2_c00066{word-spacing:-13.394133pt;}
.ws4_c00066{word-spacing:0.000000pt;}
._2_c00066{margin-left:-2.907945pt;}
._3_c00066{margin-left:-1.805327pt;}
._0_c00066{margin-left:-0.914135pt;}
._1_c00066{width:1.280000pt;}
.fs1_c00066{font-size:53.760000pt;}
.fs0_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y3c_c00066{bottom:3.516000pt;}
.y6_c00066{bottom:4.156000pt;}
.y3_c00066{bottom:4.160000pt;}
.y30_c00066{bottom:11.506667pt;}
.yb_c00066{bottom:11.560000pt;}
.y3b_c00066{bottom:18.876000pt;}
.y5_c00066{bottom:22.396000pt;}
.y2f_c00066{bottom:26.866667pt;}
.ya_c00066{bottom:26.920000pt;}
.y4_c00066{bottom:29.156000pt;}
.y3a_c00066{bottom:34.270667pt;}
.y9_c00066{bottom:42.280000pt;}
.y36_c00066{bottom:46.110667pt;}
.y39_c00066{bottom:49.630667pt;}
.y2e_c00066{bottom:50.253333pt;}
.y1_c00066{bottom:51.552000pt;}
.y8_c00066{bottom:57.640000pt;}
.y38_c00066{bottom:64.990667pt;}
.y2d_c00066{bottom:73.613333pt;}
.y37_c00066{bottom:80.350667pt;}
.y2c_c00066{bottom:88.973333pt;}
.y35_c00066{bottom:109.156000pt;}
.y2b_c00066{bottom:112.333333pt;}
.y2a_c00066{bottom:135.373333pt;}
.y29_c00066{bottom:158.773333pt;}
.y28_c00066{bottom:174.133333pt;}
.y27_c00066{bottom:189.493333pt;}
.yc_c00066{bottom:210.000000pt;}
.y26_c00066{bottom:212.853333pt;}
.y25_c00066{bottom:228.213333pt;}
.y24_c00066{bottom:251.600000pt;}
.y23_c00066{bottom:274.960000pt;}
.y22_c00066{bottom:290.320000pt;}
.y34_c00066{bottom:305.680000pt;}
.y21_c00066{bottom:313.680000pt;}
.y33_c00066{bottom:321.040000pt;}
.yd_c00066{bottom:336.080000pt;}
.y20_c00066{bottom:337.040000pt;}
.y32_c00066{bottom:351.440000pt;}
.y1f_c00066{bottom:352.080000pt;}
.y31_c00066{bottom:366.826667pt;}
.y1e_c00066{bottom:367.466667pt;}
.y1d_c00066{bottom:390.826667pt;}
.y1c_c00066{bottom:406.186667pt;}
.y1b_c00066{bottom:429.546667pt;}
.y1a_c00066{bottom:452.906667pt;}
.y19_c00066{bottom:468.306667pt;}
.y18_c00066{bottom:483.666667pt;}
.y17_c00066{bottom:499.026667pt;}
.y16_c00066{bottom:522.386667pt;}
.y15_c00066{bottom:537.746667pt;}
.y14_c00066{bottom:552.786667pt;}
.y13_c00066{bottom:576.146667pt;}
.y12_c00066{bottom:591.533333pt;}
.y11_c00066{bottom:606.893333pt;}
.y10_c00066{bottom:622.253333pt;}
.yf_c00066{bottom:637.613333pt;}
.ye_c00066{bottom:660.973333pt;}
.y7_c00066{bottom:891.453333pt;}
.y2_c00066{bottom:989.413333pt;}
.h2_c00066{height:18.586667pt;}
.h3_c00066{height:36.796000pt;}
.h8_c00066{height:48.457500pt;}
.h5_c00066{height:52.736250pt;}
.h7_c00066{height:52.762500pt;}
.h1_c00066{height:57.375000pt;}
.h4_c00066{height:69.466667pt;}
.h9_c00066{height:100.188000pt;}
.h6_c00066{height:680.800000pt;}
.h0_c00066{height:1056.000000pt;}
.w1_c00066{width:7.346667pt;}
.w3_c00066{width:148.840000pt;}
.w7_c00066{width:150.080000pt;}
.w6_c00066{width:150.106667pt;}
.w4_c00066{width:150.120000pt;}
.w5_c00066{width:150.466667pt;}
.w2_c00066{width:589.640000pt;}
.w0_c00066{width:816.000000pt;}
.x0_c00066{left:0.000000pt;}
.x5_c00066{left:6.746667pt;}
.x6_c00066{left:106.604000pt;}
.x3_c00066{left:113.324000pt;}
.x1_c00066{left:137.346667pt;}
.x7_c00066{left:257.373333pt;}
.x8_c00066{left:408.480000pt;}
.x4_c00066{left:555.400000pt;}
.x9_c00066{left:559.600000pt;}
.x2_c00066{left:695.613333pt;}
}





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

.ir_c00067:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00067;src:url('chunks/assets/font_2010d8b87e47323ec26aa13e.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_00efc24e6151c855fc1efcce.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_2cba8c0f6f026eacd224ec96.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00067;src:url('chunks/assets/font_c38f04569e8b1b469c5a0d30.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls5_c00067{letter-spacing:-1.422000px;}
.ls4_c00067{letter-spacing:-0.954000px;}
.ls3_c00067{letter-spacing:-0.720000px;}
.ls1_c00067{letter-spacing:0.000000px;}
.ls2_c00067{letter-spacing:0.020400px;}
.ls0_c00067{letter-spacing:0.720000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00067{word-spacing:-60.480000px;}
.ws1_c00067{word-spacing:-15.140400px;}
.ws0_c00067{word-spacing:-15.120000px;}
.ws2_c00067{word-spacing:-14.166000px;}
.ws4_c00067{word-spacing:0.000000px;}
._2_c00067{margin-left:-2.902798px;}
._0_c00067{margin-left:-1.572601px;}
._1_c00067{width:1.209600px;}
._3_c00067{width:2.726037px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs1_c00067{font-size:60.480000px;}
.fs0_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y6_c00067{bottom:4.675500px;}
.y3_c00067{bottom:4.680000px;}
.y13_c00067{bottom:12.945000px;}
.y39_c00067{bottom:12.955500px;}
.y5_c00067{bottom:25.195500px;}
.y18_c00067{bottom:30.225000px;}
.y12_c00067{bottom:30.255000px;}
.y38_c00067{bottom:30.274500px;}
.y4_c00067{bottom:32.800500px;}
.y15_c00067{bottom:38.865000px;}
.y11_c00067{bottom:47.175000px;}
.y17_c00067{bottom:47.505000px;}
.y37_c00067{bottom:47.554500px;}
.y1_c00067{bottom:57.996000px;}
.y10_c00067{bottom:64.455000px;}
.y36_c00067{bottom:64.474500px;}
.y16_c00067{bottom:64.785000px;}
.yf_c00067{bottom:81.735000px;}
.y35_c00067{bottom:81.754500px;}
.ye_c00067{bottom:99.015000px;}
.y34_c00067{bottom:99.034500px;}
.yd_c00067{bottom:116.295000px;}
.y33_c00067{bottom:116.314500px;}
.yc_c00067{bottom:133.575000px;}
.y32_c00067{bottom:133.594500px;}
.y1a_c00067{bottom:135.040500px;}
.yb_c00067{bottom:150.900000px;}
.y31_c00067{bottom:159.904500px;}
.ya_c00067{bottom:168.180000px;}
.y30_c00067{bottom:177.184500px;}
.y9_c00067{bottom:185.460000px;}
.y2f_c00067{bottom:194.464500px;}
.y8_c00067{bottom:202.740000px;}
.y2e_c00067{bottom:211.744500px;}
.y2d_c00067{bottom:229.024500px;}
.y2c_c00067{bottom:246.304500px;}
.y2b_c00067{bottom:263.629500px;}
.y1b_c00067{bottom:271.909500px;}
.y2a_c00067{bottom:280.549500px;}
.y29_c00067{bottom:297.829500px;}
.y28_c00067{bottom:315.109500px;}
.y27_c00067{bottom:332.389500px;}
.y26_c00067{bottom:358.669500px;}
.y25_c00067{bottom:375.949500px;}
.y24_c00067{bottom:393.259500px;}
.y23_c00067{bottom:410.539500px;}
.y22_c00067{bottom:427.819500px;}
.y21_c00067{bottom:445.099500px;}
.y20_c00067{bottom:462.379500px;}
.y1f_c00067{bottom:479.299500px;}
.y1e_c00067{bottom:496.579500px;}
.y1d_c00067{bottom:513.889500px;}
.y1c_c00067{bottom:531.169500px;}
.y19_c00067{bottom:689.265000px;}
.y14_c00067{bottom:777.150000px;}
.y7_c00067{bottom:864.990000px;}
.y2_c00067{bottom:1113.090000px;}
.h2_c00067{height:20.910000px;}
.h3_c00067{height:41.395500px;}
.h5_c00067{height:59.328281px;}
.h6_c00067{height:59.357813px;}
.h1_c00067{height:64.546875px;}
.h7_c00067{height:87.105000px;}
.h8_c00067{height:87.141000px;}
.h4_c00067{height:216.045000px;}
.h9_c00067{height:553.495500px;}
.h0_c00067{height:1188.000000px;}
.w1_c00067{width:8.265000px;}
.w3_c00067{width:168.840000px;}
.w6_c00067{width:168.870000px;}
.w4_c00067{width:168.885000px;}
.w5_c00067{width:169.275000px;}
.w2_c00067{width:663.345000px;}
.w0_c00067{width:918.000000px;}
.x0_c00067{left:0.000000px;}
.x5_c00067{left:7.545000px;}
.x6_c00067{left:119.929500px;}
.x3_c00067{left:127.489500px;}
.x1_c00067{left:154.515000px;}
.x7_c00067{left:289.545000px;}
.x8_c00067{left:459.540000px;}
.x4_c00067{left:629.550000px;}
.x2_c00067{left:782.565000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls5_c00067{letter-spacing:-1.264000pt;}
.ls4_c00067{letter-spacing:-0.848000pt;}
.ls3_c00067{letter-spacing:-0.640000pt;}
.ls1_c00067{letter-spacing:0.000000pt;}
.ls2_c00067{letter-spacing:0.018133pt;}
.ls0_c00067{letter-spacing:0.640000pt;}
.ws3_c00067{word-spacing:-53.760000pt;}
.ws1_c00067{word-spacing:-13.458133pt;}
.ws0_c00067{word-spacing:-13.440000pt;}
.ws2_c00067{word-spacing:-12.592000pt;}
.ws4_c00067{word-spacing:0.000000pt;}
._2_c00067{margin-left:-2.580265pt;}
._0_c00067{margin-left:-1.397868pt;}
._1_c00067{width:1.075200pt;}
._3_c00067{width:2.423144pt;}
.fs1_c00067{font-size:53.760000pt;}
.fs0_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y6_c00067{bottom:4.156000pt;}
.y3_c00067{bottom:4.160000pt;}
.y13_c00067{bottom:11.506667pt;}
.y39_c00067{bottom:11.516000pt;}
.y5_c00067{bottom:22.396000pt;}
.y18_c00067{bottom:26.866667pt;}
.y12_c00067{bottom:26.893333pt;}
.y38_c00067{bottom:26.910667pt;}
.y4_c00067{bottom:29.156000pt;}
.y15_c00067{bottom:34.546667pt;}
.y11_c00067{bottom:41.933333pt;}
.y17_c00067{bottom:42.226667pt;}
.y37_c00067{bottom:42.270667pt;}
.y1_c00067{bottom:51.552000pt;}
.y10_c00067{bottom:57.293333pt;}
.y36_c00067{bottom:57.310667pt;}
.y16_c00067{bottom:57.586667pt;}
.yf_c00067{bottom:72.653333pt;}
.y35_c00067{bottom:72.670667pt;}
.ye_c00067{bottom:88.013333pt;}
.y34_c00067{bottom:88.030667pt;}
.yd_c00067{bottom:103.373333pt;}
.y33_c00067{bottom:103.390667pt;}
.yc_c00067{bottom:118.733333pt;}
.y32_c00067{bottom:118.750667pt;}
.y1a_c00067{bottom:120.036000pt;}
.yb_c00067{bottom:134.133333pt;}
.y31_c00067{bottom:142.137333pt;}
.ya_c00067{bottom:149.493333pt;}
.y30_c00067{bottom:157.497333pt;}
.y9_c00067{bottom:164.853333pt;}
.y2f_c00067{bottom:172.857333pt;}
.y8_c00067{bottom:180.213333pt;}
.y2e_c00067{bottom:188.217333pt;}
.y2d_c00067{bottom:203.577333pt;}
.y2c_c00067{bottom:218.937333pt;}
.y2b_c00067{bottom:234.337333pt;}
.y1b_c00067{bottom:241.697333pt;}
.y2a_c00067{bottom:249.377333pt;}
.y29_c00067{bottom:264.737333pt;}
.y28_c00067{bottom:280.097333pt;}
.y27_c00067{bottom:295.457333pt;}
.y26_c00067{bottom:318.817333pt;}
.y25_c00067{bottom:334.177333pt;}
.y24_c00067{bottom:349.564000pt;}
.y23_c00067{bottom:364.924000pt;}
.y22_c00067{bottom:380.284000pt;}
.y21_c00067{bottom:395.644000pt;}
.y20_c00067{bottom:411.004000pt;}
.y1f_c00067{bottom:426.044000pt;}
.y1e_c00067{bottom:441.404000pt;}
.y1d_c00067{bottom:456.790667pt;}
.y1c_c00067{bottom:472.150667pt;}
.y19_c00067{bottom:612.680000pt;}
.y14_c00067{bottom:690.800000pt;}
.y7_c00067{bottom:768.880000pt;}
.y2_c00067{bottom:989.413333pt;}
.h2_c00067{height:18.586667pt;}
.h3_c00067{height:36.796000pt;}
.h5_c00067{height:52.736250pt;}
.h6_c00067{height:52.762500pt;}
.h1_c00067{height:57.375000pt;}
.h7_c00067{height:77.426667pt;}
.h8_c00067{height:77.458667pt;}
.h4_c00067{height:192.040000pt;}
.h9_c00067{height:491.996000pt;}
.h0_c00067{height:1056.000000pt;}
.w1_c00067{width:7.346667pt;}
.w3_c00067{width:150.080000pt;}
.w6_c00067{width:150.106667pt;}
.w4_c00067{width:150.120000pt;}
.w5_c00067{width:150.466667pt;}
.w2_c00067{width:589.640000pt;}
.w0_c00067{width:816.000000pt;}
.x0_c00067{left:0.000000pt;}
.x5_c00067{left:6.706667pt;}
.x6_c00067{left:106.604000pt;}
.x3_c00067{left:113.324000pt;}
.x1_c00067{left:137.346667pt;}
.x7_c00067{left:257.373333pt;}
.x8_c00067{left:408.480000pt;}
.x4_c00067{left:559.600000pt;}
.x2_c00067{left:695.613333pt;}
}





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

.ir_c00068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00068;src:url('chunks/assets/font_c0d4dfaf754cf852c8e55e63.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_c351db15e593ff8df15e519f.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00068;src:url('chunks/assets/font_f9e10410694c751c4b285601.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;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_c00068;src:url('chunks/assets/font_a1c746e527ff28d27adbb382.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_4f027dc968c7eb74600b7b62.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00068;src:url('chunks/assets/font_8f8f170700955233ecc79318.woff2')format("woff");}.ff6_c00068{font-family:ff6_c00068;line-height:1.112305;font-style:normal;font-weight: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_c00068;src:url('chunks/assets/font_9e5488334a621ad5711a9988.woff2')format("woff");}.ff7_c00068{font-family:ff7_c00068;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.v1_c00068{vertical-align:33.120000px;}
.ls10_c00068{letter-spacing:-1.422000px;}
.lsf_c00068{letter-spacing:-0.954000px;}
.ls9_c00068{letter-spacing:-0.720000px;}
.lsc_c00068{letter-spacing:-0.532800px;}
.lsa_c00068{letter-spacing:-0.466800px;}
.lsd_c00068{letter-spacing:-0.302400px;}
.ls6_c00068{letter-spacing:0.000000px;}
.ls7_c00068{letter-spacing:0.020400px;}
.lsb_c00068{letter-spacing:0.166800px;}
.lse_c00068{letter-spacing:0.313800px;}
.ls0_c00068{letter-spacing:0.720000px;}
.ls1_c00068{letter-spacing:0.740160px;}
.ls2_c00068{letter-spacing:0.743040px;}
.ls8_c00068{letter-spacing:1.440000px;}
.ls3_c00068{letter-spacing:3.600000px;}
.ls4_c00068{letter-spacing:5.040000px;}
.ls5_c00068{letter-spacing:6.624000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00068{word-spacing:-60.480000px;}
.ws7_c00068{word-spacing:-15.433800px;}
.ws4_c00068{word-spacing:-15.286800px;}
.ws1_c00068{word-spacing:-15.140400px;}
.ws0_c00068{word-spacing:-15.120000px;}
.ws6_c00068{word-spacing:-14.817600px;}
.ws3_c00068{word-spacing:-14.653200px;}
.ws5_c00068{word-spacing:-14.587200px;}
.ws8_c00068{word-spacing:-14.166000px;}
.ws9_c00068{word-spacing:-13.698000px;}
.wsa_c00068{word-spacing:0.000000px;}
._8_c00068{margin-left:-3.688796px;}
._2_c00068{margin-left:-2.419200px;}
._0_c00068{margin-left:-1.390798px;}
._1_c00068{width:1.027797px;}
._5_c00068{width:2.696386px;}
._c_c00068{width:3.750607px;}
._d_c00068{width:5.321998px;}
._e_c00068{width:6.799821px;}
._b_c00068{width:11.227205px;}
._9_c00068{width:12.508203px;}
._a_c00068{width:14.580593px;}
._f_c00068{width:18.312587px;}
._7_c00068{width:19.423809px;}
._10_c00068{width:20.680470px;}
._4_c00068{width:36.907200px;}
._6_c00068{width:38.022022px;}
._3_c00068{width:186.636024px;}
.fc1_c00068{color:rgb(255,0,0);}
.fc0_c00068{color:rgb(0,0,0);}
.fs3_c00068{font-size:38.880000px;}
.fs2_c00068{font-size:47.520000px;}
.fs1_c00068{font-size:60.480000px;}
.fs0_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y6_c00068{bottom:4.675500px;}
.y3_c00068{bottom:4.680000px;}
.y18_c00068{bottom:12.945000px;}
.y10_c00068{bottom:12.960000px;}
.y22_c00068{bottom:12.990000px;}
.y5_c00068{bottom:25.195500px;}
.y17_c00068{bottom:30.225000px;}
.yf_c00068{bottom:30.240000px;}
.y21_c00068{bottom:30.270000px;}
.y4_c00068{bottom:32.800500px;}
.y24_c00068{bottom:38.880000px;}
.y26_c00068{bottom:47.160000px;}
.y16_c00068{bottom:47.505000px;}
.ye_c00068{bottom:47.520000px;}
.y20_c00068{bottom:47.550000px;}
.y1_c00068{bottom:57.996000px;}
.y12_c00068{bottom:60.465000px;}
.y25_c00068{bottom:64.440000px;}
.yd_c00068{bottom:64.800000px;}
.y1f_c00068{bottom:64.830000px;}
.y15_c00068{bottom:73.065000px;}
.y8_c00068{bottom:73.440000px;}
.y1a_c00068{bottom:73.470000px;}
.yc_c00068{bottom:82.080000px;}
.y1e_c00068{bottom:82.110000px;}
.y14_c00068{bottom:90.705000px;}
.y1d_c00068{bottom:99.390000px;}
.yb_c00068{bottom:99.405000px;}
.y13_c00068{bottom:108.015000px;}
.y3d_c00068{bottom:110.556000px;}
.y1c_c00068{bottom:116.670000px;}
.ya_c00068{bottom:116.685000px;}
.y3c_c00068{bottom:130.716000px;}
.y9_c00068{bottom:133.965000px;}
.y1b_c00068{bottom:133.995000px;}
.y3b_c00068{bottom:147.996000px;}
.y3a_c00068{bottom:164.955000px;}
.y39_c00068{bottom:182.235000px;}
.y38_c00068{bottom:199.515000px;}
.y37_c00068{bottom:216.795000px;}
.y36_c00068{bottom:223.635000px;}
.y35_c00068{bottom:234.075000px;}
.y34_c00068{bottom:251.355000px;}
.y33_c00068{bottom:268.635000px;}
.y32_c00068{bottom:285.945000px;}
.y31_c00068{bottom:303.225000px;}
.y30_c00068{bottom:320.505000px;}
.y2f_c00068{bottom:337.785000px;}
.y2e_c00068{bottom:344.625000px;}
.y2d_c00068{bottom:355.425000px;}
.y2b_c00068{bottom:420.990000px;}
.y2c_c00068{bottom:429.270000px;}
.y29_c00068{bottom:451.950000px;}
.y2a_c00068{bottom:460.230000px;}
.y28_c00068{bottom:482.910000px;}
.y27_c00068{bottom:523.260000px;}
.y23_c00068{bottom:549.180000px;}
.y19_c00068{bottom:636.660000px;}
.y11_c00068{bottom:793.710000px;}
.y7_c00068{bottom:924.765000px;}
.y2_c00068{bottom:1113.090000px;}
.h2_c00068{height:20.910000px;}
.hf_c00068{height:38.158594px;}
.h3_c00068{height:41.395500px;}
.hc_c00068{height:46.638281px;}
.h5_c00068{height:59.328281px;}
.h7_c00068{height:59.357813px;}
.h1_c00068{height:64.546875px;}
.ha_c00068{height:70.628906px;}
.hd_c00068{height:70.664062px;}
.he_c00068{height:79.758281px;}
.h9_c00068{height:86.760000px;}
.h6_c00068{height:130.320000px;}
.h4_c00068{height:156.270000px;}
.h8_c00068{height:156.315000px;}
.hb_c00068{height:1187.995500px;}
.h0_c00068{height:1188.000000px;}
.w1_c00068{width:8.265000px;}
.w6_c00068{width:168.840000px;}
.w5_c00068{width:168.870000px;}
.w3_c00068{width:168.885000px;}
.w4_c00068{width:169.275000px;}
.w2_c00068{width:663.345000px;}
.w7_c00068{width:917.997000px;}
.w0_c00068{width:918.000000px;}
.x0_c00068{left:0.000000px;}
.x5_c00068{left:7.546500px;}
.x4_c00068{left:119.929500px;}
.x3_c00068{left:127.489500px;}
.x10_c00068{left:137.556000px;}
.x11_c00068{left:142.596000px;}
.x1_c00068{left:154.515000px;}
.x9_c00068{left:178.635000px;}
.x6_c00068{left:289.545000px;}
.xc_c00068{left:305.022000px;}
.xa_c00068{left:316.902000px;}
.xb_c00068{left:329.145000px;}
.xf_c00068{left:343.590000px;}
.x7_c00068{left:459.540000px;}
.x8_c00068{left:629.550000px;}
.xd_c00068{left:678.852000px;}
.xe_c00068{left:691.095000px;}
.x2_c00068{left:782.565000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.v1_c00068{vertical-align:29.440000pt;}
.ls10_c00068{letter-spacing:-1.264000pt;}
.lsf_c00068{letter-spacing:-0.848000pt;}
.ls9_c00068{letter-spacing:-0.640000pt;}
.lsc_c00068{letter-spacing:-0.473600pt;}
.lsa_c00068{letter-spacing:-0.414933pt;}
.lsd_c00068{letter-spacing:-0.268800pt;}
.ls6_c00068{letter-spacing:0.000000pt;}
.ls7_c00068{letter-spacing:0.018133pt;}
.lsb_c00068{letter-spacing:0.148267pt;}
.lse_c00068{letter-spacing:0.278933pt;}
.ls0_c00068{letter-spacing:0.640000pt;}
.ls1_c00068{letter-spacing:0.657920pt;}
.ls2_c00068{letter-spacing:0.660480pt;}
.ls8_c00068{letter-spacing:1.280000pt;}
.ls3_c00068{letter-spacing:3.200000pt;}
.ls4_c00068{letter-spacing:4.480000pt;}
.ls5_c00068{letter-spacing:5.888000pt;}
.ws2_c00068{word-spacing:-53.760000pt;}
.ws7_c00068{word-spacing:-13.718933pt;}
.ws4_c00068{word-spacing:-13.588267pt;}
.ws1_c00068{word-spacing:-13.458133pt;}
.ws0_c00068{word-spacing:-13.440000pt;}
.ws6_c00068{word-spacing:-13.171200pt;}
.ws3_c00068{word-spacing:-13.025067pt;}
.ws5_c00068{word-spacing:-12.966400pt;}
.ws8_c00068{word-spacing:-12.592000pt;}
.ws9_c00068{word-spacing:-12.176000pt;}
.wsa_c00068{word-spacing:0.000000pt;}
._8_c00068{margin-left:-3.278930pt;}
._2_c00068{margin-left:-2.150400pt;}
._0_c00068{margin-left:-1.236265pt;}
._1_c00068{width:0.913597pt;}
._5_c00068{width:2.396787pt;}
._c_c00068{width:3.333873pt;}
._d_c00068{width:4.730665pt;}
._e_c00068{width:6.044285pt;}
._b_c00068{width:9.979738pt;}
._9_c00068{width:11.118403pt;}
._a_c00068{width:12.960527pt;}
._f_c00068{width:16.277855pt;}
._7_c00068{width:17.265608pt;}
._10_c00068{width:18.382640pt;}
._4_c00068{width:32.806400pt;}
._6_c00068{width:33.797353pt;}
._3_c00068{width:165.898688pt;}
.fs3_c00068{font-size:34.560000pt;}
.fs2_c00068{font-size:42.240000pt;}
.fs1_c00068{font-size:53.760000pt;}
.fs0_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y6_c00068{bottom:4.156000pt;}
.y3_c00068{bottom:4.160000pt;}
.y18_c00068{bottom:11.506667pt;}
.y10_c00068{bottom:11.520000pt;}
.y22_c00068{bottom:11.546667pt;}
.y5_c00068{bottom:22.396000pt;}
.y17_c00068{bottom:26.866667pt;}
.yf_c00068{bottom:26.880000pt;}
.y21_c00068{bottom:26.906667pt;}
.y4_c00068{bottom:29.156000pt;}
.y24_c00068{bottom:34.560000pt;}
.y26_c00068{bottom:41.920000pt;}
.y16_c00068{bottom:42.226667pt;}
.ye_c00068{bottom:42.240000pt;}
.y20_c00068{bottom:42.266667pt;}
.y1_c00068{bottom:51.552000pt;}
.y12_c00068{bottom:53.746667pt;}
.y25_c00068{bottom:57.280000pt;}
.yd_c00068{bottom:57.600000pt;}
.y1f_c00068{bottom:57.626667pt;}
.y15_c00068{bottom:64.946667pt;}
.y8_c00068{bottom:65.280000pt;}
.y1a_c00068{bottom:65.306667pt;}
.yc_c00068{bottom:72.960000pt;}
.y1e_c00068{bottom:72.986667pt;}
.y14_c00068{bottom:80.626667pt;}
.y1d_c00068{bottom:88.346667pt;}
.yb_c00068{bottom:88.360000pt;}
.y13_c00068{bottom:96.013333pt;}
.y3d_c00068{bottom:98.272000pt;}
.y1c_c00068{bottom:103.706667pt;}
.ya_c00068{bottom:103.720000pt;}
.y3c_c00068{bottom:116.192000pt;}
.y9_c00068{bottom:119.080000pt;}
.y1b_c00068{bottom:119.106667pt;}
.y3b_c00068{bottom:131.552000pt;}
.y3a_c00068{bottom:146.626667pt;}
.y39_c00068{bottom:161.986667pt;}
.y38_c00068{bottom:177.346667pt;}
.y37_c00068{bottom:192.706667pt;}
.y36_c00068{bottom:198.786667pt;}
.y35_c00068{bottom:208.066667pt;}
.y34_c00068{bottom:223.426667pt;}
.y33_c00068{bottom:238.786667pt;}
.y32_c00068{bottom:254.173333pt;}
.y31_c00068{bottom:269.533333pt;}
.y30_c00068{bottom:284.893333pt;}
.y2f_c00068{bottom:300.253333pt;}
.y2e_c00068{bottom:306.333333pt;}
.y2d_c00068{bottom:315.933333pt;}
.y2b_c00068{bottom:374.213333pt;}
.y2c_c00068{bottom:381.573333pt;}
.y29_c00068{bottom:401.733333pt;}
.y2a_c00068{bottom:409.093333pt;}
.y28_c00068{bottom:429.253333pt;}
.y27_c00068{bottom:465.120000pt;}
.y23_c00068{bottom:488.160000pt;}
.y19_c00068{bottom:565.920000pt;}
.y11_c00068{bottom:705.520000pt;}
.y7_c00068{bottom:822.013333pt;}
.y2_c00068{bottom:989.413333pt;}
.h2_c00068{height:18.586667pt;}
.hf_c00068{height:33.918750pt;}
.h3_c00068{height:36.796000pt;}
.hc_c00068{height:41.456250pt;}
.h5_c00068{height:52.736250pt;}
.h7_c00068{height:52.762500pt;}
.h1_c00068{height:57.375000pt;}
.ha_c00068{height:62.781250pt;}
.hd_c00068{height:62.812500pt;}
.he_c00068{height:70.896250pt;}
.h9_c00068{height:77.120000pt;}
.h6_c00068{height:115.840000pt;}
.h4_c00068{height:138.906667pt;}
.h8_c00068{height:138.946667pt;}
.hb_c00068{height:1055.996000pt;}
.h0_c00068{height:1056.000000pt;}
.w1_c00068{width:7.346667pt;}
.w6_c00068{width:150.080000pt;}
.w5_c00068{width:150.106667pt;}
.w3_c00068{width:150.120000pt;}
.w4_c00068{width:150.466667pt;}
.w2_c00068{width:589.640000pt;}
.w7_c00068{width:815.997333pt;}
.w0_c00068{width:816.000000pt;}
.x0_c00068{left:0.000000pt;}
.x5_c00068{left:6.708000pt;}
.x4_c00068{left:106.604000pt;}
.x3_c00068{left:113.324000pt;}
.x10_c00068{left:122.272000pt;}
.x11_c00068{left:126.752000pt;}
.x1_c00068{left:137.346667pt;}
.x9_c00068{left:158.786667pt;}
.x6_c00068{left:257.373333pt;}
.xc_c00068{left:271.130667pt;}
.xa_c00068{left:281.690667pt;}
.xb_c00068{left:292.573333pt;}
.xf_c00068{left:305.413333pt;}
.x7_c00068{left:408.480000pt;}
.x8_c00068{left:559.600000pt;}
.xd_c00068{left:603.424000pt;}
.xe_c00068{left:614.306667pt;}
.x2_c00068{left:695.613333pt;}
}





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

.ir_c00069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00069;src:url('chunks/assets/font_fc57f04dccbc5d1d1d8f0104.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_06cf55c2a4267654bda2325b.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_9a0f7ddab664c553be557313.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_41213cf787b4b066c0547e49.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;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_c00069;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00069;src:url('chunks/assets/font_e6767f366047fbe9719c9c04.woff2')format("woff");}.ff6_c00069{font-family:ff6_c00069;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls1_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:0.720000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00069{word-spacing:-18.000000px;}
.ws0_c00069{word-spacing:-15.120000px;}
.ws2_c00069{word-spacing:0.000000px;}
._5_c00069{margin-left:-3.096000px;}
._1_c00069{margin-left:-2.088000px;}
._6_c00069{margin-left:-1.008000px;}
._0_c00069{width:1.368000px;}
._2_c00069{width:2.952000px;}
._3_c00069{width:4.032000px;}
._4_c00069{width:5.256000px;}
._f_c00069{width:7.026720px;}
._11_c00069{width:8.075879px;}
._10_c00069{width:9.593401px;}
._e_c00069{width:10.756800px;}
._7_c00069{width:11.880000px;}
._8_c00069{width:13.032000px;}
._a_c00069{width:14.328000px;}
._9_c00069{width:15.624000px;}
._b_c00069{width:19.080000px;}
._c_c00069{width:22.072199px;}
._d_c00069{width:23.164812px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs3_c00069{font-size:38.880000px;}
.fs1_c00069{font-size:47.520000px;}
.fs2_c00069{font-size:60.480000px;}
.fs0_c00069{font-size:72.000000px;}
.y0_c00069{bottom:0.000000px;}
.y6_c00069{bottom:4.675500px;}
.y3_c00069{bottom:4.680000px;}
.y5_c00069{bottom:25.195500px;}
.y4_c00069{bottom:32.800500px;}
.y1_c00069{bottom:57.996000px;}
.y31_c00069{bottom:130.716000px;}
.y30_c00069{bottom:147.996000px;}
.y2f_c00069{bottom:164.955000px;}
.y2e_c00069{bottom:182.235000px;}
.y2d_c00069{bottom:189.075000px;}
.y2c_c00069{bottom:199.515000px;}
.y2b_c00069{bottom:216.795000px;}
.y2a_c00069{bottom:234.075000px;}
.y29_c00069{bottom:251.355000px;}
.y28_c00069{bottom:268.635000px;}
.y27_c00069{bottom:285.945000px;}
.y26_c00069{bottom:292.785000px;}
.y25_c00069{bottom:307.545000px;}
.y24_c00069{bottom:324.825000px;}
.y23_c00069{bottom:331.665000px;}
.y22_c00069{bottom:342.105000px;}
.y21_c00069{bottom:359.385000px;}
.y20_c00069{bottom:377.025000px;}
.y1f_c00069{bottom:408.390000px;}
.y1e_c00069{bottom:439.350000px;}
.y1d_c00069{bottom:470.310000px;}
.y1c_c00069{bottom:501.630000px;}
.y1a_c00069{bottom:541.620000px;}
.y1b_c00069{bottom:549.900000px;}
.y18_c00069{bottom:572.580000px;}
.y19_c00069{bottom:580.860000px;}
.y17_c00069{bottom:603.540000px;}
.y16_c00069{bottom:641.370000px;}
.y15_c00069{bottom:667.290000px;}
.y14_c00069{bottom:693.210000px;}
.y13_c00069{bottom:719.130000px;}
.y12_c00069{bottom:745.050000px;}
.y11_c00069{bottom:771.015000px;}
.yf_c00069{bottom:808.095000px;}
.y10_c00069{bottom:816.375000px;}
.ye_c00069{bottom:839.055000px;}
.yd_c00069{bottom:870.015000px;}
.yc_c00069{bottom:901.365000px;}
.yb_c00069{bottom:932.325000px;}
.ya_c00069{bottom:963.285000px;}
.y9_c00069{bottom:1003.245000px;}
.y8_c00069{bottom:1034.610000px;}
.y7_c00069{bottom:1065.570000px;}
.y2_c00069{bottom:1113.090000px;}
.h2_c00069{height:20.910000px;}
.h9_c00069{height:34.855313px;}
.hb_c00069{height:38.158594px;}
.h3_c00069{height:41.395500px;}
.h6_c00069{height:46.638281px;}
.h8_c00069{height:54.219375px;}
.ha_c00069{height:54.514688px;}
.h7_c00069{height:59.357813px;}
.h1_c00069{height:64.546875px;}
.h4_c00069{height:70.664062px;}
.h5_c00069{height:1187.995500px;}
.h0_c00069{height:1188.000000px;}
.w1_c00069{width:8.265000px;}
.w2_c00069{width:663.345000px;}
.w3_c00069{width:917.997000px;}
.w0_c00069{width:918.000000px;}
.x0_c00069{left:0.000000px;}
.x3_c00069{left:127.489500px;}
.xc_c00069{left:137.556000px;}
.x1_c00069{left:154.515000px;}
.x4_c00069{left:169.995000px;}
.x7_c00069{left:340.347000px;}
.x8_c00069{left:352.590000px;}
.x9_c00069{left:366.627000px;}
.xa_c00069{left:378.870000px;}
.x5_c00069{left:652.932000px;}
.x6_c00069{left:665.175000px;}
.x2_c00069{left:782.565000px;}
.xb_c00069{left:790.485000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls1_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:0.640000pt;}
.ws1_c00069{word-spacing:-16.000000pt;}
.ws0_c00069{word-spacing:-13.440000pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._5_c00069{margin-left:-2.752000pt;}
._1_c00069{margin-left:-1.856000pt;}
._6_c00069{margin-left:-0.896000pt;}
._0_c00069{width:1.216000pt;}
._2_c00069{width:2.624000pt;}
._3_c00069{width:3.584000pt;}
._4_c00069{width:4.672000pt;}
._f_c00069{width:6.245973pt;}
._11_c00069{width:7.178559pt;}
._10_c00069{width:8.527468pt;}
._e_c00069{width:9.561600pt;}
._7_c00069{width:10.560000pt;}
._8_c00069{width:11.584000pt;}
._a_c00069{width:12.736000pt;}
._9_c00069{width:13.888000pt;}
._b_c00069{width:16.960000pt;}
._c_c00069{width:19.619732pt;}
._d_c00069{width:20.590944pt;}
.fs3_c00069{font-size:34.560000pt;}
.fs1_c00069{font-size:42.240000pt;}
.fs2_c00069{font-size:53.760000pt;}
.fs0_c00069{font-size:64.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y6_c00069{bottom:4.156000pt;}
.y3_c00069{bottom:4.160000pt;}
.y5_c00069{bottom:22.396000pt;}
.y4_c00069{bottom:29.156000pt;}
.y1_c00069{bottom:51.552000pt;}
.y31_c00069{bottom:116.192000pt;}
.y30_c00069{bottom:131.552000pt;}
.y2f_c00069{bottom:146.626667pt;}
.y2e_c00069{bottom:161.986667pt;}
.y2d_c00069{bottom:168.066667pt;}
.y2c_c00069{bottom:177.346667pt;}
.y2b_c00069{bottom:192.706667pt;}
.y2a_c00069{bottom:208.066667pt;}
.y29_c00069{bottom:223.426667pt;}
.y28_c00069{bottom:238.786667pt;}
.y27_c00069{bottom:254.173333pt;}
.y26_c00069{bottom:260.253333pt;}
.y25_c00069{bottom:273.373333pt;}
.y24_c00069{bottom:288.733333pt;}
.y23_c00069{bottom:294.813333pt;}
.y22_c00069{bottom:304.093333pt;}
.y21_c00069{bottom:319.453333pt;}
.y20_c00069{bottom:335.133333pt;}
.y1f_c00069{bottom:363.013333pt;}
.y1e_c00069{bottom:390.533333pt;}
.y1d_c00069{bottom:418.053333pt;}
.y1c_c00069{bottom:445.893333pt;}
.y1a_c00069{bottom:481.440000pt;}
.y1b_c00069{bottom:488.800000pt;}
.y18_c00069{bottom:508.960000pt;}
.y19_c00069{bottom:516.320000pt;}
.y17_c00069{bottom:536.480000pt;}
.y16_c00069{bottom:570.106667pt;}
.y15_c00069{bottom:593.146667pt;}
.y14_c00069{bottom:616.186667pt;}
.y13_c00069{bottom:639.226667pt;}
.y12_c00069{bottom:662.266667pt;}
.y11_c00069{bottom:685.346667pt;}
.yf_c00069{bottom:718.306667pt;}
.y10_c00069{bottom:725.666667pt;}
.ye_c00069{bottom:745.826667pt;}
.yd_c00069{bottom:773.346667pt;}
.yc_c00069{bottom:801.213333pt;}
.yb_c00069{bottom:828.733333pt;}
.ya_c00069{bottom:856.253333pt;}
.y9_c00069{bottom:891.773333pt;}
.y8_c00069{bottom:919.653333pt;}
.y7_c00069{bottom:947.173333pt;}
.y2_c00069{bottom:989.413333pt;}
.h2_c00069{height:18.586667pt;}
.h9_c00069{height:30.982500pt;}
.hb_c00069{height:33.918750pt;}
.h3_c00069{height:36.796000pt;}
.h6_c00069{height:41.456250pt;}
.h8_c00069{height:48.195000pt;}
.ha_c00069{height:48.457500pt;}
.h7_c00069{height:52.762500pt;}
.h1_c00069{height:57.375000pt;}
.h4_c00069{height:62.812500pt;}
.h5_c00069{height:1055.996000pt;}
.h0_c00069{height:1056.000000pt;}
.w1_c00069{width:7.346667pt;}
.w2_c00069{width:589.640000pt;}
.w3_c00069{width:815.997333pt;}
.w0_c00069{width:816.000000pt;}
.x0_c00069{left:0.000000pt;}
.x3_c00069{left:113.324000pt;}
.xc_c00069{left:122.272000pt;}
.x1_c00069{left:137.346667pt;}
.x4_c00069{left:151.106667pt;}
.x7_c00069{left:302.530667pt;}
.x8_c00069{left:313.413333pt;}
.x9_c00069{left:325.890667pt;}
.xa_c00069{left:336.773333pt;}
.x5_c00069{left:580.384000pt;}
.x6_c00069{left:591.266667pt;}
.x2_c00069{left:695.613333pt;}
.xb_c00069{left:702.653333pt;}
}





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

.ir_c00070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00070;src:url('chunks/assets/font_abe7a56617157a0de3211ab9.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00070;src:url('chunks/assets/font_06d36f32f4a5ca41de2445be.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_4437bda8c891c5c0928ec829.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;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_c00070;src:url('chunks/assets/font_e25a21bcb4c2af9d8ab6a8c1.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_91496e184119114a51962b3e.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00070;src:url('chunks/assets/font_b4c74d1c5b0f25754a8a322c.woff2')format("woff");}.ff6_c00070{font-family:ff6_c00070;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls7_c00070{letter-spacing:-2.880000px;}
.ls5_c00070{letter-spacing:-1.728000px;}
.ls6_c00070{letter-spacing:-0.288000px;}
.ls4_c00070{letter-spacing:0.000000px;}
.ls2_c00070{letter-spacing:0.486600px;}
.ls0_c00070{letter-spacing:0.720000px;}
.ls1_c00070{letter-spacing:9.504000px;}
.ls3_c00070{letter-spacing:32.400000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:-18.000000px;}
.ws1_c00070{word-spacing:-15.120000px;}
.ws2_c00070{word-spacing:0.000000px;}
._9_c00070{margin-left:-3.636000px;}
._0_c00070{margin-left:-1.944000px;}
._1_c00070{width:1.080000px;}
._3_c00070{width:2.376000px;}
._4_c00070{width:4.320000px;}
._2_c00070{width:5.616000px;}
._c_c00070{width:6.696000px;}
._a_c00070{width:8.604000px;}
._7_c00070{width:9.792000px;}
._b_c00070{width:11.484000px;}
._5_c00070{width:12.816000px;}
._6_c00070{width:14.100000px;}
._8_c00070{width:15.492000px;}
._e_c00070{width:23.448010px;}
._d_c00070{width:24.511801px;}
._f_c00070{width:31.009198px;}
._10_c00070{width:33.100203px;}
._11_c00070{width:35.530919px;}
.fc1_c00070{color:rgb(255,0,0);}
.fc0_c00070{color:rgb(0,0,0);}
.fs3_c00070{font-size:38.880000px;}
.fs1_c00070{font-size:47.520000px;}
.fs2_c00070{font-size:60.480000px;}
.fs0_c00070{font-size:72.000000px;}
.y0_c00070{bottom:0.000000px;}
.y6_c00070{bottom:4.675500px;}
.y3_c00070{bottom:4.680000px;}
.y1a_c00070{bottom:21.240000px;}
.y1c_c00070{bottom:21.600000px;}
.y5_c00070{bottom:25.195500px;}
.y4_c00070{bottom:32.800500px;}
.y1_c00070{bottom:57.996000px;}
.y2f_c00070{bottom:130.716000px;}
.y2e_c00070{bottom:147.996000px;}
.y2d_c00070{bottom:164.955000px;}
.y2c_c00070{bottom:182.235000px;}
.y2b_c00070{bottom:199.515000px;}
.y2a_c00070{bottom:206.355000px;}
.y29_c00070{bottom:216.795000px;}
.y28_c00070{bottom:234.075000px;}
.y27_c00070{bottom:251.355000px;}
.y26_c00070{bottom:258.195000px;}
.y25_c00070{bottom:268.635000px;}
.y24_c00070{bottom:285.945000px;}
.y23_c00070{bottom:303.225000px;}
.y22_c00070{bottom:320.505000px;}
.y21_c00070{bottom:337.785000px;}
.y20_c00070{bottom:354.705000px;}
.y1f_c00070{bottom:361.545000px;}
.y1e_c00070{bottom:372.705000px;}
.y1d_c00070{bottom:434.670000px;}
.y1b_c00070{bottom:480.030000px;}
.y19_c00070{bottom:525.420000px;}
.y18_c00070{bottom:594.540000px;}
.y17_c00070{bottom:634.860000px;}
.y15_c00070{bottom:665.850000px;}
.y16_c00070{bottom:674.130000px;}
.y14_c00070{bottom:696.810000px;}
.y13_c00070{bottom:727.770000px;}
.y12_c00070{bottom:759.090000px;}
.y11_c00070{bottom:799.095000px;}
.yf_c00070{bottom:830.055000px;}
.y10_c00070{bottom:838.335000px;}
.yd_c00070{bottom:861.015000px;}
.ye_c00070{bottom:869.295000px;}
.yc_c00070{bottom:892.365000px;}
.yb_c00070{bottom:923.325000px;}
.ya_c00070{bottom:963.285000px;}
.y9_c00070{bottom:1003.245000px;}
.y8_c00070{bottom:1034.610000px;}
.y7_c00070{bottom:1065.570000px;}
.y2_c00070{bottom:1113.090000px;}
.h2_c00070{height:20.910000px;}
.he_c00070{height:34.855313px;}
.h11_c00070{height:38.158594px;}
.h3_c00070{height:41.395500px;}
.hd_c00070{height:43.905000px;}
.h9_c00070{height:43.920000px;}
.hb_c00070{height:43.950000px;}
.h7_c00070{height:46.615078px;}
.h8_c00070{height:46.638281px;}
.h10_c00070{height:54.219375px;}
.hf_c00070{height:54.514688px;}
.hc_c00070{height:59.328281px;}
.h12_c00070{height:59.357813px;}
.ha_c00070{height:60.952500px;}
.h1_c00070{height:64.546875px;}
.h5_c00070{height:70.628906px;}
.h4_c00070{height:70.664062px;}
.h6_c00070{height:1187.995500px;}
.h0_c00070{height:1188.000000px;}
.w1_c00070{width:8.265000px;}
.w5_c00070{width:330.930000px;}
.w4_c00070{width:330.975000px;}
.w2_c00070{width:663.345000px;}
.w3_c00070{width:917.997000px;}
.w0_c00070{width:918.000000px;}
.x0_c00070{left:0.000000px;}
.x3_c00070{left:127.489500px;}
.xf_c00070{left:137.556000px;}
.xc_c00070{left:141.175500px;}
.x1_c00070{left:154.515000px;}
.x5_c00070{left:178.635000px;}
.x4_c00070{left:180.795000px;}
.x8_c00070{left:267.222000px;}
.x9_c00070{left:279.465000px;}
.xe_c00070{left:343.590000px;}
.xa_c00070{left:403.707000px;}
.xb_c00070{left:415.950000px;}
.xd_c00070{left:459.900000px;}
.x6_c00070{left:674.172000px;}
.x7_c00070{left:686.415000px;}
.x2_c00070{left:782.565000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls7_c00070{letter-spacing:-2.560000pt;}
.ls5_c00070{letter-spacing:-1.536000pt;}
.ls6_c00070{letter-spacing:-0.256000pt;}
.ls4_c00070{letter-spacing:0.000000pt;}
.ls2_c00070{letter-spacing:0.432533pt;}
.ls0_c00070{letter-spacing:0.640000pt;}
.ls1_c00070{letter-spacing:8.448000pt;}
.ls3_c00070{letter-spacing:28.800000pt;}
.ws0_c00070{word-spacing:-16.000000pt;}
.ws1_c00070{word-spacing:-13.440000pt;}
.ws2_c00070{word-spacing:0.000000pt;}
._9_c00070{margin-left:-3.232000pt;}
._0_c00070{margin-left:-1.728000pt;}
._1_c00070{width:0.960000pt;}
._3_c00070{width:2.112000pt;}
._4_c00070{width:3.840000pt;}
._2_c00070{width:4.992000pt;}
._c_c00070{width:5.952000pt;}
._a_c00070{width:7.648000pt;}
._7_c00070{width:8.704000pt;}
._b_c00070{width:10.208000pt;}
._5_c00070{width:11.392000pt;}
._6_c00070{width:12.533333pt;}
._8_c00070{width:13.770667pt;}
._e_c00070{width:20.842675pt;}
._d_c00070{width:21.788268pt;}
._f_c00070{width:27.563732pt;}
._10_c00070{width:29.422403pt;}
._11_c00070{width:31.583039pt;}
.fs3_c00070{font-size:34.560000pt;}
.fs1_c00070{font-size:42.240000pt;}
.fs2_c00070{font-size:53.760000pt;}
.fs0_c00070{font-size:64.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.y6_c00070{bottom:4.156000pt;}
.y3_c00070{bottom:4.160000pt;}
.y1a_c00070{bottom:18.880000pt;}
.y1c_c00070{bottom:19.200000pt;}
.y5_c00070{bottom:22.396000pt;}
.y4_c00070{bottom:29.156000pt;}
.y1_c00070{bottom:51.552000pt;}
.y2f_c00070{bottom:116.192000pt;}
.y2e_c00070{bottom:131.552000pt;}
.y2d_c00070{bottom:146.626667pt;}
.y2c_c00070{bottom:161.986667pt;}
.y2b_c00070{bottom:177.346667pt;}
.y2a_c00070{bottom:183.426667pt;}
.y29_c00070{bottom:192.706667pt;}
.y28_c00070{bottom:208.066667pt;}
.y27_c00070{bottom:223.426667pt;}
.y26_c00070{bottom:229.506667pt;}
.y25_c00070{bottom:238.786667pt;}
.y24_c00070{bottom:254.173333pt;}
.y23_c00070{bottom:269.533333pt;}
.y22_c00070{bottom:284.893333pt;}
.y21_c00070{bottom:300.253333pt;}
.y20_c00070{bottom:315.293333pt;}
.y1f_c00070{bottom:321.373333pt;}
.y1e_c00070{bottom:331.293333pt;}
.y1d_c00070{bottom:386.373333pt;}
.y1b_c00070{bottom:426.693333pt;}
.y19_c00070{bottom:467.040000pt;}
.y18_c00070{bottom:528.480000pt;}
.y17_c00070{bottom:564.320000pt;}
.y15_c00070{bottom:591.866667pt;}
.y16_c00070{bottom:599.226667pt;}
.y14_c00070{bottom:619.386667pt;}
.y13_c00070{bottom:646.906667pt;}
.y12_c00070{bottom:674.746667pt;}
.y11_c00070{bottom:710.306667pt;}
.yf_c00070{bottom:737.826667pt;}
.y10_c00070{bottom:745.186667pt;}
.yd_c00070{bottom:765.346667pt;}
.ye_c00070{bottom:772.706667pt;}
.yc_c00070{bottom:793.213333pt;}
.yb_c00070{bottom:820.733333pt;}
.ya_c00070{bottom:856.253333pt;}
.y9_c00070{bottom:891.773333pt;}
.y8_c00070{bottom:919.653333pt;}
.y7_c00070{bottom:947.173333pt;}
.y2_c00070{bottom:989.413333pt;}
.h2_c00070{height:18.586667pt;}
.he_c00070{height:30.982500pt;}
.h11_c00070{height:33.918750pt;}
.h3_c00070{height:36.796000pt;}
.hd_c00070{height:39.026667pt;}
.h9_c00070{height:39.040000pt;}
.hb_c00070{height:39.066667pt;}
.h7_c00070{height:41.435625pt;}
.h8_c00070{height:41.456250pt;}
.h10_c00070{height:48.195000pt;}
.hf_c00070{height:48.457500pt;}
.hc_c00070{height:52.736250pt;}
.h12_c00070{height:52.762500pt;}
.ha_c00070{height:54.180000pt;}
.h1_c00070{height:57.375000pt;}
.h5_c00070{height:62.781250pt;}
.h4_c00070{height:62.812500pt;}
.h6_c00070{height:1055.996000pt;}
.h0_c00070{height:1056.000000pt;}
.w1_c00070{width:7.346667pt;}
.w5_c00070{width:294.160000pt;}
.w4_c00070{width:294.200000pt;}
.w2_c00070{width:589.640000pt;}
.w3_c00070{width:815.997333pt;}
.w0_c00070{width:816.000000pt;}
.x0_c00070{left:0.000000pt;}
.x3_c00070{left:113.324000pt;}
.xf_c00070{left:122.272000pt;}
.xc_c00070{left:125.489333pt;}
.x1_c00070{left:137.346667pt;}
.x5_c00070{left:158.786667pt;}
.x4_c00070{left:160.706667pt;}
.x8_c00070{left:237.530667pt;}
.x9_c00070{left:248.413333pt;}
.xe_c00070{left:305.413333pt;}
.xa_c00070{left:358.850667pt;}
.xb_c00070{left:369.733333pt;}
.xd_c00070{left:408.800000pt;}
.x6_c00070{left:599.264000pt;}
.x7_c00070{left:610.146667pt;}
.x2_c00070{left:695.613333pt;}
}





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

.ir_c00071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00071;src:url('chunks/assets/font_889a5c9f6fcf23e49b8e4b21.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_f52b609eb5025c7405641785.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_85cc0b82c170aa2a0e8d7b60.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00071;src:url('chunks/assets/font_d9f254dc69f6a020efd413fc.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00071;src:url('chunks/assets/font_ffb396cb424fd109b6b0b84f.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00071;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00071{font-family:ff6_c00071;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.lsd_c00071{letter-spacing:-1.272000px;}
.lsb_c00071{letter-spacing:-0.804000px;}
.lsf_c00071{letter-spacing:-0.544200px;}
.ls8_c00071{letter-spacing:0.000000px;}
.ls3_c00071{letter-spacing:0.048960px;}
.lse_c00071{letter-spacing:0.166800px;}
.lsa_c00071{letter-spacing:0.507000px;}
.lsc_c00071{letter-spacing:0.521400px;}
.ls6_c00071{letter-spacing:0.708480px;}
.ls0_c00071{letter-spacing:0.720000px;}
.ls7_c00071{letter-spacing:0.900000px;}
.ls9_c00071{letter-spacing:1.440000px;}
.ls2_c00071{letter-spacing:5.040000px;}
.ls1_c00071{letter-spacing:6.480000px;}
.ls4_c00071{letter-spacing:6.503040px;}
.ls5_c00071{letter-spacing:6.600000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00071{word-spacing:-60.480000px;}
.ws1_c00071{word-spacing:-16.560000px;}
.ws4_c00071{word-spacing:-15.641400px;}
.ws3_c00071{word-spacing:-15.627000px;}
.ws6_c00071{word-spacing:-15.286800px;}
.ws0_c00071{word-spacing:-15.120000px;}
.ws7_c00071{word-spacing:-14.575800px;}
.ws5_c00071{word-spacing:-13.848000px;}
.ws8_c00071{word-spacing:0.000000px;}
._2_c00071{margin-left:-2.732999px;}
._0_c00071{margin-left:-1.451399px;}
._1_c00071{width:1.088398px;}
._8_c00071{width:2.131805px;}
._6_c00071{width:3.217202px;}
._c_c00071{width:5.039980px;}
._b_c00071{width:6.386458px;}
._a_c00071{width:7.956593px;}
._9_c00071{width:9.252593px;}
._d_c00071{width:10.281600px;}
._e_c00071{width:11.346618px;}
._11_c00071{width:12.450557px;}
._10_c00071{width:14.079623px;}
._3_c00071{width:15.552000px;}
._f_c00071{width:16.937401px;}
._13_c00071{width:18.446400px;}
._12_c00071{width:19.519793px;}
._5_c00071{width:27.299399px;}
._4_c00071{width:28.659626px;}
._7_c00071{width:29.974758px;}
.fc0_c00071{color:rgb(0,0,0);}
.fs3_c00071{font-size:38.880000px;}
.fs2_c00071{font-size:47.520000px;}
.fs1_c00071{font-size:60.480000px;}
.fs0_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y6_c00071{bottom:4.675500px;}
.y3_c00071{bottom:4.680000px;}
.ye_c00071{bottom:21.225000px;}
.y13_c00071{bottom:21.585000px;}
.y8_c00071{bottom:21.600000px;}
.ya_c00071{bottom:21.645000px;}
.y5_c00071{bottom:25.195500px;}
.y4_c00071{bottom:32.800500px;}
.y1_c00071{bottom:57.996000px;}
.y2f_c00071{bottom:130.716000px;}
.y2e_c00071{bottom:147.996000px;}
.y2d_c00071{bottom:164.955000px;}
.y2c_c00071{bottom:182.235000px;}
.y2b_c00071{bottom:199.515000px;}
.y2a_c00071{bottom:216.795000px;}
.y29_c00071{bottom:234.075000px;}
.y28_c00071{bottom:251.355000px;}
.y27_c00071{bottom:268.635000px;}
.y26_c00071{bottom:285.945000px;}
.y25_c00071{bottom:303.225000px;}
.y24_c00071{bottom:320.505000px;}
.y23_c00071{bottom:337.785000px;}
.y22_c00071{bottom:354.705000px;}
.y21_c00071{bottom:371.985000px;}
.y20_c00071{bottom:389.265000px;}
.y1f_c00071{bottom:406.590000px;}
.y1e_c00071{bottom:423.870000px;}
.y1d_c00071{bottom:441.150000px;}
.y1c_c00071{bottom:458.430000px;}
.y1b_c00071{bottom:465.270000px;}
.y1a_c00071{bottom:476.070000px;}
.y19_c00071{bottom:513.150000px;}
.y17_c00071{bottom:544.500000px;}
.y18_c00071{bottom:552.780000px;}
.y16_c00071{bottom:575.460000px;}
.y15_c00071{bottom:606.420000px;}
.y14_c00071{bottom:646.410000px;}
.y12_c00071{bottom:673.065000px;}
.y11_c00071{bottom:718.785000px;}
.y10_c00071{bottom:764.190000px;}
.yf_c00071{bottom:809.550000px;}
.yd_c00071{bottom:854.910000px;}
.yc_c00071{bottom:900.285000px;}
.yb_c00071{bottom:945.645000px;}
.y9_c00071{bottom:991.005000px;}
.y7_c00071{bottom:1036.410000px;}
.y2_c00071{bottom:1113.090000px;}
.h2_c00071{height:20.910000px;}
.hd_c00071{height:38.158594px;}
.h3_c00071{height:41.395500px;}
.h8_c00071{height:43.545000px;}
.h7_c00071{height:43.560000px;}
.h4_c00071{height:43.905000px;}
.h6_c00071{height:43.950000px;}
.hc_c00071{height:46.638281px;}
.hf_c00071{height:54.219375px;}
.h5_c00071{height:59.328281px;}
.he_c00071{height:59.357813px;}
.h10_c00071{height:60.952500px;}
.h1_c00071{height:64.546875px;}
.h9_c00071{height:70.628906px;}
.ha_c00071{height:70.664062px;}
.hb_c00071{height:1187.995500px;}
.h0_c00071{height:1188.000000px;}
.w1_c00071{width:8.265000px;}
.w4_c00071{width:330.930000px;}
.w3_c00071{width:330.975000px;}
.w2_c00071{width:663.345000px;}
.w5_c00071{width:917.997000px;}
.w0_c00071{width:918.000000px;}
.x0_c00071{left:0.000000px;}
.x3_c00071{left:127.489500px;}
.xc_c00071{left:137.556000px;}
.x7_c00071{left:147.990000px;}
.x6_c00071{left:151.590000px;}
.x1_c00071{left:154.515000px;}
.x5_c00071{left:161.670000px;}
.x8_c00071{left:169.995000px;}
.xb_c00071{left:343.590000px;}
.x4_c00071{left:459.900000px;}
.x9_c00071{left:750.162000px;}
.xa_c00071{left:762.405000px;}
.x2_c00071{left:782.565000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.lsd_c00071{letter-spacing:-1.130667pt;}
.lsb_c00071{letter-spacing:-0.714667pt;}
.lsf_c00071{letter-spacing:-0.483733pt;}
.ls8_c00071{letter-spacing:0.000000pt;}
.ls3_c00071{letter-spacing:0.043520pt;}
.lse_c00071{letter-spacing:0.148267pt;}
.lsa_c00071{letter-spacing:0.450667pt;}
.lsc_c00071{letter-spacing:0.463467pt;}
.ls6_c00071{letter-spacing:0.629760pt;}
.ls0_c00071{letter-spacing:0.640000pt;}
.ls7_c00071{letter-spacing:0.800000pt;}
.ls9_c00071{letter-spacing:1.280000pt;}
.ls2_c00071{letter-spacing:4.480000pt;}
.ls1_c00071{letter-spacing:5.760000pt;}
.ls4_c00071{letter-spacing:5.780480pt;}
.ls5_c00071{letter-spacing:5.866667pt;}
.ws2_c00071{word-spacing:-53.760000pt;}
.ws1_c00071{word-spacing:-14.720000pt;}
.ws4_c00071{word-spacing:-13.903467pt;}
.ws3_c00071{word-spacing:-13.890667pt;}
.ws6_c00071{word-spacing:-13.588267pt;}
.ws0_c00071{word-spacing:-13.440000pt;}
.ws7_c00071{word-spacing:-12.956267pt;}
.ws5_c00071{word-spacing:-12.309333pt;}
.ws8_c00071{word-spacing:0.000000pt;}
._2_c00071{margin-left:-2.429332pt;}
._0_c00071{margin-left:-1.290132pt;}
._1_c00071{width:0.967465pt;}
._8_c00071{width:1.894938pt;}
._6_c00071{width:2.859735pt;}
._c_c00071{width:4.479982pt;}
._b_c00071{width:5.676851pt;}
._a_c00071{width:7.072527pt;}
._9_c00071{width:8.224527pt;}
._d_c00071{width:9.139200pt;}
._e_c00071{width:10.085883pt;}
._11_c00071{width:11.067162pt;}
._10_c00071{width:12.515220pt;}
._3_c00071{width:13.824000pt;}
._f_c00071{width:15.055468pt;}
._13_c00071{width:16.396800pt;}
._12_c00071{width:17.350927pt;}
._5_c00071{width:24.266132pt;}
._4_c00071{width:25.475223pt;}
._7_c00071{width:26.644229pt;}
.fs3_c00071{font-size:34.560000pt;}
.fs2_c00071{font-size:42.240000pt;}
.fs1_c00071{font-size:53.760000pt;}
.fs0_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y6_c00071{bottom:4.156000pt;}
.y3_c00071{bottom:4.160000pt;}
.ye_c00071{bottom:18.866667pt;}
.y13_c00071{bottom:19.186667pt;}
.y8_c00071{bottom:19.200000pt;}
.ya_c00071{bottom:19.240000pt;}
.y5_c00071{bottom:22.396000pt;}
.y4_c00071{bottom:29.156000pt;}
.y1_c00071{bottom:51.552000pt;}
.y2f_c00071{bottom:116.192000pt;}
.y2e_c00071{bottom:131.552000pt;}
.y2d_c00071{bottom:146.626667pt;}
.y2c_c00071{bottom:161.986667pt;}
.y2b_c00071{bottom:177.346667pt;}
.y2a_c00071{bottom:192.706667pt;}
.y29_c00071{bottom:208.066667pt;}
.y28_c00071{bottom:223.426667pt;}
.y27_c00071{bottom:238.786667pt;}
.y26_c00071{bottom:254.173333pt;}
.y25_c00071{bottom:269.533333pt;}
.y24_c00071{bottom:284.893333pt;}
.y23_c00071{bottom:300.253333pt;}
.y22_c00071{bottom:315.293333pt;}
.y21_c00071{bottom:330.653333pt;}
.y20_c00071{bottom:346.013333pt;}
.y1f_c00071{bottom:361.413333pt;}
.y1e_c00071{bottom:376.773333pt;}
.y1d_c00071{bottom:392.133333pt;}
.y1c_c00071{bottom:407.493333pt;}
.y1b_c00071{bottom:413.573333pt;}
.y1a_c00071{bottom:423.173333pt;}
.y19_c00071{bottom:456.133333pt;}
.y17_c00071{bottom:484.000000pt;}
.y18_c00071{bottom:491.360000pt;}
.y16_c00071{bottom:511.520000pt;}
.y15_c00071{bottom:539.040000pt;}
.y14_c00071{bottom:574.586667pt;}
.y12_c00071{bottom:598.280000pt;}
.y11_c00071{bottom:638.920000pt;}
.y10_c00071{bottom:679.280000pt;}
.yf_c00071{bottom:719.600000pt;}
.yd_c00071{bottom:759.920000pt;}
.yc_c00071{bottom:800.253333pt;}
.yb_c00071{bottom:840.573333pt;}
.y9_c00071{bottom:880.893333pt;}
.y7_c00071{bottom:921.253333pt;}
.y2_c00071{bottom:989.413333pt;}
.h2_c00071{height:18.586667pt;}
.hd_c00071{height:33.918750pt;}
.h3_c00071{height:36.796000pt;}
.h8_c00071{height:38.706667pt;}
.h7_c00071{height:38.720000pt;}
.h4_c00071{height:39.026667pt;}
.h6_c00071{height:39.066667pt;}
.hc_c00071{height:41.456250pt;}
.hf_c00071{height:48.195000pt;}
.h5_c00071{height:52.736250pt;}
.he_c00071{height:52.762500pt;}
.h10_c00071{height:54.180000pt;}
.h1_c00071{height:57.375000pt;}
.h9_c00071{height:62.781250pt;}
.ha_c00071{height:62.812500pt;}
.hb_c00071{height:1055.996000pt;}
.h0_c00071{height:1056.000000pt;}
.w1_c00071{width:7.346667pt;}
.w4_c00071{width:294.160000pt;}
.w3_c00071{width:294.200000pt;}
.w2_c00071{width:589.640000pt;}
.w5_c00071{width:815.997333pt;}
.w0_c00071{width:816.000000pt;}
.x0_c00071{left:0.000000pt;}
.x3_c00071{left:113.324000pt;}
.xc_c00071{left:122.272000pt;}
.x7_c00071{left:131.546667pt;}
.x6_c00071{left:134.746667pt;}
.x1_c00071{left:137.346667pt;}
.x5_c00071{left:143.706667pt;}
.x8_c00071{left:151.106667pt;}
.xb_c00071{left:305.413333pt;}
.x4_c00071{left:408.800000pt;}
.x9_c00071{left:666.810667pt;}
.xa_c00071{left:677.693333pt;}
.x2_c00071{left:695.613333pt;}
}





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

.ir_c00072:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00072;src:url('chunks/assets/font_f5f19d1e357c8fe49cf546a4.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_1ed50f3dce6a6224098c6b3b.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_8f4a5b65395bcfdf44d06626.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_c7fad3d1d1be93c343e3de98.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;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_c00072;src:url('chunks/assets/font_201494550b442d1f623fddf4.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls25_c00072{letter-spacing:-1.692000px;}
.ls28_c00072{letter-spacing:-1.656000px;}
.ls24_c00072{letter-spacing:-1.512000px;}
.ls22_c00072{letter-spacing:-1.386000px;}
.ls1f_c00072{letter-spacing:-1.296000px;}
.ls2a_c00072{letter-spacing:-0.936000px;}
.ls29_c00072{letter-spacing:-0.918000px;}
.ls27_c00072{letter-spacing:-0.720000px;}
.ls1c_c00072{letter-spacing:-0.544200px;}
.ls26_c00072{letter-spacing:-0.397200px;}
.ls1e_c00072{letter-spacing:-0.273600px;}
.ls1d_c00072{letter-spacing:-0.253200px;}
.ls20_c00072{letter-spacing:-0.219000px;}
.ls1b_c00072{letter-spacing:-0.169800px;}
.ls21_c00072{letter-spacing:-0.069000px;}
.ls19_c00072{letter-spacing:0.000000px;}
.ls1a_c00072{letter-spacing:0.022800px;}
.ls1_c00072{letter-spacing:0.048960px;}
.lsa_c00072{letter-spacing:0.126720px;}
.ls23_c00072{letter-spacing:0.147000px;}
.ls10_c00072{letter-spacing:0.181440px;}
.ls9_c00072{letter-spacing:0.184200px;}
.ls14_c00072{letter-spacing:0.305400px;}
.lse_c00072{letter-spacing:0.714000px;}
.ls17_c00072{letter-spacing:0.714012px;}
.ls3_c00072{letter-spacing:0.720000px;}
.lsf_c00072{letter-spacing:0.840000px;}
.ls16_c00072{letter-spacing:0.900000px;}
.lsd_c00072{letter-spacing:2.160000px;}
.lsc_c00072{letter-spacing:3.600000px;}
.lsb_c00072{letter-spacing:5.040000px;}
.ls4_c00072{letter-spacing:6.467133px;}
.ls6_c00072{letter-spacing:6.474413px;}
.ls5_c00072{letter-spacing:6.480000px;}
.ls11_c00072{letter-spacing:7.920000px;}
.ls18_c00072{letter-spacing:9.354012px;}
.ls2_c00072{letter-spacing:9.360000px;}
.ls0_c00072{letter-spacing:9.480000px;}
.ls13_c00072{letter-spacing:15.120000px;}
.ls12_c00072{letter-spacing:15.240000px;}
.ls15_c00072{letter-spacing:16.560000px;}
.ls8_c00072{letter-spacing:18.000000px;}
.ls7_c00072{letter-spacing:19.440000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00072{word-spacing:-18.000000px;}
.ws2_c00072{word-spacing:-15.120000px;}
.ws0_c00072{word-spacing:-14.950200px;}
.ws1_c00072{word-spacing:-14.575800px;}
.wse_c00072{word-spacing:-14.202000px;}
.wsf_c00072{word-spacing:-14.184000px;}
.ws9_c00072{word-spacing:-13.985400px;}
.ws6_c00072{word-spacing:-13.864200px;}
.ws4_c00072{word-spacing:-13.680000px;}
.wsb_c00072{word-spacing:-13.611000px;}
.ws8_c00072{word-spacing:-13.461000px;}
.wsd_c00072{word-spacing:-13.426800px;}
.ws5_c00072{word-spacing:-13.406400px;}
.wsa_c00072{word-spacing:-13.282800px;}
.ws7_c00072{word-spacing:-12.384000px;}
.wsc_c00072{word-spacing:-12.024000px;}
.ws10_c00072{word-spacing:0.000000px;}
._2_c00072{margin-left:-3.240000px;}
._0_c00072{margin-left:-1.296000px;}
._5_c00072{width:1.008000px;}
._1_c00072{width:2.088000px;}
._3_c00072{width:3.888000px;}
._6_c00072{width:5.544000px;}
._7_c00072{width:6.810650px;}
._9_c00072{width:7.947161px;}
._4_c00072{width:9.351573px;}
._a_c00072{width:15.033675px;}
._b_c00072{width:18.299301px;}
._8_c00072{width:19.581575px;}
.fc0_c00072{color:rgb(0,0,0);}
.fs2_c00072{font-size:38.880000px;}
.fs3_c00072{font-size:54.720000px;}
.fs1_c00072{font-size:60.480000px;}
.fs0_c00072{font-size:72.000000px;}
.y0_c00072{bottom:0.000000px;}
.y6_c00072{bottom:4.675500px;}
.y3_c00072{bottom:4.680000px;}
.y5_c00072{bottom:25.195500px;}
.y4_c00072{bottom:32.800500px;}
.y1_c00072{bottom:57.996000px;}
.y2e_c00072{bottom:130.716000px;}
.y2d_c00072{bottom:147.996000px;}
.y2c_c00072{bottom:164.955000px;}
.y2b_c00072{bottom:182.235000px;}
.y2a_c00072{bottom:199.515000px;}
.y29_c00072{bottom:206.355000px;}
.y28_c00072{bottom:217.515000px;}
.y27_c00072{bottom:240.555000px;}
.y26_c00072{bottom:263.955000px;}
.y25_c00072{bottom:287.385000px;}
.y24_c00072{bottom:310.425000px;}
.y23_c00072{bottom:333.825000px;}
.y22_c00072{bottom:357.225000px;}
.y21_c00072{bottom:380.265000px;}
.y20_c00072{bottom:403.710000px;}
.y1f_c00072{bottom:427.110000px;}
.y1e_c00072{bottom:450.150000px;}
.y1d_c00072{bottom:473.550000px;}
.y1c_c00072{bottom:496.950000px;}
.y1b_c00072{bottom:520.020000px;}
.y1a_c00072{bottom:543.420000px;}
.y19_c00072{bottom:566.820000px;}
.y18_c00072{bottom:589.860000px;}
.y17_c00072{bottom:613.260000px;}
.y16_c00072{bottom:636.660000px;}
.y15_c00072{bottom:659.730000px;}
.y14_c00072{bottom:683.130000px;}
.y13_c00072{bottom:706.530000px;}
.y12_c00072{bottom:738.570000px;}
.y11_c00072{bottom:774.615000px;}
.y10_c00072{bottom:805.575000px;}
.yf_c00072{bottom:836.535000px;}
.ye_c00072{bottom:867.495000px;}
.yd_c00072{bottom:898.845000px;}
.yc_c00072{bottom:929.805000px;}
.ya_c00072{bottom:967.605000px;}
.yb_c00072{bottom:974.445000px;}
.y9_c00072{bottom:993.525000px;}
.y8_c00072{bottom:1028.490000px;}
.y7_c00072{bottom:1065.570000px;}
.y2_c00072{bottom:1113.090000px;}
.h2_c00072{height:20.910000px;}
.h7_c00072{height:38.158594px;}
.h3_c00072{height:41.395500px;}
.ha_c00072{height:49.055625px;}
.h8_c00072{height:53.704687px;}
.h9_c00072{height:55.147500px;}
.h5_c00072{height:59.357813px;}
.h1_c00072{height:64.546875px;}
.h4_c00072{height:70.664062px;}
.h6_c00072{height:1187.995500px;}
.h0_c00072{height:1188.000000px;}
.w1_c00072{width:8.265000px;}
.w2_c00072{width:663.345000px;}
.w3_c00072{width:917.997000px;}
.w0_c00072{width:918.000000px;}
.x0_c00072{left:0.000000px;}
.x3_c00072{left:127.489500px;}
.x8_c00072{left:137.556000px;}
.x1_c00072{left:154.515000px;}
.x4_c00072{left:169.995000px;}
.x7_c00072{left:343.590000px;}
.x5_c00072{left:653.292000px;}
.x6_c00072{left:663.375000px;}
.x2_c00072{left:782.565000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls25_c00072{letter-spacing:-1.504000pt;}
.ls28_c00072{letter-spacing:-1.472000pt;}
.ls24_c00072{letter-spacing:-1.344000pt;}
.ls22_c00072{letter-spacing:-1.232000pt;}
.ls1f_c00072{letter-spacing:-1.152000pt;}
.ls2a_c00072{letter-spacing:-0.832000pt;}
.ls29_c00072{letter-spacing:-0.816000pt;}
.ls27_c00072{letter-spacing:-0.640000pt;}
.ls1c_c00072{letter-spacing:-0.483733pt;}
.ls26_c00072{letter-spacing:-0.353067pt;}
.ls1e_c00072{letter-spacing:-0.243200pt;}
.ls1d_c00072{letter-spacing:-0.225067pt;}
.ls20_c00072{letter-spacing:-0.194667pt;}
.ls1b_c00072{letter-spacing:-0.150933pt;}
.ls21_c00072{letter-spacing:-0.061333pt;}
.ls19_c00072{letter-spacing:0.000000pt;}
.ls1a_c00072{letter-spacing:0.020267pt;}
.ls1_c00072{letter-spacing:0.043520pt;}
.lsa_c00072{letter-spacing:0.112640pt;}
.ls23_c00072{letter-spacing:0.130667pt;}
.ls10_c00072{letter-spacing:0.161280pt;}
.ls9_c00072{letter-spacing:0.163733pt;}
.ls14_c00072{letter-spacing:0.271467pt;}
.lse_c00072{letter-spacing:0.634667pt;}
.ls17_c00072{letter-spacing:0.634678pt;}
.ls3_c00072{letter-spacing:0.640000pt;}
.lsf_c00072{letter-spacing:0.746667pt;}
.ls16_c00072{letter-spacing:0.800000pt;}
.lsd_c00072{letter-spacing:1.920000pt;}
.lsc_c00072{letter-spacing:3.200000pt;}
.lsb_c00072{letter-spacing:4.480000pt;}
.ls4_c00072{letter-spacing:5.748563pt;}
.ls6_c00072{letter-spacing:5.755034pt;}
.ls5_c00072{letter-spacing:5.760000pt;}
.ls11_c00072{letter-spacing:7.040000pt;}
.ls18_c00072{letter-spacing:8.314678pt;}
.ls2_c00072{letter-spacing:8.320000pt;}
.ls0_c00072{letter-spacing:8.426667pt;}
.ls13_c00072{letter-spacing:13.440000pt;}
.ls12_c00072{letter-spacing:13.546667pt;}
.ls15_c00072{letter-spacing:14.720000pt;}
.ls8_c00072{letter-spacing:16.000000pt;}
.ls7_c00072{letter-spacing:17.280000pt;}
.ws3_c00072{word-spacing:-16.000000pt;}
.ws2_c00072{word-spacing:-13.440000pt;}
.ws0_c00072{word-spacing:-13.289067pt;}
.ws1_c00072{word-spacing:-12.956267pt;}
.wse_c00072{word-spacing:-12.624000pt;}
.wsf_c00072{word-spacing:-12.608000pt;}
.ws9_c00072{word-spacing:-12.431467pt;}
.ws6_c00072{word-spacing:-12.323733pt;}
.ws4_c00072{word-spacing:-12.160000pt;}
.wsb_c00072{word-spacing:-12.098667pt;}
.ws8_c00072{word-spacing:-11.965333pt;}
.wsd_c00072{word-spacing:-11.934933pt;}
.ws5_c00072{word-spacing:-11.916800pt;}
.wsa_c00072{word-spacing:-11.806933pt;}
.ws7_c00072{word-spacing:-11.008000pt;}
.wsc_c00072{word-spacing:-10.688000pt;}
.ws10_c00072{word-spacing:0.000000pt;}
._2_c00072{margin-left:-2.880000pt;}
._0_c00072{margin-left:-1.152000pt;}
._5_c00072{width:0.896000pt;}
._1_c00072{width:1.856000pt;}
._3_c00072{width:3.456000pt;}
._6_c00072{width:4.928000pt;}
._7_c00072{width:6.053911pt;}
._9_c00072{width:7.064143pt;}
._4_c00072{width:8.312509pt;}
._a_c00072{width:13.363267pt;}
._b_c00072{width:16.266045pt;}
._8_c00072{width:17.405844pt;}
.fs2_c00072{font-size:34.560000pt;}
.fs3_c00072{font-size:48.640000pt;}
.fs1_c00072{font-size:53.760000pt;}
.fs0_c00072{font-size:64.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.y6_c00072{bottom:4.156000pt;}
.y3_c00072{bottom:4.160000pt;}
.y5_c00072{bottom:22.396000pt;}
.y4_c00072{bottom:29.156000pt;}
.y1_c00072{bottom:51.552000pt;}
.y2e_c00072{bottom:116.192000pt;}
.y2d_c00072{bottom:131.552000pt;}
.y2c_c00072{bottom:146.626667pt;}
.y2b_c00072{bottom:161.986667pt;}
.y2a_c00072{bottom:177.346667pt;}
.y29_c00072{bottom:183.426667pt;}
.y28_c00072{bottom:193.346667pt;}
.y27_c00072{bottom:213.826667pt;}
.y26_c00072{bottom:234.626667pt;}
.y25_c00072{bottom:255.453333pt;}
.y24_c00072{bottom:275.933333pt;}
.y23_c00072{bottom:296.733333pt;}
.y22_c00072{bottom:317.533333pt;}
.y21_c00072{bottom:338.013333pt;}
.y20_c00072{bottom:358.853333pt;}
.y1f_c00072{bottom:379.653333pt;}
.y1e_c00072{bottom:400.133333pt;}
.y1d_c00072{bottom:420.933333pt;}
.y1c_c00072{bottom:441.733333pt;}
.y1b_c00072{bottom:462.240000pt;}
.y1a_c00072{bottom:483.040000pt;}
.y19_c00072{bottom:503.840000pt;}
.y18_c00072{bottom:524.320000pt;}
.y17_c00072{bottom:545.120000pt;}
.y16_c00072{bottom:565.920000pt;}
.y15_c00072{bottom:586.426667pt;}
.y14_c00072{bottom:607.226667pt;}
.y13_c00072{bottom:628.026667pt;}
.y12_c00072{bottom:656.506667pt;}
.y11_c00072{bottom:688.546667pt;}
.y10_c00072{bottom:716.066667pt;}
.yf_c00072{bottom:743.586667pt;}
.ye_c00072{bottom:771.106667pt;}
.yd_c00072{bottom:798.973333pt;}
.yc_c00072{bottom:826.493333pt;}
.ya_c00072{bottom:860.093333pt;}
.yb_c00072{bottom:866.173333pt;}
.y9_c00072{bottom:883.133333pt;}
.y8_c00072{bottom:914.213333pt;}
.y7_c00072{bottom:947.173333pt;}
.y2_c00072{bottom:989.413333pt;}
.h2_c00072{height:18.586667pt;}
.h7_c00072{height:33.918750pt;}
.h3_c00072{height:36.796000pt;}
.ha_c00072{height:43.605000pt;}
.h8_c00072{height:47.737500pt;}
.h9_c00072{height:49.020000pt;}
.h5_c00072{height:52.762500pt;}
.h1_c00072{height:57.375000pt;}
.h4_c00072{height:62.812500pt;}
.h6_c00072{height:1055.996000pt;}
.h0_c00072{height:1056.000000pt;}
.w1_c00072{width:7.346667pt;}
.w2_c00072{width:589.640000pt;}
.w3_c00072{width:815.997333pt;}
.w0_c00072{width:816.000000pt;}
.x0_c00072{left:0.000000pt;}
.x3_c00072{left:113.324000pt;}
.x8_c00072{left:122.272000pt;}
.x1_c00072{left:137.346667pt;}
.x4_c00072{left:151.106667pt;}
.x7_c00072{left:305.413333pt;}
.x5_c00072{left:580.704000pt;}
.x6_c00072{left:589.666667pt;}
.x2_c00072{left:695.613333pt;}
}





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

.ir_c00073:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00073;src:url('chunks/assets/font_38365768d86dd11013004aef.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_0dcf4ceeddc4fa0f4aa5c51d.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_7b1d2df73d97cec26ec195e1.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00073;src:url('chunks/assets/font_5c2f875d0c8df3633eb9637f.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;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_c00073;src:url('chunks/assets/font_fdb00044d9468fc59a5e13af.woff2')format("woff");}.ff6_c00073{font-family:ff6_c00073;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.lsf_c00073{letter-spacing:-1.692000px;}
.lse_c00073{letter-spacing:-1.656000px;}
.lsc_c00073{letter-spacing:-1.512000px;}
.lsb_c00073{letter-spacing:-0.397200px;}
.lsd_c00073{letter-spacing:-0.253200px;}
.lsa_c00073{letter-spacing:-0.219000px;}
.ls10_c00073{letter-spacing:-0.069000px;}
.ls9_c00073{letter-spacing:0.000000px;}
.ls1_c00073{letter-spacing:0.273600px;}
.ls8_c00073{letter-spacing:0.313920px;}
.ls7_c00073{letter-spacing:0.720000px;}
.ls6_c00073{letter-spacing:2.160000px;}
.ls4_c00073{letter-spacing:3.600000px;}
.ls5_c00073{letter-spacing:9.360000px;}
.ls2_c00073{letter-spacing:10.800000px;}
.ls0_c00073{letter-spacing:12.240000px;}
.ls3_c00073{letter-spacing:18.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00073{word-spacing:-54.720000px;}
.ws0_c00073{word-spacing:-13.680000px;}
.ws1_c00073{word-spacing:-13.461000px;}
.ws2_c00073{word-spacing:-13.282800px;}
.ws4_c00073{word-spacing:0.000000px;}
._7_c00073{margin-left:-2.350224px;}
._0_c00073{margin-left:-1.255769px;}
._3_c00073{width:1.002027px;}
._4_c00073{width:2.289567px;}
._8_c00073{width:3.609003px;}
._b_c00073{width:4.639764px;}
._c_c00073{width:5.818784px;}
._a_c00073{width:7.111687px;}
._9_c00073{width:9.031755px;}
._2_c00073{width:10.420937px;}
._1_c00073{width:11.813939px;}
._5_c00073{width:17.643059px;}
._6_c00073{width:18.708644px;}
._d_c00073{width:19.917608px;}
.fc0_c00073{color:rgb(0,0,0);}
.fs1_c00073{font-size:54.720000px;}
.fs0_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y6_c00073{bottom:4.675500px;}
.y3_c00073{bottom:4.680000px;}
.y5_c00073{bottom:25.195500px;}
.y4_c00073{bottom:32.800500px;}
.y1_c00073{bottom:57.996000px;}
.y2f_c00073{bottom:129.276000px;}
.y2e_c00073{bottom:152.355000px;}
.y2d_c00073{bottom:175.755000px;}
.y2c_c00073{bottom:199.155000px;}
.y2b_c00073{bottom:222.195000px;}
.y2a_c00073{bottom:245.595000px;}
.y29_c00073{bottom:268.995000px;}
.y28_c00073{bottom:292.065000px;}
.y27_c00073{bottom:315.465000px;}
.y26_c00073{bottom:338.865000px;}
.y25_c00073{bottom:361.905000px;}
.y24_c00073{bottom:385.305000px;}
.y23_c00073{bottom:408.750000px;}
.y22_c00073{bottom:431.790000px;}
.y21_c00073{bottom:455.190000px;}
.y20_c00073{bottom:478.590000px;}
.y1f_c00073{bottom:501.630000px;}
.y1e_c00073{bottom:525.060000px;}
.y1d_c00073{bottom:548.460000px;}
.y1c_c00073{bottom:571.500000px;}
.y1b_c00073{bottom:594.900000px;}
.y1a_c00073{bottom:618.300000px;}
.y19_c00073{bottom:641.730000px;}
.y18_c00073{bottom:664.770000px;}
.y17_c00073{bottom:688.170000px;}
.y16_c00073{bottom:711.570000px;}
.y15_c00073{bottom:734.610000px;}
.y14_c00073{bottom:758.010000px;}
.y13_c00073{bottom:781.455000px;}
.y12_c00073{bottom:804.495000px;}
.y11_c00073{bottom:827.895000px;}
.y10_c00073{bottom:851.295000px;}
.yf_c00073{bottom:874.335000px;}
.ye_c00073{bottom:906.765000px;}
.yd_c00073{bottom:930.165000px;}
.yc_c00073{bottom:953.205000px;}
.yb_c00073{bottom:976.605000px;}
.ya_c00073{bottom:1000.005000px;}
.y9_c00073{bottom:1023.090000px;}
.y8_c00073{bottom:1046.490000px;}
.y7_c00073{bottom:1069.890000px;}
.y2_c00073{bottom:1113.090000px;}
.h2_c00073{height:20.910000px;}
.h3_c00073{height:41.395500px;}
.h6_c00073{height:53.677969px;}
.h4_c00073{height:53.704687px;}
.h5_c00073{height:55.147500px;}
.h1_c00073{height:64.546875px;}
.h0_c00073{height:1188.000000px;}
.w1_c00073{width:8.265000px;}
.w2_c00073{width:663.345000px;}
.w0_c00073{width:918.000000px;}
.x0_c00073{left:0.000000px;}
.x3_c00073{left:127.489500px;}
.x1_c00073{left:154.515000px;}
.x4_c00073{left:169.995000px;}
.x2_c00073{left:782.565000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.lsf_c00073{letter-spacing:-1.504000pt;}
.lse_c00073{letter-spacing:-1.472000pt;}
.lsc_c00073{letter-spacing:-1.344000pt;}
.lsb_c00073{letter-spacing:-0.353067pt;}
.lsd_c00073{letter-spacing:-0.225067pt;}
.lsa_c00073{letter-spacing:-0.194667pt;}
.ls10_c00073{letter-spacing:-0.061333pt;}
.ls9_c00073{letter-spacing:0.000000pt;}
.ls1_c00073{letter-spacing:0.243200pt;}
.ls8_c00073{letter-spacing:0.279040pt;}
.ls7_c00073{letter-spacing:0.640000pt;}
.ls6_c00073{letter-spacing:1.920000pt;}
.ls4_c00073{letter-spacing:3.200000pt;}
.ls5_c00073{letter-spacing:8.320000pt;}
.ls2_c00073{letter-spacing:9.600000pt;}
.ls0_c00073{letter-spacing:10.880000pt;}
.ls3_c00073{letter-spacing:16.000000pt;}
.ws3_c00073{word-spacing:-48.640000pt;}
.ws0_c00073{word-spacing:-12.160000pt;}
.ws1_c00073{word-spacing:-11.965333pt;}
.ws2_c00073{word-spacing:-11.806933pt;}
.ws4_c00073{word-spacing:0.000000pt;}
._7_c00073{margin-left:-2.089088pt;}
._0_c00073{margin-left:-1.116239pt;}
._3_c00073{width:0.890691pt;}
._4_c00073{width:2.035171pt;}
._8_c00073{width:3.208003pt;}
._b_c00073{width:4.124234pt;}
._c_c00073{width:5.172252pt;}
._a_c00073{width:6.321499pt;}
._9_c00073{width:8.028227pt;}
._2_c00073{width:9.263055pt;}
._1_c00073{width:10.501279pt;}
._5_c00073{width:15.682719pt;}
._6_c00073{width:16.629906pt;}
._d_c00073{width:17.704540pt;}
.fs1_c00073{font-size:48.640000pt;}
.fs0_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y6_c00073{bottom:4.156000pt;}
.y3_c00073{bottom:4.160000pt;}
.y5_c00073{bottom:22.396000pt;}
.y4_c00073{bottom:29.156000pt;}
.y1_c00073{bottom:51.552000pt;}
.y2f_c00073{bottom:114.912000pt;}
.y2e_c00073{bottom:135.426667pt;}
.y2d_c00073{bottom:156.226667pt;}
.y2c_c00073{bottom:177.026667pt;}
.y2b_c00073{bottom:197.506667pt;}
.y2a_c00073{bottom:218.306667pt;}
.y29_c00073{bottom:239.106667pt;}
.y28_c00073{bottom:259.613333pt;}
.y27_c00073{bottom:280.413333pt;}
.y26_c00073{bottom:301.213333pt;}
.y25_c00073{bottom:321.693333pt;}
.y24_c00073{bottom:342.493333pt;}
.y23_c00073{bottom:363.333333pt;}
.y22_c00073{bottom:383.813333pt;}
.y21_c00073{bottom:404.613333pt;}
.y20_c00073{bottom:425.413333pt;}
.y1f_c00073{bottom:445.893333pt;}
.y1e_c00073{bottom:466.720000pt;}
.y1d_c00073{bottom:487.520000pt;}
.y1c_c00073{bottom:508.000000pt;}
.y1b_c00073{bottom:528.800000pt;}
.y1a_c00073{bottom:549.600000pt;}
.y19_c00073{bottom:570.426667pt;}
.y18_c00073{bottom:590.906667pt;}
.y17_c00073{bottom:611.706667pt;}
.y16_c00073{bottom:632.506667pt;}
.y15_c00073{bottom:652.986667pt;}
.y14_c00073{bottom:673.786667pt;}
.y13_c00073{bottom:694.626667pt;}
.y12_c00073{bottom:715.106667pt;}
.y11_c00073{bottom:735.906667pt;}
.y10_c00073{bottom:756.706667pt;}
.yf_c00073{bottom:777.186667pt;}
.ye_c00073{bottom:806.013333pt;}
.yd_c00073{bottom:826.813333pt;}
.yc_c00073{bottom:847.293333pt;}
.yb_c00073{bottom:868.093333pt;}
.ya_c00073{bottom:888.893333pt;}
.y9_c00073{bottom:909.413333pt;}
.y8_c00073{bottom:930.213333pt;}
.y7_c00073{bottom:951.013333pt;}
.y2_c00073{bottom:989.413333pt;}
.h2_c00073{height:18.586667pt;}
.h3_c00073{height:36.796000pt;}
.h6_c00073{height:47.713750pt;}
.h4_c00073{height:47.737500pt;}
.h5_c00073{height:49.020000pt;}
.h1_c00073{height:57.375000pt;}
.h0_c00073{height:1056.000000pt;}
.w1_c00073{width:7.346667pt;}
.w2_c00073{width:589.640000pt;}
.w0_c00073{width:816.000000pt;}
.x0_c00073{left:0.000000pt;}
.x3_c00073{left:113.324000pt;}
.x1_c00073{left:137.346667pt;}
.x4_c00073{left:151.106667pt;}
.x2_c00073{left:695.613333pt;}
}





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

.ir_c00074:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00074;src:url('chunks/assets/font_dc4ff1db7941c6ce59281253.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_d4dfbb01f3ad33b38bdada41.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_ba8ac734f899b9654a093a6a.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_a6beed724bac80e53cbf0bdc.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls4_c00074{letter-spacing:-1.512000px;}
.ls1_c00074{letter-spacing:0.000000px;}
.ls2_c00074{letter-spacing:0.144000px;}
.ls3_c00074{letter-spacing:0.507000px;}
.ls0_c00074{letter-spacing:0.720000px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00074{word-spacing:-18.000000px;}
.ws1_c00074{word-spacing:-15.120000px;}
.ws2_c00074{word-spacing:0.000000px;}
._3_c00074{margin-left:-2.409705px;}
._1_c00074{margin-left:-1.312788px;}
._0_c00074{width:1.477166px;}
._2_c00074{width:2.680842px;}
._7_c00074{width:3.890045px;}
._9_c00074{width:5.722655px;}
._8_c00074{width:6.801705px;}
._4_c00074{width:8.700589px;}
._6_c00074{width:9.736822px;}
._5_c00074{width:10.779019px;}
._a_c00074{width:12.843910px;}
._d_c00074{width:13.849799px;}
._10_c00074{width:19.637986px;}
._e_c00074{width:24.899988px;}
._f_c00074{width:26.550599px;}
._b_c00074{width:35.204538px;}
._c_c00074{width:36.655272px;}
.fc1_c00074{color:transparent;}
.fc0_c00074{color:rgb(0,0,0);}
.fs1_c00074{font-size:54.720000px;}
.fs2_c00074{font-size:60.480000px;}
.fs0_c00074{font-size:72.000000px;}
.y0_c00074{bottom:0.000000px;}
.y6_c00074{bottom:4.675500px;}
.y3_c00074{bottom:4.680000px;}
.y23_c00074{bottom:21.585000px;}
.y28_c00074{bottom:21.595500px;}
.y18_c00074{bottom:21.600000px;}
.y1b_c00074{bottom:21.630000px;}
.y5_c00074{bottom:25.195500px;}
.y4_c00074{bottom:32.800500px;}
.y24_c00074{bottom:34.545000px;}
.y29_c00074{bottom:34.555500px;}
.y19_c00074{bottom:34.560000px;}
.y1f_c00074{bottom:34.605000px;}
.y17_c00074{bottom:47.520000px;}
.y22_c00074{bottom:47.535000px;}
.y27_c00074{bottom:47.554500px;}
.y1e_c00074{bottom:47.565000px;}
.y1_c00074{bottom:57.996000px;}
.y26_c00074{bottom:109.120500px;}
.y25_c00074{bottom:180.450000px;}
.y21_c00074{bottom:225.810000px;}
.y20_c00074{bottom:297.105000px;}
.y1d_c00074{bottom:368.385000px;}
.y1c_c00074{bottom:439.710000px;}
.y1a_c00074{bottom:510.990000px;}
.y16_c00074{bottom:556.380000px;}
.y15_c00074{bottom:651.450000px;}
.y14_c00074{bottom:691.410000px;}
.y13_c00074{bottom:722.730000px;}
.y12_c00074{bottom:753.690000px;}
.y11_c00074{bottom:784.695000px;}
.y10_c00074{bottom:815.655000px;}
.yf_c00074{bottom:846.975000px;}
.ye_c00074{bottom:877.935000px;}
.yd_c00074{bottom:908.925000px;}
.yc_c00074{bottom:939.885000px;}
.yb_c00074{bottom:976.605000px;}
.ya_c00074{bottom:1000.005000px;}
.y9_c00074{bottom:1023.090000px;}
.y8_c00074{bottom:1046.490000px;}
.y7_c00074{bottom:1069.890000px;}
.y2_c00074{bottom:1113.090000px;}
.h2_c00074{height:20.910000px;}
.h3_c00074{height:41.395500px;}
.hc_c00074{height:43.905000px;}
.h9_c00074{height:43.950000px;}
.h4_c00074{height:53.677969px;}
.h7_c00074{height:54.514688px;}
.h8_c00074{height:59.328281px;}
.h1_c00074{height:64.546875px;}
.ha_c00074{height:69.825000px;}
.h6_c00074{height:69.840000px;}
.hb_c00074{height:69.870000px;}
.hd_c00074{height:69.871500px;}
.h5_c00074{height:70.664062px;}
.h0_c00074{height:1188.000000px;}
.w1_c00074{width:8.265000px;}
.w3_c00074{width:297.090000px;}
.w4_c00074{width:364.800000px;}
.w2_c00074{width:663.345000px;}
.w0_c00074{width:918.000000px;}
.x0_c00074{left:0.000000px;}
.x3_c00074{left:127.489500px;}
.x1_c00074{left:154.515000px;}
.x4_c00074{left:169.995000px;}
.x9_c00074{left:174.660000px;}
.x7_c00074{left:178.260000px;}
.x5_c00074{left:180.795000px;}
.x8_c00074{left:182.220000px;}
.x6_c00074{left:426.030000px;}
.x2_c00074{left:782.565000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls4_c00074{letter-spacing:-1.344000pt;}
.ls1_c00074{letter-spacing:0.000000pt;}
.ls2_c00074{letter-spacing:0.128000pt;}
.ls3_c00074{letter-spacing:0.450667pt;}
.ls0_c00074{letter-spacing:0.640000pt;}
.ws0_c00074{word-spacing:-16.000000pt;}
.ws1_c00074{word-spacing:-13.440000pt;}
.ws2_c00074{word-spacing:0.000000pt;}
._3_c00074{margin-left:-2.141960pt;}
._1_c00074{margin-left:-1.166922pt;}
._0_c00074{width:1.313037pt;}
._2_c00074{width:2.382971pt;}
._7_c00074{width:3.457818pt;}
._9_c00074{width:5.086804pt;}
._8_c00074{width:6.045960pt;}
._4_c00074{width:7.733857pt;}
._6_c00074{width:8.654953pt;}
._5_c00074{width:9.581350pt;}
._a_c00074{width:11.416809pt;}
._d_c00074{width:12.310932pt;}
._10_c00074{width:17.455987pt;}
._e_c00074{width:22.133322pt;}
._f_c00074{width:23.600532pt;}
._b_c00074{width:31.292923pt;}
._c_c00074{width:32.582464pt;}
.fs1_c00074{font-size:48.640000pt;}
.fs2_c00074{font-size:53.760000pt;}
.fs0_c00074{font-size:64.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y6_c00074{bottom:4.156000pt;}
.y3_c00074{bottom:4.160000pt;}
.y23_c00074{bottom:19.186667pt;}
.y28_c00074{bottom:19.196000pt;}
.y18_c00074{bottom:19.200000pt;}
.y1b_c00074{bottom:19.226667pt;}
.y5_c00074{bottom:22.396000pt;}
.y4_c00074{bottom:29.156000pt;}
.y24_c00074{bottom:30.706667pt;}
.y29_c00074{bottom:30.716000pt;}
.y19_c00074{bottom:30.720000pt;}
.y1f_c00074{bottom:30.760000pt;}
.y17_c00074{bottom:42.240000pt;}
.y22_c00074{bottom:42.253333pt;}
.y27_c00074{bottom:42.270667pt;}
.y1e_c00074{bottom:42.280000pt;}
.y1_c00074{bottom:51.552000pt;}
.y26_c00074{bottom:96.996000pt;}
.y25_c00074{bottom:160.400000pt;}
.y21_c00074{bottom:200.720000pt;}
.y20_c00074{bottom:264.093333pt;}
.y1d_c00074{bottom:327.453333pt;}
.y1c_c00074{bottom:390.853333pt;}
.y1a_c00074{bottom:454.213333pt;}
.y16_c00074{bottom:494.560000pt;}
.y15_c00074{bottom:579.066667pt;}
.y14_c00074{bottom:614.586667pt;}
.y13_c00074{bottom:642.426667pt;}
.y12_c00074{bottom:669.946667pt;}
.y11_c00074{bottom:697.506667pt;}
.y10_c00074{bottom:725.026667pt;}
.yf_c00074{bottom:752.866667pt;}
.ye_c00074{bottom:780.386667pt;}
.yd_c00074{bottom:807.933333pt;}
.yc_c00074{bottom:835.453333pt;}
.yb_c00074{bottom:868.093333pt;}
.ya_c00074{bottom:888.893333pt;}
.y9_c00074{bottom:909.413333pt;}
.y8_c00074{bottom:930.213333pt;}
.y7_c00074{bottom:951.013333pt;}
.y2_c00074{bottom:989.413333pt;}
.h2_c00074{height:18.586667pt;}
.h3_c00074{height:36.796000pt;}
.hc_c00074{height:39.026667pt;}
.h9_c00074{height:39.066667pt;}
.h4_c00074{height:47.713750pt;}
.h7_c00074{height:48.457500pt;}
.h8_c00074{height:52.736250pt;}
.h1_c00074{height:57.375000pt;}
.ha_c00074{height:62.066667pt;}
.h6_c00074{height:62.080000pt;}
.hb_c00074{height:62.106667pt;}
.hd_c00074{height:62.108000pt;}
.h5_c00074{height:62.812500pt;}
.h0_c00074{height:1056.000000pt;}
.w1_c00074{width:7.346667pt;}
.w3_c00074{width:264.080000pt;}
.w4_c00074{width:324.266667pt;}
.w2_c00074{width:589.640000pt;}
.w0_c00074{width:816.000000pt;}
.x0_c00074{left:0.000000pt;}
.x3_c00074{left:113.324000pt;}
.x1_c00074{left:137.346667pt;}
.x4_c00074{left:151.106667pt;}
.x9_c00074{left:155.253333pt;}
.x7_c00074{left:158.453333pt;}
.x5_c00074{left:160.706667pt;}
.x8_c00074{left:161.973333pt;}
.x6_c00074{left:378.693333pt;}
.x2_c00074{left:695.613333pt;}
}





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

.ir_c00075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00075;src:url('chunks/assets/font_8599fbb41cbf683cc0b6e9f3.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_e34cce3e162d43e0fb475ef1.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_607cc86caef5dd21e7176b6d.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_3f2e0a7a88fd3e09d491bd93.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00075;src:url('chunks/assets/font_1851a57e6798288a335272e8.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00075{vertical-align:-27.360000px;}
.v0_c00075{vertical-align:0.000000px;}
.v1_c00075{vertical-align:27.360000px;}
.ls10_c00075{letter-spacing:-0.762000px;}
.ls14_c00075{letter-spacing:-0.532800px;}
.ls13_c00075{letter-spacing:-0.337200px;}
.ls12_c00075{letter-spacing:-0.302400px;}
.ls15_c00075{letter-spacing:-0.241800px;}
.lse_c00075{letter-spacing:0.000000px;}
.ls3_c00075{letter-spacing:0.020160px;}
.ls7_c00075{letter-spacing:0.022800px;}
.ls16_c00075{letter-spacing:0.166800px;}
.lsd_c00075{letter-spacing:0.168480px;}
.ls17_c00075{letter-spacing:0.313800px;}
.ls1_c00075{letter-spacing:0.466560px;}
.lsf_c00075{letter-spacing:0.507000px;}
.ls11_c00075{letter-spacing:0.630000px;}
.ls0_c00075{letter-spacing:0.720000px;}
.ls2_c00075{letter-spacing:0.900000px;}
.ls8_c00075{letter-spacing:1.416960px;}
.lsc_c00075{letter-spacing:2.160000px;}
.lsb_c00075{letter-spacing:3.600000px;}
.ls4_c00075{letter-spacing:7.920000px;}
.ls9_c00075{letter-spacing:15.120000px;}
.lsa_c00075{letter-spacing:15.240000px;}
.ls6_c00075{letter-spacing:17.988716px;}
.ls5_c00075{letter-spacing:18.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00075{word-spacing:-15.750000px;}
.ws0_c00075{word-spacing:-15.627000px;}
.ws8_c00075{word-spacing:-15.433800px;}
.ws7_c00075{word-spacing:-15.286800px;}
.ws5_c00075{word-spacing:-15.142800px;}
.ws1_c00075{word-spacing:-15.120000px;}
.ws6_c00075{word-spacing:-14.878200px;}
.ws3_c00075{word-spacing:-14.817600px;}
.ws4_c00075{word-spacing:-14.782800px;}
.ws9_c00075{word-spacing:0.000000px;}
._10_c00075{margin-left:-3.182431px;}
._5_c00075{margin-left:-2.116195px;}
._0_c00075{margin-left:-1.028402px;}
._1_c00075{width:1.089608px;}
._6_c00075{width:2.774475px;}
._f_c00075{width:4.046930px;}
._d_c00075{width:5.195353px;}
._8_c00075{width:7.258810px;}
._7_c00075{width:8.345393px;}
._a_c00075{width:9.785301px;}
._9_c00075{width:11.188800px;}
._e_c00075{width:13.847278px;}
._11_c00075{width:16.615749px;}
._c_c00075{width:17.731275px;}
._b_c00075{width:19.395708px;}
._4_c00075{width:30.421198px;}
._2_c00075{width:34.231801px;}
._3_c00075{width:35.320804px;}
.fc1_c00075{color:transparent;}
.fc0_c00075{color:rgb(0,0,0);}
.fs2_c00075{font-size:38.880000px;}
.fs1_c00075{font-size:60.480000px;}
.fs0_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y6_c00075{bottom:4.675500px;}
.y3_c00075{bottom:4.680000px;}
.yf_c00075{bottom:21.585000px;}
.y8_c00075{bottom:21.600000px;}
.y12_c00075{bottom:21.630000px;}
.y5_c00075{bottom:25.195500px;}
.y4_c00075{bottom:32.800500px;}
.yb_c00075{bottom:34.560000px;}
.yd_c00075{bottom:47.520000px;}
.y16_c00075{bottom:47.550000px;}
.ya_c00075{bottom:47.565000px;}
.y1_c00075{bottom:57.996000px;}
.y2c_c00075{bottom:130.716000px;}
.y2b_c00075{bottom:147.996000px;}
.y2a_c00075{bottom:164.955000px;}
.y29_c00075{bottom:182.235000px;}
.y28_c00075{bottom:199.515000px;}
.y27_c00075{bottom:216.795000px;}
.y26_c00075{bottom:223.635000px;}
.y25_c00075{bottom:234.075000px;}
.y24_c00075{bottom:251.355000px;}
.y23_c00075{bottom:268.635000px;}
.y22_c00075{bottom:285.945000px;}
.y21_c00075{bottom:303.225000px;}
.y20_c00075{bottom:320.505000px;}
.y1f_c00075{bottom:337.785000px;}
.y1e_c00075{bottom:354.705000px;}
.y1d_c00075{bottom:371.985000px;}
.y1c_c00075{bottom:389.265000px;}
.y1b_c00075{bottom:406.590000px;}
.y1a_c00075{bottom:413.430000px;}
.y19_c00075{bottom:424.590000px;}
.y18_c00075{bottom:478.950000px;}
.y17_c00075{bottom:550.260000px;}
.y15_c00075{bottom:595.620000px;}
.y14_c00075{bottom:666.945000px;}
.y13_c00075{bottom:712.305000px;}
.y11_c00075{bottom:757.665000px;}
.y10_c00075{bottom:803.070000px;}
.ye_c00075{bottom:848.430000px;}
.yc_c00075{bottom:893.805000px;}
.y9_c00075{bottom:965.085000px;}
.y7_c00075{bottom:1036.410000px;}
.y2_c00075{bottom:1113.090000px;}
.h2_c00075{height:20.910000px;}
.he_c00075{height:38.158594px;}
.h3_c00075{height:41.395500px;}
.h4_c00075{height:43.905000px;}
.h9_c00075{height:43.920000px;}
.ha_c00075{height:43.941000px;}
.h10_c00075{height:54.219375px;}
.h7_c00075{height:54.514688px;}
.h5_c00075{height:59.328281px;}
.hf_c00075{height:59.357813px;}
.h1_c00075{height:64.546875px;}
.hb_c00075{height:65.499609px;}
.h8_c00075{height:69.825000px;}
.h6_c00075{height:69.870000px;}
.hc_c00075{height:69.876000px;}
.hd_c00075{height:1187.995500px;}
.h0_c00075{height:1188.000000px;}
.w1_c00075{width:8.265000px;}
.w3_c00075{width:297.090000px;}
.w5_c00075{width:318.375000px;}
.w6_c00075{width:343.530000px;}
.w4_c00075{width:364.800000px;}
.w2_c00075{width:663.345000px;}
.w7_c00075{width:917.997000px;}
.w0_c00075{width:918.000000px;}
.x0_c00075{left:0.000000px;}
.x7_c00075{left:44.305500px;}
.x5_c00075{left:91.470000px;}
.x3_c00075{left:127.489500px;}
.xb_c00075{left:137.556000px;}
.x1_c00075{left:154.515000px;}
.x9_c00075{left:163.830000px;}
.x6_c00075{left:174.660000px;}
.xa_c00075{left:343.590000px;}
.x4_c00075{left:426.030000px;}
.x8_c00075{left:447.300000px;}
.x2_c00075{left:782.565000px;}
@media print{
.v2_c00075{vertical-align:-24.320000pt;}
.v0_c00075{vertical-align:0.000000pt;}
.v1_c00075{vertical-align:24.320000pt;}
.ls10_c00075{letter-spacing:-0.677333pt;}
.ls14_c00075{letter-spacing:-0.473600pt;}
.ls13_c00075{letter-spacing:-0.299733pt;}
.ls12_c00075{letter-spacing:-0.268800pt;}
.ls15_c00075{letter-spacing:-0.214933pt;}
.lse_c00075{letter-spacing:0.000000pt;}
.ls3_c00075{letter-spacing:0.017920pt;}
.ls7_c00075{letter-spacing:0.020267pt;}
.ls16_c00075{letter-spacing:0.148267pt;}
.lsd_c00075{letter-spacing:0.149760pt;}
.ls17_c00075{letter-spacing:0.278933pt;}
.ls1_c00075{letter-spacing:0.414720pt;}
.lsf_c00075{letter-spacing:0.450667pt;}
.ls11_c00075{letter-spacing:0.560000pt;}
.ls0_c00075{letter-spacing:0.640000pt;}
.ls2_c00075{letter-spacing:0.800000pt;}
.ls8_c00075{letter-spacing:1.259520pt;}
.lsc_c00075{letter-spacing:1.920000pt;}
.lsb_c00075{letter-spacing:3.200000pt;}
.ls4_c00075{letter-spacing:7.040000pt;}
.ls9_c00075{letter-spacing:13.440000pt;}
.lsa_c00075{letter-spacing:13.546667pt;}
.ls6_c00075{letter-spacing:15.989970pt;}
.ls5_c00075{letter-spacing:16.000000pt;}
.ws2_c00075{word-spacing:-14.000000pt;}
.ws0_c00075{word-spacing:-13.890667pt;}
.ws8_c00075{word-spacing:-13.718933pt;}
.ws7_c00075{word-spacing:-13.588267pt;}
.ws5_c00075{word-spacing:-13.460267pt;}
.ws1_c00075{word-spacing:-13.440000pt;}
.ws6_c00075{word-spacing:-13.225067pt;}
.ws3_c00075{word-spacing:-13.171200pt;}
.ws4_c00075{word-spacing:-13.140267pt;}
.ws9_c00075{word-spacing:0.000000pt;}
._10_c00075{margin-left:-2.828827pt;}
._5_c00075{margin-left:-1.881062pt;}
._0_c00075{margin-left:-0.914135pt;}
._1_c00075{width:0.968540pt;}
._6_c00075{width:2.466200pt;}
._f_c00075{width:3.597271pt;}
._d_c00075{width:4.618092pt;}
._8_c00075{width:6.452275pt;}
._7_c00075{width:7.418127pt;}
._a_c00075{width:8.698045pt;}
._9_c00075{width:9.945600pt;}
._e_c00075{width:12.308692pt;}
._11_c00075{width:14.769555pt;}
._c_c00075{width:15.761133pt;}
._b_c00075{width:17.240629pt;}
._4_c00075{width:27.041065pt;}
._2_c00075{width:30.428268pt;}
._3_c00075{width:31.396270pt;}
.fs2_c00075{font-size:34.560000pt;}
.fs1_c00075{font-size:53.760000pt;}
.fs0_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y6_c00075{bottom:4.156000pt;}
.y3_c00075{bottom:4.160000pt;}
.yf_c00075{bottom:19.186667pt;}
.y8_c00075{bottom:19.200000pt;}
.y12_c00075{bottom:19.226667pt;}
.y5_c00075{bottom:22.396000pt;}
.y4_c00075{bottom:29.156000pt;}
.yb_c00075{bottom:30.720000pt;}
.yd_c00075{bottom:42.240000pt;}
.y16_c00075{bottom:42.266667pt;}
.ya_c00075{bottom:42.280000pt;}
.y1_c00075{bottom:51.552000pt;}
.y2c_c00075{bottom:116.192000pt;}
.y2b_c00075{bottom:131.552000pt;}
.y2a_c00075{bottom:146.626667pt;}
.y29_c00075{bottom:161.986667pt;}
.y28_c00075{bottom:177.346667pt;}
.y27_c00075{bottom:192.706667pt;}
.y26_c00075{bottom:198.786667pt;}
.y25_c00075{bottom:208.066667pt;}
.y24_c00075{bottom:223.426667pt;}
.y23_c00075{bottom:238.786667pt;}
.y22_c00075{bottom:254.173333pt;}
.y21_c00075{bottom:269.533333pt;}
.y20_c00075{bottom:284.893333pt;}
.y1f_c00075{bottom:300.253333pt;}
.y1e_c00075{bottom:315.293333pt;}
.y1d_c00075{bottom:330.653333pt;}
.y1c_c00075{bottom:346.013333pt;}
.y1b_c00075{bottom:361.413333pt;}
.y1a_c00075{bottom:367.493333pt;}
.y19_c00075{bottom:377.413333pt;}
.y18_c00075{bottom:425.733333pt;}
.y17_c00075{bottom:489.120000pt;}
.y15_c00075{bottom:529.440000pt;}
.y14_c00075{bottom:592.840000pt;}
.y13_c00075{bottom:633.160000pt;}
.y11_c00075{bottom:673.480000pt;}
.y10_c00075{bottom:713.840000pt;}
.ye_c00075{bottom:754.160000pt;}
.yc_c00075{bottom:794.493333pt;}
.y9_c00075{bottom:857.853333pt;}
.y7_c00075{bottom:921.253333pt;}
.y2_c00075{bottom:989.413333pt;}
.h2_c00075{height:18.586667pt;}
.he_c00075{height:33.918750pt;}
.h3_c00075{height:36.796000pt;}
.h4_c00075{height:39.026667pt;}
.h9_c00075{height:39.040000pt;}
.ha_c00075{height:39.058667pt;}
.h10_c00075{height:48.195000pt;}
.h7_c00075{height:48.457500pt;}
.h5_c00075{height:52.736250pt;}
.hf_c00075{height:52.762500pt;}
.h1_c00075{height:57.375000pt;}
.hb_c00075{height:58.221875pt;}
.h8_c00075{height:62.066667pt;}
.h6_c00075{height:62.106667pt;}
.hc_c00075{height:62.112000pt;}
.hd_c00075{height:1055.996000pt;}
.h0_c00075{height:1056.000000pt;}
.w1_c00075{width:7.346667pt;}
.w3_c00075{width:264.080000pt;}
.w5_c00075{width:283.000000pt;}
.w6_c00075{width:305.360000pt;}
.w4_c00075{width:324.266667pt;}
.w2_c00075{width:589.640000pt;}
.w7_c00075{width:815.997333pt;}
.w0_c00075{width:816.000000pt;}
.x0_c00075{left:0.000000pt;}
.x7_c00075{left:39.382667pt;}
.x5_c00075{left:81.306667pt;}
.x3_c00075{left:113.324000pt;}
.xb_c00075{left:122.272000pt;}
.x1_c00075{left:137.346667pt;}
.x9_c00075{left:145.626667pt;}
.x6_c00075{left:155.253333pt;}
.xa_c00075{left:305.413333pt;}
.x4_c00075{left:378.693333pt;}
.x8_c00075{left:397.600000pt;}
.x2_c00075{left:695.613333pt;}
}





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

.ir_c00076:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00076;src:url('chunks/assets/font_2010d8b87e47323ec26aa13e.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_fac335230f05c6ccf9cb7995.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_52088b2cb3b0739a37e7aa40.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_f2246ba74e2af9a39a968f3b.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00076;src:url('chunks/assets/font_2f8d1941a06f48db6da3f823.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls14_c00076{letter-spacing:-1.422000px;}
.ls16_c00076{letter-spacing:-0.912000px;}
.ls11_c00076{letter-spacing:-0.288000px;}
.ls13_c00076{letter-spacing:-0.267600px;}
.ls1a_c00076{letter-spacing:-0.241800px;}
.ls12_c00076{letter-spacing:-0.144000px;}
.ls15_c00076{letter-spacing:-0.075000px;}
.ls10_c00076{letter-spacing:0.000000px;}
.ls19_c00076{letter-spacing:0.022800px;}
.lsc_c00076{letter-spacing:0.048960px;}
.ls1b_c00076{letter-spacing:0.060600px;}
.lse_c00076{letter-spacing:0.108480px;}
.ls17_c00076{letter-spacing:0.166800px;}
.ls7_c00076{letter-spacing:0.302400px;}
.ls1c_c00076{letter-spacing:0.313800px;}
.lsd_c00076{letter-spacing:0.422400px;}
.lsf_c00076{letter-spacing:0.482400px;}
.ls0_c00076{letter-spacing:0.504000px;}
.ls18_c00076{letter-spacing:0.529800px;}
.ls1_c00076{letter-spacing:0.720000px;}
.ls4_c00076{letter-spacing:2.160000px;}
.lsb_c00076{letter-spacing:3.588480px;}
.ls2_c00076{letter-spacing:3.600000px;}
.ls3_c00076{letter-spacing:3.623040px;}
.ls8_c00076{letter-spacing:5.028480px;}
.lsa_c00076{letter-spacing:5.040000px;}
.ls6_c00076{letter-spacing:5.184000px;}
.ls9_c00076{letter-spacing:5.220000px;}
.ls5_c00076{letter-spacing:6.480000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:-18.000000px;}
.ws2_c00076{word-spacing:-17.856000px;}
.ws1_c00076{word-spacing:-17.712000px;}
.ws6_c00076{word-spacing:-15.433800px;}
.ws5_c00076{word-spacing:-15.286800px;}
.ws3_c00076{word-spacing:-15.120000px;}
.ws4_c00076{word-spacing:-14.852400px;}
.ws7_c00076{word-spacing:0.000000px;}
._7_c00076{margin-left:-3.308269px;}
._4_c00076{margin-left:-2.300468px;}
._0_c00076{margin-left:-1.028402px;}
._1_c00076{width:1.134021px;}
._3_c00076{width:2.793589px;}
._2_c00076{width:4.104000px;}
._9_c00076{width:5.504758px;}
._6_c00076{width:6.886674px;}
._5_c00076{width:8.233326px;}
._c_c00076{width:9.490488px;}
._8_c00076{width:10.538447px;}
._d_c00076{width:11.662569px;}
._e_c00076{width:12.672000px;}
._f_c00076{width:14.216227px;}
._11_c00076{width:15.959075px;}
._15_c00076{width:17.055602px;}
._a_c00076{width:19.080000px;}
._b_c00076{width:20.318447px;}
._10_c00076{width:34.416000px;}
._13_c00076{width:59.400000px;}
._12_c00076{width:60.554585px;}
._14_c00076{width:61.821529px;}
.fc1_c00076{color:rgb(255,0,0);}
.fc0_c00076{color:rgb(0,0,0);}
.fs3_c00076{font-size:38.880000px;}
.fs2_c00076{font-size:47.520000px;}
.fs1_c00076{font-size:60.480000px;}
.fs0_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y6_c00076{bottom:4.675500px;}
.y3_c00076{bottom:4.680000px;}
.y8_c00076{bottom:21.600000px;}
.y5_c00076{bottom:25.195500px;}
.y4_c00076{bottom:32.800500px;}
.y1_c00076{bottom:57.996000px;}
.y2e_c00076{bottom:130.716000px;}
.y2d_c00076{bottom:147.996000px;}
.y2c_c00076{bottom:164.955000px;}
.y2b_c00076{bottom:171.795000px;}
.y2a_c00076{bottom:182.235000px;}
.y29_c00076{bottom:199.515000px;}
.y28_c00076{bottom:216.795000px;}
.y27_c00076{bottom:234.075000px;}
.y26_c00076{bottom:251.355000px;}
.y25_c00076{bottom:268.635000px;}
.y24_c00076{bottom:285.945000px;}
.y23_c00076{bottom:303.225000px;}
.y22_c00076{bottom:320.505000px;}
.y21_c00076{bottom:337.785000px;}
.y20_c00076{bottom:354.705000px;}
.y1f_c00076{bottom:361.545000px;}
.y1e_c00076{bottom:372.705000px;}
.y1d_c00076{bottom:423.510000px;}
.y1c_c00076{bottom:454.470000px;}
.y1a_c00076{bottom:485.790000px;}
.y1b_c00076{bottom:494.070000px;}
.y19_c00076{bottom:516.750000px;}
.y18_c00076{bottom:547.740000px;}
.y17_c00076{bottom:578.700000px;}
.y16_c00076{bottom:610.020000px;}
.y15_c00076{bottom:641.010000px;}
.y14_c00076{bottom:671.970000px;}
.y13_c00076{bottom:702.930000px;}
.y11_c00076{bottom:734.250000px;}
.y12_c00076{bottom:742.530000px;}
.y10_c00076{bottom:765.255000px;}
.yf_c00076{bottom:796.215000px;}
.ye_c00076{bottom:836.175000px;}
.yd_c00076{bottom:876.495000px;}
.yc_c00076{bottom:907.485000px;}
.yb_c00076{bottom:938.445000px;}
.ya_c00076{bottom:969.405000px;}
.y9_c00076{bottom:1009.770000px;}
.y7_c00076{bottom:1036.410000px;}
.y2_c00076{bottom:1113.090000px;}
.h2_c00076{height:20.910000px;}
.hb_c00076{height:38.158594px;}
.h3_c00076{height:41.395500px;}
.h4_c00076{height:43.905000px;}
.ha_c00076{height:46.615078px;}
.h9_c00076{height:46.638281px;}
.hd_c00076{height:54.219375px;}
.h5_c00076{height:59.328281px;}
.hc_c00076{height:59.357813px;}
.h1_c00076{height:64.546875px;}
.h6_c00076{height:70.628906px;}
.h7_c00076{height:70.664062px;}
.h8_c00076{height:1187.995500px;}
.h0_c00076{height:1188.000000px;}
.w1_c00076{width:8.265000px;}
.w2_c00076{width:663.345000px;}
.w3_c00076{width:917.997000px;}
.w0_c00076{width:918.000000px;}
.x0_c00076{left:0.000000px;}
.x4_c00076{left:121.375500px;}
.x3_c00076{left:127.489500px;}
.xb_c00076{left:137.556000px;}
.x1_c00076{left:154.515000px;}
.x5_c00076{left:178.635000px;}
.xa_c00076{left:343.590000px;}
.x8_c00076{left:467.097000px;}
.x9_c00076{left:479.340000px;}
.x6_c00076{left:660.492000px;}
.x7_c00076{left:672.735000px;}
.x2_c00076{left:782.565000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls14_c00076{letter-spacing:-1.264000pt;}
.ls16_c00076{letter-spacing:-0.810667pt;}
.ls11_c00076{letter-spacing:-0.256000pt;}
.ls13_c00076{letter-spacing:-0.237867pt;}
.ls1a_c00076{letter-spacing:-0.214933pt;}
.ls12_c00076{letter-spacing:-0.128000pt;}
.ls15_c00076{letter-spacing:-0.066667pt;}
.ls10_c00076{letter-spacing:0.000000pt;}
.ls19_c00076{letter-spacing:0.020267pt;}
.lsc_c00076{letter-spacing:0.043520pt;}
.ls1b_c00076{letter-spacing:0.053867pt;}
.lse_c00076{letter-spacing:0.096427pt;}
.ls17_c00076{letter-spacing:0.148267pt;}
.ls7_c00076{letter-spacing:0.268800pt;}
.ls1c_c00076{letter-spacing:0.278933pt;}
.lsd_c00076{letter-spacing:0.375467pt;}
.lsf_c00076{letter-spacing:0.428800pt;}
.ls0_c00076{letter-spacing:0.448000pt;}
.ls18_c00076{letter-spacing:0.470933pt;}
.ls1_c00076{letter-spacing:0.640000pt;}
.ls4_c00076{letter-spacing:1.920000pt;}
.lsb_c00076{letter-spacing:3.189760pt;}
.ls2_c00076{letter-spacing:3.200000pt;}
.ls3_c00076{letter-spacing:3.220480pt;}
.ls8_c00076{letter-spacing:4.469760pt;}
.lsa_c00076{letter-spacing:4.480000pt;}
.ls6_c00076{letter-spacing:4.608000pt;}
.ls9_c00076{letter-spacing:4.640000pt;}
.ls5_c00076{letter-spacing:5.760000pt;}
.ws0_c00076{word-spacing:-16.000000pt;}
.ws2_c00076{word-spacing:-15.872000pt;}
.ws1_c00076{word-spacing:-15.744000pt;}
.ws6_c00076{word-spacing:-13.718933pt;}
.ws5_c00076{word-spacing:-13.588267pt;}
.ws3_c00076{word-spacing:-13.440000pt;}
.ws4_c00076{word-spacing:-13.202133pt;}
.ws7_c00076{word-spacing:0.000000pt;}
._7_c00076{margin-left:-2.940684pt;}
._4_c00076{margin-left:-2.044861pt;}
._0_c00076{margin-left:-0.914135pt;}
._1_c00076{width:1.008019pt;}
._3_c00076{width:2.483191pt;}
._2_c00076{width:3.648000pt;}
._9_c00076{width:4.893118pt;}
._6_c00076{width:6.121488pt;}
._5_c00076{width:7.318512pt;}
._c_c00076{width:8.435989pt;}
._8_c00076{width:9.367508pt;}
._d_c00076{width:10.366728pt;}
._e_c00076{width:11.264000pt;}
._f_c00076{width:12.636646pt;}
._11_c00076{width:14.185844pt;}
._15_c00076{width:15.160535pt;}
._a_c00076{width:16.960000pt;}
._b_c00076{width:18.060842pt;}
._10_c00076{width:30.592000pt;}
._13_c00076{width:52.800000pt;}
._12_c00076{width:53.826298pt;}
._14_c00076{width:54.952470pt;}
.fs3_c00076{font-size:34.560000pt;}
.fs2_c00076{font-size:42.240000pt;}
.fs1_c00076{font-size:53.760000pt;}
.fs0_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y6_c00076{bottom:4.156000pt;}
.y3_c00076{bottom:4.160000pt;}
.y8_c00076{bottom:19.200000pt;}
.y5_c00076{bottom:22.396000pt;}
.y4_c00076{bottom:29.156000pt;}
.y1_c00076{bottom:51.552000pt;}
.y2e_c00076{bottom:116.192000pt;}
.y2d_c00076{bottom:131.552000pt;}
.y2c_c00076{bottom:146.626667pt;}
.y2b_c00076{bottom:152.706667pt;}
.y2a_c00076{bottom:161.986667pt;}
.y29_c00076{bottom:177.346667pt;}
.y28_c00076{bottom:192.706667pt;}
.y27_c00076{bottom:208.066667pt;}
.y26_c00076{bottom:223.426667pt;}
.y25_c00076{bottom:238.786667pt;}
.y24_c00076{bottom:254.173333pt;}
.y23_c00076{bottom:269.533333pt;}
.y22_c00076{bottom:284.893333pt;}
.y21_c00076{bottom:300.253333pt;}
.y20_c00076{bottom:315.293333pt;}
.y1f_c00076{bottom:321.373333pt;}
.y1e_c00076{bottom:331.293333pt;}
.y1d_c00076{bottom:376.453333pt;}
.y1c_c00076{bottom:403.973333pt;}
.y1a_c00076{bottom:431.813333pt;}
.y1b_c00076{bottom:439.173333pt;}
.y19_c00076{bottom:459.333333pt;}
.y18_c00076{bottom:486.880000pt;}
.y17_c00076{bottom:514.400000pt;}
.y16_c00076{bottom:542.240000pt;}
.y15_c00076{bottom:569.786667pt;}
.y14_c00076{bottom:597.306667pt;}
.y13_c00076{bottom:624.826667pt;}
.y11_c00076{bottom:652.666667pt;}
.y12_c00076{bottom:660.026667pt;}
.y10_c00076{bottom:680.226667pt;}
.yf_c00076{bottom:707.746667pt;}
.ye_c00076{bottom:743.266667pt;}
.yd_c00076{bottom:779.106667pt;}
.yc_c00076{bottom:806.653333pt;}
.yb_c00076{bottom:834.173333pt;}
.ya_c00076{bottom:861.693333pt;}
.y9_c00076{bottom:897.573333pt;}
.y7_c00076{bottom:921.253333pt;}
.y2_c00076{bottom:989.413333pt;}
.h2_c00076{height:18.586667pt;}
.hb_c00076{height:33.918750pt;}
.h3_c00076{height:36.796000pt;}
.h4_c00076{height:39.026667pt;}
.ha_c00076{height:41.435625pt;}
.h9_c00076{height:41.456250pt;}
.hd_c00076{height:48.195000pt;}
.h5_c00076{height:52.736250pt;}
.hc_c00076{height:52.762500pt;}
.h1_c00076{height:57.375000pt;}
.h6_c00076{height:62.781250pt;}
.h7_c00076{height:62.812500pt;}
.h8_c00076{height:1055.996000pt;}
.h0_c00076{height:1056.000000pt;}
.w1_c00076{width:7.346667pt;}
.w2_c00076{width:589.640000pt;}
.w3_c00076{width:815.997333pt;}
.w0_c00076{width:816.000000pt;}
.x0_c00076{left:0.000000pt;}
.x4_c00076{left:107.889333pt;}
.x3_c00076{left:113.324000pt;}
.xb_c00076{left:122.272000pt;}
.x1_c00076{left:137.346667pt;}
.x5_c00076{left:158.786667pt;}
.xa_c00076{left:305.413333pt;}
.x8_c00076{left:415.197333pt;}
.x9_c00076{left:426.080000pt;}
.x6_c00076{left:587.104000pt;}
.x7_c00076{left:597.986667pt;}
.x2_c00076{left:695.613333pt;}
}





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

.ir_c00077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00077;src:url('chunks/assets/font_7daba8bede5c489d493cee3d.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_620fb43a110466516f1c731f.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00077;src:url('chunks/assets/font_6fc18ea11c90f9e74e679a3f.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;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_c00077;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00077;src:url('chunks/assets/font_9109d6e210012495b1aa94c1.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00077;src:url('chunks/assets/font_dfcbae611bee47e532685e96.woff2')format("woff");}.ff6_c00077{font-family:ff6_c00077;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls15_c00077{letter-spacing:-1.416000px;}
.ls16_c00077{letter-spacing:-0.972000px;}
.ls13_c00077{letter-spacing:-0.918000px;}
.ls11_c00077{letter-spacing:-0.429000px;}
.lsf_c00077{letter-spacing:-0.241800px;}
.lsc_c00077{letter-spacing:0.000000px;}
.ls12_c00077{letter-spacing:0.022800px;}
.lsd_c00077{letter-spacing:0.060600px;}
.lse_c00077{letter-spacing:0.166800px;}
.ls8_c00077{letter-spacing:0.168960px;}
.ls10_c00077{letter-spacing:0.466800px;}
.ls0_c00077{letter-spacing:0.504000px;}
.ls4_c00077{letter-spacing:0.518400px;}
.ls17_c00077{letter-spacing:0.521400px;}
.ls14_c00077{letter-spacing:0.529800px;}
.lsb_c00077{letter-spacing:0.708480px;}
.ls1_c00077{letter-spacing:0.720000px;}
.ls9_c00077{letter-spacing:2.160000px;}
.ls7_c00077{letter-spacing:3.600000px;}
.lsa_c00077{letter-spacing:3.620160px;}
.ls5_c00077{letter-spacing:5.040000px;}
.ls6_c00077{letter-spacing:5.160000px;}
.ls2_c00077{letter-spacing:6.624000px;}
.ls3_c00077{letter-spacing:9.360000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00077{word-spacing:-72.000000px;}
.ws0_c00077{word-spacing:-18.000000px;}
.ws9_c00077{word-spacing:-15.641400px;}
.wsa_c00077{word-spacing:-15.638400px;}
.ws3_c00077{word-spacing:-15.286800px;}
.ws7_c00077{word-spacing:-15.180600px;}
.ws2_c00077{word-spacing:-15.120000px;}
.ws4_c00077{word-spacing:-14.878200px;}
.ws5_c00077{word-spacing:-14.691000px;}
.ws6_c00077{word-spacing:-14.202000px;}
.ws8_c00077{word-spacing:-13.704000px;}
.wsb_c00077{word-spacing:0.000000px;}
._4_c00077{margin-left:-2.736000px;}
._1_c00077{margin-left:-1.440000px;}
._0_c00077{width:1.080000px;}
._5_c00077{width:2.232000px;}
._9_c00077{width:3.456000px;}
._11_c00077{width:4.503360px;}
._b_c00077{width:5.544000px;}
._e_c00077{width:6.840000px;}
._2_c00077{width:7.992000px;}
._3_c00077{width:9.432000px;}
._7_c00077{width:11.448000px;}
._6_c00077{width:12.456000px;}
._8_c00077{width:14.040000px;}
._10_c00077{width:15.336000px;}
._d_c00077{width:16.992000px;}
._c_c00077{width:19.584000px;}
._f_c00077{width:20.952000px;}
._a_c00077{width:186.636024px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs2_c00077{font-size:38.880000px;}
.fs1_c00077{font-size:47.520000px;}
.fs3_c00077{font-size:60.480000px;}
.fs0_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y6_c00077{bottom:4.675500px;}
.y3_c00077{bottom:4.680000px;}
.y5_c00077{bottom:25.195500px;}
.y4_c00077{bottom:32.800500px;}
.y1_c00077{bottom:57.996000px;}
.y2f_c00077{bottom:130.716000px;}
.y2e_c00077{bottom:147.996000px;}
.y2d_c00077{bottom:164.955000px;}
.y2c_c00077{bottom:182.235000px;}
.y2b_c00077{bottom:199.515000px;}
.y2a_c00077{bottom:216.795000px;}
.y29_c00077{bottom:234.075000px;}
.y28_c00077{bottom:251.355000px;}
.y27_c00077{bottom:268.635000px;}
.y26_c00077{bottom:285.945000px;}
.y25_c00077{bottom:303.225000px;}
.y24_c00077{bottom:320.505000px;}
.y23_c00077{bottom:337.785000px;}
.y22_c00077{bottom:344.625000px;}
.y21_c00077{bottom:354.705000px;}
.y20_c00077{bottom:371.985000px;}
.y1f_c00077{bottom:378.825000px;}
.y1e_c00077{bottom:389.985000px;}
.y1d_c00077{bottom:417.390000px;}
.y1c_c00077{bottom:448.350000px;}
.y1a_c00077{bottom:479.310000px;}
.y1b_c00077{bottom:487.590000px;}
.y19_c00077{bottom:510.630000px;}
.y18_c00077{bottom:541.620000px;}
.y17_c00077{bottom:572.580000px;}
.y16_c00077{bottom:603.540000px;}
.y15_c00077{bottom:634.860000px;}
.y14_c00077{bottom:674.850000px;}
.y12_c00077{bottom:714.810000px;}
.y13_c00077{bottom:723.090000px;}
.y11_c00077{bottom:745.770000px;}
.y10_c00077{bottom:777.135000px;}
.yf_c00077{bottom:808.095000px;}
.ye_c00077{bottom:839.055000px;}
.yd_c00077{bottom:870.015000px;}
.yc_c00077{bottom:910.365000px;}
.yb_c00077{bottom:941.325000px;}
.ya_c00077{bottom:972.285000px;}
.y9_c00077{bottom:1003.245000px;}
.y8_c00077{bottom:1034.610000px;}
.y7_c00077{bottom:1065.570000px;}
.y2_c00077{bottom:1113.090000px;}
.h2_c00077{height:20.910000px;}
.h8_c00077{height:34.855313px;}
.hb_c00077{height:38.158594px;}
.h3_c00077{height:41.395500px;}
.h6_c00077{height:46.638281px;}
.h9_c00077{height:54.219375px;}
.ha_c00077{height:59.357813px;}
.h1_c00077{height:64.546875px;}
.h7_c00077{height:70.628906px;}
.h4_c00077{height:70.664062px;}
.h5_c00077{height:1187.995500px;}
.h0_c00077{height:1188.000000px;}
.w1_c00077{width:8.265000px;}
.w2_c00077{width:663.345000px;}
.w3_c00077{width:917.997000px;}
.w0_c00077{width:918.000000px;}
.x0_c00077{left:0.000000px;}
.x3_c00077{left:127.489500px;}
.xa_c00077{left:137.556000px;}
.x1_c00077{left:154.515000px;}
.x6_c00077{left:178.635000px;}
.x4_c00077{left:275.862000px;}
.x5_c00077{left:288.105000px;}
.x9_c00077{left:343.590000px;}
.x7_c00077{left:463.137000px;}
.x8_c00077{left:475.380000px;}
.x2_c00077{left:782.565000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls15_c00077{letter-spacing:-1.258667pt;}
.ls16_c00077{letter-spacing:-0.864000pt;}
.ls13_c00077{letter-spacing:-0.816000pt;}
.ls11_c00077{letter-spacing:-0.381333pt;}
.lsf_c00077{letter-spacing:-0.214933pt;}
.lsc_c00077{letter-spacing:0.000000pt;}
.ls12_c00077{letter-spacing:0.020267pt;}
.lsd_c00077{letter-spacing:0.053867pt;}
.lse_c00077{letter-spacing:0.148267pt;}
.ls8_c00077{letter-spacing:0.150187pt;}
.ls10_c00077{letter-spacing:0.414933pt;}
.ls0_c00077{letter-spacing:0.448000pt;}
.ls4_c00077{letter-spacing:0.460800pt;}
.ls17_c00077{letter-spacing:0.463467pt;}
.ls14_c00077{letter-spacing:0.470933pt;}
.lsb_c00077{letter-spacing:0.629760pt;}
.ls1_c00077{letter-spacing:0.640000pt;}
.ls9_c00077{letter-spacing:1.920000pt;}
.ls7_c00077{letter-spacing:3.200000pt;}
.lsa_c00077{letter-spacing:3.217920pt;}
.ls5_c00077{letter-spacing:4.480000pt;}
.ls6_c00077{letter-spacing:4.586667pt;}
.ls2_c00077{letter-spacing:5.888000pt;}
.ls3_c00077{letter-spacing:8.320000pt;}
.ws1_c00077{word-spacing:-64.000000pt;}
.ws0_c00077{word-spacing:-16.000000pt;}
.ws9_c00077{word-spacing:-13.903467pt;}
.wsa_c00077{word-spacing:-13.900800pt;}
.ws3_c00077{word-spacing:-13.588267pt;}
.ws7_c00077{word-spacing:-13.493867pt;}
.ws2_c00077{word-spacing:-13.440000pt;}
.ws4_c00077{word-spacing:-13.225067pt;}
.ws5_c00077{word-spacing:-13.058667pt;}
.ws6_c00077{word-spacing:-12.624000pt;}
.ws8_c00077{word-spacing:-12.181333pt;}
.wsb_c00077{word-spacing:0.000000pt;}
._4_c00077{margin-left:-2.432000pt;}
._1_c00077{margin-left:-1.280000pt;}
._0_c00077{width:0.960000pt;}
._5_c00077{width:1.984000pt;}
._9_c00077{width:3.072000pt;}
._11_c00077{width:4.002987pt;}
._b_c00077{width:4.928000pt;}
._e_c00077{width:6.080000pt;}
._2_c00077{width:7.104000pt;}
._3_c00077{width:8.384000pt;}
._7_c00077{width:10.176000pt;}
._6_c00077{width:11.072000pt;}
._8_c00077{width:12.480000pt;}
._10_c00077{width:13.632000pt;}
._d_c00077{width:15.104000pt;}
._c_c00077{width:17.408000pt;}
._f_c00077{width:18.624000pt;}
._a_c00077{width:165.898688pt;}
.fs2_c00077{font-size:34.560000pt;}
.fs1_c00077{font-size:42.240000pt;}
.fs3_c00077{font-size:53.760000pt;}
.fs0_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y6_c00077{bottom:4.156000pt;}
.y3_c00077{bottom:4.160000pt;}
.y5_c00077{bottom:22.396000pt;}
.y4_c00077{bottom:29.156000pt;}
.y1_c00077{bottom:51.552000pt;}
.y2f_c00077{bottom:116.192000pt;}
.y2e_c00077{bottom:131.552000pt;}
.y2d_c00077{bottom:146.626667pt;}
.y2c_c00077{bottom:161.986667pt;}
.y2b_c00077{bottom:177.346667pt;}
.y2a_c00077{bottom:192.706667pt;}
.y29_c00077{bottom:208.066667pt;}
.y28_c00077{bottom:223.426667pt;}
.y27_c00077{bottom:238.786667pt;}
.y26_c00077{bottom:254.173333pt;}
.y25_c00077{bottom:269.533333pt;}
.y24_c00077{bottom:284.893333pt;}
.y23_c00077{bottom:300.253333pt;}
.y22_c00077{bottom:306.333333pt;}
.y21_c00077{bottom:315.293333pt;}
.y20_c00077{bottom:330.653333pt;}
.y1f_c00077{bottom:336.733333pt;}
.y1e_c00077{bottom:346.653333pt;}
.y1d_c00077{bottom:371.013333pt;}
.y1c_c00077{bottom:398.533333pt;}
.y1a_c00077{bottom:426.053333pt;}
.y1b_c00077{bottom:433.413333pt;}
.y19_c00077{bottom:453.893333pt;}
.y18_c00077{bottom:481.440000pt;}
.y17_c00077{bottom:508.960000pt;}
.y16_c00077{bottom:536.480000pt;}
.y15_c00077{bottom:564.320000pt;}
.y14_c00077{bottom:599.866667pt;}
.y12_c00077{bottom:635.386667pt;}
.y13_c00077{bottom:642.746667pt;}
.y11_c00077{bottom:662.906667pt;}
.y10_c00077{bottom:690.786667pt;}
.yf_c00077{bottom:718.306667pt;}
.ye_c00077{bottom:745.826667pt;}
.yd_c00077{bottom:773.346667pt;}
.yc_c00077{bottom:809.213333pt;}
.yb_c00077{bottom:836.733333pt;}
.ya_c00077{bottom:864.253333pt;}
.y9_c00077{bottom:891.773333pt;}
.y8_c00077{bottom:919.653333pt;}
.y7_c00077{bottom:947.173333pt;}
.y2_c00077{bottom:989.413333pt;}
.h2_c00077{height:18.586667pt;}
.h8_c00077{height:30.982500pt;}
.hb_c00077{height:33.918750pt;}
.h3_c00077{height:36.796000pt;}
.h6_c00077{height:41.456250pt;}
.h9_c00077{height:48.195000pt;}
.ha_c00077{height:52.762500pt;}
.h1_c00077{height:57.375000pt;}
.h7_c00077{height:62.781250pt;}
.h4_c00077{height:62.812500pt;}
.h5_c00077{height:1055.996000pt;}
.h0_c00077{height:1056.000000pt;}
.w1_c00077{width:7.346667pt;}
.w2_c00077{width:589.640000pt;}
.w3_c00077{width:815.997333pt;}
.w0_c00077{width:816.000000pt;}
.x0_c00077{left:0.000000pt;}
.x3_c00077{left:113.324000pt;}
.xa_c00077{left:122.272000pt;}
.x1_c00077{left:137.346667pt;}
.x6_c00077{left:158.786667pt;}
.x4_c00077{left:245.210667pt;}
.x5_c00077{left:256.093333pt;}
.x9_c00077{left:305.413333pt;}
.x7_c00077{left:411.677333pt;}
.x8_c00077{left:422.560000pt;}
.x2_c00077{left:695.613333pt;}
}





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

.ir_c00078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00078;src:url('chunks/assets/font_18cf056593f699910b2369ed.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00078;src:url('chunks/assets/font_33d82af3d90c0c4b7f69f7b6.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_03a9b68ba9f4d007f90e5faf.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_f51b6e02e9fdbb696fc22b18.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;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_c00078;src:url('chunks/assets/font_2fed3a995fcd6d5c87774a92.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00078;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff6_c00078{font-family:ff6_c00078;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls5_c00078{letter-spacing:-2.880000px;}
.ls7_c00078{letter-spacing:-0.486600px;}
.ls4_c00078{letter-spacing:-0.144000px;}
.ls6_c00078{letter-spacing:-0.020400px;}
.ls3_c00078{letter-spacing:0.000000px;}
.ls1_c00078{letter-spacing:0.180000px;}
.ls2_c00078{letter-spacing:0.720000px;}
.ls0_c00078{letter-spacing:9.360000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00078{word-spacing:-18.000000px;}
.ws2_c00078{word-spacing:-15.120000px;}
.ws1_c00078{word-spacing:-15.099600px;}
.ws3_c00078{word-spacing:-14.633400px;}
.ws4_c00078{word-spacing:0.000000px;}
._f_c00078{margin-left:-3.659976px;}
._2_c00078{margin-left:-2.448000px;}
._1_c00078{margin-left:-1.296000px;}
._0_c00078{width:1.368000px;}
._3_c00078{width:2.808000px;}
._a_c00078{width:3.816000px;}
._4_c00078{width:4.824000px;}
._5_c00078{width:6.768000px;}
._7_c00078{width:7.848000px;}
._e_c00078{width:8.928000px;}
._6_c00078{width:10.715976px;}
._d_c00078{width:12.744000px;}
._c_c00078{width:14.184000px;}
._b_c00078{width:15.768000px;}
._17_c00078{width:19.008000px;}
._15_c00078{width:20.016000px;}
._16_c00078{width:21.456000px;}
._8_c00078{width:23.268000px;}
._9_c00078{width:25.200000px;}
._11_c00078{width:26.759952px;}
._10_c00078{width:27.864000px;}
._12_c00078{width:40.523976px;}
._14_c00078{width:41.616000px;}
._13_c00078{width:43.128000px;}
.fc0_c00078{color:rgb(0,0,0);}
.fs2_c00078{font-size:38.880000px;}
.fs1_c00078{font-size:47.520000px;}
.fs3_c00078{font-size:60.480000px;}
.fs0_c00078{font-size:72.000000px;}
.y0_c00078{bottom:0.000000px;}
.y6_c00078{bottom:4.675500px;}
.y3_c00078{bottom:4.680000px;}
.y5_c00078{bottom:25.195500px;}
.y4_c00078{bottom:32.800500px;}
.y1_c00078{bottom:57.996000px;}
.y29_c00078{bottom:130.716000px;}
.y28_c00078{bottom:147.996000px;}
.y27_c00078{bottom:154.875000px;}
.y26_c00078{bottom:164.955000px;}
.y25_c00078{bottom:171.795000px;}
.y24_c00078{bottom:182.955000px;}
.y23_c00078{bottom:212.835000px;}
.y22_c00078{bottom:244.155000px;}
.y21_c00078{bottom:275.145000px;}
.y1f_c00078{bottom:306.105000px;}
.y20_c00078{bottom:314.385000px;}
.y1e_c00078{bottom:337.065000px;}
.y1d_c00078{bottom:368.385000px;}
.y1c_c00078{bottom:408.390000px;}
.y1b_c00078{bottom:448.350000px;}
.y1a_c00078{bottom:479.310000px;}
.y19_c00078{bottom:510.630000px;}
.y17_c00078{bottom:541.620000px;}
.y18_c00078{bottom:549.900000px;}
.y16_c00078{bottom:572.580000px;}
.y15_c00078{bottom:603.540000px;}
.y14_c00078{bottom:643.890000px;}
.y13_c00078{bottom:674.850000px;}
.y12_c00078{bottom:705.810000px;}
.y11_c00078{bottom:736.770000px;}
.y10_c00078{bottom:768.135000px;}
.yf_c00078{bottom:799.095000px;}
.ye_c00078{bottom:830.055000px;}
.yd_c00078{bottom:870.015000px;}
.yc_c00078{bottom:910.365000px;}
.yb_c00078{bottom:941.325000px;}
.ya_c00078{bottom:972.285000px;}
.y9_c00078{bottom:1003.245000px;}
.y8_c00078{bottom:1034.610000px;}
.y7_c00078{bottom:1065.570000px;}
.y2_c00078{bottom:1113.090000px;}
.h2_c00078{height:20.910000px;}
.h8_c00078{height:38.158594px;}
.h3_c00078{height:41.395500px;}
.h7_c00078{height:46.638281px;}
.h9_c00078{height:59.357813px;}
.h1_c00078{height:64.546875px;}
.h5_c00078{height:70.628906px;}
.h4_c00078{height:70.664062px;}
.h6_c00078{height:1187.995500px;}
.h0_c00078{height:1188.000000px;}
.w1_c00078{width:8.265000px;}
.w2_c00078{width:663.345000px;}
.w3_c00078{width:917.997000px;}
.w0_c00078{width:918.000000px;}
.x0_c00078{left:0.000000px;}
.x3_c00078{left:127.489500px;}
.x9_c00078{left:137.556000px;}
.x1_c00078{left:154.515000px;}
.x7_c00078{left:166.392000px;}
.x4_c00078{left:178.635000px;}
.x8_c00078{left:343.590000px;}
.x5_c00078{left:614.367000px;}
.x6_c00078{left:626.610000px;}
.x2_c00078{left:782.565000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls5_c00078{letter-spacing:-2.560000pt;}
.ls7_c00078{letter-spacing:-0.432533pt;}
.ls4_c00078{letter-spacing:-0.128000pt;}
.ls6_c00078{letter-spacing:-0.018133pt;}
.ls3_c00078{letter-spacing:0.000000pt;}
.ls1_c00078{letter-spacing:0.160000pt;}
.ls2_c00078{letter-spacing:0.640000pt;}
.ls0_c00078{letter-spacing:8.320000pt;}
.ws0_c00078{word-spacing:-16.000000pt;}
.ws2_c00078{word-spacing:-13.440000pt;}
.ws1_c00078{word-spacing:-13.421867pt;}
.ws3_c00078{word-spacing:-13.007467pt;}
.ws4_c00078{word-spacing:0.000000pt;}
._f_c00078{margin-left:-3.253312pt;}
._2_c00078{margin-left:-2.176000pt;}
._1_c00078{margin-left:-1.152000pt;}
._0_c00078{width:1.216000pt;}
._3_c00078{width:2.496000pt;}
._a_c00078{width:3.392000pt;}
._4_c00078{width:4.288000pt;}
._5_c00078{width:6.016000pt;}
._7_c00078{width:6.976000pt;}
._e_c00078{width:7.936000pt;}
._6_c00078{width:9.525312pt;}
._d_c00078{width:11.328000pt;}
._c_c00078{width:12.608000pt;}
._b_c00078{width:14.016000pt;}
._17_c00078{width:16.896000pt;}
._15_c00078{width:17.792000pt;}
._16_c00078{width:19.072000pt;}
._8_c00078{width:20.682667pt;}
._9_c00078{width:22.400000pt;}
._11_c00078{width:23.786624pt;}
._10_c00078{width:24.768000pt;}
._12_c00078{width:36.021312pt;}
._14_c00078{width:36.992000pt;}
._13_c00078{width:38.336000pt;}
.fs2_c00078{font-size:34.560000pt;}
.fs1_c00078{font-size:42.240000pt;}
.fs3_c00078{font-size:53.760000pt;}
.fs0_c00078{font-size:64.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.y6_c00078{bottom:4.156000pt;}
.y3_c00078{bottom:4.160000pt;}
.y5_c00078{bottom:22.396000pt;}
.y4_c00078{bottom:29.156000pt;}
.y1_c00078{bottom:51.552000pt;}
.y29_c00078{bottom:116.192000pt;}
.y28_c00078{bottom:131.552000pt;}
.y27_c00078{bottom:137.666667pt;}
.y26_c00078{bottom:146.626667pt;}
.y25_c00078{bottom:152.706667pt;}
.y24_c00078{bottom:162.626667pt;}
.y23_c00078{bottom:189.186667pt;}
.y22_c00078{bottom:217.026667pt;}
.y21_c00078{bottom:244.573333pt;}
.y1f_c00078{bottom:272.093333pt;}
.y20_c00078{bottom:279.453333pt;}
.y1e_c00078{bottom:299.613333pt;}
.y1d_c00078{bottom:327.453333pt;}
.y1c_c00078{bottom:363.013333pt;}
.y1b_c00078{bottom:398.533333pt;}
.y1a_c00078{bottom:426.053333pt;}
.y19_c00078{bottom:453.893333pt;}
.y17_c00078{bottom:481.440000pt;}
.y18_c00078{bottom:488.800000pt;}
.y16_c00078{bottom:508.960000pt;}
.y15_c00078{bottom:536.480000pt;}
.y14_c00078{bottom:572.346667pt;}
.y13_c00078{bottom:599.866667pt;}
.y12_c00078{bottom:627.386667pt;}
.y11_c00078{bottom:654.906667pt;}
.y10_c00078{bottom:682.786667pt;}
.yf_c00078{bottom:710.306667pt;}
.ye_c00078{bottom:737.826667pt;}
.yd_c00078{bottom:773.346667pt;}
.yc_c00078{bottom:809.213333pt;}
.yb_c00078{bottom:836.733333pt;}
.ya_c00078{bottom:864.253333pt;}
.y9_c00078{bottom:891.773333pt;}
.y8_c00078{bottom:919.653333pt;}
.y7_c00078{bottom:947.173333pt;}
.y2_c00078{bottom:989.413333pt;}
.h2_c00078{height:18.586667pt;}
.h8_c00078{height:33.918750pt;}
.h3_c00078{height:36.796000pt;}
.h7_c00078{height:41.456250pt;}
.h9_c00078{height:52.762500pt;}
.h1_c00078{height:57.375000pt;}
.h5_c00078{height:62.781250pt;}
.h4_c00078{height:62.812500pt;}
.h6_c00078{height:1055.996000pt;}
.h0_c00078{height:1056.000000pt;}
.w1_c00078{width:7.346667pt;}
.w2_c00078{width:589.640000pt;}
.w3_c00078{width:815.997333pt;}
.w0_c00078{width:816.000000pt;}
.x0_c00078{left:0.000000pt;}
.x3_c00078{left:113.324000pt;}
.x9_c00078{left:122.272000pt;}
.x1_c00078{left:137.346667pt;}
.x7_c00078{left:147.904000pt;}
.x4_c00078{left:158.786667pt;}
.x8_c00078{left:305.413333pt;}
.x5_c00078{left:546.104000pt;}
.x6_c00078{left:556.986667pt;}
.x2_c00078{left:695.613333pt;}
}





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

.ir_c00079:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00079;src:url('chunks/assets/font_1b2f0614bb09db165a5b8231.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_31939aded21616117103383c.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_9eff357b19d05370693555d9.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;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_c00079;src:url('chunks/assets/font_2dc2a1df338bf3832e6c519d.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00079;src:url('chunks/assets/font_34c764e4cbe036c7b3991ffb.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls4_c00079{letter-spacing:-1.440000px;}
.ls3_c00079{letter-spacing:-1.296000px;}
.ls2_c00079{letter-spacing:0.000000px;}
.ls1_c00079{letter-spacing:0.720000px;}
.ls0_c00079{letter-spacing:2.160000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00079{word-spacing:-18.000000px;}
.ws0_c00079{word-spacing:-16.704000px;}
.ws2_c00079{word-spacing:-15.120000px;}
.ws3_c00079{word-spacing:0.000000px;}
._3_c00079{margin-left:-2.376000px;}
._1_c00079{margin-left:-1.296000px;}
._0_c00079{width:1.080000px;}
._2_c00079{width:2.088000px;}
._6_c00079{width:3.744000px;}
._7_c00079{width:5.124024px;}
._8_c00079{width:6.984000px;}
._9_c00079{width:8.136000px;}
._4_c00079{width:9.288000px;}
._5_c00079{width:11.304000px;}
._12_c00079{width:15.096000px;}
._11_c00079{width:16.356000px;}
._10_c00079{width:19.152000px;}
._e_c00079{width:20.880000px;}
._f_c00079{width:22.032000px;}
._b_c00079{width:24.336000px;}
._a_c00079{width:25.704000px;}
._c_c00079{width:36.720000px;}
._d_c00079{width:38.664000px;}
.fc0_c00079{color:rgb(0,0,0);}
.fs2_c00079{font-size:38.880000px;}
.fs1_c00079{font-size:47.520000px;}
.fs3_c00079{font-size:60.480000px;}
.fs0_c00079{font-size:72.000000px;}
.y0_c00079{bottom:0.000000px;}
.y6_c00079{bottom:4.675500px;}
.y3_c00079{bottom:4.680000px;}
.y5_c00079{bottom:25.195500px;}
.y4_c00079{bottom:32.800500px;}
.y1_c00079{bottom:57.996000px;}
.y28_c00079{bottom:130.716000px;}
.y27_c00079{bottom:147.996000px;}
.y26_c00079{bottom:164.955000px;}
.y25_c00079{bottom:182.235000px;}
.y24_c00079{bottom:189.075000px;}
.y23_c00079{bottom:200.235000px;}
.y22_c00079{bottom:239.835000px;}
.y21_c00079{bottom:271.155000px;}
.y20_c00079{bottom:302.145000px;}
.y1f_c00079{bottom:333.105000px;}
.y1e_c00079{bottom:364.065000px;}
.y1d_c00079{bottom:395.430000px;}
.y1c_c00079{bottom:426.390000px;}
.y1b_c00079{bottom:457.350000px;}
.y1a_c00079{bottom:488.310000px;}
.y19_c00079{bottom:519.660000px;}
.y18_c00079{bottom:559.620000px;}
.y17_c00079{bottom:590.580000px;}
.y15_c00079{bottom:621.540000px;}
.y16_c00079{bottom:629.820000px;}
.y14_c00079{bottom:652.890000px;}
.y13_c00079{bottom:683.850000px;}
.y12_c00079{bottom:714.810000px;}
.y11_c00079{bottom:745.770000px;}
.y10_c00079{bottom:777.135000px;}
.yf_c00079{bottom:817.095000px;}
.ye_c00079{bottom:848.055000px;}
.yd_c00079{bottom:879.015000px;}
.yc_c00079{bottom:910.365000px;}
.yb_c00079{bottom:941.325000px;}
.ya_c00079{bottom:972.285000px;}
.y9_c00079{bottom:1003.245000px;}
.y8_c00079{bottom:1034.610000px;}
.y7_c00079{bottom:1065.570000px;}
.y2_c00079{bottom:1113.090000px;}
.h2_c00079{height:20.910000px;}
.h7_c00079{height:38.158594px;}
.h3_c00079{height:41.395500px;}
.h6_c00079{height:46.638281px;}
.h8_c00079{height:59.357813px;}
.h1_c00079{height:64.546875px;}
.h4_c00079{height:70.664062px;}
.h5_c00079{height:1187.995500px;}
.h0_c00079{height:1188.000000px;}
.w1_c00079{width:8.265000px;}
.w2_c00079{width:663.345000px;}
.w3_c00079{width:917.997000px;}
.w0_c00079{width:918.000000px;}
.x0_c00079{left:0.000000px;}
.x3_c00079{left:127.489500px;}
.x7_c00079{left:137.556000px;}
.x1_c00079{left:154.515000px;}
.x4_c00079{left:178.635000px;}
.x5_c00079{left:191.595000px;}
.x6_c00079{left:343.590000px;}
.x2_c00079{left:782.565000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls4_c00079{letter-spacing:-1.280000pt;}
.ls3_c00079{letter-spacing:-1.152000pt;}
.ls2_c00079{letter-spacing:0.000000pt;}
.ls1_c00079{letter-spacing:0.640000pt;}
.ls0_c00079{letter-spacing:1.920000pt;}
.ws1_c00079{word-spacing:-16.000000pt;}
.ws0_c00079{word-spacing:-14.848000pt;}
.ws2_c00079{word-spacing:-13.440000pt;}
.ws3_c00079{word-spacing:0.000000pt;}
._3_c00079{margin-left:-2.112000pt;}
._1_c00079{margin-left:-1.152000pt;}
._0_c00079{width:0.960000pt;}
._2_c00079{width:1.856000pt;}
._6_c00079{width:3.328000pt;}
._7_c00079{width:4.554688pt;}
._8_c00079{width:6.208000pt;}
._9_c00079{width:7.232000pt;}
._4_c00079{width:8.256000pt;}
._5_c00079{width:10.048000pt;}
._12_c00079{width:13.418667pt;}
._11_c00079{width:14.538667pt;}
._10_c00079{width:17.024000pt;}
._e_c00079{width:18.560000pt;}
._f_c00079{width:19.584000pt;}
._b_c00079{width:21.632000pt;}
._a_c00079{width:22.848000pt;}
._c_c00079{width:32.640000pt;}
._d_c00079{width:34.368000pt;}
.fs2_c00079{font-size:34.560000pt;}
.fs1_c00079{font-size:42.240000pt;}
.fs3_c00079{font-size:53.760000pt;}
.fs0_c00079{font-size:64.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y6_c00079{bottom:4.156000pt;}
.y3_c00079{bottom:4.160000pt;}
.y5_c00079{bottom:22.396000pt;}
.y4_c00079{bottom:29.156000pt;}
.y1_c00079{bottom:51.552000pt;}
.y28_c00079{bottom:116.192000pt;}
.y27_c00079{bottom:131.552000pt;}
.y26_c00079{bottom:146.626667pt;}
.y25_c00079{bottom:161.986667pt;}
.y24_c00079{bottom:168.066667pt;}
.y23_c00079{bottom:177.986667pt;}
.y22_c00079{bottom:213.186667pt;}
.y21_c00079{bottom:241.026667pt;}
.y20_c00079{bottom:268.573333pt;}
.y1f_c00079{bottom:296.093333pt;}
.y1e_c00079{bottom:323.613333pt;}
.y1d_c00079{bottom:351.493333pt;}
.y1c_c00079{bottom:379.013333pt;}
.y1b_c00079{bottom:406.533333pt;}
.y1a_c00079{bottom:434.053333pt;}
.y19_c00079{bottom:461.920000pt;}
.y18_c00079{bottom:497.440000pt;}
.y17_c00079{bottom:524.960000pt;}
.y15_c00079{bottom:552.480000pt;}
.y16_c00079{bottom:559.840000pt;}
.y14_c00079{bottom:580.346667pt;}
.y13_c00079{bottom:607.866667pt;}
.y12_c00079{bottom:635.386667pt;}
.y11_c00079{bottom:662.906667pt;}
.y10_c00079{bottom:690.786667pt;}
.yf_c00079{bottom:726.306667pt;}
.ye_c00079{bottom:753.826667pt;}
.yd_c00079{bottom:781.346667pt;}
.yc_c00079{bottom:809.213333pt;}
.yb_c00079{bottom:836.733333pt;}
.ya_c00079{bottom:864.253333pt;}
.y9_c00079{bottom:891.773333pt;}
.y8_c00079{bottom:919.653333pt;}
.y7_c00079{bottom:947.173333pt;}
.y2_c00079{bottom:989.413333pt;}
.h2_c00079{height:18.586667pt;}
.h7_c00079{height:33.918750pt;}
.h3_c00079{height:36.796000pt;}
.h6_c00079{height:41.456250pt;}
.h8_c00079{height:52.762500pt;}
.h1_c00079{height:57.375000pt;}
.h4_c00079{height:62.812500pt;}
.h5_c00079{height:1055.996000pt;}
.h0_c00079{height:1056.000000pt;}
.w1_c00079{width:7.346667pt;}
.w2_c00079{width:589.640000pt;}
.w3_c00079{width:815.997333pt;}
.w0_c00079{width:816.000000pt;}
.x0_c00079{left:0.000000pt;}
.x3_c00079{left:113.324000pt;}
.x7_c00079{left:122.272000pt;}
.x1_c00079{left:137.346667pt;}
.x4_c00079{left:158.786667pt;}
.x5_c00079{left:170.306667pt;}
.x6_c00079{left:305.413333pt;}
.x2_c00079{left:695.613333pt;}
}





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

.ir_c00080:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00080;src:url('chunks/assets/font_0af81be1dea85c3b7699158c.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_0d831848e6156b95fc2785cd.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_13a262b63120620d0deaf663.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_7d8e0123a7a8216b03fa211a.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;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_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls3_c00080{letter-spacing:0.000000px;}
.ls4_c00080{letter-spacing:0.648000px;}
.ls2_c00080{letter-spacing:0.720000px;}
.ls0_c00080{letter-spacing:9.360000px;}
.ls1_c00080{letter-spacing:20.880000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00080{word-spacing:-18.648000px;}
.ws0_c00080{word-spacing:-18.000000px;}
.ws2_c00080{word-spacing:-15.120000px;}
.ws3_c00080{word-spacing:0.000000px;}
._3_c00080{margin-left:-2.868000px;}
._1_c00080{margin-left:-1.644000px;}
._0_c00080{width:1.944000px;}
._6_c00080{width:3.300000px;}
._7_c00080{width:5.028000px;}
._a_c00080{width:6.720000px;}
._5_c00080{width:8.340000px;}
._4_c00080{width:9.996000px;}
._2_c00080{width:11.652000px;}
._9_c00080{width:12.720000px;}
._8_c00080{width:13.980000px;}
._b_c00080{width:15.624000px;}
._c_c00080{width:16.764000px;}
._10_c00080{width:19.872000px;}
._11_c00080{width:21.336000px;}
._f_c00080{width:30.360000px;}
._d_c00080{width:31.524000px;}
._e_c00080{width:33.228000px;}
.fc0_c00080{color:rgb(0,0,0);}
.fs2_c00080{font-size:38.880000px;}
.fs1_c00080{font-size:47.520000px;}
.fs3_c00080{font-size:60.480000px;}
.fs0_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y6_c00080{bottom:4.675500px;}
.y3_c00080{bottom:4.680000px;}
.y5_c00080{bottom:25.195500px;}
.y4_c00080{bottom:32.800500px;}
.y1_c00080{bottom:57.996000px;}
.y28_c00080{bottom:130.716000px;}
.y27_c00080{bottom:147.996000px;}
.y26_c00080{bottom:164.955000px;}
.y25_c00080{bottom:182.235000px;}
.y24_c00080{bottom:199.515000px;}
.y23_c00080{bottom:216.795000px;}
.y22_c00080{bottom:223.635000px;}
.y21_c00080{bottom:234.795000px;}
.y20_c00080{bottom:266.115000px;}
.y1f_c00080{bottom:297.105000px;}
.y1e_c00080{bottom:328.065000px;}
.y1d_c00080{bottom:368.385000px;}
.y1c_c00080{bottom:408.390000px;}
.y1b_c00080{bottom:448.350000px;}
.y1a_c00080{bottom:479.310000px;}
.y19_c00080{bottom:510.630000px;}
.y18_c00080{bottom:541.620000px;}
.y16_c00080{bottom:572.580000px;}
.y17_c00080{bottom:580.860000px;}
.y15_c00080{bottom:603.540000px;}
.y14_c00080{bottom:643.890000px;}
.y13_c00080{bottom:674.850000px;}
.y12_c00080{bottom:705.810000px;}
.y11_c00080{bottom:736.770000px;}
.y10_c00080{bottom:768.135000px;}
.yf_c00080{bottom:799.095000px;}
.ye_c00080{bottom:830.055000px;}
.yd_c00080{bottom:861.015000px;}
.yc_c00080{bottom:892.365000px;}
.yb_c00080{bottom:923.325000px;}
.ya_c00080{bottom:963.285000px;}
.y9_c00080{bottom:1003.245000px;}
.y8_c00080{bottom:1034.610000px;}
.y7_c00080{bottom:1065.570000px;}
.y2_c00080{bottom:1113.090000px;}
.h2_c00080{height:20.910000px;}
.h8_c00080{height:38.158594px;}
.h3_c00080{height:41.395500px;}
.h7_c00080{height:46.638281px;}
.ha_c00080{height:54.219375px;}
.h9_c00080{height:59.357813px;}
.h1_c00080{height:64.546875px;}
.h5_c00080{height:70.628906px;}
.h4_c00080{height:70.664062px;}
.h6_c00080{height:1187.995500px;}
.h0_c00080{height:1188.000000px;}
.w1_c00080{width:8.265000px;}
.w2_c00080{width:663.345000px;}
.w3_c00080{width:917.997000px;}
.w0_c00080{width:918.000000px;}
.x0_c00080{left:0.000000px;}
.x3_c00080{left:127.489500px;}
.x8_c00080{left:137.556000px;}
.x1_c00080{left:154.515000px;}
.x4_c00080{left:178.635000px;}
.x7_c00080{left:343.590000px;}
.x5_c00080{left:405.507000px;}
.x6_c00080{left:417.750000px;}
.x2_c00080{left:782.565000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls3_c00080{letter-spacing:0.000000pt;}
.ls4_c00080{letter-spacing:0.576000pt;}
.ls2_c00080{letter-spacing:0.640000pt;}
.ls0_c00080{letter-spacing:8.320000pt;}
.ls1_c00080{letter-spacing:18.560000pt;}
.ws1_c00080{word-spacing:-16.576000pt;}
.ws0_c00080{word-spacing:-16.000000pt;}
.ws2_c00080{word-spacing:-13.440000pt;}
.ws3_c00080{word-spacing:0.000000pt;}
._3_c00080{margin-left:-2.549333pt;}
._1_c00080{margin-left:-1.461333pt;}
._0_c00080{width:1.728000pt;}
._6_c00080{width:2.933333pt;}
._7_c00080{width:4.469333pt;}
._a_c00080{width:5.973333pt;}
._5_c00080{width:7.413333pt;}
._4_c00080{width:8.885333pt;}
._2_c00080{width:10.357333pt;}
._9_c00080{width:11.306667pt;}
._8_c00080{width:12.426667pt;}
._b_c00080{width:13.888000pt;}
._c_c00080{width:14.901333pt;}
._10_c00080{width:17.664000pt;}
._11_c00080{width:18.965333pt;}
._f_c00080{width:26.986667pt;}
._d_c00080{width:28.021333pt;}
._e_c00080{width:29.536000pt;}
.fs2_c00080{font-size:34.560000pt;}
.fs1_c00080{font-size:42.240000pt;}
.fs3_c00080{font-size:53.760000pt;}
.fs0_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y6_c00080{bottom:4.156000pt;}
.y3_c00080{bottom:4.160000pt;}
.y5_c00080{bottom:22.396000pt;}
.y4_c00080{bottom:29.156000pt;}
.y1_c00080{bottom:51.552000pt;}
.y28_c00080{bottom:116.192000pt;}
.y27_c00080{bottom:131.552000pt;}
.y26_c00080{bottom:146.626667pt;}
.y25_c00080{bottom:161.986667pt;}
.y24_c00080{bottom:177.346667pt;}
.y23_c00080{bottom:192.706667pt;}
.y22_c00080{bottom:198.786667pt;}
.y21_c00080{bottom:208.706667pt;}
.y20_c00080{bottom:236.546667pt;}
.y1f_c00080{bottom:264.093333pt;}
.y1e_c00080{bottom:291.613333pt;}
.y1d_c00080{bottom:327.453333pt;}
.y1c_c00080{bottom:363.013333pt;}
.y1b_c00080{bottom:398.533333pt;}
.y1a_c00080{bottom:426.053333pt;}
.y19_c00080{bottom:453.893333pt;}
.y18_c00080{bottom:481.440000pt;}
.y16_c00080{bottom:508.960000pt;}
.y17_c00080{bottom:516.320000pt;}
.y15_c00080{bottom:536.480000pt;}
.y14_c00080{bottom:572.346667pt;}
.y13_c00080{bottom:599.866667pt;}
.y12_c00080{bottom:627.386667pt;}
.y11_c00080{bottom:654.906667pt;}
.y10_c00080{bottom:682.786667pt;}
.yf_c00080{bottom:710.306667pt;}
.ye_c00080{bottom:737.826667pt;}
.yd_c00080{bottom:765.346667pt;}
.yc_c00080{bottom:793.213333pt;}
.yb_c00080{bottom:820.733333pt;}
.ya_c00080{bottom:856.253333pt;}
.y9_c00080{bottom:891.773333pt;}
.y8_c00080{bottom:919.653333pt;}
.y7_c00080{bottom:947.173333pt;}
.y2_c00080{bottom:989.413333pt;}
.h2_c00080{height:18.586667pt;}
.h8_c00080{height:33.918750pt;}
.h3_c00080{height:36.796000pt;}
.h7_c00080{height:41.456250pt;}
.ha_c00080{height:48.195000pt;}
.h9_c00080{height:52.762500pt;}
.h1_c00080{height:57.375000pt;}
.h5_c00080{height:62.781250pt;}
.h4_c00080{height:62.812500pt;}
.h6_c00080{height:1055.996000pt;}
.h0_c00080{height:1056.000000pt;}
.w1_c00080{width:7.346667pt;}
.w2_c00080{width:589.640000pt;}
.w3_c00080{width:815.997333pt;}
.w0_c00080{width:816.000000pt;}
.x0_c00080{left:0.000000pt;}
.x3_c00080{left:113.324000pt;}
.x8_c00080{left:122.272000pt;}
.x1_c00080{left:137.346667pt;}
.x4_c00080{left:158.786667pt;}
.x7_c00080{left:305.413333pt;}
.x5_c00080{left:360.450667pt;}
.x6_c00080{left:371.333333pt;}
.x2_c00080{left:695.613333pt;}
}





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

.ir_c00081:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00081;src:url('chunks/assets/font_d6827ec675dc19194670a5ad.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_29c0f8d9e40defb6240939ac.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_4bc78cf9c3c3c55aec13f56c.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;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_c00081;src:url('chunks/assets/font_8d731d9f96545de2fd32d807.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00081;src:url('chunks/assets/font_82450ec6dbdabcfc2f6d43c1.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00081;src:url('chunks/assets/font_65f8f97439316b19c91947aa.woff2')format("woff");}.ff6_c00081{font-family:ff6_c00081;line-height:1.104004;font-style:normal;font-weight: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_c00081;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00081{font-family:ff7_c00081;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls6_c00081{letter-spacing:-2.880000px;}
.ls8_c00081{letter-spacing:-0.302400px;}
.ls7_c00081{letter-spacing:-0.241800px;}
.ls4_c00081{letter-spacing:0.000000px;}
.ls9_c00081{letter-spacing:0.529800px;}
.ls2_c00081{letter-spacing:0.691573px;}
.ls3_c00081{letter-spacing:0.703347px;}
.ls0_c00081{letter-spacing:0.720000px;}
.ls5_c00081{letter-spacing:1.152000px;}
.ls1_c00081{letter-spacing:13.680000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00081{word-spacing:-72.000000px;}
.ws0_c00081{word-spacing:-18.000000px;}
.ws3_c00081{word-spacing:-15.120000px;}
.ws2_c00081{word-spacing:-14.878200px;}
.ws4_c00081{word-spacing:-14.817600px;}
.ws5_c00081{word-spacing:0.000000px;}
._1_c00081{margin-left:-2.736000px;}
._2_c00081{margin-left:-1.584000px;}
._0_c00081{width:1.224000px;}
._4_c00081{width:2.748024px;}
._5_c00081{width:4.332024px;}
._3_c00081{width:5.603976px;}
._e_c00081{width:6.912000px;}
._6_c00081{width:7.992000px;}
._7_c00081{width:9.000000px;}
._b_c00081{width:12.096000px;}
._8_c00081{width:13.104000px;}
._9_c00081{width:14.484000px;}
._a_c00081{width:16.176000px;}
._13_c00081{width:21.503952px;}
._11_c00081{width:22.680000px;}
._12_c00081{width:23.832000px;}
._c_c00081{width:35.208000px;}
._d_c00081{width:36.504000px;}
._f_c00081{width:41.531976px;}
._10_c00081{width:43.224048px;}
.fc0_c00081{color:rgb(0,0,0);}
.fs3_c00081{font-size:38.880000px;}
.fs2_c00081{font-size:47.520000px;}
.fs1_c00081{font-size:60.480000px;}
.fs0_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.y6_c00081{bottom:4.675500px;}
.y3_c00081{bottom:4.680000px;}
.y5_c00081{bottom:25.195500px;}
.y4_c00081{bottom:32.800500px;}
.y1_c00081{bottom:57.996000px;}
.y27_c00081{bottom:130.716000px;}
.y26_c00081{bottom:147.996000px;}
.y25_c00081{bottom:154.875000px;}
.y24_c00081{bottom:165.675000px;}
.y23_c00081{bottom:215.355000px;}
.y22_c00081{bottom:246.675000px;}
.y20_c00081{bottom:277.665000px;}
.y21_c00081{bottom:285.945000px;}
.y1f_c00081{bottom:308.625000px;}
.y1e_c00081{bottom:346.425000px;}
.y1d_c00081{bottom:372.345000px;}
.y1c_c00081{bottom:398.310000px;}
.y1b_c00081{bottom:435.390000px;}
.y1a_c00081{bottom:466.350000px;}
.y19_c00081{bottom:497.310000px;}
.y18_c00081{bottom:528.660000px;}
.y17_c00081{bottom:559.620000px;}
.y16_c00081{bottom:590.580000px;}
.y15_c00081{bottom:621.540000px;}
.y14_c00081{bottom:652.890000px;}
.y13_c00081{bottom:692.850000px;}
.y12_c00081{bottom:723.810000px;}
.y11_c00081{bottom:754.770000px;}
.y10_c00081{bottom:786.135000px;}
.yf_c00081{bottom:817.095000px;}
.ye_c00081{bottom:848.055000px;}
.yd_c00081{bottom:879.015000px;}
.yc_c00081{bottom:910.365000px;}
.yb_c00081{bottom:941.325000px;}
.ya_c00081{bottom:972.285000px;}
.y9_c00081{bottom:1003.245000px;}
.y8_c00081{bottom:1034.610000px;}
.y7_c00081{bottom:1065.570000px;}
.y2_c00081{bottom:1113.090000px;}
.h2_c00081{height:20.910000px;}
.h9_c00081{height:38.158594px;}
.h3_c00081{height:41.395500px;}
.h8_c00081{height:46.638281px;}
.h6_c00081{height:59.357813px;}
.h5_c00081{height:60.952500px;}
.h1_c00081{height:64.546875px;}
.h4_c00081{height:70.664062px;}
.h7_c00081{height:1187.995500px;}
.h0_c00081{height:1188.000000px;}
.w1_c00081{width:8.265000px;}
.w2_c00081{width:663.345000px;}
.w3_c00081{width:917.997000px;}
.w0_c00081{width:918.000000px;}
.x0_c00081{left:0.000000px;}
.x3_c00081{left:127.489500px;}
.x8_c00081{left:137.556000px;}
.x1_c00081{left:154.515000px;}
.x4_c00081{left:169.995000px;}
.x7_c00081{left:343.590000px;}
.x5_c00081{left:484.737000px;}
.x6_c00081{left:496.980000px;}
.x2_c00081{left:782.565000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls6_c00081{letter-spacing:-2.560000pt;}
.ls8_c00081{letter-spacing:-0.268800pt;}
.ls7_c00081{letter-spacing:-0.214933pt;}
.ls4_c00081{letter-spacing:0.000000pt;}
.ls9_c00081{letter-spacing:0.470933pt;}
.ls2_c00081{letter-spacing:0.614732pt;}
.ls3_c00081{letter-spacing:0.625197pt;}
.ls0_c00081{letter-spacing:0.640000pt;}
.ls5_c00081{letter-spacing:1.024000pt;}
.ls1_c00081{letter-spacing:12.160000pt;}
.ws1_c00081{word-spacing:-64.000000pt;}
.ws0_c00081{word-spacing:-16.000000pt;}
.ws3_c00081{word-spacing:-13.440000pt;}
.ws2_c00081{word-spacing:-13.225067pt;}
.ws4_c00081{word-spacing:-13.171200pt;}
.ws5_c00081{word-spacing:0.000000pt;}
._1_c00081{margin-left:-2.432000pt;}
._2_c00081{margin-left:-1.408000pt;}
._0_c00081{width:1.088000pt;}
._4_c00081{width:2.442688pt;}
._5_c00081{width:3.850688pt;}
._3_c00081{width:4.981312pt;}
._e_c00081{width:6.144000pt;}
._6_c00081{width:7.104000pt;}
._7_c00081{width:8.000000pt;}
._b_c00081{width:10.752000pt;}
._8_c00081{width:11.648000pt;}
._9_c00081{width:12.874667pt;}
._a_c00081{width:14.378667pt;}
._13_c00081{width:19.114624pt;}
._11_c00081{width:20.160000pt;}
._12_c00081{width:21.184000pt;}
._c_c00081{width:31.296000pt;}
._d_c00081{width:32.448000pt;}
._f_c00081{width:36.917312pt;}
._10_c00081{width:38.421376pt;}
.fs3_c00081{font-size:34.560000pt;}
.fs2_c00081{font-size:42.240000pt;}
.fs1_c00081{font-size:53.760000pt;}
.fs0_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y6_c00081{bottom:4.156000pt;}
.y3_c00081{bottom:4.160000pt;}
.y5_c00081{bottom:22.396000pt;}
.y4_c00081{bottom:29.156000pt;}
.y1_c00081{bottom:51.552000pt;}
.y27_c00081{bottom:116.192000pt;}
.y26_c00081{bottom:131.552000pt;}
.y25_c00081{bottom:137.666667pt;}
.y24_c00081{bottom:147.266667pt;}
.y23_c00081{bottom:191.426667pt;}
.y22_c00081{bottom:219.266667pt;}
.y20_c00081{bottom:246.813333pt;}
.y21_c00081{bottom:254.173333pt;}
.y1f_c00081{bottom:274.333333pt;}
.y1e_c00081{bottom:307.933333pt;}
.y1d_c00081{bottom:330.973333pt;}
.y1c_c00081{bottom:354.053333pt;}
.y1b_c00081{bottom:387.013333pt;}
.y1a_c00081{bottom:414.533333pt;}
.y19_c00081{bottom:442.053333pt;}
.y18_c00081{bottom:469.920000pt;}
.y17_c00081{bottom:497.440000pt;}
.y16_c00081{bottom:524.960000pt;}
.y15_c00081{bottom:552.480000pt;}
.y14_c00081{bottom:580.346667pt;}
.y13_c00081{bottom:615.866667pt;}
.y12_c00081{bottom:643.386667pt;}
.y11_c00081{bottom:670.906667pt;}
.y10_c00081{bottom:698.786667pt;}
.yf_c00081{bottom:726.306667pt;}
.ye_c00081{bottom:753.826667pt;}
.yd_c00081{bottom:781.346667pt;}
.yc_c00081{bottom:809.213333pt;}
.yb_c00081{bottom:836.733333pt;}
.ya_c00081{bottom:864.253333pt;}
.y9_c00081{bottom:891.773333pt;}
.y8_c00081{bottom:919.653333pt;}
.y7_c00081{bottom:947.173333pt;}
.y2_c00081{bottom:989.413333pt;}
.h2_c00081{height:18.586667pt;}
.h9_c00081{height:33.918750pt;}
.h3_c00081{height:36.796000pt;}
.h8_c00081{height:41.456250pt;}
.h6_c00081{height:52.762500pt;}
.h5_c00081{height:54.180000pt;}
.h1_c00081{height:57.375000pt;}
.h4_c00081{height:62.812500pt;}
.h7_c00081{height:1055.996000pt;}
.h0_c00081{height:1056.000000pt;}
.w1_c00081{width:7.346667pt;}
.w2_c00081{width:589.640000pt;}
.w3_c00081{width:815.997333pt;}
.w0_c00081{width:816.000000pt;}
.x0_c00081{left:0.000000pt;}
.x3_c00081{left:113.324000pt;}
.x8_c00081{left:122.272000pt;}
.x1_c00081{left:137.346667pt;}
.x4_c00081{left:151.106667pt;}
.x7_c00081{left:305.413333pt;}
.x5_c00081{left:430.877333pt;}
.x6_c00081{left:441.760000pt;}
.x2_c00081{left:695.613333pt;}
}





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

.ir_c00082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00082;src:url('chunks/assets/font_fcaa6eea0af8f5031b52e74e.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_6d2c3712916c54580df45aff.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_4b2108c109f4ce25a8650f11.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_f239b06cf01d39d86344aa87.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls7_c00082{letter-spacing:-1.440000px;}
.ls4_c00082{letter-spacing:-0.936000px;}
.ls5_c00082{letter-spacing:-0.792000px;}
.ls6_c00082{letter-spacing:-0.720000px;}
.ls2_c00082{letter-spacing:0.000000px;}
.ls3_c00082{letter-spacing:0.648000px;}
.ls0_c00082{letter-spacing:0.720000px;}
.ls1_c00082{letter-spacing:9.360000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00082{word-spacing:-18.648000px;}
.ws0_c00082{word-spacing:-18.000000px;}
.ws3_c00082{word-spacing:-17.208000px;}
.ws2_c00082{word-spacing:-17.064000px;}
.ws4_c00082{word-spacing:-13.680000px;}
.ws5_c00082{word-spacing:0.000000px;}
._a_c00082{margin-left:-3.600000px;}
._6_c00082{margin-left:-2.376000px;}
._3_c00082{margin-left:-1.296000px;}
._2_c00082{width:1.080000px;}
._4_c00082{width:2.124000px;}
._5_c00082{width:3.240000px;}
._0_c00082{width:4.680000px;}
._1_c00082{width:6.276000px;}
._c_c00082{width:8.496000px;}
._b_c00082{width:9.648000px;}
._d_c00082{width:10.944000px;}
._e_c00082{width:12.576000px;}
._8_c00082{width:14.148024px;}
._7_c00082{width:15.984000px;}
._9_c00082{width:20.340000px;}
._f_c00082{width:21.456000px;}
._10_c00082{width:22.932000px;}
.fc0_c00082{color:rgb(0,0,0);}
.fs2_c00082{font-size:38.880000px;}
.fs1_c00082{font-size:47.520000px;}
.fs3_c00082{font-size:60.480000px;}
.fs0_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y6_c00082{bottom:4.675500px;}
.y3_c00082{bottom:4.680000px;}
.y5_c00082{bottom:25.195500px;}
.y4_c00082{bottom:32.800500px;}
.y1_c00082{bottom:57.996000px;}
.y27_c00082{bottom:130.716000px;}
.y26_c00082{bottom:147.996000px;}
.y25_c00082{bottom:154.875000px;}
.y24_c00082{bottom:165.675000px;}
.y23_c00082{bottom:208.875000px;}
.y22_c00082{bottom:239.835000px;}
.y21_c00082{bottom:271.155000px;}
.y20_c00082{bottom:302.145000px;}
.y1f_c00082{bottom:333.105000px;}
.y1e_c00082{bottom:364.065000px;}
.y1d_c00082{bottom:395.430000px;}
.y1b_c00082{bottom:426.390000px;}
.y1c_c00082{bottom:434.670000px;}
.y1a_c00082{bottom:457.350000px;}
.y19_c00082{bottom:488.310000px;}
.y18_c00082{bottom:519.660000px;}
.y17_c00082{bottom:550.620000px;}
.y16_c00082{bottom:581.580000px;}
.y15_c00082{bottom:612.540000px;}
.y14_c00082{bottom:643.890000px;}
.y13_c00082{bottom:674.850000px;}
.y12_c00082{bottom:705.810000px;}
.y11_c00082{bottom:736.770000px;}
.y10_c00082{bottom:768.135000px;}
.yf_c00082{bottom:799.095000px;}
.ye_c00082{bottom:830.055000px;}
.yd_c00082{bottom:870.015000px;}
.yc_c00082{bottom:910.365000px;}
.yb_c00082{bottom:941.325000px;}
.ya_c00082{bottom:972.285000px;}
.y9_c00082{bottom:1003.245000px;}
.y8_c00082{bottom:1034.610000px;}
.y7_c00082{bottom:1065.570000px;}
.y2_c00082{bottom:1113.090000px;}
.h2_c00082{height:20.910000px;}
.h8_c00082{height:38.158594px;}
.h3_c00082{height:41.395500px;}
.h7_c00082{height:46.638281px;}
.h9_c00082{height:59.357813px;}
.h1_c00082{height:64.546875px;}
.h5_c00082{height:70.628906px;}
.h4_c00082{height:70.664062px;}
.h6_c00082{height:1187.995500px;}
.h0_c00082{height:1188.000000px;}
.w1_c00082{width:8.265000px;}
.w2_c00082{width:663.345000px;}
.w3_c00082{width:917.997000px;}
.w0_c00082{width:918.000000px;}
.x0_c00082{left:0.000000px;}
.x3_c00082{left:127.489500px;}
.x8_c00082{left:137.556000px;}
.x1_c00082{left:154.515000px;}
.x4_c00082{left:178.635000px;}
.x7_c00082{left:343.590000px;}
.x5_c00082{left:638.172000px;}
.x6_c00082{left:650.415000px;}
.x2_c00082{left:782.565000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls7_c00082{letter-spacing:-1.280000pt;}
.ls4_c00082{letter-spacing:-0.832000pt;}
.ls5_c00082{letter-spacing:-0.704000pt;}
.ls6_c00082{letter-spacing:-0.640000pt;}
.ls2_c00082{letter-spacing:0.000000pt;}
.ls3_c00082{letter-spacing:0.576000pt;}
.ls0_c00082{letter-spacing:0.640000pt;}
.ls1_c00082{letter-spacing:8.320000pt;}
.ws1_c00082{word-spacing:-16.576000pt;}
.ws0_c00082{word-spacing:-16.000000pt;}
.ws3_c00082{word-spacing:-15.296000pt;}
.ws2_c00082{word-spacing:-15.168000pt;}
.ws4_c00082{word-spacing:-12.160000pt;}
.ws5_c00082{word-spacing:0.000000pt;}
._a_c00082{margin-left:-3.200000pt;}
._6_c00082{margin-left:-2.112000pt;}
._3_c00082{margin-left:-1.152000pt;}
._2_c00082{width:0.960000pt;}
._4_c00082{width:1.888000pt;}
._5_c00082{width:2.880000pt;}
._0_c00082{width:4.160000pt;}
._1_c00082{width:5.578667pt;}
._c_c00082{width:7.552000pt;}
._b_c00082{width:8.576000pt;}
._d_c00082{width:9.728000pt;}
._e_c00082{width:11.178667pt;}
._8_c00082{width:12.576021pt;}
._7_c00082{width:14.208000pt;}
._9_c00082{width:18.080000pt;}
._f_c00082{width:19.072000pt;}
._10_c00082{width:20.384000pt;}
.fs2_c00082{font-size:34.560000pt;}
.fs1_c00082{font-size:42.240000pt;}
.fs3_c00082{font-size:53.760000pt;}
.fs0_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y6_c00082{bottom:4.156000pt;}
.y3_c00082{bottom:4.160000pt;}
.y5_c00082{bottom:22.396000pt;}
.y4_c00082{bottom:29.156000pt;}
.y1_c00082{bottom:51.552000pt;}
.y27_c00082{bottom:116.192000pt;}
.y26_c00082{bottom:131.552000pt;}
.y25_c00082{bottom:137.666667pt;}
.y24_c00082{bottom:147.266667pt;}
.y23_c00082{bottom:185.666667pt;}
.y22_c00082{bottom:213.186667pt;}
.y21_c00082{bottom:241.026667pt;}
.y20_c00082{bottom:268.573333pt;}
.y1f_c00082{bottom:296.093333pt;}
.y1e_c00082{bottom:323.613333pt;}
.y1d_c00082{bottom:351.493333pt;}
.y1b_c00082{bottom:379.013333pt;}
.y1c_c00082{bottom:386.373333pt;}
.y1a_c00082{bottom:406.533333pt;}
.y19_c00082{bottom:434.053333pt;}
.y18_c00082{bottom:461.920000pt;}
.y17_c00082{bottom:489.440000pt;}
.y16_c00082{bottom:516.960000pt;}
.y15_c00082{bottom:544.480000pt;}
.y14_c00082{bottom:572.346667pt;}
.y13_c00082{bottom:599.866667pt;}
.y12_c00082{bottom:627.386667pt;}
.y11_c00082{bottom:654.906667pt;}
.y10_c00082{bottom:682.786667pt;}
.yf_c00082{bottom:710.306667pt;}
.ye_c00082{bottom:737.826667pt;}
.yd_c00082{bottom:773.346667pt;}
.yc_c00082{bottom:809.213333pt;}
.yb_c00082{bottom:836.733333pt;}
.ya_c00082{bottom:864.253333pt;}
.y9_c00082{bottom:891.773333pt;}
.y8_c00082{bottom:919.653333pt;}
.y7_c00082{bottom:947.173333pt;}
.y2_c00082{bottom:989.413333pt;}
.h2_c00082{height:18.586667pt;}
.h8_c00082{height:33.918750pt;}
.h3_c00082{height:36.796000pt;}
.h7_c00082{height:41.456250pt;}
.h9_c00082{height:52.762500pt;}
.h1_c00082{height:57.375000pt;}
.h5_c00082{height:62.781250pt;}
.h4_c00082{height:62.812500pt;}
.h6_c00082{height:1055.996000pt;}
.h0_c00082{height:1056.000000pt;}
.w1_c00082{width:7.346667pt;}
.w2_c00082{width:589.640000pt;}
.w3_c00082{width:815.997333pt;}
.w0_c00082{width:816.000000pt;}
.x0_c00082{left:0.000000pt;}
.x3_c00082{left:113.324000pt;}
.x8_c00082{left:122.272000pt;}
.x1_c00082{left:137.346667pt;}
.x4_c00082{left:158.786667pt;}
.x7_c00082{left:305.413333pt;}
.x5_c00082{left:567.264000pt;}
.x6_c00082{left:578.146667pt;}
.x2_c00082{left:695.613333pt;}
}





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

.ir_c00083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00083;src:url('chunks/assets/font_161fda424c40c7b405d6e0a7.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_0f599bf50e566d753aa91d42.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_0b1afcf2fc6a81e2af85c7fa.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;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_c00083;src:url('chunks/assets/font_150cd692c99148ae9f8b75a0.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00083;src:url('chunks/assets/font_c23e03e9081c29cad85a6210.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls5_c00083{letter-spacing:-1.440000px;}
.ls4_c00083{letter-spacing:-0.288000px;}
.ls3_c00083{letter-spacing:0.000000px;}
.ls6_c00083{letter-spacing:0.504000px;}
.ls1_c00083{letter-spacing:10.800000px;}
.ls0_c00083{letter-spacing:12.240000px;}
.ls2_c00083{letter-spacing:42.480000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00083{word-spacing:-18.504000px;}
.ws0_c00083{word-spacing:-18.000000px;}
.ws2_c00083{word-spacing:0.000000px;}
._6_c00083{margin-left:-2.880000px;}
._1_c00083{margin-left:-1.584000px;}
._2_c00083{width:1.080000px;}
._3_c00083{width:2.088000px;}
._11_c00083{width:3.384000px;}
._7_c00083{width:5.040000px;}
._12_c00083{width:6.216000px;}
._8_c00083{width:8.220000px;}
._10_c00083{width:10.584000px;}
._e_c00083{width:11.736000px;}
._d_c00083{width:12.816000px;}
._f_c00083{width:13.896000px;}
._16_c00083{width:15.264000px;}
._17_c00083{width:16.632000px;}
._c_c00083{width:19.296000px;}
._0_c00083{width:20.304000px;}
._4_c00083{width:21.888000px;}
._5_c00083{width:23.112000px;}
._18_c00083{width:28.512000px;}
._b_c00083{width:30.024000px;}
._9_c00083{width:31.464000px;}
._a_c00083{width:32.760000px;}
._13_c00083{width:34.416000px;}
._19_c00083{width:40.824000px;}
._1a_c00083{width:42.120000px;}
._15_c00083{width:45.504000px;}
._14_c00083{width:46.800000px;}
.fc1_c00083{color:rgb(255,0,0);}
.fc0_c00083{color:rgb(0,0,0);}
.fs0_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y6_c00083{bottom:4.675500px;}
.y3_c00083{bottom:4.680000px;}
.y5_c00083{bottom:25.195500px;}
.y4_c00083{bottom:32.800500px;}
.y1_c00083{bottom:57.996000px;}
.y24_c00083{bottom:128.916000px;}
.y23_c00083{bottom:159.915000px;}
.y22_c00083{bottom:190.875000px;}
.y21_c00083{bottom:221.835000px;}
.y20_c00083{bottom:253.155000px;}
.y1f_c00083{bottom:284.145000px;}
.y1e_c00083{bottom:324.105000px;}
.y1d_c00083{bottom:364.065000px;}
.y1c_c00083{bottom:395.430000px;}
.y1b_c00083{bottom:426.390000px;}
.y1a_c00083{bottom:457.350000px;}
.y19_c00083{bottom:488.310000px;}
.y18_c00083{bottom:519.660000px;}
.y17_c00083{bottom:550.620000px;}
.y16_c00083{bottom:581.580000px;}
.y15_c00083{bottom:612.540000px;}
.y14_c00083{bottom:643.890000px;}
.y13_c00083{bottom:674.850000px;}
.y12_c00083{bottom:705.810000px;}
.y11_c00083{bottom:736.770000px;}
.y10_c00083{bottom:768.135000px;}
.yf_c00083{bottom:799.095000px;}
.ye_c00083{bottom:830.055000px;}
.yd_c00083{bottom:861.015000px;}
.yc_c00083{bottom:892.365000px;}
.yb_c00083{bottom:932.325000px;}
.ya_c00083{bottom:972.285000px;}
.y9_c00083{bottom:1003.245000px;}
.y8_c00083{bottom:1034.610000px;}
.y7_c00083{bottom:1065.570000px;}
.y2_c00083{bottom:1113.090000px;}
.h2_c00083{height:20.910000px;}
.h3_c00083{height:41.395500px;}
.h1_c00083{height:64.546875px;}
.h5_c00083{height:70.628906px;}
.h4_c00083{height:70.664062px;}
.h0_c00083{height:1188.000000px;}
.w1_c00083{width:8.265000px;}
.w2_c00083{width:663.345000px;}
.w0_c00083{width:918.000000px;}
.x0_c00083{left:0.000000px;}
.x3_c00083{left:127.489500px;}
.x1_c00083{left:154.515000px;}
.x4_c00083{left:178.635000px;}
.x2_c00083{left:782.565000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls5_c00083{letter-spacing:-1.280000pt;}
.ls4_c00083{letter-spacing:-0.256000pt;}
.ls3_c00083{letter-spacing:0.000000pt;}
.ls6_c00083{letter-spacing:0.448000pt;}
.ls1_c00083{letter-spacing:9.600000pt;}
.ls0_c00083{letter-spacing:10.880000pt;}
.ls2_c00083{letter-spacing:37.760000pt;}
.ws1_c00083{word-spacing:-16.448000pt;}
.ws0_c00083{word-spacing:-16.000000pt;}
.ws2_c00083{word-spacing:0.000000pt;}
._6_c00083{margin-left:-2.560000pt;}
._1_c00083{margin-left:-1.408000pt;}
._2_c00083{width:0.960000pt;}
._3_c00083{width:1.856000pt;}
._11_c00083{width:3.008000pt;}
._7_c00083{width:4.480000pt;}
._12_c00083{width:5.525333pt;}
._8_c00083{width:7.306667pt;}
._10_c00083{width:9.408000pt;}
._e_c00083{width:10.432000pt;}
._d_c00083{width:11.392000pt;}
._f_c00083{width:12.352000pt;}
._16_c00083{width:13.568000pt;}
._17_c00083{width:14.784000pt;}
._c_c00083{width:17.152000pt;}
._0_c00083{width:18.048000pt;}
._4_c00083{width:19.456000pt;}
._5_c00083{width:20.544000pt;}
._18_c00083{width:25.344000pt;}
._b_c00083{width:26.688000pt;}
._9_c00083{width:27.968000pt;}
._a_c00083{width:29.120000pt;}
._13_c00083{width:30.592000pt;}
._19_c00083{width:36.288000pt;}
._1a_c00083{width:37.440000pt;}
._15_c00083{width:40.448000pt;}
._14_c00083{width:41.600000pt;}
.fs0_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y6_c00083{bottom:4.156000pt;}
.y3_c00083{bottom:4.160000pt;}
.y5_c00083{bottom:22.396000pt;}
.y4_c00083{bottom:29.156000pt;}
.y1_c00083{bottom:51.552000pt;}
.y24_c00083{bottom:114.592000pt;}
.y23_c00083{bottom:142.146667pt;}
.y22_c00083{bottom:169.666667pt;}
.y21_c00083{bottom:197.186667pt;}
.y20_c00083{bottom:225.026667pt;}
.y1f_c00083{bottom:252.573333pt;}
.y1e_c00083{bottom:288.093333pt;}
.y1d_c00083{bottom:323.613333pt;}
.y1c_c00083{bottom:351.493333pt;}
.y1b_c00083{bottom:379.013333pt;}
.y1a_c00083{bottom:406.533333pt;}
.y19_c00083{bottom:434.053333pt;}
.y18_c00083{bottom:461.920000pt;}
.y17_c00083{bottom:489.440000pt;}
.y16_c00083{bottom:516.960000pt;}
.y15_c00083{bottom:544.480000pt;}
.y14_c00083{bottom:572.346667pt;}
.y13_c00083{bottom:599.866667pt;}
.y12_c00083{bottom:627.386667pt;}
.y11_c00083{bottom:654.906667pt;}
.y10_c00083{bottom:682.786667pt;}
.yf_c00083{bottom:710.306667pt;}
.ye_c00083{bottom:737.826667pt;}
.yd_c00083{bottom:765.346667pt;}
.yc_c00083{bottom:793.213333pt;}
.yb_c00083{bottom:828.733333pt;}
.ya_c00083{bottom:864.253333pt;}
.y9_c00083{bottom:891.773333pt;}
.y8_c00083{bottom:919.653333pt;}
.y7_c00083{bottom:947.173333pt;}
.y2_c00083{bottom:989.413333pt;}
.h2_c00083{height:18.586667pt;}
.h3_c00083{height:36.796000pt;}
.h1_c00083{height:57.375000pt;}
.h5_c00083{height:62.781250pt;}
.h4_c00083{height:62.812500pt;}
.h0_c00083{height:1056.000000pt;}
.w1_c00083{width:7.346667pt;}
.w2_c00083{width:589.640000pt;}
.w0_c00083{width:816.000000pt;}
.x0_c00083{left:0.000000pt;}
.x3_c00083{left:113.324000pt;}
.x1_c00083{left:137.346667pt;}
.x4_c00083{left:158.786667pt;}
.x2_c00083{left:695.613333pt;}
}





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

.ir_c00084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00084;src:url('chunks/assets/font_0b782e0b68f2e40e37aa740b.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_a0f28d6318b979b82f77127a.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_574619ff9091942ffc78215d.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_ea17b875a5dfe987f4871d21.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00084;src:url('chunks/assets/font_7f6d5410f13bf095de490d2b.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00084;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00084{font-family:ff6_c00084;line-height:1.311035;font-style:normal;font-weight: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_c00084;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff7_c00084{font-family:ff7_c00084;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.lsd_c00084{letter-spacing:-0.241800px;}
.lsa_c00084{letter-spacing:0.000000px;}
.lsc_c00084{letter-spacing:0.022800px;}
.ls0_c00084{letter-spacing:0.048960px;}
.lsb_c00084{letter-spacing:0.060600px;}
.lse_c00084{letter-spacing:0.166800px;}
.ls7_c00084{letter-spacing:0.207360px;}
.ls10_c00084{letter-spacing:0.219000px;}
.ls12_c00084{letter-spacing:0.288000px;}
.ls5_c00084{letter-spacing:0.524160px;}
.lsf_c00084{letter-spacing:0.529800px;}
.ls11_c00084{letter-spacing:0.576000px;}
.ls4_c00084{letter-spacing:0.720000px;}
.ls9_c00084{letter-spacing:0.840000px;}
.ls3_c00084{letter-spacing:2.160000px;}
.ls2_c00084{letter-spacing:3.600000px;}
.ls6_c00084{letter-spacing:5.040000px;}
.ls1_c00084{letter-spacing:7.920000px;}
.ls8_c00084{letter-spacing:9.360000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00084{word-spacing:-60.480000px;}
.ws5_c00084{word-spacing:-18.576000px;}
.ws4_c00084{word-spacing:-18.000000px;}
.ws3_c00084{word-spacing:-15.339000px;}
.ws2_c00084{word-spacing:-15.286800px;}
.ws0_c00084{word-spacing:-15.120000px;}
.ws1_c00084{word-spacing:-14.878200px;}
.ws7_c00084{word-spacing:0.000000px;}
._9_c00084{margin-left:-3.695976px;}
._4_c00084{margin-left:-2.664000px;}
._1_c00084{margin-left:-1.296000px;}
._0_c00084{width:1.008000px;}
._2_c00084{width:2.160000px;}
._6_c00084{width:3.456000px;}
._3_c00084{width:5.328000px;}
._5_c00084{width:6.624000px;}
._c_c00084{width:8.475600px;}
._d_c00084{width:9.534000px;}
._a_c00084{width:10.656000px;}
._b_c00084{width:11.880000px;}
._10_c00084{width:12.888000px;}
._11_c00084{width:14.544000px;}
._7_c00084{width:15.552000px;}
._8_c00084{width:16.943976px;}
._f_c00084{width:21.539880px;}
._e_c00084{width:22.692024px;}
.fc0_c00084{color:rgb(0,0,0);}
.fs3_c00084{font-size:38.880000px;}
.fs2_c00084{font-size:47.520000px;}
.fs1_c00084{font-size:60.480000px;}
.fs0_c00084{font-size:72.000000px;}
.y0_c00084{bottom:0.000000px;}
.y6_c00084{bottom:4.675500px;}
.y3_c00084{bottom:4.680000px;}
.y5_c00084{bottom:25.195500px;}
.y4_c00084{bottom:32.800500px;}
.y1_c00084{bottom:57.996000px;}
.y28_c00084{bottom:130.716000px;}
.y27_c00084{bottom:147.996000px;}
.y26_c00084{bottom:164.955000px;}
.y25_c00084{bottom:182.235000px;}
.y24_c00084{bottom:189.075000px;}
.y23_c00084{bottom:200.235000px;}
.y22_c00084{bottom:238.755000px;}
.y21_c00084{bottom:270.075000px;}
.y20_c00084{bottom:301.065000px;}
.y1e_c00084{bottom:332.025000px;}
.y1f_c00084{bottom:340.305000px;}
.y1d_c00084{bottom:362.985000px;}
.y1c_c00084{bottom:394.350000px;}
.y1b_c00084{bottom:425.310000px;}
.y1a_c00084{bottom:456.270000px;}
.y19_c00084{bottom:487.230000px;}
.y18_c00084{bottom:518.580000px;}
.y17_c00084{bottom:549.540000px;}
.y16_c00084{bottom:589.500000px;}
.y15_c00084{bottom:629.460000px;}
.y14_c00084{bottom:660.810000px;}
.y13_c00084{bottom:691.770000px;}
.y12_c00084{bottom:722.730000px;}
.y11_c00084{bottom:760.530000px;}
.y10_c00084{bottom:786.495000px;}
.yf_c00084{bottom:812.415000px;}
.ye_c00084{bottom:837.975000px;}
.yd_c00084{bottom:863.895000px;}
.yc_c00084{bottom:901.365000px;}
.yb_c00084{bottom:932.325000px;}
.ya_c00084{bottom:963.285000px;}
.y9_c00084{bottom:994.245000px;}
.y8_c00084{bottom:1025.610000px;}
.y7_c00084{bottom:1065.570000px;}
.y2_c00084{bottom:1113.090000px;}
.h2_c00084{height:20.910000px;}
.ha_c00084{height:38.158594px;}
.h3_c00084{height:41.395500px;}
.h9_c00084{height:46.638281px;}
.h7_c00084{height:59.357813px;}
.h6_c00084{height:60.952500px;}
.h1_c00084{height:64.546875px;}
.h4_c00084{height:70.628906px;}
.h5_c00084{height:70.664062px;}
.h8_c00084{height:1187.995500px;}
.h0_c00084{height:1188.000000px;}
.w1_c00084{width:8.265000px;}
.w2_c00084{width:663.345000px;}
.w3_c00084{width:917.997000px;}
.w0_c00084{width:918.000000px;}
.x0_c00084{left:0.000000px;}
.x3_c00084{left:127.489500px;}
.x9_c00084{left:137.556000px;}
.x1_c00084{left:154.515000px;}
.x4_c00084{left:169.995000px;}
.x5_c00084{left:178.635000px;}
.x8_c00084{left:343.590000px;}
.x6_c00084{left:641.052000px;}
.x7_c00084{left:653.295000px;}
.x2_c00084{left:782.565000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.lsd_c00084{letter-spacing:-0.214933pt;}
.lsa_c00084{letter-spacing:0.000000pt;}
.lsc_c00084{letter-spacing:0.020267pt;}
.ls0_c00084{letter-spacing:0.043520pt;}
.lsb_c00084{letter-spacing:0.053867pt;}
.lse_c00084{letter-spacing:0.148267pt;}
.ls7_c00084{letter-spacing:0.184320pt;}
.ls10_c00084{letter-spacing:0.194667pt;}
.ls12_c00084{letter-spacing:0.256000pt;}
.ls5_c00084{letter-spacing:0.465920pt;}
.lsf_c00084{letter-spacing:0.470933pt;}
.ls11_c00084{letter-spacing:0.512000pt;}
.ls4_c00084{letter-spacing:0.640000pt;}
.ls9_c00084{letter-spacing:0.746667pt;}
.ls3_c00084{letter-spacing:1.920000pt;}
.ls2_c00084{letter-spacing:3.200000pt;}
.ls6_c00084{letter-spacing:4.480000pt;}
.ls1_c00084{letter-spacing:7.040000pt;}
.ls8_c00084{letter-spacing:8.320000pt;}
.ws6_c00084{word-spacing:-53.760000pt;}
.ws5_c00084{word-spacing:-16.512000pt;}
.ws4_c00084{word-spacing:-16.000000pt;}
.ws3_c00084{word-spacing:-13.634667pt;}
.ws2_c00084{word-spacing:-13.588267pt;}
.ws0_c00084{word-spacing:-13.440000pt;}
.ws1_c00084{word-spacing:-13.225067pt;}
.ws7_c00084{word-spacing:0.000000pt;}
._9_c00084{margin-left:-3.285312pt;}
._4_c00084{margin-left:-2.368000pt;}
._1_c00084{margin-left:-1.152000pt;}
._0_c00084{width:0.896000pt;}
._2_c00084{width:1.920000pt;}
._6_c00084{width:3.072000pt;}
._3_c00084{width:4.736000pt;}
._5_c00084{width:5.888000pt;}
._c_c00084{width:7.533867pt;}
._d_c00084{width:8.474667pt;}
._a_c00084{width:9.472000pt;}
._b_c00084{width:10.560000pt;}
._10_c00084{width:11.456000pt;}
._11_c00084{width:12.928000pt;}
._7_c00084{width:13.824000pt;}
._8_c00084{width:15.061312pt;}
._f_c00084{width:19.146560pt;}
._e_c00084{width:20.170688pt;}
.fs3_c00084{font-size:34.560000pt;}
.fs2_c00084{font-size:42.240000pt;}
.fs1_c00084{font-size:53.760000pt;}
.fs0_c00084{font-size:64.000000pt;}
.y0_c00084{bottom:0.000000pt;}
.y6_c00084{bottom:4.156000pt;}
.y3_c00084{bottom:4.160000pt;}
.y5_c00084{bottom:22.396000pt;}
.y4_c00084{bottom:29.156000pt;}
.y1_c00084{bottom:51.552000pt;}
.y28_c00084{bottom:116.192000pt;}
.y27_c00084{bottom:131.552000pt;}
.y26_c00084{bottom:146.626667pt;}
.y25_c00084{bottom:161.986667pt;}
.y24_c00084{bottom:168.066667pt;}
.y23_c00084{bottom:177.986667pt;}
.y22_c00084{bottom:212.226667pt;}
.y21_c00084{bottom:240.066667pt;}
.y20_c00084{bottom:267.613333pt;}
.y1e_c00084{bottom:295.133333pt;}
.y1f_c00084{bottom:302.493333pt;}
.y1d_c00084{bottom:322.653333pt;}
.y1c_c00084{bottom:350.533333pt;}
.y1b_c00084{bottom:378.053333pt;}
.y1a_c00084{bottom:405.573333pt;}
.y19_c00084{bottom:433.093333pt;}
.y18_c00084{bottom:460.960000pt;}
.y17_c00084{bottom:488.480000pt;}
.y16_c00084{bottom:524.000000pt;}
.y15_c00084{bottom:559.520000pt;}
.y14_c00084{bottom:587.386667pt;}
.y13_c00084{bottom:614.906667pt;}
.y12_c00084{bottom:642.426667pt;}
.y11_c00084{bottom:676.026667pt;}
.y10_c00084{bottom:699.106667pt;}
.yf_c00084{bottom:722.146667pt;}
.ye_c00084{bottom:744.866667pt;}
.yd_c00084{bottom:767.906667pt;}
.yc_c00084{bottom:801.213333pt;}
.yb_c00084{bottom:828.733333pt;}
.ya_c00084{bottom:856.253333pt;}
.y9_c00084{bottom:883.773333pt;}
.y8_c00084{bottom:911.653333pt;}
.y7_c00084{bottom:947.173333pt;}
.y2_c00084{bottom:989.413333pt;}
.h2_c00084{height:18.586667pt;}
.ha_c00084{height:33.918750pt;}
.h3_c00084{height:36.796000pt;}
.h9_c00084{height:41.456250pt;}
.h7_c00084{height:52.762500pt;}
.h6_c00084{height:54.180000pt;}
.h1_c00084{height:57.375000pt;}
.h4_c00084{height:62.781250pt;}
.h5_c00084{height:62.812500pt;}
.h8_c00084{height:1055.996000pt;}
.h0_c00084{height:1056.000000pt;}
.w1_c00084{width:7.346667pt;}
.w2_c00084{width:589.640000pt;}
.w3_c00084{width:815.997333pt;}
.w0_c00084{width:816.000000pt;}
.x0_c00084{left:0.000000pt;}
.x3_c00084{left:113.324000pt;}
.x9_c00084{left:122.272000pt;}
.x1_c00084{left:137.346667pt;}
.x4_c00084{left:151.106667pt;}
.x5_c00084{left:158.786667pt;}
.x8_c00084{left:305.413333pt;}
.x6_c00084{left:569.824000pt;}
.x7_c00084{left:580.706667pt;}
.x2_c00084{left:695.613333pt;}
}





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

.ir_c00085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00085;src:url('chunks/assets/font_0ddfb020345fdf33835a00aa.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_5074b70bafe160523625cd2c.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_185d20e38bf4925483cc4035.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00085;src:url('chunks/assets/font_d6a6692f16da4c879cb576f2.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;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_c00085;src:url('chunks/assets/font_be611ef45726fdbd27aede2a.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls2c_c00085{letter-spacing:-1.452000px;}
.ls30_c00085{letter-spacing:-1.440000px;}
.ls25_c00085{letter-spacing:-1.128000px;}
.ls24_c00085{letter-spacing:-0.954000px;}
.ls2a_c00085{letter-spacing:-0.918000px;}
.ls23_c00085{letter-spacing:-0.720000px;}
.ls2d_c00085{letter-spacing:-0.532800px;}
.ls2e_c00085{letter-spacing:-0.429000px;}
.ls29_c00085{letter-spacing:-0.337200px;}
.ls28_c00085{letter-spacing:-0.302400px;}
.ls22_c00085{letter-spacing:-0.288000px;}
.ls26_c00085{letter-spacing:-0.241800px;}
.ls2f_c00085{letter-spacing:-0.011400px;}
.ls21_c00085{letter-spacing:0.000000px;}
.lsc_c00085{letter-spacing:0.020400px;}
.ls8_c00085{letter-spacing:0.022800px;}
.ls27_c00085{letter-spacing:0.166800px;}
.ls1b_c00085{letter-spacing:0.167040px;}
.ls6_c00085{letter-spacing:0.302400px;}
.ls2b_c00085{letter-spacing:0.313800px;}
.ls1d_c00085{letter-spacing:0.518400px;}
.ls20_c00085{letter-spacing:0.708480px;}
.ls1_c00085{letter-spacing:0.720000px;}
.ls1c_c00085{letter-spacing:0.732000px;}
.ls1e_c00085{letter-spacing:0.743040px;}
.ls1f_c00085{letter-spacing:0.900000px;}
.ls0_c00085{letter-spacing:2.160000px;}
.ls16_c00085{letter-spacing:3.576960px;}
.ls14_c00085{letter-spacing:3.588480px;}
.ls12_c00085{letter-spacing:3.600000px;}
.ls13_c00085{letter-spacing:3.623040px;}
.ls15_c00085{letter-spacing:3.780000px;}
.ls19_c00085{letter-spacing:5.040000px;}
.ls18_c00085{letter-spacing:5.063040px;}
.ls17_c00085{letter-spacing:6.480000px;}
.ls1a_c00085{letter-spacing:6.503040px;}
.ls5_c00085{letter-spacing:7.920000px;}
.ls11_c00085{letter-spacing:9.348480px;}
.ls4_c00085{letter-spacing:9.360000px;}
.ls7_c00085{letter-spacing:9.371520px;}
.ls10_c00085{letter-spacing:9.383040px;}
.ls2_c00085{letter-spacing:9.504000px;}
.lsf_c00085{letter-spacing:9.540000px;}
.ls3_c00085{letter-spacing:10.944000px;}
.lse_c00085{letter-spacing:16.548480px;}
.ls9_c00085{letter-spacing:16.560000px;}
.lsa_c00085{letter-spacing:16.583040px;}
.lsd_c00085{letter-spacing:16.680000px;}
.lsb_c00085{letter-spacing:16.763040px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:-18.000000px;}
.wsf_c00085{word-spacing:-15.638400px;}
.wsa_c00085{word-spacing:-15.433800px;}
.wse_c00085{word-spacing:-15.287040px;}
.ws5_c00085{word-spacing:-15.286800px;}
.ws6_c00085{word-spacing:-15.142800px;}
.ws3_c00085{word-spacing:-15.120000px;}
.wsd_c00085{word-spacing:-15.108600px;}
.ws4_c00085{word-spacing:-14.878200px;}
.ws7_c00085{word-spacing:-14.817600px;}
.ws8_c00085{word-spacing:-14.782800px;}
.wsc_c00085{word-spacing:-14.691000px;}
.ws9_c00085{word-spacing:-14.202000px;}
.ws1_c00085{word-spacing:-14.166000px;}
.ws2_c00085{word-spacing:-13.992000px;}
.ws10_c00085{word-spacing:-13.680000px;}
.wsb_c00085{word-spacing:-13.668000px;}
.ws11_c00085{word-spacing:0.000000px;}
._5_c00085{margin-left:-2.664000px;}
._0_c00085{margin-left:-1.512000px;}
._1_c00085{width:1.080000px;}
._4_c00085{width:2.304000px;}
._6_c00085{width:3.587976px;}
._c_c00085{width:5.280168px;}
._16_c00085{width:6.430152px;}
._7_c00085{width:7.560000px;}
._9_c00085{width:8.568000px;}
._8_c00085{width:9.720000px;}
._14_c00085{width:11.160000px;}
._15_c00085{width:12.240000px;}
._2_c00085{width:13.608000px;}
._3_c00085{width:14.976000px;}
._10_c00085{width:16.272000px;}
._11_c00085{width:19.944000px;}
._12_c00085{width:21.528000px;}
._d_c00085{width:22.752000px;}
._e_c00085{width:24.408000px;}
._b_c00085{width:27.864000px;}
._a_c00085{width:28.944000px;}
._f_c00085{width:29.952000px;}
._13_c00085{width:31.019976px;}
.fc0_c00085{color:rgb(0,0,0);}
.fs2_c00085{font-size:38.880000px;}
.fs1_c00085{font-size:47.520000px;}
.fs3_c00085{font-size:60.480000px;}
.fs0_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y6_c00085{bottom:4.675500px;}
.y3_c00085{bottom:4.680000px;}
.y5_c00085{bottom:25.195500px;}
.y4_c00085{bottom:32.800500px;}
.y1_c00085{bottom:57.996000px;}
.y30_c00085{bottom:130.716000px;}
.y2f_c00085{bottom:147.996000px;}
.y2e_c00085{bottom:164.955000px;}
.y2d_c00085{bottom:182.235000px;}
.y2c_c00085{bottom:199.515000px;}
.y2b_c00085{bottom:216.795000px;}
.y2a_c00085{bottom:234.075000px;}
.y29_c00085{bottom:251.355000px;}
.y28_c00085{bottom:258.195000px;}
.y27_c00085{bottom:268.635000px;}
.y26_c00085{bottom:285.945000px;}
.y25_c00085{bottom:292.785000px;}
.y24_c00085{bottom:303.225000px;}
.y23_c00085{bottom:320.505000px;}
.y22_c00085{bottom:327.345000px;}
.y21_c00085{bottom:338.145000px;}
.y20_c00085{bottom:364.065000px;}
.y1f_c00085{bottom:395.430000px;}
.y1e_c00085{bottom:426.390000px;}
.y1d_c00085{bottom:457.350000px;}
.y1c_c00085{bottom:488.310000px;}
.y1b_c00085{bottom:519.660000px;}
.y19_c00085{bottom:550.620000px;}
.y1a_c00085{bottom:558.900000px;}
.y18_c00085{bottom:581.580000px;}
.y17_c00085{bottom:612.540000px;}
.y16_c00085{bottom:643.890000px;}
.y14_c00085{bottom:674.850000px;}
.y15_c00085{bottom:683.130000px;}
.y13_c00085{bottom:705.810000px;}
.y12_c00085{bottom:736.770000px;}
.y10_c00085{bottom:768.135000px;}
.y11_c00085{bottom:776.415000px;}
.yf_c00085{bottom:799.095000px;}
.ye_c00085{bottom:830.055000px;}
.yd_c00085{bottom:861.015000px;}
.yc_c00085{bottom:892.365000px;}
.yb_c00085{bottom:932.325000px;}
.ya_c00085{bottom:972.285000px;}
.y9_c00085{bottom:1003.245000px;}
.y8_c00085{bottom:1034.610000px;}
.y7_c00085{bottom:1065.570000px;}
.y2_c00085{bottom:1113.090000px;}
.h2_c00085{height:20.910000px;}
.h8_c00085{height:34.855313px;}
.ha_c00085{height:38.158594px;}
.h3_c00085{height:41.395500px;}
.h7_c00085{height:46.638281px;}
.h9_c00085{height:54.219375px;}
.hb_c00085{height:59.357813px;}
.h1_c00085{height:64.546875px;}
.h5_c00085{height:70.628906px;}
.h4_c00085{height:70.664062px;}
.h6_c00085{height:1187.995500px;}
.h0_c00085{height:1188.000000px;}
.w1_c00085{width:8.265000px;}
.w2_c00085{width:663.345000px;}
.w3_c00085{width:917.997000px;}
.w0_c00085{width:918.000000px;}
.x0_c00085{left:0.000000px;}
.x3_c00085{left:127.489500px;}
.xc_c00085{left:137.556000px;}
.x1_c00085{left:154.515000px;}
.x4_c00085{left:169.995000px;}
.xb_c00085{left:343.590000px;}
.x7_c00085{left:381.387000px;}
.x8_c00085{left:393.630000px;}
.x5_c00085{left:748.722000px;}
.x6_c00085{left:760.965000px;}
.x9_c00085{left:773.922000px;}
.x2_c00085{left:782.565000px;}
.xa_c00085{left:786.165000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls2c_c00085{letter-spacing:-1.290667pt;}
.ls30_c00085{letter-spacing:-1.280000pt;}
.ls25_c00085{letter-spacing:-1.002667pt;}
.ls24_c00085{letter-spacing:-0.848000pt;}
.ls2a_c00085{letter-spacing:-0.816000pt;}
.ls23_c00085{letter-spacing:-0.640000pt;}
.ls2d_c00085{letter-spacing:-0.473600pt;}
.ls2e_c00085{letter-spacing:-0.381333pt;}
.ls29_c00085{letter-spacing:-0.299733pt;}
.ls28_c00085{letter-spacing:-0.268800pt;}
.ls22_c00085{letter-spacing:-0.256000pt;}
.ls26_c00085{letter-spacing:-0.214933pt;}
.ls2f_c00085{letter-spacing:-0.010133pt;}
.ls21_c00085{letter-spacing:0.000000pt;}
.lsc_c00085{letter-spacing:0.018133pt;}
.ls8_c00085{letter-spacing:0.020267pt;}
.ls27_c00085{letter-spacing:0.148267pt;}
.ls1b_c00085{letter-spacing:0.148480pt;}
.ls6_c00085{letter-spacing:0.268800pt;}
.ls2b_c00085{letter-spacing:0.278933pt;}
.ls1d_c00085{letter-spacing:0.460800pt;}
.ls20_c00085{letter-spacing:0.629760pt;}
.ls1_c00085{letter-spacing:0.640000pt;}
.ls1c_c00085{letter-spacing:0.650667pt;}
.ls1e_c00085{letter-spacing:0.660480pt;}
.ls1f_c00085{letter-spacing:0.800000pt;}
.ls0_c00085{letter-spacing:1.920000pt;}
.ls16_c00085{letter-spacing:3.179520pt;}
.ls14_c00085{letter-spacing:3.189760pt;}
.ls12_c00085{letter-spacing:3.200000pt;}
.ls13_c00085{letter-spacing:3.220480pt;}
.ls15_c00085{letter-spacing:3.360000pt;}
.ls19_c00085{letter-spacing:4.480000pt;}
.ls18_c00085{letter-spacing:4.500480pt;}
.ls17_c00085{letter-spacing:5.760000pt;}
.ls1a_c00085{letter-spacing:5.780480pt;}
.ls5_c00085{letter-spacing:7.040000pt;}
.ls11_c00085{letter-spacing:8.309760pt;}
.ls4_c00085{letter-spacing:8.320000pt;}
.ls7_c00085{letter-spacing:8.330240pt;}
.ls10_c00085{letter-spacing:8.340480pt;}
.ls2_c00085{letter-spacing:8.448000pt;}
.lsf_c00085{letter-spacing:8.480000pt;}
.ls3_c00085{letter-spacing:9.728000pt;}
.lse_c00085{letter-spacing:14.709760pt;}
.ls9_c00085{letter-spacing:14.720000pt;}
.lsa_c00085{letter-spacing:14.740480pt;}
.lsd_c00085{letter-spacing:14.826667pt;}
.lsb_c00085{letter-spacing:14.900480pt;}
.ws0_c00085{word-spacing:-16.000000pt;}
.wsf_c00085{word-spacing:-13.900800pt;}
.wsa_c00085{word-spacing:-13.718933pt;}
.wse_c00085{word-spacing:-13.588480pt;}
.ws5_c00085{word-spacing:-13.588267pt;}
.ws6_c00085{word-spacing:-13.460267pt;}
.ws3_c00085{word-spacing:-13.440000pt;}
.wsd_c00085{word-spacing:-13.429867pt;}
.ws4_c00085{word-spacing:-13.225067pt;}
.ws7_c00085{word-spacing:-13.171200pt;}
.ws8_c00085{word-spacing:-13.140267pt;}
.wsc_c00085{word-spacing:-13.058667pt;}
.ws9_c00085{word-spacing:-12.624000pt;}
.ws1_c00085{word-spacing:-12.592000pt;}
.ws2_c00085{word-spacing:-12.437333pt;}
.ws10_c00085{word-spacing:-12.160000pt;}
.wsb_c00085{word-spacing:-12.149333pt;}
.ws11_c00085{word-spacing:0.000000pt;}
._5_c00085{margin-left:-2.368000pt;}
._0_c00085{margin-left:-1.344000pt;}
._1_c00085{width:0.960000pt;}
._4_c00085{width:2.048000pt;}
._6_c00085{width:3.189312pt;}
._c_c00085{width:4.693483pt;}
._16_c00085{width:5.715691pt;}
._7_c00085{width:6.720000pt;}
._9_c00085{width:7.616000pt;}
._8_c00085{width:8.640000pt;}
._14_c00085{width:9.920000pt;}
._15_c00085{width:10.880000pt;}
._2_c00085{width:12.096000pt;}
._3_c00085{width:13.312000pt;}
._10_c00085{width:14.464000pt;}
._11_c00085{width:17.728000pt;}
._12_c00085{width:19.136000pt;}
._d_c00085{width:20.224000pt;}
._e_c00085{width:21.696000pt;}
._b_c00085{width:24.768000pt;}
._a_c00085{width:25.728000pt;}
._f_c00085{width:26.624000pt;}
._13_c00085{width:27.573312pt;}
.fs2_c00085{font-size:34.560000pt;}
.fs1_c00085{font-size:42.240000pt;}
.fs3_c00085{font-size:53.760000pt;}
.fs0_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y6_c00085{bottom:4.156000pt;}
.y3_c00085{bottom:4.160000pt;}
.y5_c00085{bottom:22.396000pt;}
.y4_c00085{bottom:29.156000pt;}
.y1_c00085{bottom:51.552000pt;}
.y30_c00085{bottom:116.192000pt;}
.y2f_c00085{bottom:131.552000pt;}
.y2e_c00085{bottom:146.626667pt;}
.y2d_c00085{bottom:161.986667pt;}
.y2c_c00085{bottom:177.346667pt;}
.y2b_c00085{bottom:192.706667pt;}
.y2a_c00085{bottom:208.066667pt;}
.y29_c00085{bottom:223.426667pt;}
.y28_c00085{bottom:229.506667pt;}
.y27_c00085{bottom:238.786667pt;}
.y26_c00085{bottom:254.173333pt;}
.y25_c00085{bottom:260.253333pt;}
.y24_c00085{bottom:269.533333pt;}
.y23_c00085{bottom:284.893333pt;}
.y22_c00085{bottom:290.973333pt;}
.y21_c00085{bottom:300.573333pt;}
.y20_c00085{bottom:323.613333pt;}
.y1f_c00085{bottom:351.493333pt;}
.y1e_c00085{bottom:379.013333pt;}
.y1d_c00085{bottom:406.533333pt;}
.y1c_c00085{bottom:434.053333pt;}
.y1b_c00085{bottom:461.920000pt;}
.y19_c00085{bottom:489.440000pt;}
.y1a_c00085{bottom:496.800000pt;}
.y18_c00085{bottom:516.960000pt;}
.y17_c00085{bottom:544.480000pt;}
.y16_c00085{bottom:572.346667pt;}
.y14_c00085{bottom:599.866667pt;}
.y15_c00085{bottom:607.226667pt;}
.y13_c00085{bottom:627.386667pt;}
.y12_c00085{bottom:654.906667pt;}
.y10_c00085{bottom:682.786667pt;}
.y11_c00085{bottom:690.146667pt;}
.yf_c00085{bottom:710.306667pt;}
.ye_c00085{bottom:737.826667pt;}
.yd_c00085{bottom:765.346667pt;}
.yc_c00085{bottom:793.213333pt;}
.yb_c00085{bottom:828.733333pt;}
.ya_c00085{bottom:864.253333pt;}
.y9_c00085{bottom:891.773333pt;}
.y8_c00085{bottom:919.653333pt;}
.y7_c00085{bottom:947.173333pt;}
.y2_c00085{bottom:989.413333pt;}
.h2_c00085{height:18.586667pt;}
.h8_c00085{height:30.982500pt;}
.ha_c00085{height:33.918750pt;}
.h3_c00085{height:36.796000pt;}
.h7_c00085{height:41.456250pt;}
.h9_c00085{height:48.195000pt;}
.hb_c00085{height:52.762500pt;}
.h1_c00085{height:57.375000pt;}
.h5_c00085{height:62.781250pt;}
.h4_c00085{height:62.812500pt;}
.h6_c00085{height:1055.996000pt;}
.h0_c00085{height:1056.000000pt;}
.w1_c00085{width:7.346667pt;}
.w2_c00085{width:589.640000pt;}
.w3_c00085{width:815.997333pt;}
.w0_c00085{width:816.000000pt;}
.x0_c00085{left:0.000000pt;}
.x3_c00085{left:113.324000pt;}
.xc_c00085{left:122.272000pt;}
.x1_c00085{left:137.346667pt;}
.x4_c00085{left:151.106667pt;}
.xb_c00085{left:305.413333pt;}
.x7_c00085{left:339.010667pt;}
.x8_c00085{left:349.893333pt;}
.x5_c00085{left:665.530667pt;}
.x6_c00085{left:676.413333pt;}
.x9_c00085{left:687.930667pt;}
.x2_c00085{left:695.613333pt;}
.xa_c00085{left:698.813333pt;}
}





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

.ir_c00086:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00086;src:url('chunks/assets/font_c0d4dfaf754cf852c8e55e63.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_50b045f7e63e513053bfac45.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_e812413a13a10ac1b90599db.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_cf0e00da4cabe707bd570afe.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;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_c00086;src:url('chunks/assets/font_f652a606c7a9581461c55c7c.woff2')format("woff");}.ff5_c00086{font-family:ff5_c00086;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls8_c00086{letter-spacing:-1.416000px;}
.lsb_c00086{letter-spacing:-1.128000px;}
.lsa_c00086{letter-spacing:-0.420600px;}
.ls9_c00086{letter-spacing:-0.241800px;}
.lsc_c00086{letter-spacing:-0.011400px;}
.ls7_c00086{letter-spacing:0.000000px;}
.ls5_c00086{letter-spacing:0.022800px;}
.ls0_c00086{letter-spacing:0.486600px;}
.ls6_c00086{letter-spacing:0.720000px;}
.ls2_c00086{letter-spacing:5.040000px;}
.ls3_c00086{letter-spacing:12.240000px;}
.ls4_c00086{letter-spacing:13.680000px;}
.ls1_c00086{letter-spacing:15.120000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:-72.000000px;}
.ws2_c00086{word-spacing:-60.480000px;}
.ws7_c00086{word-spacing:-18.000000px;}
.ws1_c00086{word-spacing:-15.120000px;}
.ws6_c00086{word-spacing:-15.108600px;}
.ws3_c00086{word-spacing:-14.878200px;}
.ws4_c00086{word-spacing:-14.699400px;}
.ws5_c00086{word-spacing:-13.992000px;}
.ws8_c00086{word-spacing:0.000000px;}
._2_c00086{margin-left:-2.820000px;}
._0_c00086{margin-left:-1.428000px;}
._1_c00086{width:1.800000px;}
._9_c00086{width:3.108000px;}
._3_c00086{width:4.740024px;}
._8_c00086{width:5.903976px;}
._b_c00086{width:7.040880px;}
._a_c00086{width:9.074520px;}
._4_c00086{width:10.293480px;}
._5_c00086{width:11.714882px;}
._7_c00086{width:12.907321px;}
._6_c00086{width:14.068199px;}
._e_c00086{width:20.676000px;}
._f_c00086{width:21.948000px;}
._c_c00086{width:36.648000px;}
._d_c00086{width:37.740000px;}
._10_c00086{width:39.084000px;}
._11_c00086{width:40.824000px;}
.fc2_c00086{color:transparent;}
.fc1_c00086{color:rgb(0,0,10);}
.fc0_c00086{color:rgb(0,0,0);}
.fs1_c00086{font-size:60.480000px;}
.fs0_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y6_c00086{bottom:4.675500px;}
.y3_c00086{bottom:4.680000px;}
.yf_c00086{bottom:21.585000px;}
.yb_c00086{bottom:21.600000px;}
.y5_c00086{bottom:25.195500px;}
.y4_c00086{bottom:32.800500px;}
.y14_c00086{bottom:34.545000px;}
.yd_c00086{bottom:47.505000px;}
.y11_c00086{bottom:47.550000px;}
.y1_c00086{bottom:57.996000px;}
.y13_c00086{bottom:60.510000px;}
.ye_c00086{bottom:73.455000px;}
.y12_c00086{bottom:73.470000px;}
.y26_c00086{bottom:125.676000px;}
.y25_c00086{bottom:157.035000px;}
.y24_c00086{bottom:196.995000px;}
.y23_c00086{bottom:236.955000px;}
.y22_c00086{bottom:267.915000px;}
.y21_c00086{bottom:299.265000px;}
.y20_c00086{bottom:330.225000px;}
.y1f_c00086{bottom:361.185000px;}
.y1e_c00086{bottom:392.145000px;}
.y1d_c00086{bottom:423.510000px;}
.y1c_c00086{bottom:454.470000px;}
.y1b_c00086{bottom:485.430000px;}
.y1a_c00086{bottom:516.390000px;}
.y19_c00086{bottom:547.740000px;}
.y18_c00086{bottom:578.700000px;}
.y17_c00086{bottom:609.660000px;}
.y16_c00086{bottom:649.650000px;}
.y15_c00086{bottom:676.305000px;}
.y10_c00086{bottom:721.665000px;}
.yc_c00086{bottom:818.910000px;}
.ya_c00086{bottom:916.125000px;}
.y9_c00086{bottom:985.245000px;}
.y8_c00086{bottom:1025.610000px;}
.y7_c00086{bottom:1065.570000px;}
.y2_c00086{bottom:1113.090000px;}
.h2_c00086{height:20.910000px;}
.h3_c00086{height:41.395500px;}
.h5_c00086{height:43.905000px;}
.h6_c00086{height:59.328281px;}
.h7_c00086{height:59.357813px;}
.h1_c00086{height:64.546875px;}
.h4_c00086{height:70.664062px;}
.h8_c00086{height:95.760000px;}
.h9_c00086{height:95.781000px;}
.h0_c00086{height:1188.000000px;}
.w1_c00086{width:8.265000px;}
.w5_c00086{width:214.605000px;}
.w4_c00086{width:214.635000px;}
.w3_c00086{width:214.650000px;}
.w2_c00086{width:663.345000px;}
.w0_c00086{width:918.000000px;}
.x0_c00086{left:0.000000px;}
.x3_c00086{left:127.489500px;}
.x1_c00086{left:154.515000px;}
.x4_c00086{left:169.995000px;}
.x7_c00086{left:178.635000px;}
.x5_c00086{left:344.310000px;}
.x6_c00086{left:560.385000px;}
.x2_c00086{left:782.565000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls8_c00086{letter-spacing:-1.258667pt;}
.lsb_c00086{letter-spacing:-1.002667pt;}
.lsa_c00086{letter-spacing:-0.373867pt;}
.ls9_c00086{letter-spacing:-0.214933pt;}
.lsc_c00086{letter-spacing:-0.010133pt;}
.ls7_c00086{letter-spacing:0.000000pt;}
.ls5_c00086{letter-spacing:0.020267pt;}
.ls0_c00086{letter-spacing:0.432533pt;}
.ls6_c00086{letter-spacing:0.640000pt;}
.ls2_c00086{letter-spacing:4.480000pt;}
.ls3_c00086{letter-spacing:10.880000pt;}
.ls4_c00086{letter-spacing:12.160000pt;}
.ls1_c00086{letter-spacing:13.440000pt;}
.ws0_c00086{word-spacing:-64.000000pt;}
.ws2_c00086{word-spacing:-53.760000pt;}
.ws7_c00086{word-spacing:-16.000000pt;}
.ws1_c00086{word-spacing:-13.440000pt;}
.ws6_c00086{word-spacing:-13.429867pt;}
.ws3_c00086{word-spacing:-13.225067pt;}
.ws4_c00086{word-spacing:-13.066133pt;}
.ws5_c00086{word-spacing:-12.437333pt;}
.ws8_c00086{word-spacing:0.000000pt;}
._2_c00086{margin-left:-2.506667pt;}
._0_c00086{margin-left:-1.269333pt;}
._1_c00086{width:1.600000pt;}
._9_c00086{width:2.762667pt;}
._3_c00086{width:4.213355pt;}
._8_c00086{width:5.247979pt;}
._b_c00086{width:6.258560pt;}
._a_c00086{width:8.066240pt;}
._4_c00086{width:9.149760pt;}
._5_c00086{width:10.413228pt;}
._7_c00086{width:11.473174pt;}
._6_c00086{width:12.505066pt;}
._e_c00086{width:18.378667pt;}
._f_c00086{width:19.509333pt;}
._c_c00086{width:32.576000pt;}
._d_c00086{width:33.546667pt;}
._10_c00086{width:34.741333pt;}
._11_c00086{width:36.288000pt;}
.fs1_c00086{font-size:53.760000pt;}
.fs0_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y6_c00086{bottom:4.156000pt;}
.y3_c00086{bottom:4.160000pt;}
.yf_c00086{bottom:19.186667pt;}
.yb_c00086{bottom:19.200000pt;}
.y5_c00086{bottom:22.396000pt;}
.y4_c00086{bottom:29.156000pt;}
.y14_c00086{bottom:30.706667pt;}
.yd_c00086{bottom:42.226667pt;}
.y11_c00086{bottom:42.266667pt;}
.y1_c00086{bottom:51.552000pt;}
.y13_c00086{bottom:53.786667pt;}
.ye_c00086{bottom:65.293333pt;}
.y12_c00086{bottom:65.306667pt;}
.y26_c00086{bottom:111.712000pt;}
.y25_c00086{bottom:139.586667pt;}
.y24_c00086{bottom:175.106667pt;}
.y23_c00086{bottom:210.626667pt;}
.y22_c00086{bottom:238.146667pt;}
.y21_c00086{bottom:266.013333pt;}
.y20_c00086{bottom:293.533333pt;}
.y1f_c00086{bottom:321.053333pt;}
.y1e_c00086{bottom:348.573333pt;}
.y1d_c00086{bottom:376.453333pt;}
.y1c_c00086{bottom:403.973333pt;}
.y1b_c00086{bottom:431.493333pt;}
.y1a_c00086{bottom:459.013333pt;}
.y19_c00086{bottom:486.880000pt;}
.y18_c00086{bottom:514.400000pt;}
.y17_c00086{bottom:541.920000pt;}
.y16_c00086{bottom:577.466667pt;}
.y15_c00086{bottom:601.160000pt;}
.y10_c00086{bottom:641.480000pt;}
.yc_c00086{bottom:727.920000pt;}
.ya_c00086{bottom:814.333333pt;}
.y9_c00086{bottom:875.773333pt;}
.y8_c00086{bottom:911.653333pt;}
.y7_c00086{bottom:947.173333pt;}
.y2_c00086{bottom:989.413333pt;}
.h2_c00086{height:18.586667pt;}
.h3_c00086{height:36.796000pt;}
.h5_c00086{height:39.026667pt;}
.h6_c00086{height:52.736250pt;}
.h7_c00086{height:52.762500pt;}
.h1_c00086{height:57.375000pt;}
.h4_c00086{height:62.812500pt;}
.h8_c00086{height:85.120000pt;}
.h9_c00086{height:85.138667pt;}
.h0_c00086{height:1056.000000pt;}
.w1_c00086{width:7.346667pt;}
.w5_c00086{width:190.760000pt;}
.w4_c00086{width:190.786667pt;}
.w3_c00086{width:190.800000pt;}
.w2_c00086{width:589.640000pt;}
.w0_c00086{width:816.000000pt;}
.x0_c00086{left:0.000000pt;}
.x3_c00086{left:113.324000pt;}
.x1_c00086{left:137.346667pt;}
.x4_c00086{left:151.106667pt;}
.x7_c00086{left:158.786667pt;}
.x5_c00086{left:306.053333pt;}
.x6_c00086{left:498.120000pt;}
.x2_c00086{left:695.613333pt;}
}





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

.ir_c00087:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00087;src:url('chunks/assets/font_145ff68cfbfb9de4afeb404e.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_bed57fe1f8c4ca5a4d25db49.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_25b069e78cf8df410ff6b5b8.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;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_c00087;src:url('chunks/assets/font_7ea8311901d016c0a72588cb.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00087;src:url('chunks/assets/font_ceb67d42bfaee79b482c100a.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.lsc_c00087{letter-spacing:-1.728000px;}
.lsb_c00087{letter-spacing:-1.380000px;}
.ls7_c00087{letter-spacing:0.000000px;}
.ls8_c00087{letter-spacing:0.020400px;}
.ls9_c00087{letter-spacing:0.022800px;}
.lsa_c00087{letter-spacing:0.060600px;}
.ls3_c00087{letter-spacing:0.529800px;}
.ls0_c00087{letter-spacing:0.720000px;}
.ls6_c00087{letter-spacing:0.740278px;}
.ls4_c00087{letter-spacing:12.240000px;}
.ls5_c00087{letter-spacing:12.249155px;}
.ls1_c00087{letter-spacing:16.560000px;}
.ls2_c00087{letter-spacing:16.580408px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:-18.000000px;}
.ws3_c00087{word-spacing:-16.272000px;}
.ws2_c00087{word-spacing:-15.140400px;}
.ws1_c00087{word-spacing:-15.120000px;}
.ws4_c00087{word-spacing:0.000000px;}
._1_c00087{margin-left:-3.456000px;}
._3_c00087{margin-left:-2.232000px;}
._2_c00087{margin-left:-1.224000px;}
._b_c00087{width:1.008000px;}
._0_c00087{width:2.016000px;}
._7_c00087{width:3.456000px;}
._4_c00087{width:4.620000px;}
._d_c00087{width:5.880000px;}
._a_c00087{width:6.984000px;}
._c_c00087{width:8.712000px;}
._5_c00087{width:10.512000px;}
._6_c00087{width:11.664000px;}
._9_c00087{width:12.744000px;}
._8_c00087{width:13.824000px;}
._14_c00087{width:15.624000px;}
._e_c00087{width:16.632000px;}
._13_c00087{width:25.704000px;}
._11_c00087{width:26.928000px;}
._12_c00087{width:28.008000px;}
._f_c00087{width:36.216000px;}
._10_c00087{width:37.464000px;}
.fc0_c00087{color:rgb(0,0,0);}
.fs1_c00087{font-size:60.480000px;}
.fs0_c00087{font-size:72.000000px;}
.y0_c00087{bottom:0.000000px;}
.y6_c00087{bottom:4.675500px;}
.y3_c00087{bottom:4.680000px;}
.y5_c00087{bottom:25.195500px;}
.y4_c00087{bottom:32.800500px;}
.y1_c00087{bottom:57.996000px;}
.y25_c00087{bottom:112.356000px;}
.y24_c00087{bottom:143.316000px;}
.y23_c00087{bottom:174.315000px;}
.y22_c00087{bottom:205.275000px;}
.y21_c00087{bottom:236.235000px;}
.y20_c00087{bottom:267.555000px;}
.y1f_c00087{bottom:298.545000px;}
.y1e_c00087{bottom:329.505000px;}
.y1d_c00087{bottom:369.465000px;}
.y1c_c00087{bottom:409.830000px;}
.y1b_c00087{bottom:447.630000px;}
.y1a_c00087{bottom:473.190000px;}
.y19_c00087{bottom:499.110000px;}
.y18_c00087{bottom:525.060000px;}
.y17_c00087{bottom:559.980000px;}
.y16_c00087{bottom:585.900000px;}
.y15_c00087{bottom:611.820000px;}
.y14_c00087{bottom:646.770000px;}
.y13_c00087{bottom:683.850000px;}
.y12_c00087{bottom:714.810000px;}
.y11_c00087{bottom:745.770000px;}
.y10_c00087{bottom:777.135000px;}
.yf_c00087{bottom:808.095000px;}
.ye_c00087{bottom:839.055000px;}
.yd_c00087{bottom:870.015000px;}
.yc_c00087{bottom:901.365000px;}
.yb_c00087{bottom:941.325000px;}
.ya_c00087{bottom:972.285000px;}
.y9_c00087{bottom:1003.245000px;}
.y8_c00087{bottom:1034.610000px;}
.y7_c00087{bottom:1065.570000px;}
.y2_c00087{bottom:1113.090000px;}
.h2_c00087{height:20.910000px;}
.h3_c00087{height:41.395500px;}
.h6_c00087{height:59.328281px;}
.h5_c00087{height:59.357813px;}
.h1_c00087{height:64.546875px;}
.h4_c00087{height:70.664062px;}
.h0_c00087{height:1188.000000px;}
.w1_c00087{width:8.265000px;}
.w2_c00087{width:663.345000px;}
.w0_c00087{width:918.000000px;}
.x0_c00087{left:0.000000px;}
.x3_c00087{left:127.489500px;}
.x1_c00087{left:154.515000px;}
.x4_c00087{left:169.995000px;}
.x5_c00087{left:178.635000px;}
.x2_c00087{left:782.565000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.lsc_c00087{letter-spacing:-1.536000pt;}
.lsb_c00087{letter-spacing:-1.226667pt;}
.ls7_c00087{letter-spacing:0.000000pt;}
.ls8_c00087{letter-spacing:0.018133pt;}
.ls9_c00087{letter-spacing:0.020267pt;}
.lsa_c00087{letter-spacing:0.053867pt;}
.ls3_c00087{letter-spacing:0.470933pt;}
.ls0_c00087{letter-spacing:0.640000pt;}
.ls6_c00087{letter-spacing:0.658025pt;}
.ls4_c00087{letter-spacing:10.880000pt;}
.ls5_c00087{letter-spacing:10.888137pt;}
.ls1_c00087{letter-spacing:14.720000pt;}
.ls2_c00087{letter-spacing:14.738140pt;}
.ws0_c00087{word-spacing:-16.000000pt;}
.ws3_c00087{word-spacing:-14.464000pt;}
.ws2_c00087{word-spacing:-13.458133pt;}
.ws1_c00087{word-spacing:-13.440000pt;}
.ws4_c00087{word-spacing:0.000000pt;}
._1_c00087{margin-left:-3.072000pt;}
._3_c00087{margin-left:-1.984000pt;}
._2_c00087{margin-left:-1.088000pt;}
._b_c00087{width:0.896000pt;}
._0_c00087{width:1.792000pt;}
._7_c00087{width:3.072000pt;}
._4_c00087{width:4.106667pt;}
._d_c00087{width:5.226667pt;}
._a_c00087{width:6.208000pt;}
._c_c00087{width:7.744000pt;}
._5_c00087{width:9.344000pt;}
._6_c00087{width:10.368000pt;}
._9_c00087{width:11.328000pt;}
._8_c00087{width:12.288000pt;}
._14_c00087{width:13.888000pt;}
._e_c00087{width:14.784000pt;}
._13_c00087{width:22.848000pt;}
._11_c00087{width:23.936000pt;}
._12_c00087{width:24.896000pt;}
._f_c00087{width:32.192000pt;}
._10_c00087{width:33.301333pt;}
.fs1_c00087{font-size:53.760000pt;}
.fs0_c00087{font-size:64.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y6_c00087{bottom:4.156000pt;}
.y3_c00087{bottom:4.160000pt;}
.y5_c00087{bottom:22.396000pt;}
.y4_c00087{bottom:29.156000pt;}
.y1_c00087{bottom:51.552000pt;}
.y25_c00087{bottom:99.872000pt;}
.y24_c00087{bottom:127.392000pt;}
.y23_c00087{bottom:154.946667pt;}
.y22_c00087{bottom:182.466667pt;}
.y21_c00087{bottom:209.986667pt;}
.y20_c00087{bottom:237.826667pt;}
.y1f_c00087{bottom:265.373333pt;}
.y1e_c00087{bottom:292.893333pt;}
.y1d_c00087{bottom:328.413333pt;}
.y1c_c00087{bottom:364.293333pt;}
.y1b_c00087{bottom:397.893333pt;}
.y1a_c00087{bottom:420.613333pt;}
.y19_c00087{bottom:443.653333pt;}
.y18_c00087{bottom:466.720000pt;}
.y17_c00087{bottom:497.760000pt;}
.y16_c00087{bottom:520.800000pt;}
.y15_c00087{bottom:543.840000pt;}
.y14_c00087{bottom:574.906667pt;}
.y13_c00087{bottom:607.866667pt;}
.y12_c00087{bottom:635.386667pt;}
.y11_c00087{bottom:662.906667pt;}
.y10_c00087{bottom:690.786667pt;}
.yf_c00087{bottom:718.306667pt;}
.ye_c00087{bottom:745.826667pt;}
.yd_c00087{bottom:773.346667pt;}
.yc_c00087{bottom:801.213333pt;}
.yb_c00087{bottom:836.733333pt;}
.ya_c00087{bottom:864.253333pt;}
.y9_c00087{bottom:891.773333pt;}
.y8_c00087{bottom:919.653333pt;}
.y7_c00087{bottom:947.173333pt;}
.y2_c00087{bottom:989.413333pt;}
.h2_c00087{height:18.586667pt;}
.h3_c00087{height:36.796000pt;}
.h6_c00087{height:52.736250pt;}
.h5_c00087{height:52.762500pt;}
.h1_c00087{height:57.375000pt;}
.h4_c00087{height:62.812500pt;}
.h0_c00087{height:1056.000000pt;}
.w1_c00087{width:7.346667pt;}
.w2_c00087{width:589.640000pt;}
.w0_c00087{width:816.000000pt;}
.x0_c00087{left:0.000000pt;}
.x3_c00087{left:113.324000pt;}
.x1_c00087{left:137.346667pt;}
.x4_c00087{left:151.106667pt;}
.x5_c00087{left:158.786667pt;}
.x2_c00087{left:695.613333pt;}
}





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

.ir_c00088:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00088;src:url('chunks/assets/font_6721ca96b65b981ef320ec25.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_7ef9145f27eb8d45eff6bc7b.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00088;src:url('chunks/assets/font_953972514362c7c947c4e0b3.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;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_c00088;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00088;src:url('chunks/assets/font_316816597eb0d9fba4d6ea35.woff2')format("woff");}.ff5_c00088{font-family:ff5_c00088;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls4_c00088{letter-spacing:-0.020400px;}
.ls3_c00088{letter-spacing:0.000000px;}
.ls2_c00088{letter-spacing:0.720000px;}
.ls0_c00088{letter-spacing:1.440000px;}
.ls1_c00088{letter-spacing:7.920000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00088{word-spacing:-72.000000px;}
.ws0_c00088{word-spacing:-18.000000px;}
.ws3_c00088{word-spacing:-15.120000px;}
.ws4_c00088{word-spacing:-15.099600px;}
.ws2_c00088{word-spacing:-13.680000px;}
.ws5_c00088{word-spacing:0.000000px;}
._1_c00088{margin-left:-2.736000px;}
._2_c00088{margin-left:-1.008000px;}
._0_c00088{width:1.080000px;}
._5_c00088{width:2.136000px;}
._6_c00088{width:3.240000px;}
._10_c00088{width:4.283928px;}
._d_c00088{width:5.868024px;}
._b_c00088{width:7.416000px;}
._c_c00088{width:8.448000px;}
._a_c00088{width:9.504000px;}
._f_c00088{width:10.632000px;}
._e_c00088{width:12.024000px;}
._9_c00088{width:13.056000px;}
._7_c00088{width:14.112000px;}
._8_c00088{width:15.264000px;}
._16_c00088{width:16.440000px;}
._11_c00088{width:19.368000px;}
._12_c00088{width:21.216000px;}
._15_c00088{width:27.576000px;}
._13_c00088{width:28.872000px;}
._14_c00088{width:30.312000px;}
._3_c00088{width:33.408000px;}
._4_c00088{width:34.776000px;}
.fc0_c00088{color:rgb(0,0,0);}
.fs3_c00088{font-size:38.880000px;}
.fs1_c00088{font-size:47.520000px;}
.fs2_c00088{font-size:54.720000px;}
.fs4_c00088{font-size:60.480000px;}
.fs0_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y6_c00088{bottom:4.675500px;}
.y3_c00088{bottom:4.680000px;}
.y5_c00088{bottom:25.195500px;}
.y4_c00088{bottom:32.800500px;}
.y1_c00088{bottom:57.996000px;}
.y29_c00088{bottom:130.716000px;}
.y28_c00088{bottom:137.556000px;}
.y27_c00088{bottom:147.996000px;}
.y26_c00088{bottom:154.875000px;}
.y25_c00088{bottom:165.675000px;}
.y24_c00088{bottom:195.195000px;}
.y23_c00088{bottom:230.835000px;}
.y21_c00088{bottom:262.155000px;}
.y22_c00088{bottom:270.435000px;}
.y1f_c00088{bottom:293.145000px;}
.y20_c00088{bottom:301.425000px;}
.y1e_c00088{bottom:324.105000px;}
.y1d_c00088{bottom:355.065000px;}
.y1c_c00088{bottom:395.430000px;}
.y1b_c00088{bottom:435.390000px;}
.y1a_c00088{bottom:466.350000px;}
.y19_c00088{bottom:497.310000px;}
.y18_c00088{bottom:528.660000px;}
.y17_c00088{bottom:559.620000px;}
.y16_c00088{bottom:590.580000px;}
.y15_c00088{bottom:621.540000px;}
.y14_c00088{bottom:652.890000px;}
.y13_c00088{bottom:683.850000px;}
.y12_c00088{bottom:714.810000px;}
.y11_c00088{bottom:754.770000px;}
.y10_c00088{bottom:786.135000px;}
.yf_c00088{bottom:817.095000px;}
.ye_c00088{bottom:848.055000px;}
.yd_c00088{bottom:879.015000px;}
.yc_c00088{bottom:910.365000px;}
.yb_c00088{bottom:941.325000px;}
.ya_c00088{bottom:972.285000px;}
.y9_c00088{bottom:1003.245000px;}
.y8_c00088{bottom:1034.610000px;}
.y7_c00088{bottom:1065.570000px;}
.y2_c00088{bottom:1113.090000px;}
.h2_c00088{height:20.910000px;}
.ha_c00088{height:38.158594px;}
.h3_c00088{height:41.395500px;}
.h8_c00088{height:46.615078px;}
.h7_c00088{height:46.638281px;}
.h9_c00088{height:53.704687px;}
.hb_c00088{height:59.357813px;}
.h1_c00088{height:64.546875px;}
.h5_c00088{height:70.628906px;}
.h4_c00088{height:70.664062px;}
.h6_c00088{height:1187.995500px;}
.h0_c00088{height:1188.000000px;}
.w1_c00088{width:8.265000px;}
.w2_c00088{width:663.345000px;}
.w3_c00088{width:917.997000px;}
.w0_c00088{width:918.000000px;}
.x0_c00088{left:0.000000px;}
.x3_c00088{left:127.489500px;}
.xa_c00088{left:137.556000px;}
.x1_c00088{left:154.515000px;}
.x8_c00088{left:169.995000px;}
.x4_c00088{left:178.635000px;}
.x7_c00088{left:191.595000px;}
.x5_c00088{left:197.352000px;}
.x6_c00088{left:209.595000px;}
.x9_c00088{left:343.590000px;}
.x2_c00088{left:782.565000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls4_c00088{letter-spacing:-0.018133pt;}
.ls3_c00088{letter-spacing:0.000000pt;}
.ls2_c00088{letter-spacing:0.640000pt;}
.ls0_c00088{letter-spacing:1.280000pt;}
.ls1_c00088{letter-spacing:7.040000pt;}
.ws1_c00088{word-spacing:-64.000000pt;}
.ws0_c00088{word-spacing:-16.000000pt;}
.ws3_c00088{word-spacing:-13.440000pt;}
.ws4_c00088{word-spacing:-13.421867pt;}
.ws2_c00088{word-spacing:-12.160000pt;}
.ws5_c00088{word-spacing:0.000000pt;}
._1_c00088{margin-left:-2.432000pt;}
._2_c00088{margin-left:-0.896000pt;}
._0_c00088{width:0.960000pt;}
._5_c00088{width:1.898667pt;}
._6_c00088{width:2.880000pt;}
._10_c00088{width:3.807936pt;}
._d_c00088{width:5.216021pt;}
._b_c00088{width:6.592000pt;}
._c_c00088{width:7.509333pt;}
._a_c00088{width:8.448000pt;}
._f_c00088{width:9.450667pt;}
._e_c00088{width:10.688000pt;}
._9_c00088{width:11.605333pt;}
._7_c00088{width:12.544000pt;}
._8_c00088{width:13.568000pt;}
._16_c00088{width:14.613333pt;}
._11_c00088{width:17.216000pt;}
._12_c00088{width:18.858667pt;}
._15_c00088{width:24.512000pt;}
._13_c00088{width:25.664000pt;}
._14_c00088{width:26.944000pt;}
._3_c00088{width:29.696000pt;}
._4_c00088{width:30.912000pt;}
.fs3_c00088{font-size:34.560000pt;}
.fs1_c00088{font-size:42.240000pt;}
.fs2_c00088{font-size:48.640000pt;}
.fs4_c00088{font-size:53.760000pt;}
.fs0_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y6_c00088{bottom:4.156000pt;}
.y3_c00088{bottom:4.160000pt;}
.y5_c00088{bottom:22.396000pt;}
.y4_c00088{bottom:29.156000pt;}
.y1_c00088{bottom:51.552000pt;}
.y29_c00088{bottom:116.192000pt;}
.y28_c00088{bottom:122.272000pt;}
.y27_c00088{bottom:131.552000pt;}
.y26_c00088{bottom:137.666667pt;}
.y25_c00088{bottom:147.266667pt;}
.y24_c00088{bottom:173.506667pt;}
.y23_c00088{bottom:205.186667pt;}
.y21_c00088{bottom:233.026667pt;}
.y22_c00088{bottom:240.386667pt;}
.y1f_c00088{bottom:260.573333pt;}
.y20_c00088{bottom:267.933333pt;}
.y1e_c00088{bottom:288.093333pt;}
.y1d_c00088{bottom:315.613333pt;}
.y1c_c00088{bottom:351.493333pt;}
.y1b_c00088{bottom:387.013333pt;}
.y1a_c00088{bottom:414.533333pt;}
.y19_c00088{bottom:442.053333pt;}
.y18_c00088{bottom:469.920000pt;}
.y17_c00088{bottom:497.440000pt;}
.y16_c00088{bottom:524.960000pt;}
.y15_c00088{bottom:552.480000pt;}
.y14_c00088{bottom:580.346667pt;}
.y13_c00088{bottom:607.866667pt;}
.y12_c00088{bottom:635.386667pt;}
.y11_c00088{bottom:670.906667pt;}
.y10_c00088{bottom:698.786667pt;}
.yf_c00088{bottom:726.306667pt;}
.ye_c00088{bottom:753.826667pt;}
.yd_c00088{bottom:781.346667pt;}
.yc_c00088{bottom:809.213333pt;}
.yb_c00088{bottom:836.733333pt;}
.ya_c00088{bottom:864.253333pt;}
.y9_c00088{bottom:891.773333pt;}
.y8_c00088{bottom:919.653333pt;}
.y7_c00088{bottom:947.173333pt;}
.y2_c00088{bottom:989.413333pt;}
.h2_c00088{height:18.586667pt;}
.ha_c00088{height:33.918750pt;}
.h3_c00088{height:36.796000pt;}
.h8_c00088{height:41.435625pt;}
.h7_c00088{height:41.456250pt;}
.h9_c00088{height:47.737500pt;}
.hb_c00088{height:52.762500pt;}
.h1_c00088{height:57.375000pt;}
.h5_c00088{height:62.781250pt;}
.h4_c00088{height:62.812500pt;}
.h6_c00088{height:1055.996000pt;}
.h0_c00088{height:1056.000000pt;}
.w1_c00088{width:7.346667pt;}
.w2_c00088{width:589.640000pt;}
.w3_c00088{width:815.997333pt;}
.w0_c00088{width:816.000000pt;}
.x0_c00088{left:0.000000pt;}
.x3_c00088{left:113.324000pt;}
.xa_c00088{left:122.272000pt;}
.x1_c00088{left:137.346667pt;}
.x8_c00088{left:151.106667pt;}
.x4_c00088{left:158.786667pt;}
.x7_c00088{left:170.306667pt;}
.x5_c00088{left:175.424000pt;}
.x6_c00088{left:186.306667pt;}
.x9_c00088{left:305.413333pt;}
.x2_c00088{left:695.613333pt;}
}





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

.ir_c00089:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00089;src:url('chunks/assets/font_aa961cc34174afcaa51baeb4.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_02b4853c0bc57c26de15b623.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_a8358737d3abf7a0f2a0a89e.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls10_c00089{letter-spacing:-1.692000px;}
.lsd_c00089{letter-spacing:-1.656000px;}
.ls12_c00089{letter-spacing:-1.296000px;}
.ls11_c00089{letter-spacing:-0.720000px;}
.lsf_c00089{letter-spacing:-0.696000px;}
.lsc_c00089{letter-spacing:-0.618000px;}
.lse_c00089{letter-spacing:-0.397200px;}
.lsb_c00089{letter-spacing:-0.253200px;}
.ls9_c00089{letter-spacing:-0.219000px;}
.lsa_c00089{letter-spacing:-0.069000px;}
.ls8_c00089{letter-spacing:0.000000px;}
.ls4_c00089{letter-spacing:0.057600px;}
.ls2_c00089{letter-spacing:0.126720px;}
.ls7_c00089{letter-spacing:0.180000px;}
.ls1_c00089{letter-spacing:0.181440px;}
.ls3_c00089{letter-spacing:0.453600px;}
.ls6_c00089{letter-spacing:0.714012px;}
.ls5_c00089{letter-spacing:0.714366px;}
.ls0_c00089{letter-spacing:0.720000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:-13.680000px;}
.ws1_c00089{word-spacing:-13.461000px;}
.ws4_c00089{word-spacing:-13.426800px;}
.ws5_c00089{word-spacing:-13.282800px;}
.ws2_c00089{word-spacing:-13.062000px;}
.ws6_c00089{word-spacing:-12.984000px;}
.ws8_c00089{word-spacing:-12.384000px;}
.ws3_c00089{word-spacing:-12.024000px;}
.ws7_c00089{word-spacing:-11.988000px;}
.ws9_c00089{word-spacing:0.000000px;}
._0_c00089{margin-left:-1.696211px;}
._1_c00089{width:1.039242px;}
._8_c00089{width:2.405019px;}
._5_c00089{width:877.941187px;}
._3_c00089{width:880.313541px;}
._4_c00089{width:898.771242px;}
._2_c00089{width:902.264442px;}
._6_c00089{width:905.464034px;}
._9_c00089{width:944.686644px;}
._7_c00089{width:1025.634030px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs1_c00089{font-size:54.720000px;}
.fs0_c00089{font-size:72.000000px;}
.y0_c00089{bottom:0.000000px;}
.y6_c00089{bottom:4.675500px;}
.y3_c00089{bottom:4.680000px;}
.y5_c00089{bottom:25.195500px;}
.y4_c00089{bottom:32.800500px;}
.y1_c00089{bottom:57.996000px;}
.y24_c00089{bottom:133.236000px;}
.y23_c00089{bottom:165.675000px;}
.y22_c00089{bottom:197.715000px;}
.y21_c00089{bottom:230.115000px;}
.y20_c00089{bottom:262.515000px;}
.y1f_c00089{bottom:294.585000px;}
.y1e_c00089{bottom:326.985000px;}
.y1d_c00089{bottom:359.385000px;}
.y1c_c00089{bottom:391.425000px;}
.y1b_c00089{bottom:423.870000px;}
.y1a_c00089{bottom:456.270000px;}
.y19_c00089{bottom:488.670000px;}
.y18_c00089{bottom:520.740000px;}
.y17_c00089{bottom:553.140000px;}
.y16_c00089{bottom:585.540000px;}
.y15_c00089{bottom:617.580000px;}
.y14_c00089{bottom:650.010000px;}
.y13_c00089{bottom:682.410000px;}
.y12_c00089{bottom:714.450000px;}
.y11_c00089{bottom:746.850000px;}
.y10_c00089{bottom:779.295000px;}
.yf_c00089{bottom:811.335000px;}
.ye_c00089{bottom:843.735000px;}
.yd_c00089{bottom:876.135000px;}
.yc_c00089{bottom:908.205000px;}
.yb_c00089{bottom:940.605000px;}
.ya_c00089{bottom:973.005000px;}
.y9_c00089{bottom:1005.045000px;}
.y8_c00089{bottom:1037.490000px;}
.y7_c00089{bottom:1069.890000px;}
.y2_c00089{bottom:1113.090000px;}
.h2_c00089{height:20.910000px;}
.h3_c00089{height:41.395500px;}
.h4_c00089{height:53.704687px;}
.h1_c00089{height:64.546875px;}
.h0_c00089{height:1188.000000px;}
.w1_c00089{width:8.265000px;}
.w2_c00089{width:663.345000px;}
.w0_c00089{width:918.000000px;}
.x0_c00089{left:0.000000px;}
.x3_c00089{left:127.489500px;}
.x1_c00089{left:154.515000px;}
.x4_c00089{left:169.995000px;}
.x2_c00089{left:782.565000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls10_c00089{letter-spacing:-1.504000pt;}
.lsd_c00089{letter-spacing:-1.472000pt;}
.ls12_c00089{letter-spacing:-1.152000pt;}
.ls11_c00089{letter-spacing:-0.640000pt;}
.lsf_c00089{letter-spacing:-0.618667pt;}
.lsc_c00089{letter-spacing:-0.549333pt;}
.lse_c00089{letter-spacing:-0.353067pt;}
.lsb_c00089{letter-spacing:-0.225067pt;}
.ls9_c00089{letter-spacing:-0.194667pt;}
.lsa_c00089{letter-spacing:-0.061333pt;}
.ls8_c00089{letter-spacing:0.000000pt;}
.ls4_c00089{letter-spacing:0.051200pt;}
.ls2_c00089{letter-spacing:0.112640pt;}
.ls7_c00089{letter-spacing:0.160000pt;}
.ls1_c00089{letter-spacing:0.161280pt;}
.ls3_c00089{letter-spacing:0.403200pt;}
.ls6_c00089{letter-spacing:0.634678pt;}
.ls5_c00089{letter-spacing:0.634992pt;}
.ls0_c00089{letter-spacing:0.640000pt;}
.ws0_c00089{word-spacing:-12.160000pt;}
.ws1_c00089{word-spacing:-11.965333pt;}
.ws4_c00089{word-spacing:-11.934933pt;}
.ws5_c00089{word-spacing:-11.806933pt;}
.ws2_c00089{word-spacing:-11.610667pt;}
.ws6_c00089{word-spacing:-11.541333pt;}
.ws8_c00089{word-spacing:-11.008000pt;}
.ws3_c00089{word-spacing:-10.688000pt;}
.ws7_c00089{word-spacing:-10.656000pt;}
.ws9_c00089{word-spacing:0.000000pt;}
._0_c00089{margin-left:-1.507743pt;}
._1_c00089{width:0.923771pt;}
._8_c00089{width:2.137795pt;}
._5_c00089{width:780.392166pt;}
._3_c00089{width:782.500925pt;}
._4_c00089{width:798.907771pt;}
._2_c00089{width:802.012838pt;}
._6_c00089{width:804.856919pt;}
._9_c00089{width:839.721462pt;}
._7_c00089{width:911.674693pt;}
.fs1_c00089{font-size:48.640000pt;}
.fs0_c00089{font-size:64.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y6_c00089{bottom:4.156000pt;}
.y3_c00089{bottom:4.160000pt;}
.y5_c00089{bottom:22.396000pt;}
.y4_c00089{bottom:29.156000pt;}
.y1_c00089{bottom:51.552000pt;}
.y24_c00089{bottom:118.432000pt;}
.y23_c00089{bottom:147.266667pt;}
.y22_c00089{bottom:175.746667pt;}
.y21_c00089{bottom:204.546667pt;}
.y20_c00089{bottom:233.346667pt;}
.y1f_c00089{bottom:261.853333pt;}
.y1e_c00089{bottom:290.653333pt;}
.y1d_c00089{bottom:319.453333pt;}
.y1c_c00089{bottom:347.933333pt;}
.y1b_c00089{bottom:376.773333pt;}
.y1a_c00089{bottom:405.573333pt;}
.y19_c00089{bottom:434.373333pt;}
.y18_c00089{bottom:462.880000pt;}
.y17_c00089{bottom:491.680000pt;}
.y16_c00089{bottom:520.480000pt;}
.y15_c00089{bottom:548.960000pt;}
.y14_c00089{bottom:577.786667pt;}
.y13_c00089{bottom:606.586667pt;}
.y12_c00089{bottom:635.066667pt;}
.y11_c00089{bottom:663.866667pt;}
.y10_c00089{bottom:692.706667pt;}
.yf_c00089{bottom:721.186667pt;}
.ye_c00089{bottom:749.986667pt;}
.yd_c00089{bottom:778.786667pt;}
.yc_c00089{bottom:807.293333pt;}
.yb_c00089{bottom:836.093333pt;}
.ya_c00089{bottom:864.893333pt;}
.y9_c00089{bottom:893.373333pt;}
.y8_c00089{bottom:922.213333pt;}
.y7_c00089{bottom:951.013333pt;}
.y2_c00089{bottom:989.413333pt;}
.h2_c00089{height:18.586667pt;}
.h3_c00089{height:36.796000pt;}
.h4_c00089{height:47.737500pt;}
.h1_c00089{height:57.375000pt;}
.h0_c00089{height:1056.000000pt;}
.w1_c00089{width:7.346667pt;}
.w2_c00089{width:589.640000pt;}
.w0_c00089{width:816.000000pt;}
.x0_c00089{left:0.000000pt;}
.x3_c00089{left:113.324000pt;}
.x1_c00089{left:137.346667pt;}
.x4_c00089{left:151.106667pt;}
.x2_c00089{left:695.613333pt;}
}





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

.ir_c00090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00090;src:url('chunks/assets/font_89d27c5926751843ceb3c2d0.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_d16c1eb3c7930a8d15a450a2.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_ab665d543c55d27b47948bf3.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_a7aceaac3eb4198c5fd9053f.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;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_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls14_c00090{letter-spacing:-1.692000px;}
.ls11_c00090{letter-spacing:-1.512000px;}
.ls15_c00090{letter-spacing:-0.720000px;}
.ls10_c00090{letter-spacing:-0.696000px;}
.ls17_c00090{letter-spacing:-0.618000px;}
.lsd_c00090{letter-spacing:-0.529800px;}
.ls12_c00090{letter-spacing:-0.397200px;}
.lsf_c00090{letter-spacing:-0.273600px;}
.ls16_c00090{letter-spacing:-0.253200px;}
.ls13_c00090{letter-spacing:-0.219000px;}
.lse_c00090{letter-spacing:-0.069000px;}
.lsc_c00090{letter-spacing:0.000000px;}
.ls18_c00090{letter-spacing:0.054600px;}
.ls0_c00090{letter-spacing:0.057600px;}
.ls4_c00090{letter-spacing:0.181440px;}
.ls2_c00090{letter-spacing:0.498240px;}
.ls9_c00090{letter-spacing:0.714063px;}
.ls5_c00090{letter-spacing:0.714375px;}
.ls1_c00090{letter-spacing:0.720000px;}
.lsa_c00090{letter-spacing:0.731133px;}
.ls7_c00090{letter-spacing:0.840000px;}
.ls6_c00090{letter-spacing:944.160000px;}
.lsb_c00090{letter-spacing:945.600000px;}
.ls3_c00090{letter-spacing:974.400000px;}
.ls8_c00090{letter-spacing:990.240000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00090{word-spacing:-13.680000px;}
.ws7_c00090{word-spacing:-13.461000px;}
.ws3_c00090{word-spacing:-13.406400px;}
.ws6_c00090{word-spacing:-13.282800px;}
.ws0_c00090{word-spacing:-13.150200px;}
.ws4_c00090{word-spacing:-12.984000px;}
.ws2_c00090{word-spacing:-12.600000px;}
.ws5_c00090{word-spacing:-12.168000px;}
.ws8_c00090{word-spacing:-11.988000px;}
.ws9_c00090{word-spacing:0.000000px;}
._1_c00090{margin-left:-2.643461px;}
._0_c00090{margin-left:-1.230000px;}
._2_c00090{width:1.075044px;}
._5_c00090{width:3.067746px;}
._8_c00090{width:4.190986px;}
._9_c00090{width:5.244274px;}
._7_c00090{width:6.509444px;}
._4_c00090{width:531.378240px;}
._6_c00090{width:860.292202px;}
._3_c00090{width:941.047732px;}
.fc0_c00090{color:rgb(0,0,0);}
.fs2_c00090{font-size:47.520000px;}
.fs1_c00090{font-size:54.720000px;}
.fs0_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y6_c00090{bottom:4.675500px;}
.y3_c00090{bottom:4.680000px;}
.y5_c00090{bottom:25.195500px;}
.y4_c00090{bottom:32.800500px;}
.y1_c00090{bottom:57.996000px;}
.y25_c00090{bottom:118.836000px;}
.y24_c00090{bottom:142.236000px;}
.y23_c00090{bottom:165.675000px;}
.y22_c00090{bottom:197.715000px;}
.y21_c00090{bottom:230.115000px;}
.y20_c00090{bottom:262.515000px;}
.y1f_c00090{bottom:294.585000px;}
.y1e_c00090{bottom:326.985000px;}
.y1d_c00090{bottom:359.385000px;}
.y1c_c00090{bottom:391.425000px;}
.y1b_c00090{bottom:423.870000px;}
.y1a_c00090{bottom:456.270000px;}
.y19_c00090{bottom:488.670000px;}
.y18_c00090{bottom:520.740000px;}
.y17_c00090{bottom:553.140000px;}
.y16_c00090{bottom:585.540000px;}
.y15_c00090{bottom:617.580000px;}
.y14_c00090{bottom:650.010000px;}
.y13_c00090{bottom:682.410000px;}
.y12_c00090{bottom:714.450000px;}
.y11_c00090{bottom:746.850000px;}
.y10_c00090{bottom:779.295000px;}
.yf_c00090{bottom:811.335000px;}
.ye_c00090{bottom:843.735000px;}
.yd_c00090{bottom:876.135000px;}
.yc_c00090{bottom:908.205000px;}
.yb_c00090{bottom:940.605000px;}
.ya_c00090{bottom:973.005000px;}
.y9_c00090{bottom:1005.045000px;}
.y8_c00090{bottom:1037.490000px;}
.y7_c00090{bottom:1069.890000px;}
.y2_c00090{bottom:1113.090000px;}
.h2_c00090{height:20.910000px;}
.h3_c00090{height:41.395500px;}
.h5_c00090{height:53.677969px;}
.h4_c00090{height:53.704687px;}
.h1_c00090{height:64.546875px;}
.h0_c00090{height:1188.000000px;}
.w1_c00090{width:8.265000px;}
.w2_c00090{width:663.345000px;}
.w0_c00090{width:918.000000px;}
.x0_c00090{left:0.000000px;}
.x3_c00090{left:127.489500px;}
.x1_c00090{left:154.515000px;}
.x4_c00090{left:169.995000px;}
.x2_c00090{left:782.565000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls14_c00090{letter-spacing:-1.504000pt;}
.ls11_c00090{letter-spacing:-1.344000pt;}
.ls15_c00090{letter-spacing:-0.640000pt;}
.ls10_c00090{letter-spacing:-0.618667pt;}
.ls17_c00090{letter-spacing:-0.549333pt;}
.lsd_c00090{letter-spacing:-0.470933pt;}
.ls12_c00090{letter-spacing:-0.353067pt;}
.lsf_c00090{letter-spacing:-0.243200pt;}
.ls16_c00090{letter-spacing:-0.225067pt;}
.ls13_c00090{letter-spacing:-0.194667pt;}
.lse_c00090{letter-spacing:-0.061333pt;}
.lsc_c00090{letter-spacing:0.000000pt;}
.ls18_c00090{letter-spacing:0.048533pt;}
.ls0_c00090{letter-spacing:0.051200pt;}
.ls4_c00090{letter-spacing:0.161280pt;}
.ls2_c00090{letter-spacing:0.442880pt;}
.ls9_c00090{letter-spacing:0.634723pt;}
.ls5_c00090{letter-spacing:0.635000pt;}
.ls1_c00090{letter-spacing:0.640000pt;}
.lsa_c00090{letter-spacing:0.649896pt;}
.ls7_c00090{letter-spacing:0.746667pt;}
.ls6_c00090{letter-spacing:839.253333pt;}
.lsb_c00090{letter-spacing:840.533333pt;}
.ls3_c00090{letter-spacing:866.133333pt;}
.ls8_c00090{letter-spacing:880.213333pt;}
.ws1_c00090{word-spacing:-12.160000pt;}
.ws7_c00090{word-spacing:-11.965333pt;}
.ws3_c00090{word-spacing:-11.916800pt;}
.ws6_c00090{word-spacing:-11.806933pt;}
.ws0_c00090{word-spacing:-11.689067pt;}
.ws4_c00090{word-spacing:-11.541333pt;}
.ws2_c00090{word-spacing:-11.200000pt;}
.ws5_c00090{word-spacing:-10.816000pt;}
.ws8_c00090{word-spacing:-10.656000pt;}
.ws9_c00090{word-spacing:0.000000pt;}
._1_c00090{margin-left:-2.349743pt;}
._0_c00090{margin-left:-1.093333pt;}
._2_c00090{width:0.955594pt;}
._5_c00090{width:2.726886pt;}
._8_c00090{width:3.725321pt;}
._9_c00090{width:4.661577pt;}
._7_c00090{width:5.786173pt;}
._4_c00090{width:472.336213pt;}
._6_c00090{width:764.704179pt;}
._3_c00090{width:836.486873pt;}
.fs2_c00090{font-size:42.240000pt;}
.fs1_c00090{font-size:48.640000pt;}
.fs0_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y6_c00090{bottom:4.156000pt;}
.y3_c00090{bottom:4.160000pt;}
.y5_c00090{bottom:22.396000pt;}
.y4_c00090{bottom:29.156000pt;}
.y1_c00090{bottom:51.552000pt;}
.y25_c00090{bottom:105.632000pt;}
.y24_c00090{bottom:126.432000pt;}
.y23_c00090{bottom:147.266667pt;}
.y22_c00090{bottom:175.746667pt;}
.y21_c00090{bottom:204.546667pt;}
.y20_c00090{bottom:233.346667pt;}
.y1f_c00090{bottom:261.853333pt;}
.y1e_c00090{bottom:290.653333pt;}
.y1d_c00090{bottom:319.453333pt;}
.y1c_c00090{bottom:347.933333pt;}
.y1b_c00090{bottom:376.773333pt;}
.y1a_c00090{bottom:405.573333pt;}
.y19_c00090{bottom:434.373333pt;}
.y18_c00090{bottom:462.880000pt;}
.y17_c00090{bottom:491.680000pt;}
.y16_c00090{bottom:520.480000pt;}
.y15_c00090{bottom:548.960000pt;}
.y14_c00090{bottom:577.786667pt;}
.y13_c00090{bottom:606.586667pt;}
.y12_c00090{bottom:635.066667pt;}
.y11_c00090{bottom:663.866667pt;}
.y10_c00090{bottom:692.706667pt;}
.yf_c00090{bottom:721.186667pt;}
.ye_c00090{bottom:749.986667pt;}
.yd_c00090{bottom:778.786667pt;}
.yc_c00090{bottom:807.293333pt;}
.yb_c00090{bottom:836.093333pt;}
.ya_c00090{bottom:864.893333pt;}
.y9_c00090{bottom:893.373333pt;}
.y8_c00090{bottom:922.213333pt;}
.y7_c00090{bottom:951.013333pt;}
.y2_c00090{bottom:989.413333pt;}
.h2_c00090{height:18.586667pt;}
.h3_c00090{height:36.796000pt;}
.h5_c00090{height:47.713750pt;}
.h4_c00090{height:47.737500pt;}
.h1_c00090{height:57.375000pt;}
.h0_c00090{height:1056.000000pt;}
.w1_c00090{width:7.346667pt;}
.w2_c00090{width:589.640000pt;}
.w0_c00090{width:816.000000pt;}
.x0_c00090{left:0.000000pt;}
.x3_c00090{left:113.324000pt;}
.x1_c00090{left:137.346667pt;}
.x4_c00090{left:151.106667pt;}
.x2_c00090{left:695.613333pt;}
}





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

.ir_c00091:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00091;src:url('chunks/assets/font_660016fb3ab0fd2f25f81b3a.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_ccb486734c193f65f59a268f.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_fdb00044d9468fc59a5e13af.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_d6e80eff5b5bf0fe0ca99b7b.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls1_c00091{letter-spacing:0.000000px;}
.ls0_c00091{letter-spacing:0.313920px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:-18.000000px;}
.ws1_c00091{word-spacing:0.000000px;}
._d_c00091{margin-left:-2.975728px;}
._1_c00091{margin-left:-1.805924px;}
._2_c00091{width:1.424362px;}
._4_c00091{width:3.283145px;}
._c_c00091{width:4.377545px;}
._5_c00091{width:5.471945px;}
._6_c00091{width:6.949768px;}
._b_c00091{width:7.987697px;}
._9_c00091{width:9.302345px;}
._a_c00091{width:10.403695px;}
._7_c00091{width:11.544661px;}
._8_c00091{width:12.662427px;}
._e_c00091{width:14.283193px;}
._0_c00091{width:15.759579px;}
._3_c00091{width:16.833623px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs1_c00091{font-size:54.720000px;}
.fs0_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y6_c00091{bottom:4.675500px;}
.y3_c00091{bottom:4.680000px;}
.y5_c00091{bottom:25.195500px;}
.y4_c00091{bottom:32.800500px;}
.y1_c00091{bottom:57.996000px;}
.y2b_c00091{bottom:129.996000px;}
.y2a_c00091{bottom:169.995000px;}
.y29_c00091{bottom:201.315000px;}
.y28_c00091{bottom:241.275000px;}
.y27_c00091{bottom:272.265000px;}
.y26_c00091{bottom:303.225000px;}
.y25_c00091{bottom:334.545000px;}
.y24_c00091{bottom:365.505000px;}
.y23_c00091{bottom:396.510000px;}
.y22_c00091{bottom:427.470000px;}
.y21_c00091{bottom:464.190000px;}
.y20_c00091{bottom:487.590000px;}
.y1f_c00091{bottom:510.630000px;}
.y1e_c00091{bottom:534.060000px;}
.y1d_c00091{bottom:557.460000px;}
.y1c_c00091{bottom:580.500000px;}
.y1b_c00091{bottom:603.900000px;}
.y1a_c00091{bottom:627.300000px;}
.y19_c00091{bottom:650.730000px;}
.y18_c00091{bottom:673.770000px;}
.y17_c00091{bottom:697.170000px;}
.y16_c00091{bottom:720.570000px;}
.y15_c00091{bottom:743.610000px;}
.y14_c00091{bottom:767.055000px;}
.y13_c00091{bottom:790.455000px;}
.y12_c00091{bottom:813.495000px;}
.y11_c00091{bottom:836.895000px;}
.y10_c00091{bottom:860.295000px;}
.yf_c00091{bottom:883.335000px;}
.ye_c00091{bottom:906.765000px;}
.yd_c00091{bottom:930.165000px;}
.yc_c00091{bottom:953.205000px;}
.yb_c00091{bottom:976.605000px;}
.ya_c00091{bottom:1000.005000px;}
.y9_c00091{bottom:1023.090000px;}
.y8_c00091{bottom:1046.490000px;}
.y7_c00091{bottom:1069.890000px;}
.y2_c00091{bottom:1113.090000px;}
.h2_c00091{height:20.910000px;}
.h3_c00091{height:41.395500px;}
.h4_c00091{height:53.677969px;}
.h1_c00091{height:64.546875px;}
.h5_c00091{height:70.664062px;}
.h0_c00091{height:1188.000000px;}
.w1_c00091{width:8.265000px;}
.w2_c00091{width:663.345000px;}
.w0_c00091{width:918.000000px;}
.x0_c00091{left:0.000000px;}
.x3_c00091{left:127.489500px;}
.x1_c00091{left:154.515000px;}
.x4_c00091{left:169.995000px;}
.x2_c00091{left:782.565000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls1_c00091{letter-spacing:0.000000pt;}
.ls0_c00091{letter-spacing:0.279040pt;}
.ws0_c00091{word-spacing:-16.000000pt;}
.ws1_c00091{word-spacing:0.000000pt;}
._d_c00091{margin-left:-2.645092pt;}
._1_c00091{margin-left:-1.605266pt;}
._2_c00091{width:1.266099pt;}
._4_c00091{width:2.918351pt;}
._c_c00091{width:3.891151pt;}
._5_c00091{width:4.863951pt;}
._6_c00091{width:6.177572pt;}
._b_c00091{width:7.100175pt;}
._9_c00091{width:8.268751pt;}
._a_c00091{width:9.247729pt;}
._7_c00091{width:10.261921pt;}
._8_c00091{width:11.255491pt;}
._e_c00091{width:12.696172pt;}
._0_c00091{width:14.008515pt;}
._3_c00091{width:14.963220pt;}
.fs1_c00091{font-size:48.640000pt;}
.fs0_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y6_c00091{bottom:4.156000pt;}
.y3_c00091{bottom:4.160000pt;}
.y5_c00091{bottom:22.396000pt;}
.y4_c00091{bottom:29.156000pt;}
.y1_c00091{bottom:51.552000pt;}
.y2b_c00091{bottom:115.552000pt;}
.y2a_c00091{bottom:151.106667pt;}
.y29_c00091{bottom:178.946667pt;}
.y28_c00091{bottom:214.466667pt;}
.y27_c00091{bottom:242.013333pt;}
.y26_c00091{bottom:269.533333pt;}
.y25_c00091{bottom:297.373333pt;}
.y24_c00091{bottom:324.893333pt;}
.y23_c00091{bottom:352.453333pt;}
.y22_c00091{bottom:379.973333pt;}
.y21_c00091{bottom:412.613333pt;}
.y20_c00091{bottom:433.413333pt;}
.y1f_c00091{bottom:453.893333pt;}
.y1e_c00091{bottom:474.720000pt;}
.y1d_c00091{bottom:495.520000pt;}
.y1c_c00091{bottom:516.000000pt;}
.y1b_c00091{bottom:536.800000pt;}
.y1a_c00091{bottom:557.600000pt;}
.y19_c00091{bottom:578.426667pt;}
.y18_c00091{bottom:598.906667pt;}
.y17_c00091{bottom:619.706667pt;}
.y16_c00091{bottom:640.506667pt;}
.y15_c00091{bottom:660.986667pt;}
.y14_c00091{bottom:681.826667pt;}
.y13_c00091{bottom:702.626667pt;}
.y12_c00091{bottom:723.106667pt;}
.y11_c00091{bottom:743.906667pt;}
.y10_c00091{bottom:764.706667pt;}
.yf_c00091{bottom:785.186667pt;}
.ye_c00091{bottom:806.013333pt;}
.yd_c00091{bottom:826.813333pt;}
.yc_c00091{bottom:847.293333pt;}
.yb_c00091{bottom:868.093333pt;}
.ya_c00091{bottom:888.893333pt;}
.y9_c00091{bottom:909.413333pt;}
.y8_c00091{bottom:930.213333pt;}
.y7_c00091{bottom:951.013333pt;}
.y2_c00091{bottom:989.413333pt;}
.h2_c00091{height:18.586667pt;}
.h3_c00091{height:36.796000pt;}
.h4_c00091{height:47.713750pt;}
.h1_c00091{height:57.375000pt;}
.h5_c00091{height:62.812500pt;}
.h0_c00091{height:1056.000000pt;}
.w1_c00091{width:7.346667pt;}
.w2_c00091{width:589.640000pt;}
.w0_c00091{width:816.000000pt;}
.x0_c00091{left:0.000000pt;}
.x3_c00091{left:113.324000pt;}
.x1_c00091{left:137.346667pt;}
.x4_c00091{left:151.106667pt;}
.x2_c00091{left:695.613333pt;}
}





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

.ir_c00092:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00092;src:url('chunks/assets/font_c89d9525b242984a2914e3eb.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_6d4b8d3ee5b617c7066b4938.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_52b49106481f8e8d7dde4a88.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;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_c00092;src:url('chunks/assets/font_732fe4e5ff203d03af0c8c45.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00092;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff6_c00092{font-family:ff6_c00092;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls2_c00092{letter-spacing:0.000000px;}
.ls1_c00092{letter-spacing:0.720000px;}
.ls0_c00092{letter-spacing:3.600000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00092{word-spacing:-72.000000px;}
.ws0_c00092{word-spacing:-18.000000px;}
.ws2_c00092{word-spacing:0.000000px;}
._5_c00092{margin-left:-3.624000px;}
._1_c00092{margin-left:-2.616000px;}
._2_c00092{margin-left:-1.440000px;}
._0_c00092{width:1.008000px;}
._3_c00092{width:2.544000px;}
._6_c00092{width:3.936000px;}
._8_c00092{width:5.039976px;}
._a_c00092{width:6.684192px;}
._c_c00092{width:10.680000px;}
._b_c00092{width:13.320000px;}
._9_c00092{width:14.616000px;}
._4_c00092{width:16.560000px;}
._7_c00092{width:168.636024px;}
.fc0_c00092{color:rgb(0,0,0);}
.fs3_c00092{font-size:38.880000px;}
.fs2_c00092{font-size:47.520000px;}
.fs1_c00092{font-size:60.480000px;}
.fs0_c00092{font-size:72.000000px;}
.y0_c00092{bottom:0.000000px;}
.y6_c00092{bottom:4.675500px;}
.y3_c00092{bottom:4.680000px;}
.y9_c00092{bottom:21.285000px;}
.ye_c00092{bottom:21.585000px;}
.yb_c00092{bottom:21.600000px;}
.y14_c00092{bottom:21.630000px;}
.y5_c00092{bottom:25.195500px;}
.y4_c00092{bottom:32.800500px;}
.y1_c00092{bottom:57.996000px;}
.y26_c00092{bottom:130.716000px;}
.y25_c00092{bottom:137.556000px;}
.y24_c00092{bottom:148.356000px;}
.y23_c00092{bottom:175.755000px;}
.y21_c00092{bottom:206.715000px;}
.y22_c00092{bottom:214.995000px;}
.y20_c00092{bottom:237.675000px;}
.y1f_c00092{bottom:278.025000px;}
.y1e_c00092{bottom:308.985000px;}
.y1d_c00092{bottom:339.945000px;}
.y1c_c00092{bottom:370.905000px;}
.y1b_c00092{bottom:402.270000px;}
.y1a_c00092{bottom:433.230000px;}
.y19_c00092{bottom:464.190000px;}
.y18_c00092{bottom:495.150000px;}
.y17_c00092{bottom:535.500000px;}
.y16_c00092{bottom:566.460000px;}
.y15_c00092{bottom:606.060000px;}
.y13_c00092{bottom:633.060000px;}
.y12_c00092{bottom:678.465000px;}
.y11_c00092{bottom:723.825000px;}
.y10_c00092{bottom:769.230000px;}
.yf_c00092{bottom:814.590000px;}
.yd_c00092{bottom:859.950000px;}
.yc_c00092{bottom:905.325000px;}
.ya_c00092{bottom:950.685000px;}
.y8_c00092{bottom:996.405000px;}
.y7_c00092{bottom:1065.570000px;}
.y2_c00092{bottom:1113.090000px;}
.h2_c00092{height:20.910000px;}
.hf_c00092{height:38.158594px;}
.h3_c00092{height:41.395500px;}
.h5_c00092{height:43.590000px;}
.h7_c00092{height:43.905000px;}
.h9_c00092{height:43.920000px;}
.ha_c00092{height:43.941000px;}
.hb_c00092{height:43.956000px;}
.he_c00092{height:46.638281px;}
.h8_c00092{height:59.328281px;}
.h6_c00092{height:59.357813px;}
.h1_c00092{height:64.546875px;}
.hc_c00092{height:70.628906px;}
.h4_c00092{height:70.664062px;}
.hd_c00092{height:1187.995500px;}
.h0_c00092{height:1188.000000px;}
.w1_c00092{width:8.265000px;}
.w4_c00092{width:74.901000px;}
.w3_c00092{width:481.846500px;}
.w2_c00092{width:663.345000px;}
.w5_c00092{width:917.997000px;}
.w0_c00092{width:918.000000px;}
.x0_c00092{left:0.000000px;}
.x3_c00092{left:127.489500px;}
.xb_c00092{left:137.556000px;}
.x1_c00092{left:154.515000px;}
.x7_c00092{left:178.635000px;}
.x5_c00092{left:208.855500px;}
.x4_c00092{left:212.475000px;}
.xa_c00092{left:343.590000px;}
.x8_c00092{left:385.347000px;}
.x9_c00092{left:397.590000px;}
.x6_c00092{left:610.785000px;}
.x2_c00092{left:782.565000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls2_c00092{letter-spacing:0.000000pt;}
.ls1_c00092{letter-spacing:0.640000pt;}
.ls0_c00092{letter-spacing:3.200000pt;}
.ws1_c00092{word-spacing:-64.000000pt;}
.ws0_c00092{word-spacing:-16.000000pt;}
.ws2_c00092{word-spacing:0.000000pt;}
._5_c00092{margin-left:-3.221333pt;}
._1_c00092{margin-left:-2.325333pt;}
._2_c00092{margin-left:-1.280000pt;}
._0_c00092{width:0.896000pt;}
._3_c00092{width:2.261333pt;}
._6_c00092{width:3.498667pt;}
._8_c00092{width:4.479979pt;}
._a_c00092{width:5.941504pt;}
._c_c00092{width:9.493333pt;}
._b_c00092{width:11.840000pt;}
._9_c00092{width:12.992000pt;}
._4_c00092{width:14.720000pt;}
._7_c00092{width:149.898688pt;}
.fs3_c00092{font-size:34.560000pt;}
.fs2_c00092{font-size:42.240000pt;}
.fs1_c00092{font-size:53.760000pt;}
.fs0_c00092{font-size:64.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y6_c00092{bottom:4.156000pt;}
.y3_c00092{bottom:4.160000pt;}
.y9_c00092{bottom:18.920000pt;}
.ye_c00092{bottom:19.186667pt;}
.yb_c00092{bottom:19.200000pt;}
.y14_c00092{bottom:19.226667pt;}
.y5_c00092{bottom:22.396000pt;}
.y4_c00092{bottom:29.156000pt;}
.y1_c00092{bottom:51.552000pt;}
.y26_c00092{bottom:116.192000pt;}
.y25_c00092{bottom:122.272000pt;}
.y24_c00092{bottom:131.872000pt;}
.y23_c00092{bottom:156.226667pt;}
.y21_c00092{bottom:183.746667pt;}
.y22_c00092{bottom:191.106667pt;}
.y20_c00092{bottom:211.266667pt;}
.y1f_c00092{bottom:247.133333pt;}
.y1e_c00092{bottom:274.653333pt;}
.y1d_c00092{bottom:302.173333pt;}
.y1c_c00092{bottom:329.693333pt;}
.y1b_c00092{bottom:357.573333pt;}
.y1a_c00092{bottom:385.093333pt;}
.y19_c00092{bottom:412.613333pt;}
.y18_c00092{bottom:440.133333pt;}
.y17_c00092{bottom:476.000000pt;}
.y16_c00092{bottom:503.520000pt;}
.y15_c00092{bottom:538.720000pt;}
.y13_c00092{bottom:562.720000pt;}
.y12_c00092{bottom:603.080000pt;}
.y11_c00092{bottom:643.400000pt;}
.y10_c00092{bottom:683.760000pt;}
.yf_c00092{bottom:724.080000pt;}
.yd_c00092{bottom:764.400000pt;}
.yc_c00092{bottom:804.733333pt;}
.ya_c00092{bottom:845.053333pt;}
.y8_c00092{bottom:885.693333pt;}
.y7_c00092{bottom:947.173333pt;}
.y2_c00092{bottom:989.413333pt;}
.h2_c00092{height:18.586667pt;}
.hf_c00092{height:33.918750pt;}
.h3_c00092{height:36.796000pt;}
.h5_c00092{height:38.746667pt;}
.h7_c00092{height:39.026667pt;}
.h9_c00092{height:39.040000pt;}
.ha_c00092{height:39.058667pt;}
.hb_c00092{height:39.072000pt;}
.he_c00092{height:41.456250pt;}
.h8_c00092{height:52.736250pt;}
.h6_c00092{height:52.762500pt;}
.h1_c00092{height:57.375000pt;}
.hc_c00092{height:62.781250pt;}
.h4_c00092{height:62.812500pt;}
.hd_c00092{height:1055.996000pt;}
.h0_c00092{height:1056.000000pt;}
.w1_c00092{width:7.346667pt;}
.w4_c00092{width:66.578667pt;}
.w3_c00092{width:428.308000pt;}
.w2_c00092{width:589.640000pt;}
.w5_c00092{width:815.997333pt;}
.w0_c00092{width:816.000000pt;}
.x0_c00092{left:0.000000pt;}
.x3_c00092{left:113.324000pt;}
.xb_c00092{left:122.272000pt;}
.x1_c00092{left:137.346667pt;}
.x7_c00092{left:158.786667pt;}
.x5_c00092{left:185.649333pt;}
.x4_c00092{left:188.866667pt;}
.xa_c00092{left:305.413333pt;}
.x8_c00092{left:342.530667pt;}
.x9_c00092{left:353.413333pt;}
.x6_c00092{left:542.920000pt;}
.x2_c00092{left:695.613333pt;}
}





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

.ir_c00093:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00093;src:url('chunks/assets/font_7abdf19ba89432993adba2f6.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_028648ca9965dbc7684cb97e.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_dcb01900005c3cb2a48f7ad6.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;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_c00093;src:url('chunks/assets/font_728a66af9e9597934a581dc4.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00093;src:url('chunks/assets/font_54b1f722e58b8917074d7446.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls9_c00093{letter-spacing:-1.296000px;}
.lsd_c00093{letter-spacing:-0.532800px;}
.lse_c00093{letter-spacing:-0.302400px;}
.lsb_c00093{letter-spacing:-0.241800px;}
.ls8_c00093{letter-spacing:0.000000px;}
.ls7_c00093{letter-spacing:0.022800px;}
.ls5_c00093{letter-spacing:0.048960px;}
.lsa_c00093{letter-spacing:0.504000px;}
.lsc_c00093{letter-spacing:0.702000px;}
.ls3_c00093{letter-spacing:0.720000px;}
.ls0_c00093{letter-spacing:1.272000px;}
.ls1_c00093{letter-spacing:2.160000px;}
.ls2_c00093{letter-spacing:7.920000px;}
.ls6_c00093{letter-spacing:9.360000px;}
.ls4_c00093{letter-spacing:13.680000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00093{word-spacing:-18.504000px;}
.ws0_c00093{word-spacing:-18.000000px;}
.ws4_c00093{word-spacing:-15.822000px;}
.ws5_c00093{word-spacing:-15.142800px;}
.ws2_c00093{word-spacing:-15.120000px;}
.ws3_c00093{word-spacing:-14.878200px;}
.ws6_c00093{word-spacing:-14.817600px;}
.ws7_c00093{word-spacing:0.000000px;}
._4_c00093{margin-left:-3.456000px;}
._2_c00093{margin-left:-2.448000px;}
._1_c00093{margin-left:-1.296000px;}
._0_c00093{width:1.368000px;}
._3_c00093{width:2.808000px;}
._5_c00093{width:3.888000px;}
._6_c00093{width:5.196000px;}
._d_c00093{width:6.348000px;}
._8_c00093{width:8.280000px;}
._7_c00093{width:9.792000px;}
._9_c00093{width:11.592000px;}
._10_c00093{width:14.544000px;}
._11_c00093{width:16.932024px;}
._12_c00093{width:19.440000px;}
._a_c00093{width:20.448000px;}
._c_c00093{width:21.456000px;}
._b_c00093{width:22.680000px;}
._e_c00093{width:24.420024px;}
._f_c00093{width:25.848000px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs3_c00093{font-size:38.880000px;}
.fs1_c00093{font-size:47.520000px;}
.fs2_c00093{font-size:60.480000px;}
.fs0_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.y6_c00093{bottom:4.675500px;}
.y3_c00093{bottom:4.680000px;}
.y5_c00093{bottom:25.195500px;}
.y4_c00093{bottom:32.800500px;}
.y1_c00093{bottom:57.996000px;}
.y26_c00093{bottom:130.716000px;}
.y25_c00093{bottom:147.996000px;}
.y24_c00093{bottom:154.875000px;}
.y23_c00093{bottom:165.675000px;}
.y22_c00093{bottom:194.115000px;}
.y21_c00093{bottom:229.035000px;}
.y20_c00093{bottom:266.115000px;}
.y1f_c00093{bottom:297.105000px;}
.y1e_c00093{bottom:328.065000px;}
.y1d_c00093{bottom:359.385000px;}
.y1c_c00093{bottom:390.345000px;}
.y1b_c00093{bottom:421.350000px;}
.y1a_c00093{bottom:452.310000px;}
.y19_c00093{bottom:483.630000px;}
.y18_c00093{bottom:523.620000px;}
.y17_c00093{bottom:563.580000px;}
.y16_c00093{bottom:594.540000px;}
.y15_c00093{bottom:625.860000px;}
.y14_c00093{bottom:656.850000px;}
.y13_c00093{bottom:687.810000px;}
.y12_c00093{bottom:718.770000px;}
.y11_c00093{bottom:750.090000px;}
.y10_c00093{bottom:781.095000px;}
.yf_c00093{bottom:812.055000px;}
.ye_c00093{bottom:852.015000px;}
.yd_c00093{bottom:892.365000px;}
.yc_c00093{bottom:932.325000px;}
.yb_c00093{bottom:963.285000px;}
.ya_c00093{bottom:994.245000px;}
.y9_c00093{bottom:1025.610000px;}
.y7_c00093{bottom:1065.570000px;}
.y8_c00093{bottom:1073.850000px;}
.y2_c00093{bottom:1113.090000px;}
.h2_c00093{height:20.910000px;}
.h9_c00093{height:38.158594px;}
.h3_c00093{height:41.395500px;}
.h6_c00093{height:46.638281px;}
.h8_c00093{height:59.357813px;}
.h1_c00093{height:64.546875px;}
.h7_c00093{height:70.628906px;}
.h4_c00093{height:70.664062px;}
.h5_c00093{height:1187.995500px;}
.h0_c00093{height:1188.000000px;}
.w1_c00093{width:8.265000px;}
.w2_c00093{width:663.345000px;}
.w3_c00093{width:917.997000px;}
.w0_c00093{width:918.000000px;}
.x0_c00093{left:0.000000px;}
.x3_c00093{left:127.489500px;}
.xa_c00093{left:137.556000px;}
.x1_c00093{left:154.515000px;}
.x8_c00093{left:169.995000px;}
.x6_c00093{left:178.635000px;}
.x7_c00093{left:180.795000px;}
.x9_c00093{left:343.590000px;}
.x4_c00093{left:427.827000px;}
.x5_c00093{left:440.100000px;}
.x2_c00093{left:782.565000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls9_c00093{letter-spacing:-1.152000pt;}
.lsd_c00093{letter-spacing:-0.473600pt;}
.lse_c00093{letter-spacing:-0.268800pt;}
.lsb_c00093{letter-spacing:-0.214933pt;}
.ls8_c00093{letter-spacing:0.000000pt;}
.ls7_c00093{letter-spacing:0.020267pt;}
.ls5_c00093{letter-spacing:0.043520pt;}
.lsa_c00093{letter-spacing:0.448000pt;}
.lsc_c00093{letter-spacing:0.624000pt;}
.ls3_c00093{letter-spacing:0.640000pt;}
.ls0_c00093{letter-spacing:1.130667pt;}
.ls1_c00093{letter-spacing:1.920000pt;}
.ls2_c00093{letter-spacing:7.040000pt;}
.ls6_c00093{letter-spacing:8.320000pt;}
.ls4_c00093{letter-spacing:12.160000pt;}
.ws1_c00093{word-spacing:-16.448000pt;}
.ws0_c00093{word-spacing:-16.000000pt;}
.ws4_c00093{word-spacing:-14.064000pt;}
.ws5_c00093{word-spacing:-13.460267pt;}
.ws2_c00093{word-spacing:-13.440000pt;}
.ws3_c00093{word-spacing:-13.225067pt;}
.ws6_c00093{word-spacing:-13.171200pt;}
.ws7_c00093{word-spacing:0.000000pt;}
._4_c00093{margin-left:-3.072000pt;}
._2_c00093{margin-left:-2.176000pt;}
._1_c00093{margin-left:-1.152000pt;}
._0_c00093{width:1.216000pt;}
._3_c00093{width:2.496000pt;}
._5_c00093{width:3.456000pt;}
._6_c00093{width:4.618667pt;}
._d_c00093{width:5.642667pt;}
._8_c00093{width:7.360000pt;}
._7_c00093{width:8.704000pt;}
._9_c00093{width:10.304000pt;}
._10_c00093{width:12.928000pt;}
._11_c00093{width:15.050688pt;}
._12_c00093{width:17.280000pt;}
._a_c00093{width:18.176000pt;}
._c_c00093{width:19.072000pt;}
._b_c00093{width:20.160000pt;}
._e_c00093{width:21.706688pt;}
._f_c00093{width:22.976000pt;}
.fs3_c00093{font-size:34.560000pt;}
.fs1_c00093{font-size:42.240000pt;}
.fs2_c00093{font-size:53.760000pt;}
.fs0_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y6_c00093{bottom:4.156000pt;}
.y3_c00093{bottom:4.160000pt;}
.y5_c00093{bottom:22.396000pt;}
.y4_c00093{bottom:29.156000pt;}
.y1_c00093{bottom:51.552000pt;}
.y26_c00093{bottom:116.192000pt;}
.y25_c00093{bottom:131.552000pt;}
.y24_c00093{bottom:137.666667pt;}
.y23_c00093{bottom:147.266667pt;}
.y22_c00093{bottom:172.546667pt;}
.y21_c00093{bottom:203.586667pt;}
.y20_c00093{bottom:236.546667pt;}
.y1f_c00093{bottom:264.093333pt;}
.y1e_c00093{bottom:291.613333pt;}
.y1d_c00093{bottom:319.453333pt;}
.y1c_c00093{bottom:346.973333pt;}
.y1b_c00093{bottom:374.533333pt;}
.y1a_c00093{bottom:402.053333pt;}
.y19_c00093{bottom:429.893333pt;}
.y18_c00093{bottom:465.440000pt;}
.y17_c00093{bottom:500.960000pt;}
.y16_c00093{bottom:528.480000pt;}
.y15_c00093{bottom:556.320000pt;}
.y14_c00093{bottom:583.866667pt;}
.y13_c00093{bottom:611.386667pt;}
.y12_c00093{bottom:638.906667pt;}
.y11_c00093{bottom:666.746667pt;}
.y10_c00093{bottom:694.306667pt;}
.yf_c00093{bottom:721.826667pt;}
.ye_c00093{bottom:757.346667pt;}
.yd_c00093{bottom:793.213333pt;}
.yc_c00093{bottom:828.733333pt;}
.yb_c00093{bottom:856.253333pt;}
.ya_c00093{bottom:883.773333pt;}
.y9_c00093{bottom:911.653333pt;}
.y7_c00093{bottom:947.173333pt;}
.y8_c00093{bottom:954.533333pt;}
.y2_c00093{bottom:989.413333pt;}
.h2_c00093{height:18.586667pt;}
.h9_c00093{height:33.918750pt;}
.h3_c00093{height:36.796000pt;}
.h6_c00093{height:41.456250pt;}
.h8_c00093{height:52.762500pt;}
.h1_c00093{height:57.375000pt;}
.h7_c00093{height:62.781250pt;}
.h4_c00093{height:62.812500pt;}
.h5_c00093{height:1055.996000pt;}
.h0_c00093{height:1056.000000pt;}
.w1_c00093{width:7.346667pt;}
.w2_c00093{width:589.640000pt;}
.w3_c00093{width:815.997333pt;}
.w0_c00093{width:816.000000pt;}
.x0_c00093{left:0.000000pt;}
.x3_c00093{left:113.324000pt;}
.xa_c00093{left:122.272000pt;}
.x1_c00093{left:137.346667pt;}
.x8_c00093{left:151.106667pt;}
.x6_c00093{left:158.786667pt;}
.x7_c00093{left:160.706667pt;}
.x9_c00093{left:305.413333pt;}
.x4_c00093{left:380.290667pt;}
.x5_c00093{left:391.200000pt;}
.x2_c00093{left:695.613333pt;}
}





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

.ir_c00094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00094;src:url('chunks/assets/font_0ddde031b484022130bcc4b0.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_318ab26b9278787dc6a6825e.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_a86b4ebfab05db9a40ec7ec5.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00094;src:url('chunks/assets/font_434ac7162bbca249949c9959.woff2')format("woff");}.ff5_c00094{font-family:ff5_c00094;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_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls19_c00094{letter-spacing:-1.416000px;}
.ls15_c00094{letter-spacing:-1.380000px;}
.ls17_c00094{letter-spacing:-0.912000px;}
.ls18_c00094{letter-spacing:-0.720000px;}
.ls16_c00094{letter-spacing:-0.532800px;}
.ls12_c00094{letter-spacing:-0.302400px;}
.ls13_c00094{letter-spacing:-0.241800px;}
.lsf_c00094{letter-spacing:0.000000px;}
.ls1b_c00094{letter-spacing:0.022800px;}
.ls14_c00094{letter-spacing:0.166800px;}
.ls3_c00094{letter-spacing:0.302400px;}
.ls10_c00094{letter-spacing:0.486600px;}
.ls1a_c00094{letter-spacing:0.521400px;}
.ls11_c00094{letter-spacing:0.529800px;}
.ls1c_c00094{letter-spacing:0.630000px;}
.ls4_c00094{letter-spacing:0.708666px;}
.ls0_c00094{letter-spacing:0.720000px;}
.ls6_c00094{letter-spacing:0.728493px;}
.ls7_c00094{letter-spacing:0.728640px;}
.lsd_c00094{letter-spacing:0.740162px;}
.lsb_c00094{letter-spacing:0.740186px;}
.ls9_c00094{letter-spacing:0.740425px;}
.ls5_c00094{letter-spacing:0.740473px;}
.ls1_c00094{letter-spacing:0.900000px;}
.lse_c00094{letter-spacing:569.640000px;}
.ls8_c00094{letter-spacing:618.600000px;}
.lsa_c00094{letter-spacing:633.000000px;}
.lsc_c00094{letter-spacing:706.440000px;}
.ls2_c00094{letter-spacing:759.840000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00094{word-spacing:-15.750000px;}
.ws7_c00094{word-spacing:-15.641400px;}
.ws0_c00094{word-spacing:-15.606600px;}
.ws5_c00094{word-spacing:-15.286800px;}
.ws1_c00094{word-spacing:-15.120000px;}
.ws3_c00094{word-spacing:-14.878200px;}
.ws2_c00094{word-spacing:-14.817600px;}
.ws6_c00094{word-spacing:-14.587200px;}
.ws4_c00094{word-spacing:-12.600000px;}
.ws9_c00094{word-spacing:0.000000px;}
._2_c00094{margin-left:-2.206227px;}
._0_c00094{margin-left:-1.154987px;}
._1_c00094{width:1.070081px;}
._3_c00094{width:2.102917px;}
._8_c00094{width:4.415827px;}
._6_c00094{width:9.163941px;}
._5_c00094{width:10.644601px;}
._7_c00094{width:11.672752px;}
._4_c00094{width:799.725781px;}
.fc1_c00094{color:rgb(255,0,0);}
.fc0_c00094{color:rgb(0,0,0);}
.fs2_c00094{font-size:47.520000px;}
.fs1_c00094{font-size:60.480000px;}
.fs0_c00094{font-size:72.000000px;}
.y0_c00094{bottom:0.000000px;}
.y6_c00094{bottom:4.675500px;}
.y3_c00094{bottom:4.680000px;}
.y5_c00094{bottom:25.195500px;}
.y4_c00094{bottom:32.800500px;}
.y1_c00094{bottom:57.996000px;}
.y23_c00094{bottom:127.476000px;}
.y22_c00094{bottom:153.435000px;}
.y21_c00094{bottom:179.355000px;}
.y20_c00094{bottom:205.275000px;}
.y1f_c00094{bottom:231.195000px;}
.y1e_c00094{bottom:266.115000px;}
.y1d_c00094{bottom:301.065000px;}
.y1c_c00094{bottom:335.985000px;}
.y1b_c00094{bottom:370.545000px;}
.y1a_c00094{bottom:405.510000px;}
.y19_c00094{bottom:440.430000px;}
.y18_c00094{bottom:475.350000px;}
.y17_c00094{bottom:510.270000px;}
.y16_c00094{bottom:545.220000px;}
.y15_c00094{bottom:580.140000px;}
.y14_c00094{bottom:614.700000px;}
.y13_c00094{bottom:649.650000px;}
.y12_c00094{bottom:684.570000px;}
.y11_c00094{bottom:719.490000px;}
.y10_c00094{bottom:754.410000px;}
.yf_c00094{bottom:789.375000px;}
.ye_c00094{bottom:824.295000px;}
.yd_c00094{bottom:859.215000px;}
.yc_c00094{bottom:893.805000px;}
.yb_c00094{bottom:928.725000px;}
.ya_c00094{bottom:963.645000px;}
.y9_c00094{bottom:998.565000px;}
.y8_c00094{bottom:1033.530000px;}
.y7_c00094{bottom:1068.450000px;}
.y2_c00094{bottom:1113.090000px;}
.h2_c00094{height:20.910000px;}
.h3_c00094{height:41.395500px;}
.h6_c00094{height:59.328281px;}
.h4_c00094{height:59.357813px;}
.h5_c00094{height:60.952500px;}
.h1_c00094{height:64.546875px;}
.h0_c00094{height:1188.000000px;}
.w1_c00094{width:8.265000px;}
.w2_c00094{width:663.345000px;}
.w0_c00094{width:918.000000px;}
.x0_c00094{left:0.000000px;}
.x3_c00094{left:127.489500px;}
.x1_c00094{left:154.515000px;}
.x4_c00094{left:169.995000px;}
.x2_c00094{left:782.565000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls19_c00094{letter-spacing:-1.258667pt;}
.ls15_c00094{letter-spacing:-1.226667pt;}
.ls17_c00094{letter-spacing:-0.810667pt;}
.ls18_c00094{letter-spacing:-0.640000pt;}
.ls16_c00094{letter-spacing:-0.473600pt;}
.ls12_c00094{letter-spacing:-0.268800pt;}
.ls13_c00094{letter-spacing:-0.214933pt;}
.lsf_c00094{letter-spacing:0.000000pt;}
.ls1b_c00094{letter-spacing:0.020267pt;}
.ls14_c00094{letter-spacing:0.148267pt;}
.ls3_c00094{letter-spacing:0.268800pt;}
.ls10_c00094{letter-spacing:0.432533pt;}
.ls1a_c00094{letter-spacing:0.463467pt;}
.ls11_c00094{letter-spacing:0.470933pt;}
.ls1c_c00094{letter-spacing:0.560000pt;}
.ls4_c00094{letter-spacing:0.629926pt;}
.ls0_c00094{letter-spacing:0.640000pt;}
.ls6_c00094{letter-spacing:0.647549pt;}
.ls7_c00094{letter-spacing:0.647680pt;}
.lsd_c00094{letter-spacing:0.657922pt;}
.lsb_c00094{letter-spacing:0.657943pt;}
.ls9_c00094{letter-spacing:0.658156pt;}
.ls5_c00094{letter-spacing:0.658198pt;}
.ls1_c00094{letter-spacing:0.800000pt;}
.lse_c00094{letter-spacing:506.346667pt;}
.ls8_c00094{letter-spacing:549.866667pt;}
.lsa_c00094{letter-spacing:562.666667pt;}
.lsc_c00094{letter-spacing:627.946667pt;}
.ls2_c00094{letter-spacing:675.413333pt;}
.ws8_c00094{word-spacing:-14.000000pt;}
.ws7_c00094{word-spacing:-13.903467pt;}
.ws0_c00094{word-spacing:-13.872533pt;}
.ws5_c00094{word-spacing:-13.588267pt;}
.ws1_c00094{word-spacing:-13.440000pt;}
.ws3_c00094{word-spacing:-13.225067pt;}
.ws2_c00094{word-spacing:-13.171200pt;}
.ws6_c00094{word-spacing:-12.966400pt;}
.ws4_c00094{word-spacing:-11.200000pt;}
.ws9_c00094{word-spacing:0.000000pt;}
._2_c00094{margin-left:-1.961091pt;}
._0_c00094{margin-left:-1.026655pt;}
._1_c00094{width:0.951183pt;}
._3_c00094{width:1.869260pt;}
._8_c00094{width:3.925180pt;}
._6_c00094{width:8.145725pt;}
._5_c00094{width:9.461868pt;}
._7_c00094{width:10.375780pt;}
._4_c00094{width:710.867361pt;}
.fs2_c00094{font-size:42.240000pt;}
.fs1_c00094{font-size:53.760000pt;}
.fs0_c00094{font-size:64.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y6_c00094{bottom:4.156000pt;}
.y3_c00094{bottom:4.160000pt;}
.y5_c00094{bottom:22.396000pt;}
.y4_c00094{bottom:29.156000pt;}
.y1_c00094{bottom:51.552000pt;}
.y23_c00094{bottom:113.312000pt;}
.y22_c00094{bottom:136.386667pt;}
.y21_c00094{bottom:159.426667pt;}
.y20_c00094{bottom:182.466667pt;}
.y1f_c00094{bottom:205.506667pt;}
.y1e_c00094{bottom:236.546667pt;}
.y1d_c00094{bottom:267.613333pt;}
.y1c_c00094{bottom:298.653333pt;}
.y1b_c00094{bottom:329.373333pt;}
.y1a_c00094{bottom:360.453333pt;}
.y19_c00094{bottom:391.493333pt;}
.y18_c00094{bottom:422.533333pt;}
.y17_c00094{bottom:453.573333pt;}
.y16_c00094{bottom:484.640000pt;}
.y15_c00094{bottom:515.680000pt;}
.y14_c00094{bottom:546.400000pt;}
.y13_c00094{bottom:577.466667pt;}
.y12_c00094{bottom:608.506667pt;}
.y11_c00094{bottom:639.546667pt;}
.y10_c00094{bottom:670.586667pt;}
.yf_c00094{bottom:701.666667pt;}
.ye_c00094{bottom:732.706667pt;}
.yd_c00094{bottom:763.746667pt;}
.yc_c00094{bottom:794.493333pt;}
.yb_c00094{bottom:825.533333pt;}
.ya_c00094{bottom:856.573333pt;}
.y9_c00094{bottom:887.613333pt;}
.y8_c00094{bottom:918.693333pt;}
.y7_c00094{bottom:949.733333pt;}
.y2_c00094{bottom:989.413333pt;}
.h2_c00094{height:18.586667pt;}
.h3_c00094{height:36.796000pt;}
.h6_c00094{height:52.736250pt;}
.h4_c00094{height:52.762500pt;}
.h5_c00094{height:54.180000pt;}
.h1_c00094{height:57.375000pt;}
.h0_c00094{height:1056.000000pt;}
.w1_c00094{width:7.346667pt;}
.w2_c00094{width:589.640000pt;}
.w0_c00094{width:816.000000pt;}
.x0_c00094{left:0.000000pt;}
.x3_c00094{left:113.324000pt;}
.x1_c00094{left:137.346667pt;}
.x4_c00094{left:151.106667pt;}
.x2_c00094{left:695.613333pt;}
}





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

.ir_c00095:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00095;src:url('chunks/assets/font_8119a80a4daa63e4120ebc1d.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_9a1b144d536ab45317fd2a31.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_4fa36ecd721690e4e2e58de2.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_bd7a16acd96cc809b6ac7373.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00095;src:url('chunks/assets/font_2cb77f27e81ccfa7f8fe4eef.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls3_c00095{letter-spacing:-0.936000px;}
.ls2_c00095{letter-spacing:0.000000px;}
.ls5_c00095{letter-spacing:0.020400px;}
.ls0_c00095{letter-spacing:0.720000px;}
.ls4_c00095{letter-spacing:1.440000px;}
.ls1_c00095{letter-spacing:3.600000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:-18.000000px;}
.ws1_c00095{word-spacing:-15.140400px;}
.ws2_c00095{word-spacing:-15.120000px;}
.ws3_c00095{word-spacing:0.000000px;}
._b_c00095{margin-left:-3.474625px;}
._1_c00095{margin-left:-1.995598px;}
._2_c00095{width:1.027797px;}
._7_c00095{width:2.060977px;}
._8_c00095{width:3.503425px;}
._9_c00095{width:4.777799px;}
._5_c00095{width:5.866802px;}
._6_c00095{width:7.134584px;}
._a_c00095{width:8.268874px;}
._3_c00095{width:10.039801px;}
._0_c00095{width:11.188800px;}
._4_c00095{width:12.579598px;}
._e_c00095{width:13.744207px;}
._f_c00095{width:15.231594px;}
._12_c00095{width:16.284102px;}
._11_c00095{width:19.413648px;}
._10_c00095{width:20.931598px;}
._d_c00095{width:27.627031px;}
._c_c00095{width:28.798828px;}
.fc0_c00095{color:rgb(0,0,0);}
.fs3_c00095{font-size:38.880000px;}
.fs2_c00095{font-size:47.520000px;}
.fs1_c00095{font-size:60.480000px;}
.fs0_c00095{font-size:72.000000px;}
.y0_c00095{bottom:0.000000px;}
.y6_c00095{bottom:4.675500px;}
.y3_c00095{bottom:4.680000px;}
.y5_c00095{bottom:25.195500px;}
.y4_c00095{bottom:32.800500px;}
.y1_c00095{bottom:57.996000px;}
.y2d_c00095{bottom:130.716000px;}
.y2c_c00095{bottom:147.996000px;}
.y2b_c00095{bottom:164.955000px;}
.y2a_c00095{bottom:182.235000px;}
.y29_c00095{bottom:189.075000px;}
.y28_c00095{bottom:199.515000px;}
.y27_c00095{bottom:216.795000px;}
.y26_c00095{bottom:223.635000px;}
.y25_c00095{bottom:234.795000px;}
.y24_c00095{bottom:271.155000px;}
.y23_c00095{bottom:302.145000px;}
.y22_c00095{bottom:333.105000px;}
.y21_c00095{bottom:364.065000px;}
.y1f_c00095{bottom:404.430000px;}
.y20_c00095{bottom:412.710000px;}
.y1e_c00095{bottom:435.390000px;}
.y1d_c00095{bottom:466.350000px;}
.y1c_c00095{bottom:497.310000px;}
.y1a_c00095{bottom:528.660000px;}
.y1b_c00095{bottom:536.940000px;}
.y19_c00095{bottom:559.620000px;}
.y18_c00095{bottom:590.580000px;}
.y17_c00095{bottom:621.540000px;}
.y16_c00095{bottom:652.890000px;}
.y15_c00095{bottom:683.850000px;}
.y14_c00095{bottom:714.810000px;}
.y13_c00095{bottom:745.770000px;}
.y12_c00095{bottom:783.615000px;}
.y11_c00095{bottom:809.535000px;}
.y10_c00095{bottom:835.455000px;}
.yf_c00095{bottom:861.375000px;}
.ye_c00095{bottom:887.325000px;}
.yd_c00095{bottom:913.245000px;}
.yc_c00095{bottom:938.805000px;}
.yb_c00095{bottom:964.725000px;}
.ya_c00095{bottom:990.645000px;}
.y9_c00095{bottom:1016.610000px;}
.y8_c00095{bottom:1042.530000px;}
.y7_c00095{bottom:1068.450000px;}
.y2_c00095{bottom:1113.090000px;}
.h2_c00095{height:20.910000px;}
.ha_c00095{height:38.158594px;}
.h3_c00095{height:41.395500px;}
.h9_c00095{height:46.638281px;}
.hb_c00095{height:54.219375px;}
.h5_c00095{height:54.514688px;}
.h4_c00095{height:59.328281px;}
.h6_c00095{height:59.357813px;}
.h1_c00095{height:64.546875px;}
.h7_c00095{height:70.664062px;}
.h8_c00095{height:1187.995500px;}
.h0_c00095{height:1188.000000px;}
.w1_c00095{width:8.265000px;}
.w2_c00095{width:663.345000px;}
.w3_c00095{width:917.997000px;}
.w0_c00095{width:918.000000px;}
.x0_c00095{left:0.000000px;}
.x3_c00095{left:127.489500px;}
.xa_c00095{left:137.556000px;}
.x1_c00095{left:154.515000px;}
.x4_c00095{left:169.995000px;}
.x9_c00095{left:343.590000px;}
.x7_c00095{left:353.667000px;}
.x8_c00095{left:365.910000px;}
.x5_c00095{left:671.652000px;}
.x6_c00095{left:683.895000px;}
.x2_c00095{left:782.565000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls3_c00095{letter-spacing:-0.832000pt;}
.ls2_c00095{letter-spacing:0.000000pt;}
.ls5_c00095{letter-spacing:0.018133pt;}
.ls0_c00095{letter-spacing:0.640000pt;}
.ls4_c00095{letter-spacing:1.280000pt;}
.ls1_c00095{letter-spacing:3.200000pt;}
.ws0_c00095{word-spacing:-16.000000pt;}
.ws1_c00095{word-spacing:-13.458133pt;}
.ws2_c00095{word-spacing:-13.440000pt;}
.ws3_c00095{word-spacing:0.000000pt;}
._b_c00095{margin-left:-3.088556pt;}
._1_c00095{margin-left:-1.773865pt;}
._2_c00095{width:0.913597pt;}
._7_c00095{width:1.831980pt;}
._8_c00095{width:3.114156pt;}
._9_c00095{width:4.246932pt;}
._5_c00095{width:5.214935pt;}
._6_c00095{width:6.341852pt;}
._a_c00095{width:7.350110pt;}
._3_c00095{width:8.924268pt;}
._0_c00095{width:9.945600pt;}
._4_c00095{width:11.181865pt;}
._e_c00095{width:12.217073pt;}
._f_c00095{width:13.539195pt;}
._12_c00095{width:14.474757pt;}
._11_c00095{width:17.256576pt;}
._10_c00095{width:18.605865pt;}
._d_c00095{width:24.557361pt;}
._c_c00095{width:25.598958pt;}
.fs3_c00095{font-size:34.560000pt;}
.fs2_c00095{font-size:42.240000pt;}
.fs1_c00095{font-size:53.760000pt;}
.fs0_c00095{font-size:64.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y6_c00095{bottom:4.156000pt;}
.y3_c00095{bottom:4.160000pt;}
.y5_c00095{bottom:22.396000pt;}
.y4_c00095{bottom:29.156000pt;}
.y1_c00095{bottom:51.552000pt;}
.y2d_c00095{bottom:116.192000pt;}
.y2c_c00095{bottom:131.552000pt;}
.y2b_c00095{bottom:146.626667pt;}
.y2a_c00095{bottom:161.986667pt;}
.y29_c00095{bottom:168.066667pt;}
.y28_c00095{bottom:177.346667pt;}
.y27_c00095{bottom:192.706667pt;}
.y26_c00095{bottom:198.786667pt;}
.y25_c00095{bottom:208.706667pt;}
.y24_c00095{bottom:241.026667pt;}
.y23_c00095{bottom:268.573333pt;}
.y22_c00095{bottom:296.093333pt;}
.y21_c00095{bottom:323.613333pt;}
.y1f_c00095{bottom:359.493333pt;}
.y20_c00095{bottom:366.853333pt;}
.y1e_c00095{bottom:387.013333pt;}
.y1d_c00095{bottom:414.533333pt;}
.y1c_c00095{bottom:442.053333pt;}
.y1a_c00095{bottom:469.920000pt;}
.y1b_c00095{bottom:477.280000pt;}
.y19_c00095{bottom:497.440000pt;}
.y18_c00095{bottom:524.960000pt;}
.y17_c00095{bottom:552.480000pt;}
.y16_c00095{bottom:580.346667pt;}
.y15_c00095{bottom:607.866667pt;}
.y14_c00095{bottom:635.386667pt;}
.y13_c00095{bottom:662.906667pt;}
.y12_c00095{bottom:696.546667pt;}
.y11_c00095{bottom:719.586667pt;}
.y10_c00095{bottom:742.626667pt;}
.yf_c00095{bottom:765.666667pt;}
.ye_c00095{bottom:788.733333pt;}
.yd_c00095{bottom:811.773333pt;}
.yc_c00095{bottom:834.493333pt;}
.yb_c00095{bottom:857.533333pt;}
.ya_c00095{bottom:880.573333pt;}
.y9_c00095{bottom:903.653333pt;}
.y8_c00095{bottom:926.693333pt;}
.y7_c00095{bottom:949.733333pt;}
.y2_c00095{bottom:989.413333pt;}
.h2_c00095{height:18.586667pt;}
.ha_c00095{height:33.918750pt;}
.h3_c00095{height:36.796000pt;}
.h9_c00095{height:41.456250pt;}
.hb_c00095{height:48.195000pt;}
.h5_c00095{height:48.457500pt;}
.h4_c00095{height:52.736250pt;}
.h6_c00095{height:52.762500pt;}
.h1_c00095{height:57.375000pt;}
.h7_c00095{height:62.812500pt;}
.h8_c00095{height:1055.996000pt;}
.h0_c00095{height:1056.000000pt;}
.w1_c00095{width:7.346667pt;}
.w2_c00095{width:589.640000pt;}
.w3_c00095{width:815.997333pt;}
.w0_c00095{width:816.000000pt;}
.x0_c00095{left:0.000000pt;}
.x3_c00095{left:113.324000pt;}
.xa_c00095{left:122.272000pt;}
.x1_c00095{left:137.346667pt;}
.x4_c00095{left:151.106667pt;}
.x9_c00095{left:305.413333pt;}
.x7_c00095{left:314.370667pt;}
.x8_c00095{left:325.253333pt;}
.x5_c00095{left:597.024000pt;}
.x6_c00095{left:607.906667pt;}
.x2_c00095{left:695.613333pt;}
}





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

.ir_c00096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00096;src:url('chunks/assets/font_9d8928020f4967e4b497f92d.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_3f53ed683e0d8d4f6f4f1601.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00096;src:url('chunks/assets/font_ed82135437e2d79cad989cf5.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;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_c00096;src:url('chunks/assets/font_bb40f2b1f0eff461595b0070.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00096;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff5_c00096{font-family:ff5_c00096;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.lsd_c00096{letter-spacing:-1.380000px;}
.lse_c00096{letter-spacing:-0.302400px;}
.lsb_c00096{letter-spacing:-0.241800px;}
.lsa_c00096{letter-spacing:0.000000px;}
.lsc_c00096{letter-spacing:0.022800px;}
.lsf_c00096{letter-spacing:0.529800px;}
.ls2_c00096{letter-spacing:0.708744px;}
.ls1_c00096{letter-spacing:0.720000px;}
.ls5_c00096{letter-spacing:0.740310px;}
.ls4_c00096{letter-spacing:2.160000px;}
.ls3_c00096{letter-spacing:16.560000px;}
.ls0_c00096{letter-spacing:18.000000px;}
.ls9_c00096{letter-spacing:20.880000px;}
.ls7_c00096{letter-spacing:22.297253px;}
.ls6_c00096{letter-spacing:22.320000px;}
.ls8_c00096{letter-spacing:22.417087px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00096{word-spacing:-72.000000px;}
.ws0_c00096{word-spacing:-18.000000px;}
.ws3_c00096{word-spacing:-15.120000px;}
.ws2_c00096{word-spacing:-14.878200px;}
.ws4_c00096{word-spacing:-14.817600px;}
.ws5_c00096{word-spacing:0.000000px;}
._a_c00096{margin-left:-3.684000px;}
._7_c00096{margin-left:-2.316000px;}
._0_c00096{margin-left:-1.224000px;}
._3_c00096{width:1.008000px;}
._1_c00096{width:2.232000px;}
._6_c00096{width:3.756000px;}
._b_c00096{width:5.064000px;}
._c_c00096{width:6.120000px;}
._12_c00096{width:7.660199px;}
._d_c00096{width:8.688000px;}
._f_c00096{width:9.876000px;}
._9_c00096{width:11.508000px;}
._8_c00096{width:12.972000px;}
._e_c00096{width:15.960024px;}
._11_c00096{width:17.023819px;}
._10_c00096{width:19.271976px;}
._4_c00096{width:21.312000px;}
._2_c00096{width:22.536000px;}
._5_c00096{width:24.276000px;}
.fc0_c00096{color:rgb(0,0,0);}
.fs1_c00096{font-size:60.480000px;}
.fs0_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y6_c00096{bottom:4.675500px;}
.y3_c00096{bottom:4.680000px;}
.y5_c00096{bottom:25.195500px;}
.y4_c00096{bottom:32.800500px;}
.y1_c00096{bottom:57.996000px;}
.y25_c00096{bottom:132.876000px;}
.y24_c00096{bottom:163.875000px;}
.y23_c00096{bottom:201.675000px;}
.y22_c00096{bottom:227.595000px;}
.y21_c00096{bottom:253.515000px;}
.y20_c00096{bottom:279.465000px;}
.y1f_c00096{bottom:305.385000px;}
.y1e_c00096{bottom:330.945000px;}
.y1d_c00096{bottom:365.865000px;}
.y1c_c00096{bottom:391.785000px;}
.y1b_c00096{bottom:417.750000px;}
.y1a_c00096{bottom:443.670000px;}
.y19_c00096{bottom:469.590000px;}
.y18_c00096{bottom:504.510000px;}
.y17_c00096{bottom:541.620000px;}
.y16_c00096{bottom:572.580000px;}
.y15_c00096{bottom:603.540000px;}
.y14_c00096{bottom:634.860000px;}
.y13_c00096{bottom:665.850000px;}
.y12_c00096{bottom:696.810000px;}
.y11_c00096{bottom:736.770000px;}
.y10_c00096{bottom:777.135000px;}
.yf_c00096{bottom:808.095000px;}
.ye_c00096{bottom:839.055000px;}
.yd_c00096{bottom:870.015000px;}
.yc_c00096{bottom:910.365000px;}
.yb_c00096{bottom:941.325000px;}
.ya_c00096{bottom:972.285000px;}
.y9_c00096{bottom:1003.245000px;}
.y8_c00096{bottom:1034.610000px;}
.y7_c00096{bottom:1065.570000px;}
.y2_c00096{bottom:1113.090000px;}
.h2_c00096{height:20.910000px;}
.h3_c00096{height:41.395500px;}
.h7_c00096{height:59.328281px;}
.h6_c00096{height:59.357813px;}
.h1_c00096{height:64.546875px;}
.h5_c00096{height:70.628906px;}
.h4_c00096{height:70.664062px;}
.h0_c00096{height:1188.000000px;}
.w1_c00096{width:8.265000px;}
.w2_c00096{width:663.345000px;}
.w0_c00096{width:918.000000px;}
.x0_c00096{left:0.000000px;}
.x3_c00096{left:127.489500px;}
.x1_c00096{left:154.515000px;}
.x4_c00096{left:169.995000px;}
.x5_c00096{left:180.795000px;}
.x2_c00096{left:782.565000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.lsd_c00096{letter-spacing:-1.226667pt;}
.lse_c00096{letter-spacing:-0.268800pt;}
.lsb_c00096{letter-spacing:-0.214933pt;}
.lsa_c00096{letter-spacing:0.000000pt;}
.lsc_c00096{letter-spacing:0.020267pt;}
.lsf_c00096{letter-spacing:0.470933pt;}
.ls2_c00096{letter-spacing:0.629995pt;}
.ls1_c00096{letter-spacing:0.640000pt;}
.ls5_c00096{letter-spacing:0.658053pt;}
.ls4_c00096{letter-spacing:1.920000pt;}
.ls3_c00096{letter-spacing:14.720000pt;}
.ls0_c00096{letter-spacing:16.000000pt;}
.ls9_c00096{letter-spacing:18.560000pt;}
.ls7_c00096{letter-spacing:19.819780pt;}
.ls6_c00096{letter-spacing:19.840000pt;}
.ls8_c00096{letter-spacing:19.926299pt;}
.ws1_c00096{word-spacing:-64.000000pt;}
.ws0_c00096{word-spacing:-16.000000pt;}
.ws3_c00096{word-spacing:-13.440000pt;}
.ws2_c00096{word-spacing:-13.225067pt;}
.ws4_c00096{word-spacing:-13.171200pt;}
.ws5_c00096{word-spacing:0.000000pt;}
._a_c00096{margin-left:-3.274667pt;}
._7_c00096{margin-left:-2.058667pt;}
._0_c00096{margin-left:-1.088000pt;}
._3_c00096{width:0.896000pt;}
._1_c00096{width:1.984000pt;}
._6_c00096{width:3.338667pt;}
._b_c00096{width:4.501333pt;}
._c_c00096{width:5.440000pt;}
._12_c00096{width:6.809066pt;}
._d_c00096{width:7.722667pt;}
._f_c00096{width:8.778667pt;}
._9_c00096{width:10.229333pt;}
._8_c00096{width:11.530667pt;}
._e_c00096{width:14.186688pt;}
._11_c00096{width:15.132284pt;}
._10_c00096{width:17.130645pt;}
._4_c00096{width:18.944000pt;}
._2_c00096{width:20.032000pt;}
._5_c00096{width:21.578667pt;}
.fs1_c00096{font-size:53.760000pt;}
.fs0_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y6_c00096{bottom:4.156000pt;}
.y3_c00096{bottom:4.160000pt;}
.y5_c00096{bottom:22.396000pt;}
.y4_c00096{bottom:29.156000pt;}
.y1_c00096{bottom:51.552000pt;}
.y25_c00096{bottom:118.112000pt;}
.y24_c00096{bottom:145.666667pt;}
.y23_c00096{bottom:179.266667pt;}
.y22_c00096{bottom:202.306667pt;}
.y21_c00096{bottom:225.346667pt;}
.y20_c00096{bottom:248.413333pt;}
.y1f_c00096{bottom:271.453333pt;}
.y1e_c00096{bottom:294.173333pt;}
.y1d_c00096{bottom:325.213333pt;}
.y1c_c00096{bottom:348.253333pt;}
.y1b_c00096{bottom:371.333333pt;}
.y1a_c00096{bottom:394.373333pt;}
.y19_c00096{bottom:417.413333pt;}
.y18_c00096{bottom:448.453333pt;}
.y17_c00096{bottom:481.440000pt;}
.y16_c00096{bottom:508.960000pt;}
.y15_c00096{bottom:536.480000pt;}
.y14_c00096{bottom:564.320000pt;}
.y13_c00096{bottom:591.866667pt;}
.y12_c00096{bottom:619.386667pt;}
.y11_c00096{bottom:654.906667pt;}
.y10_c00096{bottom:690.786667pt;}
.yf_c00096{bottom:718.306667pt;}
.ye_c00096{bottom:745.826667pt;}
.yd_c00096{bottom:773.346667pt;}
.yc_c00096{bottom:809.213333pt;}
.yb_c00096{bottom:836.733333pt;}
.ya_c00096{bottom:864.253333pt;}
.y9_c00096{bottom:891.773333pt;}
.y8_c00096{bottom:919.653333pt;}
.y7_c00096{bottom:947.173333pt;}
.y2_c00096{bottom:989.413333pt;}
.h2_c00096{height:18.586667pt;}
.h3_c00096{height:36.796000pt;}
.h7_c00096{height:52.736250pt;}
.h6_c00096{height:52.762500pt;}
.h1_c00096{height:57.375000pt;}
.h5_c00096{height:62.781250pt;}
.h4_c00096{height:62.812500pt;}
.h0_c00096{height:1056.000000pt;}
.w1_c00096{width:7.346667pt;}
.w2_c00096{width:589.640000pt;}
.w0_c00096{width:816.000000pt;}
.x0_c00096{left:0.000000pt;}
.x3_c00096{left:113.324000pt;}
.x1_c00096{left:137.346667pt;}
.x4_c00096{left:151.106667pt;}
.x5_c00096{left:160.706667pt;}
.x2_c00096{left:695.613333pt;}
}





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

.ir_c00097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00097;src:url('chunks/assets/font_1b2f0614bb09db165a5b8231.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_ccddb8bf7d851a9c49eb8e18.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_501daab1a6243df7f05d0df5.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;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_c00097;src:url('chunks/assets/font_a8b2b918ce9e5e3f40e9a689.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00097;src:url('chunks/assets/font_83edcea71b3b5775935547ec.woff2')format("woff");}.ff5_c00097{font-family:ff5_c00097;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls1a_c00097{letter-spacing:-2.880000px;}
.ls15_c00097{letter-spacing:-1.692000px;}
.ls13_c00097{letter-spacing:-0.397200px;}
.ls17_c00097{letter-spacing:-0.273600px;}
.ls18_c00097{letter-spacing:-0.253200px;}
.ls19_c00097{letter-spacing:-0.219000px;}
.ls14_c00097{letter-spacing:-0.069000px;}
.ls12_c00097{letter-spacing:0.000000px;}
.lsc_c00097{letter-spacing:0.144000px;}
.ls1_c00097{letter-spacing:0.273600px;}
.ls6_c00097{letter-spacing:0.453600px;}
.ls9_c00097{letter-spacing:0.714012px;}
.lsf_c00097{letter-spacing:0.720000px;}
.ls8_c00097{letter-spacing:0.840000px;}
.ls16_c00097{letter-spacing:0.912000px;}
.lsb_c00097{letter-spacing:1.440000px;}
.ls7_c00097{letter-spacing:2.160000px;}
.ls0_c00097{letter-spacing:3.600000px;}
.ls4_c00097{letter-spacing:6.473582px;}
.ls5_c00097{letter-spacing:6.473778px;}
.ls2_c00097{letter-spacing:6.480000px;}
.ls3_c00097{letter-spacing:6.660000px;}
.ls11_c00097{letter-spacing:7.920000px;}
.ls10_c00097{letter-spacing:9.360000px;}
.lsa_c00097{letter-spacing:13.680000px;}
.lse_c00097{letter-spacing:15.120000px;}
.lsd_c00097{letter-spacing:16.560000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00097{word-spacing:-72.000000px;}
.ws6_c00097{word-spacing:-54.720000px;}
.ws7_c00097{word-spacing:-18.000000px;}
.ws9_c00097{word-spacing:-15.120000px;}
.ws2_c00097{word-spacing:-14.592000px;}
.ws0_c00097{word-spacing:-13.680000px;}
.ws4_c00097{word-spacing:-13.461000px;}
.ws5_c00097{word-spacing:-13.426800px;}
.ws3_c00097{word-spacing:-13.406400px;}
.ws1_c00097{word-spacing:-13.282800px;}
.wsa_c00097{word-spacing:0.000000px;}
._b_c00097{margin-left:-2.744127px;}
._0_c00097{margin-left:-1.586825px;}
._2_c00097{width:1.088127px;}
._5_c00097{width:2.468508px;}
._1_c00097{width:3.839265px;}
._3_c00097{width:5.352747px;}
._4_c00097{width:6.781340px;}
._6_c00097{width:8.700480px;}
._7_c00097{width:10.457289px;}
._f_c00097{width:11.808000px;}
._e_c00097{width:13.320000px;}
._9_c00097{width:14.691655px;}
._8_c00097{width:15.820188px;}
._d_c00097{width:22.901302px;}
._a_c00097{width:25.410698px;}
._c_c00097{width:26.650604px;}
.fc1_c00097{color:rgb(255,0,0);}
.fc0_c00097{color:rgb(0,0,0);}
.fs3_c00097{font-size:38.880000px;}
.fs2_c00097{font-size:47.520000px;}
.fs1_c00097{font-size:54.720000px;}
.fs4_c00097{font-size:60.480000px;}
.fs0_c00097{font-size:72.000000px;}
.y0_c00097{bottom:0.000000px;}
.y6_c00097{bottom:4.675500px;}
.y3_c00097{bottom:4.680000px;}
.y5_c00097{bottom:25.195500px;}
.y4_c00097{bottom:32.800500px;}
.y1_c00097{bottom:57.996000px;}
.y2a_c00097{bottom:130.716000px;}
.y29_c00097{bottom:147.996000px;}
.y28_c00097{bottom:164.955000px;}
.y27_c00097{bottom:182.235000px;}
.y26_c00097{bottom:199.515000px;}
.y25_c00097{bottom:206.355000px;}
.y24_c00097{bottom:217.515000px;}
.y23_c00097{bottom:267.195000px;}
.y22_c00097{bottom:298.545000px;}
.y21_c00097{bottom:329.505000px;}
.y20_c00097{bottom:360.465000px;}
.y1f_c00097{bottom:391.425000px;}
.y1e_c00097{bottom:422.790000px;}
.y1d_c00097{bottom:453.750000px;}
.y1c_c00097{bottom:484.710000px;}
.y1b_c00097{bottom:515.670000px;}
.y1a_c00097{bottom:556.020000px;}
.y18_c00097{bottom:595.980000px;}
.y19_c00097{bottom:604.260000px;}
.y17_c00097{bottom:626.940000px;}
.y16_c00097{bottom:657.930000px;}
.y15_c00097{bottom:689.250000px;}
.y14_c00097{bottom:720.210000px;}
.y13_c00097{bottom:751.170000px;}
.y12_c00097{bottom:782.175000px;}
.y11_c00097{bottom:818.895000px;}
.y10_c00097{bottom:842.295000px;}
.yf_c00097{bottom:865.335000px;}
.ye_c00097{bottom:888.765000px;}
.yd_c00097{bottom:912.165000px;}
.yc_c00097{bottom:944.205000px;}
.yb_c00097{bottom:967.605000px;}
.ya_c00097{bottom:991.005000px;}
.y9_c00097{bottom:1014.090000px;}
.y8_c00097{bottom:1037.490000px;}
.y7_c00097{bottom:1069.890000px;}
.y2_c00097{bottom:1113.090000px;}
.h2_c00097{height:20.910000px;}
.ha_c00097{height:38.158594px;}
.h3_c00097{height:41.395500px;}
.h8_c00097{height:46.638281px;}
.h5_c00097{height:53.677969px;}
.h4_c00097{height:53.704687px;}
.hc_c00097{height:54.219375px;}
.hb_c00097{height:59.357813px;}
.h1_c00097{height:64.546875px;}
.h9_c00097{height:70.628906px;}
.h6_c00097{height:70.664062px;}
.h7_c00097{height:1187.995500px;}
.h0_c00097{height:1188.000000px;}
.w1_c00097{width:8.265000px;}
.w2_c00097{width:663.345000px;}
.w3_c00097{width:917.997000px;}
.w0_c00097{width:918.000000px;}
.x0_c00097{left:0.000000px;}
.x3_c00097{left:127.489500px;}
.xa_c00097{left:137.556000px;}
.x1_c00097{left:154.515000px;}
.x4_c00097{left:169.995000px;}
.x8_c00097{left:178.635000px;}
.x7_c00097{left:180.795000px;}
.x9_c00097{left:343.590000px;}
.x5_c00097{left:345.027000px;}
.x6_c00097{left:357.270000px;}
.x2_c00097{left:782.565000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls1a_c00097{letter-spacing:-2.560000pt;}
.ls15_c00097{letter-spacing:-1.504000pt;}
.ls13_c00097{letter-spacing:-0.353067pt;}
.ls17_c00097{letter-spacing:-0.243200pt;}
.ls18_c00097{letter-spacing:-0.225067pt;}
.ls19_c00097{letter-spacing:-0.194667pt;}
.ls14_c00097{letter-spacing:-0.061333pt;}
.ls12_c00097{letter-spacing:0.000000pt;}
.lsc_c00097{letter-spacing:0.128000pt;}
.ls1_c00097{letter-spacing:0.243200pt;}
.ls6_c00097{letter-spacing:0.403200pt;}
.ls9_c00097{letter-spacing:0.634678pt;}
.lsf_c00097{letter-spacing:0.640000pt;}
.ls8_c00097{letter-spacing:0.746667pt;}
.ls16_c00097{letter-spacing:0.810667pt;}
.lsb_c00097{letter-spacing:1.280000pt;}
.ls7_c00097{letter-spacing:1.920000pt;}
.ls0_c00097{letter-spacing:3.200000pt;}
.ls4_c00097{letter-spacing:5.754295pt;}
.ls5_c00097{letter-spacing:5.754470pt;}
.ls2_c00097{letter-spacing:5.760000pt;}
.ls3_c00097{letter-spacing:5.920000pt;}
.ls11_c00097{letter-spacing:7.040000pt;}
.ls10_c00097{letter-spacing:8.320000pt;}
.lsa_c00097{letter-spacing:12.160000pt;}
.lse_c00097{letter-spacing:13.440000pt;}
.lsd_c00097{letter-spacing:14.720000pt;}
.ws8_c00097{word-spacing:-64.000000pt;}
.ws6_c00097{word-spacing:-48.640000pt;}
.ws7_c00097{word-spacing:-16.000000pt;}
.ws9_c00097{word-spacing:-13.440000pt;}
.ws2_c00097{word-spacing:-12.970667pt;}
.ws0_c00097{word-spacing:-12.160000pt;}
.ws4_c00097{word-spacing:-11.965333pt;}
.ws5_c00097{word-spacing:-11.934933pt;}
.ws3_c00097{word-spacing:-11.916800pt;}
.ws1_c00097{word-spacing:-11.806933pt;}
.wsa_c00097{word-spacing:0.000000pt;}
._b_c00097{margin-left:-2.439224pt;}
._0_c00097{margin-left:-1.410511pt;}
._2_c00097{width:0.967224pt;}
._5_c00097{width:2.194230pt;}
._1_c00097{width:3.412680pt;}
._3_c00097{width:4.757997pt;}
._4_c00097{width:6.027858pt;}
._6_c00097{width:7.733760pt;}
._7_c00097{width:9.295368pt;}
._f_c00097{width:10.496000pt;}
._e_c00097{width:11.840000pt;}
._9_c00097{width:13.059249pt;}
._8_c00097{width:14.062390pt;}
._d_c00097{width:20.356713pt;}
._a_c00097{width:22.587287pt;}
._c_c00097{width:23.689426pt;}
.fs3_c00097{font-size:34.560000pt;}
.fs2_c00097{font-size:42.240000pt;}
.fs1_c00097{font-size:48.640000pt;}
.fs4_c00097{font-size:53.760000pt;}
.fs0_c00097{font-size:64.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y6_c00097{bottom:4.156000pt;}
.y3_c00097{bottom:4.160000pt;}
.y5_c00097{bottom:22.396000pt;}
.y4_c00097{bottom:29.156000pt;}
.y1_c00097{bottom:51.552000pt;}
.y2a_c00097{bottom:116.192000pt;}
.y29_c00097{bottom:131.552000pt;}
.y28_c00097{bottom:146.626667pt;}
.y27_c00097{bottom:161.986667pt;}
.y26_c00097{bottom:177.346667pt;}
.y25_c00097{bottom:183.426667pt;}
.y24_c00097{bottom:193.346667pt;}
.y23_c00097{bottom:237.506667pt;}
.y22_c00097{bottom:265.373333pt;}
.y21_c00097{bottom:292.893333pt;}
.y20_c00097{bottom:320.413333pt;}
.y1f_c00097{bottom:347.933333pt;}
.y1e_c00097{bottom:375.813333pt;}
.y1d_c00097{bottom:403.333333pt;}
.y1c_c00097{bottom:430.853333pt;}
.y1b_c00097{bottom:458.373333pt;}
.y1a_c00097{bottom:494.240000pt;}
.y18_c00097{bottom:529.760000pt;}
.y19_c00097{bottom:537.120000pt;}
.y17_c00097{bottom:557.280000pt;}
.y16_c00097{bottom:584.826667pt;}
.y15_c00097{bottom:612.666667pt;}
.y14_c00097{bottom:640.186667pt;}
.y13_c00097{bottom:667.706667pt;}
.y12_c00097{bottom:695.266667pt;}
.y11_c00097{bottom:727.906667pt;}
.y10_c00097{bottom:748.706667pt;}
.yf_c00097{bottom:769.186667pt;}
.ye_c00097{bottom:790.013333pt;}
.yd_c00097{bottom:810.813333pt;}
.yc_c00097{bottom:839.293333pt;}
.yb_c00097{bottom:860.093333pt;}
.ya_c00097{bottom:880.893333pt;}
.y9_c00097{bottom:901.413333pt;}
.y8_c00097{bottom:922.213333pt;}
.y7_c00097{bottom:951.013333pt;}
.y2_c00097{bottom:989.413333pt;}
.h2_c00097{height:18.586667pt;}
.ha_c00097{height:33.918750pt;}
.h3_c00097{height:36.796000pt;}
.h8_c00097{height:41.456250pt;}
.h5_c00097{height:47.713750pt;}
.h4_c00097{height:47.737500pt;}
.hc_c00097{height:48.195000pt;}
.hb_c00097{height:52.762500pt;}
.h1_c00097{height:57.375000pt;}
.h9_c00097{height:62.781250pt;}
.h6_c00097{height:62.812500pt;}
.h7_c00097{height:1055.996000pt;}
.h0_c00097{height:1056.000000pt;}
.w1_c00097{width:7.346667pt;}
.w2_c00097{width:589.640000pt;}
.w3_c00097{width:815.997333pt;}
.w0_c00097{width:816.000000pt;}
.x0_c00097{left:0.000000pt;}
.x3_c00097{left:113.324000pt;}
.xa_c00097{left:122.272000pt;}
.x1_c00097{left:137.346667pt;}
.x4_c00097{left:151.106667pt;}
.x8_c00097{left:158.786667pt;}
.x7_c00097{left:160.706667pt;}
.x9_c00097{left:305.413333pt;}
.x5_c00097{left:306.690667pt;}
.x6_c00097{left:317.573333pt;}
.x2_c00097{left:695.613333pt;}
}





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

.ir_c00098:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00098;src:url('chunks/assets/font_aa961cc34174afcaa51baeb4.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_29d2cd1da3b568447f090b34.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_b1269a0d57a9916d3ae45b31.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;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_c00098;src:url('chunks/assets/font_7b3489d3f2638fbaea16bda1.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00098;src:url('chunks/assets/font_7c95f33781cdb24f894c5285.woff2')format("woff");}.ff5_c00098{font-family:ff5_c00098;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls5_c00098{letter-spacing:-2.880000px;}
.ls2_c00098{letter-spacing:0.000000px;}
.ls3_c00098{letter-spacing:0.720000px;}
.ls4_c00098{letter-spacing:1.440000px;}
.ls1_c00098{letter-spacing:2.160000px;}
.ls0_c00098{letter-spacing:19.440000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00098{word-spacing:-72.000000px;}
.ws0_c00098{word-spacing:-18.000000px;}
.ws2_c00098{word-spacing:0.000000px;}
._4_c00098{margin-left:-2.808000px;}
._1_c00098{margin-left:-1.296000px;}
._3_c00098{width:1.080000px;}
._5_c00098{width:2.160000px;}
._2_c00098{width:3.240000px;}
._0_c00098{width:4.680000px;}
._6_c00098{width:5.904000px;}
._b_c00098{width:7.560000px;}
._c_c00098{width:8.712000px;}
._9_c00098{width:10.728000px;}
._a_c00098{width:12.456000px;}
._7_c00098{width:13.608000px;}
._8_c00098{width:15.192000px;}
._d_c00098{width:16.704000px;}
._10_c00098{width:18.132000px;}
._e_c00098{width:19.512000px;}
._f_c00098{width:21.156000px;}
.fc1_c00098{color:rgb(255,255,255);}
.fc0_c00098{color:rgb(0,0,0);}
.fs0_c00098{font-size:72.000000px;}
.y0_c00098{bottom:0.000000px;}
.y6_c00098{bottom:4.675500px;}
.y3_c00098{bottom:4.680000px;}
.y5_c00098{bottom:25.195500px;}
.y4_c00098{bottom:32.800500px;}
.y1_c00098{bottom:57.996000px;}
.y19_c00098{bottom:113.436000px;}
.y18_c00098{bottom:153.435000px;}
.y17_c00098{bottom:193.395000px;}
.y16_c00098{bottom:229.395000px;}
.y15_c00098{bottom:603.540000px;}
.y14_c00098{bottom:643.890000px;}
.y13_c00098{bottom:674.850000px;}
.y12_c00098{bottom:705.810000px;}
.y11_c00098{bottom:736.770000px;}
.y10_c00098{bottom:777.135000px;}
.yf_c00098{bottom:817.095000px;}
.ye_c00098{bottom:848.055000px;}
.yd_c00098{bottom:879.015000px;}
.yc_c00098{bottom:910.365000px;}
.yb_c00098{bottom:941.325000px;}
.ya_c00098{bottom:972.285000px;}
.y9_c00098{bottom:1003.245000px;}
.y8_c00098{bottom:1034.610000px;}
.y7_c00098{bottom:1065.570000px;}
.y2_c00098{bottom:1113.090000px;}
.h2_c00098{height:20.910000px;}
.h3_c00098{height:41.395500px;}
.h1_c00098{height:64.546875px;}
.h5_c00098{height:70.628906px;}
.h4_c00098{height:70.664062px;}
.h0_c00098{height:1188.000000px;}
.w1_c00098{width:8.265000px;}
.w2_c00098{width:663.345000px;}
.w0_c00098{width:918.000000px;}
.x0_c00098{left:0.000000px;}
.x3_c00098{left:127.489500px;}
.x1_c00098{left:154.515000px;}
.x4_c00098{left:169.995000px;}
.x2_c00098{left:782.565000px;}
.x5_c00098{left:788.685000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls5_c00098{letter-spacing:-2.560000pt;}
.ls2_c00098{letter-spacing:0.000000pt;}
.ls3_c00098{letter-spacing:0.640000pt;}
.ls4_c00098{letter-spacing:1.280000pt;}
.ls1_c00098{letter-spacing:1.920000pt;}
.ls0_c00098{letter-spacing:17.280000pt;}
.ws1_c00098{word-spacing:-64.000000pt;}
.ws0_c00098{word-spacing:-16.000000pt;}
.ws2_c00098{word-spacing:0.000000pt;}
._4_c00098{margin-left:-2.496000pt;}
._1_c00098{margin-left:-1.152000pt;}
._3_c00098{width:0.960000pt;}
._5_c00098{width:1.920000pt;}
._2_c00098{width:2.880000pt;}
._0_c00098{width:4.160000pt;}
._6_c00098{width:5.248000pt;}
._b_c00098{width:6.720000pt;}
._c_c00098{width:7.744000pt;}
._9_c00098{width:9.536000pt;}
._a_c00098{width:11.072000pt;}
._7_c00098{width:12.096000pt;}
._8_c00098{width:13.504000pt;}
._d_c00098{width:14.848000pt;}
._10_c00098{width:16.117333pt;}
._e_c00098{width:17.344000pt;}
._f_c00098{width:18.805333pt;}
.fs0_c00098{font-size:64.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y6_c00098{bottom:4.156000pt;}
.y3_c00098{bottom:4.160000pt;}
.y5_c00098{bottom:22.396000pt;}
.y4_c00098{bottom:29.156000pt;}
.y1_c00098{bottom:51.552000pt;}
.y19_c00098{bottom:100.832000pt;}
.y18_c00098{bottom:136.386667pt;}
.y17_c00098{bottom:171.906667pt;}
.y16_c00098{bottom:203.906667pt;}
.y15_c00098{bottom:536.480000pt;}
.y14_c00098{bottom:572.346667pt;}
.y13_c00098{bottom:599.866667pt;}
.y12_c00098{bottom:627.386667pt;}
.y11_c00098{bottom:654.906667pt;}
.y10_c00098{bottom:690.786667pt;}
.yf_c00098{bottom:726.306667pt;}
.ye_c00098{bottom:753.826667pt;}
.yd_c00098{bottom:781.346667pt;}
.yc_c00098{bottom:809.213333pt;}
.yb_c00098{bottom:836.733333pt;}
.ya_c00098{bottom:864.253333pt;}
.y9_c00098{bottom:891.773333pt;}
.y8_c00098{bottom:919.653333pt;}
.y7_c00098{bottom:947.173333pt;}
.y2_c00098{bottom:989.413333pt;}
.h2_c00098{height:18.586667pt;}
.h3_c00098{height:36.796000pt;}
.h1_c00098{height:57.375000pt;}
.h5_c00098{height:62.781250pt;}
.h4_c00098{height:62.812500pt;}
.h0_c00098{height:1056.000000pt;}
.w1_c00098{width:7.346667pt;}
.w2_c00098{width:589.640000pt;}
.w0_c00098{width:816.000000pt;}
.x0_c00098{left:0.000000pt;}
.x3_c00098{left:113.324000pt;}
.x1_c00098{left:137.346667pt;}
.x4_c00098{left:151.106667pt;}
.x2_c00098{left:695.613333pt;}
.x5_c00098{left:701.053333pt;}
}





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

.ir_c00099:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00099;src:url('chunks/assets/font_61976283a15be89a32c1571d.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:0.000000px;}
.fc0_c00099{color:rgb(0,0,0);}
.fs0_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y6_c00099{bottom:4.675500px;}
.y3_c00099{bottom:4.680000px;}
.y5_c00099{bottom:25.195500px;}
.y4_c00099{bottom:32.800500px;}
.y1_c00099{bottom:57.996000px;}
.y16_c00099{bottom:464.550000px;}
.y15_c00099{bottom:504.510000px;}
.y14_c00099{bottom:544.860000px;}
.y13_c00099{bottom:584.820000px;}
.y12_c00099{bottom:624.780000px;}
.y11_c00099{bottom:664.770000px;}
.y10_c00099{bottom:705.090000px;}
.yf_c00099{bottom:745.050000px;}
.ye_c00099{bottom:785.055000px;}
.yd_c00099{bottom:825.015000px;}
.yc_c00099{bottom:865.335000px;}
.yb_c00099{bottom:905.325000px;}
.ya_c00099{bottom:945.285000px;}
.y9_c00099{bottom:985.245000px;}
.y8_c00099{bottom:1025.610000px;}
.y7_c00099{bottom:1065.570000px;}
.y2_c00099{bottom:1113.090000px;}
.h2_c00099{height:20.910000px;}
.h3_c00099{height:41.395500px;}
.h1_c00099{height:64.546875px;}
.h4_c00099{height:70.664062px;}
.h0_c00099{height:1188.000000px;}
.w1_c00099{width:8.265000px;}
.w2_c00099{width:663.345000px;}
.w0_c00099{width:918.000000px;}
.x0_c00099{left:0.000000px;}
.x3_c00099{left:127.489500px;}
.x1_c00099{left:154.515000px;}
.x2_c00099{left:782.565000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws0_c00099{word-spacing:0.000000pt;}
.fs0_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y6_c00099{bottom:4.156000pt;}
.y3_c00099{bottom:4.160000pt;}
.y5_c00099{bottom:22.396000pt;}
.y4_c00099{bottom:29.156000pt;}
.y1_c00099{bottom:51.552000pt;}
.y16_c00099{bottom:412.933333pt;}
.y15_c00099{bottom:448.453333pt;}
.y14_c00099{bottom:484.320000pt;}
.y13_c00099{bottom:519.840000pt;}
.y12_c00099{bottom:555.360000pt;}
.y11_c00099{bottom:590.906667pt;}
.y10_c00099{bottom:626.746667pt;}
.yf_c00099{bottom:662.266667pt;}
.ye_c00099{bottom:697.826667pt;}
.yd_c00099{bottom:733.346667pt;}
.yc_c00099{bottom:769.186667pt;}
.yb_c00099{bottom:804.733333pt;}
.ya_c00099{bottom:840.253333pt;}
.y9_c00099{bottom:875.773333pt;}
.y8_c00099{bottom:911.653333pt;}
.y7_c00099{bottom:947.173333pt;}
.y2_c00099{bottom:989.413333pt;}
.h2_c00099{height:18.586667pt;}
.h3_c00099{height:36.796000pt;}
.h1_c00099{height:57.375000pt;}
.h4_c00099{height:62.812500pt;}
.h0_c00099{height:1056.000000pt;}
.w1_c00099{width:7.346667pt;}
.w2_c00099{width:589.640000pt;}
.w0_c00099{width:816.000000pt;}
.x0_c00099{left:0.000000pt;}
.x3_c00099{left:113.324000pt;}
.x1_c00099{left:137.346667pt;}
.x2_c00099{left:695.613333pt;}
}





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

.ir_c00100:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00100;src:url('chunks/assets/font_a093c40a72c665f644cd8a59.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_9be55fb0d4400bef5ccbae59.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_0bdad0c660ae39ac2ee982e7.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00100;src:url('chunks/assets/font_6748491b15073fad0cfa652e.woff2')format("woff");}.ff5_c00100{font-family:ff5_c00100;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_c00100;src:url('chunks/assets/font_7626807f28364f170a886e20.woff2')format("woff");}.ff6_c00100{font-family:ff6_c00100;line-height:1.191895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls1_c00100{letter-spacing:0.000000px;}
.ls0_c00100{letter-spacing:0.720000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:-24.120000px;}
.ws1_c00100{word-spacing:0.000000px;}
._3_c00100{margin-left:-6.271200px;}
._2_c00100{margin-left:-4.631426px;}
._6_c00100{margin-left:-3.444666px;}
._1_c00100{margin-left:-2.122174px;}
._0_c00100{margin-left:-1.061376px;}
._5_c00100{width:1.061849px;}
._4_c00100{width:2.253501px;}
.fc0_c00100{color:rgb(0,0,0);}
.fs0_c00100{font-size:72.000000px;}
.fs1_c00100{font-size:96.480000px;}
.y0_c00100{bottom:0.000000px;}
.y1b_c00100{bottom:120.636000px;}
.y1a_c00100{bottom:141.516000px;}
.y19_c00100{bottom:162.075000px;}
.y18_c00100{bottom:182.955000px;}
.y17_c00100{bottom:222.555000px;}
.y16_c00100{bottom:262.515000px;}
.y15_c00100{bottom:302.505000px;}
.y14_c00100{bottom:342.825000px;}
.y13_c00100{bottom:382.785000px;}
.y12_c00100{bottom:422.790000px;}
.y11_c00100{bottom:462.750000px;}
.y10_c00100{bottom:503.070000px;}
.yf_c00100{bottom:543.060000px;}
.ye_c00100{bottom:588.060000px;}
.yd_c00100{bottom:629.460000px;}
.yc_c00100{bottom:674.850000px;}
.yb_c00100{bottom:705.090000px;}
.ya_c00100{bottom:744.690000px;}
.y9_c00100{bottom:784.695000px;}
.y8_c00100{bottom:824.655000px;}
.y7_c00100{bottom:864.975000px;}
.y6_c00100{bottom:905.325000px;}
.y5_c00100{bottom:945.285000px;}
.y4_c00100{bottom:985.245000px;}
.y3_c00100{bottom:1025.610000px;}
.y2_c00100{bottom:1065.570000px;}
.y1_c00100{bottom:1117.770000px;}
.h4_c00100{height:64.546875px;}
.h1_c00100{height:64.898438px;}
.h2_c00100{height:70.664062px;}
.h3_c00100{height:72.562500px;}
.h5_c00100{height:97.233750px;}
.h0_c00100{height:1188.000000px;}
.w0_c00100{width:918.000000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:127.476000px;}
.x3_c00100{left:222.195000px;}
.x2_c00100{left:458.820000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls1_c00100{letter-spacing:0.000000pt;}
.ls0_c00100{letter-spacing:0.640000pt;}
.ws0_c00100{word-spacing:-21.440000pt;}
.ws1_c00100{word-spacing:0.000000pt;}
._3_c00100{margin-left:-5.574400pt;}
._2_c00100{margin-left:-4.116823pt;}
._6_c00100{margin-left:-3.061925pt;}
._1_c00100{margin-left:-1.886377pt;}
._0_c00100{margin-left:-0.943446pt;}
._5_c00100{width:0.943866pt;}
._4_c00100{width:2.003112pt;}
.fs0_c00100{font-size:64.000000pt;}
.fs1_c00100{font-size:85.760000pt;}
.y0_c00100{bottom:0.000000pt;}
.y1b_c00100{bottom:107.232000pt;}
.y1a_c00100{bottom:125.792000pt;}
.y19_c00100{bottom:144.066667pt;}
.y18_c00100{bottom:162.626667pt;}
.y17_c00100{bottom:197.826667pt;}
.y16_c00100{bottom:233.346667pt;}
.y15_c00100{bottom:268.893333pt;}
.y14_c00100{bottom:304.733333pt;}
.y13_c00100{bottom:340.253333pt;}
.y12_c00100{bottom:375.813333pt;}
.y11_c00100{bottom:411.333333pt;}
.y10_c00100{bottom:447.173333pt;}
.yf_c00100{bottom:482.720000pt;}
.ye_c00100{bottom:522.720000pt;}
.yd_c00100{bottom:559.520000pt;}
.yc_c00100{bottom:599.866667pt;}
.yb_c00100{bottom:626.746667pt;}
.ya_c00100{bottom:661.946667pt;}
.y9_c00100{bottom:697.506667pt;}
.y8_c00100{bottom:733.026667pt;}
.y7_c00100{bottom:768.866667pt;}
.y6_c00100{bottom:804.733333pt;}
.y5_c00100{bottom:840.253333pt;}
.y4_c00100{bottom:875.773333pt;}
.y3_c00100{bottom:911.653333pt;}
.y2_c00100{bottom:947.173333pt;}
.y1_c00100{bottom:993.573333pt;}
.h4_c00100{height:57.375000pt;}
.h1_c00100{height:57.687500pt;}
.h2_c00100{height:62.812500pt;}
.h3_c00100{height:64.500000pt;}
.h5_c00100{height:86.430000pt;}
.h0_c00100{height:1056.000000pt;}
.w0_c00100{width:816.000000pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:113.312000pt;}
.x3_c00100{left:197.506667pt;}
.x2_c00100{left:407.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_c00101 {
    display:none;
  }
  .loading-indicator_c00101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00101 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00101 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00101" -> "#page-container .classname_c00101")
 */
.pf_c00101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00101 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00101 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00101 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00101 {overflow:visible;}
  }
}
.c_c00101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00101 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00101:after { /* webkit #35443 */
  content: '';
}
.t_c00101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00101 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00101 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00101 { /* info for Javascript */
  display:none;
}
.l_c00101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00101:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00101;src:url('chunks/assets/font_1a10a1f79030cb3554cfcd2c.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_d5fdae8f40605833c9a9f3dd.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_745c1867b48d6750da7168ab.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_6748491b15073fad0cfa652e.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;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_c00101;src:url('chunks/assets/font_7626807f28364f170a886e20.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.191895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00101;src:url('chunks/assets/font_7b5890b4e4248a411b4b4a27.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:1.112305;font-style:normal;font-weight: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_c00101;src:url('chunks/assets/font_0f7735cc85984f00117eabc6.woff2')format("woff");}.ff7_c00101{font-family:ff7_c00101;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_c00101;src:url('chunks/assets/font_83edcea71b3b5775935547ec.woff2')format("woff");}.ff8_c00101{font-family:ff8_c00101;line-height:1.117188;font-style:normal;font-weight: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_c00101;src:url('chunks/assets/font_cdb21538a1498068d339f1bf.woff2')format("woff");}.ff9_c00101{font-family:ff9_c00101;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls7_c00101{letter-spacing:-1.440000px;}
.ls8_c00101{letter-spacing:-0.486600px;}
.ls5_c00101{letter-spacing:0.000000px;}
.ls3_c00101{letter-spacing:0.120000px;}
.ls2_c00101{letter-spacing:0.180000px;}
.ls0_c00101{letter-spacing:0.720000px;}
.ls4_c00101{letter-spacing:0.792000px;}
.ls6_c00101{letter-spacing:1.440000px;}
.ls1_c00101{letter-spacing:13.680000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00101{word-spacing:-72.000000px;}
.ws0_c00101{word-spacing:-18.000000px;}
.ws2_c00101{word-spacing:-15.120000px;}
.ws3_c00101{word-spacing:-14.633400px;}
.ws4_c00101{word-spacing:0.000000px;}
._3_c00101{margin-left:-2.903976px;}
._1_c00101{margin-left:-1.728000px;}
._0_c00101{width:1.296000px;}
._7_c00101{width:2.352024px;}
._2_c00101{width:3.456000px;}
._d_c00101{width:4.799952px;}
._6_c00101{width:6.431976px;}
._5_c00101{width:7.895952px;}
._8_c00101{width:9.456240px;}
._f_c00101{width:10.606992px;}
._e_c00101{width:11.614992px;}
._b_c00101{width:12.671928px;}
._c_c00101{width:15.072048px;}
._10_c00101{width:19.391976px;}
._13_c00101{width:21.023997px;}
._4_c00101{width:29.592000px;}
._9_c00101{width:32.268000px;}
._a_c00101{width:33.696000px;}
._11_c00101{width:74.448000px;}
._12_c00101{width:186.600024px;}
.fc0_c00101{color:rgb(0,0,0);}
.fs2_c00101{font-size:38.880000px;}
.fs1_c00101{font-size:47.520000px;}
.fs3_c00101{font-size:60.480000px;}
.fs0_c00101{font-size:72.000000px;}
.y0_c00101{bottom:0.000000px;}
.y6_c00101{bottom:4.675500px;}
.y3_c00101{bottom:4.680000px;}
.y5_c00101{bottom:25.195500px;}
.y4_c00101{bottom:32.800500px;}
.y1_c00101{bottom:57.996000px;}
.y2a_c00101{bottom:130.716000px;}
.y29_c00101{bottom:147.996000px;}
.y28_c00101{bottom:154.875000px;}
.y27_c00101{bottom:164.955000px;}
.y26_c00101{bottom:171.795000px;}
.y25_c00101{bottom:182.955000px;}
.y24_c00101{bottom:203.835000px;}
.y23_c00101{bottom:235.155000px;}
.y21_c00101{bottom:275.145000px;}
.y22_c00101{bottom:283.425000px;}
.y20_c00101{bottom:306.105000px;}
.y1f_c00101{bottom:337.065000px;}
.y1e_c00101{bottom:368.385000px;}
.y1d_c00101{bottom:399.390000px;}
.y1c_c00101{bottom:430.350000px;}
.y1b_c00101{bottom:461.310000px;}
.y1a_c00101{bottom:492.630000px;}
.y19_c00101{bottom:523.620000px;}
.y18_c00101{bottom:554.580000px;}
.y17_c00101{bottom:585.540000px;}
.y16_c00101{bottom:616.860000px;}
.y15_c00101{bottom:647.850000px;}
.y14_c00101{bottom:678.810000px;}
.y13_c00101{bottom:709.770000px;}
.y11_c00101{bottom:750.090000px;}
.y12_c00101{bottom:758.370000px;}
.y10_c00101{bottom:781.095000px;}
.yf_c00101{bottom:812.055000px;}
.ye_c00101{bottom:843.015000px;}
.yd_c00101{bottom:882.975000px;}
.yc_c00101{bottom:913.965000px;}
.yb_c00101{bottom:953.925000px;}
.ya_c00101{bottom:993.885000px;}
.y9_c00101{bottom:1024.170000px;}
.y8_c00101{bottom:1044.690000px;}
.y7_c00101{bottom:1065.570000px;}
.y2_c00101{bottom:1113.090000px;}
.h2_c00101{height:20.910000px;}
.h8_c00101{height:34.855313px;}
.h3_c00101{height:41.395500px;}
.h7_c00101{height:46.638281px;}
.ha_c00101{height:54.219375px;}
.h9_c00101{height:54.514688px;}
.h1_c00101{height:64.546875px;}
.h4_c00101{height:70.664062px;}
.h5_c00101{height:72.562500px;}
.h6_c00101{height:1187.995500px;}
.h0_c00101{height:1188.000000px;}
.w1_c00101{width:8.265000px;}
.w2_c00101{width:663.345000px;}
.w3_c00101{width:917.997000px;}
.w0_c00101{width:918.000000px;}
.x0_c00101{left:0.000000px;}
.x3_c00101{left:127.489500px;}
.xb_c00101{left:137.556000px;}
.x1_c00101{left:154.515000px;}
.x4_c00101{left:179.355000px;}
.x6_c00101{left:251.022000px;}
.x7_c00101{left:263.265000px;}
.x5_c00101{left:301.425000px;}
.xa_c00101{left:343.590000px;}
.x8_c00101{left:389.307000px;}
.x9_c00101{left:401.550000px;}
.x2_c00101{left:782.565000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls7_c00101{letter-spacing:-1.280000pt;}
.ls8_c00101{letter-spacing:-0.432533pt;}
.ls5_c00101{letter-spacing:0.000000pt;}
.ls3_c00101{letter-spacing:0.106667pt;}
.ls2_c00101{letter-spacing:0.160000pt;}
.ls0_c00101{letter-spacing:0.640000pt;}
.ls4_c00101{letter-spacing:0.704000pt;}
.ls6_c00101{letter-spacing:1.280000pt;}
.ls1_c00101{letter-spacing:12.160000pt;}
.ws1_c00101{word-spacing:-64.000000pt;}
.ws0_c00101{word-spacing:-16.000000pt;}
.ws2_c00101{word-spacing:-13.440000pt;}
.ws3_c00101{word-spacing:-13.007467pt;}
.ws4_c00101{word-spacing:0.000000pt;}
._3_c00101{margin-left:-2.581312pt;}
._1_c00101{margin-left:-1.536000pt;}
._0_c00101{width:1.152000pt;}
._7_c00101{width:2.090688pt;}
._2_c00101{width:3.072000pt;}
._d_c00101{width:4.266624pt;}
._6_c00101{width:5.717312pt;}
._5_c00101{width:7.018624pt;}
._8_c00101{width:8.405547pt;}
._f_c00101{width:9.428437pt;}
._e_c00101{width:10.324437pt;}
._b_c00101{width:11.263936pt;}
._c_c00101{width:13.397376pt;}
._10_c00101{width:17.237312pt;}
._13_c00101{width:18.687997pt;}
._4_c00101{width:26.304000pt;}
._9_c00101{width:28.682667pt;}
._a_c00101{width:29.952000pt;}
._11_c00101{width:66.176000pt;}
._12_c00101{width:165.866688pt;}
.fs2_c00101{font-size:34.560000pt;}
.fs1_c00101{font-size:42.240000pt;}
.fs3_c00101{font-size:53.760000pt;}
.fs0_c00101{font-size:64.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y6_c00101{bottom:4.156000pt;}
.y3_c00101{bottom:4.160000pt;}
.y5_c00101{bottom:22.396000pt;}
.y4_c00101{bottom:29.156000pt;}
.y1_c00101{bottom:51.552000pt;}
.y2a_c00101{bottom:116.192000pt;}
.y29_c00101{bottom:131.552000pt;}
.y28_c00101{bottom:137.666667pt;}
.y27_c00101{bottom:146.626667pt;}
.y26_c00101{bottom:152.706667pt;}
.y25_c00101{bottom:162.626667pt;}
.y24_c00101{bottom:181.186667pt;}
.y23_c00101{bottom:209.026667pt;}
.y21_c00101{bottom:244.573333pt;}
.y22_c00101{bottom:251.933333pt;}
.y20_c00101{bottom:272.093333pt;}
.y1f_c00101{bottom:299.613333pt;}
.y1e_c00101{bottom:327.453333pt;}
.y1d_c00101{bottom:355.013333pt;}
.y1c_c00101{bottom:382.533333pt;}
.y1b_c00101{bottom:410.053333pt;}
.y1a_c00101{bottom:437.893333pt;}
.y19_c00101{bottom:465.440000pt;}
.y18_c00101{bottom:492.960000pt;}
.y17_c00101{bottom:520.480000pt;}
.y16_c00101{bottom:548.320000pt;}
.y15_c00101{bottom:575.866667pt;}
.y14_c00101{bottom:603.386667pt;}
.y13_c00101{bottom:630.906667pt;}
.y11_c00101{bottom:666.746667pt;}
.y12_c00101{bottom:674.106667pt;}
.y10_c00101{bottom:694.306667pt;}
.yf_c00101{bottom:721.826667pt;}
.ye_c00101{bottom:749.346667pt;}
.yd_c00101{bottom:784.866667pt;}
.yc_c00101{bottom:812.413333pt;}
.yb_c00101{bottom:847.933333pt;}
.ya_c00101{bottom:883.453333pt;}
.y9_c00101{bottom:910.373333pt;}
.y8_c00101{bottom:928.613333pt;}
.y7_c00101{bottom:947.173333pt;}
.y2_c00101{bottom:989.413333pt;}
.h2_c00101{height:18.586667pt;}
.h8_c00101{height:30.982500pt;}
.h3_c00101{height:36.796000pt;}
.h7_c00101{height:41.456250pt;}
.ha_c00101{height:48.195000pt;}
.h9_c00101{height:48.457500pt;}
.h1_c00101{height:57.375000pt;}
.h4_c00101{height:62.812500pt;}
.h5_c00101{height:64.500000pt;}
.h6_c00101{height:1055.996000pt;}
.h0_c00101{height:1056.000000pt;}
.w1_c00101{width:7.346667pt;}
.w2_c00101{width:589.640000pt;}
.w3_c00101{width:815.997333pt;}
.w0_c00101{width:816.000000pt;}
.x0_c00101{left:0.000000pt;}
.x3_c00101{left:113.324000pt;}
.xb_c00101{left:122.272000pt;}
.x1_c00101{left:137.346667pt;}
.x4_c00101{left:159.426667pt;}
.x6_c00101{left:223.130667pt;}
.x7_c00101{left:234.013333pt;}
.x5_c00101{left:267.933333pt;}
.xa_c00101{left:305.413333pt;}
.x8_c00101{left:346.050667pt;}
.x9_c00101{left:356.933333pt;}
.x2_c00101{left:695.613333pt;}
}





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

.ir_c00102:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00102;src:url('chunks/assets/font_c5a0bca1f39dbf31003b5540.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_b6f6e8a17f83c5e0761e8210.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_f3939440d9801ee4ca6a902c.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_413a0ef267f2c0375bbc6bfa.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;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_c00102;src:url('chunks/assets/font_1b3d089eb4b61e5e96e8bbdf.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00102;src:url('chunks/assets/font_606995e37cc5a0a82183abfe.woff2')format("woff");}.ff6_c00102{font-family:ff6_c00102;line-height:1.117188;font-style:normal;font-weight: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_c00102;src:url('chunks/assets/font_896af646b80af3a2dfb27ace.woff2')format("woff");}.ff7_c00102{font-family:ff7_c00102;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls4_c00102{letter-spacing:0.000000px;}
.ls6_c00102{letter-spacing:0.288000px;}
.ls3_c00102{letter-spacing:0.506880px;}
.ls2_c00102{letter-spacing:0.720000px;}
.ls1_c00102{letter-spacing:0.732000px;}
.ls5_c00102{letter-spacing:2.160000px;}
.ls0_c00102{letter-spacing:48.384000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00102{word-spacing:-72.000000px;}
.ws2_c00102{word-spacing:-18.288000px;}
.ws0_c00102{word-spacing:-18.000000px;}
.ws3_c00102{word-spacing:-15.120000px;}
.ws4_c00102{word-spacing:0.000000px;}
._8_c00102{margin-left:-3.456000px;}
._1_c00102{margin-left:-1.872000px;}
._2_c00102{width:1.296000px;}
._5_c00102{width:3.180024px;}
._b_c00102{width:4.307976px;}
._3_c00102{width:5.616000px;}
._0_c00102{width:6.984000px;}
._4_c00102{width:8.208000px;}
._6_c00102{width:10.008000px;}
._9_c00102{width:11.279952px;}
._a_c00102{width:13.007952px;}
._f_c00102{width:14.400000px;}
._7_c00102{width:16.344000px;}
._10_c00102{width:19.415952px;}
._e_c00102{width:20.520000px;}
._c_c00102{width:21.672000px;}
._d_c00102{width:22.739976px;}
._11_c00102{width:105.840000px;}
.fc0_c00102{color:rgb(0,0,0);}
.fs2_c00102{font-size:38.880000px;}
.fs1_c00102{font-size:47.520000px;}
.fs3_c00102{font-size:60.480000px;}
.fs0_c00102{font-size:72.000000px;}
.y0_c00102{bottom:0.000000px;}
.y6_c00102{bottom:4.675500px;}
.y3_c00102{bottom:4.680000px;}
.y5_c00102{bottom:25.195500px;}
.y4_c00102{bottom:32.800500px;}
.y1_c00102{bottom:57.996000px;}
.y27_c00102{bottom:130.716000px;}
.y26_c00102{bottom:147.996000px;}
.y25_c00102{bottom:164.955000px;}
.y24_c00102{bottom:171.795000px;}
.y23_c00102{bottom:182.955000px;}
.y21_c00102{bottom:230.835000px;}
.y22_c00102{bottom:239.115000px;}
.y20_c00102{bottom:262.155000px;}
.y1f_c00102{bottom:293.145000px;}
.y1e_c00102{bottom:324.105000px;}
.y1d_c00102{bottom:355.065000px;}
.y1c_c00102{bottom:395.430000px;}
.y1b_c00102{bottom:426.390000px;}
.y1a_c00102{bottom:466.350000px;}
.y19_c00102{bottom:506.310000px;}
.y18_c00102{bottom:537.660000px;}
.y17_c00102{bottom:568.620000px;}
.y16_c00102{bottom:599.580000px;}
.y15_c00102{bottom:630.540000px;}
.y14_c00102{bottom:661.890000px;}
.y13_c00102{bottom:692.850000px;}
.y12_c00102{bottom:723.810000px;}
.y11_c00102{bottom:754.770000px;}
.y10_c00102{bottom:786.135000px;}
.yf_c00102{bottom:817.095000px;}
.ye_c00102{bottom:848.055000px;}
.yd_c00102{bottom:879.015000px;}
.yc_c00102{bottom:910.365000px;}
.yb_c00102{bottom:941.325000px;}
.ya_c00102{bottom:972.285000px;}
.y9_c00102{bottom:1003.245000px;}
.y8_c00102{bottom:1034.610000px;}
.y7_c00102{bottom:1065.570000px;}
.y2_c00102{bottom:1113.090000px;}
.h2_c00102{height:20.910000px;}
.h8_c00102{height:34.855313px;}
.h3_c00102{height:41.395500px;}
.h7_c00102{height:46.638281px;}
.ha_c00102{height:54.219375px;}
.h9_c00102{height:54.514688px;}
.h1_c00102{height:64.546875px;}
.h5_c00102{height:70.628906px;}
.h4_c00102{height:70.664062px;}
.h6_c00102{height:1187.995500px;}
.h0_c00102{height:1188.000000px;}
.w1_c00102{width:8.265000px;}
.w2_c00102{width:663.345000px;}
.w3_c00102{width:917.997000px;}
.w0_c00102{width:918.000000px;}
.x0_c00102{left:0.000000px;}
.x3_c00102{left:127.489500px;}
.x9_c00102{left:137.556000px;}
.x1_c00102{left:154.515000px;}
.x5_c00102{left:178.635000px;}
.x4_c00102{left:181.515000px;}
.x8_c00102{left:343.590000px;}
.x6_c00102{left:598.167000px;}
.x7_c00102{left:610.410000px;}
.x2_c00102{left:782.565000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls4_c00102{letter-spacing:0.000000pt;}
.ls6_c00102{letter-spacing:0.256000pt;}
.ls3_c00102{letter-spacing:0.450560pt;}
.ls2_c00102{letter-spacing:0.640000pt;}
.ls1_c00102{letter-spacing:0.650667pt;}
.ls5_c00102{letter-spacing:1.920000pt;}
.ls0_c00102{letter-spacing:43.008000pt;}
.ws1_c00102{word-spacing:-64.000000pt;}
.ws2_c00102{word-spacing:-16.256000pt;}
.ws0_c00102{word-spacing:-16.000000pt;}
.ws3_c00102{word-spacing:-13.440000pt;}
.ws4_c00102{word-spacing:0.000000pt;}
._8_c00102{margin-left:-3.072000pt;}
._1_c00102{margin-left:-1.664000pt;}
._2_c00102{width:1.152000pt;}
._5_c00102{width:2.826688pt;}
._b_c00102{width:3.829312pt;}
._3_c00102{width:4.992000pt;}
._0_c00102{width:6.208000pt;}
._4_c00102{width:7.296000pt;}
._6_c00102{width:8.896000pt;}
._9_c00102{width:10.026624pt;}
._a_c00102{width:11.562624pt;}
._f_c00102{width:12.800000pt;}
._7_c00102{width:14.528000pt;}
._10_c00102{width:17.258624pt;}
._e_c00102{width:18.240000pt;}
._c_c00102{width:19.264000pt;}
._d_c00102{width:20.213312pt;}
._11_c00102{width:94.080000pt;}
.fs2_c00102{font-size:34.560000pt;}
.fs1_c00102{font-size:42.240000pt;}
.fs3_c00102{font-size:53.760000pt;}
.fs0_c00102{font-size:64.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y6_c00102{bottom:4.156000pt;}
.y3_c00102{bottom:4.160000pt;}
.y5_c00102{bottom:22.396000pt;}
.y4_c00102{bottom:29.156000pt;}
.y1_c00102{bottom:51.552000pt;}
.y27_c00102{bottom:116.192000pt;}
.y26_c00102{bottom:131.552000pt;}
.y25_c00102{bottom:146.626667pt;}
.y24_c00102{bottom:152.706667pt;}
.y23_c00102{bottom:162.626667pt;}
.y21_c00102{bottom:205.186667pt;}
.y22_c00102{bottom:212.546667pt;}
.y20_c00102{bottom:233.026667pt;}
.y1f_c00102{bottom:260.573333pt;}
.y1e_c00102{bottom:288.093333pt;}
.y1d_c00102{bottom:315.613333pt;}
.y1c_c00102{bottom:351.493333pt;}
.y1b_c00102{bottom:379.013333pt;}
.y1a_c00102{bottom:414.533333pt;}
.y19_c00102{bottom:450.053333pt;}
.y18_c00102{bottom:477.920000pt;}
.y17_c00102{bottom:505.440000pt;}
.y16_c00102{bottom:532.960000pt;}
.y15_c00102{bottom:560.480000pt;}
.y14_c00102{bottom:588.346667pt;}
.y13_c00102{bottom:615.866667pt;}
.y12_c00102{bottom:643.386667pt;}
.y11_c00102{bottom:670.906667pt;}
.y10_c00102{bottom:698.786667pt;}
.yf_c00102{bottom:726.306667pt;}
.ye_c00102{bottom:753.826667pt;}
.yd_c00102{bottom:781.346667pt;}
.yc_c00102{bottom:809.213333pt;}
.yb_c00102{bottom:836.733333pt;}
.ya_c00102{bottom:864.253333pt;}
.y9_c00102{bottom:891.773333pt;}
.y8_c00102{bottom:919.653333pt;}
.y7_c00102{bottom:947.173333pt;}
.y2_c00102{bottom:989.413333pt;}
.h2_c00102{height:18.586667pt;}
.h8_c00102{height:30.982500pt;}
.h3_c00102{height:36.796000pt;}
.h7_c00102{height:41.456250pt;}
.ha_c00102{height:48.195000pt;}
.h9_c00102{height:48.457500pt;}
.h1_c00102{height:57.375000pt;}
.h5_c00102{height:62.781250pt;}
.h4_c00102{height:62.812500pt;}
.h6_c00102{height:1055.996000pt;}
.h0_c00102{height:1056.000000pt;}
.w1_c00102{width:7.346667pt;}
.w2_c00102{width:589.640000pt;}
.w3_c00102{width:815.997333pt;}
.w0_c00102{width:816.000000pt;}
.x0_c00102{left:0.000000pt;}
.x3_c00102{left:113.324000pt;}
.x9_c00102{left:122.272000pt;}
.x1_c00102{left:137.346667pt;}
.x5_c00102{left:158.786667pt;}
.x4_c00102{left:161.346667pt;}
.x8_c00102{left:305.413333pt;}
.x6_c00102{left:531.704000pt;}
.x7_c00102{left:542.586667pt;}
.x2_c00102{left:695.613333pt;}
}





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

.ir_c00103:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00103;src:url('chunks/assets/font_18038cb7a59f3d5a7619591c.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_ed93f2a3d46be04d46332757.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_8d8f7a6a8aa87551ee072b09.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_b199f04465ae346517cd8062.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;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_c00103;src:url('chunks/assets/font_16aaaebab3ab8fc922669147.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls4_c00103{letter-spacing:-0.720000px;}
.ls3_c00103{letter-spacing:-0.504000px;}
.ls2_c00103{letter-spacing:0.000000px;}
.ls1_c00103{letter-spacing:0.732000px;}
.ls0_c00103{letter-spacing:48.384000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00103{word-spacing:-72.000000px;}
.ws0_c00103{word-spacing:-18.000000px;}
.ws2_c00103{word-spacing:-17.496000px;}
.ws3_c00103{word-spacing:0.000000px;}
._5_c00103{margin-left:-2.952000px;}
._0_c00103{margin-left:-1.944000px;}
._1_c00103{width:1.224000px;}
._4_c00103{width:2.232000px;}
._8_c00103{width:3.600000px;}
._b_c00103{width:5.040000px;}
._2_c00103{width:6.408000px;}
._3_c00103{width:7.560000px;}
._e_c00103{width:8.784000px;}
._f_c00103{width:9.792000px;}
._13_c00103{width:10.872000px;}
._12_c00103{width:12.312000px;}
._6_c00103{width:13.320000px;}
._7_c00103{width:15.048000px;}
._10_c00103{width:16.632000px;}
._11_c00103{width:19.872000px;}
._a_c00103{width:20.880000px;}
._9_c00103{width:22.824000px;}
._c_c00103{width:23.832000px;}
._d_c00103{width:25.488000px;}
._14_c00103{width:27.144000px;}
._1a_c00103{width:29.160000px;}
._19_c00103{width:30.240000px;}
._16_c00103{width:31.464000px;}
._17_c00103{width:32.760000px;}
._18_c00103{width:34.128000px;}
._1b_c00103{width:65.160000px;}
._1c_c00103{width:66.240000px;}
._1d_c00103{width:67.536000px;}
._15_c00103{width:105.840000px;}
.fc0_c00103{color:rgb(0,0,0);}
.fs0_c00103{font-size:72.000000px;}
.y0_c00103{bottom:0.000000px;}
.y6_c00103{bottom:4.675500px;}
.y3_c00103{bottom:4.680000px;}
.y5_c00103{bottom:25.195500px;}
.y4_c00103{bottom:32.800500px;}
.y1_c00103{bottom:57.996000px;}
.y23_c00103{bottom:114.876000px;}
.y22_c00103{bottom:145.836000px;}
.y21_c00103{bottom:176.835000px;}
.y20_c00103{bottom:208.155000px;}
.y1f_c00103{bottom:239.115000px;}
.y1e_c00103{bottom:279.105000px;}
.y1d_c00103{bottom:319.065000px;}
.y1c_c00103{bottom:359.385000px;}
.y1b_c00103{bottom:399.390000px;}
.y1a_c00103{bottom:439.350000px;}
.y19_c00103{bottom:479.310000px;}
.y18_c00103{bottom:510.630000px;}
.y17_c00103{bottom:541.620000px;}
.y16_c00103{bottom:572.580000px;}
.y15_c00103{bottom:603.540000px;}
.y14_c00103{bottom:643.890000px;}
.y13_c00103{bottom:683.850000px;}
.y12_c00103{bottom:714.810000px;}
.y11_c00103{bottom:745.770000px;}
.y10_c00103{bottom:777.135000px;}
.yf_c00103{bottom:808.095000px;}
.ye_c00103{bottom:839.055000px;}
.yd_c00103{bottom:870.015000px;}
.yc_c00103{bottom:910.365000px;}
.yb_c00103{bottom:941.325000px;}
.ya_c00103{bottom:972.285000px;}
.y9_c00103{bottom:1003.245000px;}
.y8_c00103{bottom:1034.610000px;}
.y7_c00103{bottom:1065.570000px;}
.y2_c00103{bottom:1113.090000px;}
.h2_c00103{height:20.910000px;}
.h3_c00103{height:41.395500px;}
.h1_c00103{height:64.546875px;}
.h5_c00103{height:70.628906px;}
.h4_c00103{height:70.664062px;}
.h0_c00103{height:1188.000000px;}
.w1_c00103{width:8.265000px;}
.w2_c00103{width:663.345000px;}
.w0_c00103{width:918.000000px;}
.x0_c00103{left:0.000000px;}
.x3_c00103{left:127.489500px;}
.x1_c00103{left:154.515000px;}
.x6_c00103{left:169.995000px;}
.x4_c00103{left:178.635000px;}
.x5_c00103{left:180.795000px;}
.x2_c00103{left:782.565000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls4_c00103{letter-spacing:-0.640000pt;}
.ls3_c00103{letter-spacing:-0.448000pt;}
.ls2_c00103{letter-spacing:0.000000pt;}
.ls1_c00103{letter-spacing:0.650667pt;}
.ls0_c00103{letter-spacing:43.008000pt;}
.ws1_c00103{word-spacing:-64.000000pt;}
.ws0_c00103{word-spacing:-16.000000pt;}
.ws2_c00103{word-spacing:-15.552000pt;}
.ws3_c00103{word-spacing:0.000000pt;}
._5_c00103{margin-left:-2.624000pt;}
._0_c00103{margin-left:-1.728000pt;}
._1_c00103{width:1.088000pt;}
._4_c00103{width:1.984000pt;}
._8_c00103{width:3.200000pt;}
._b_c00103{width:4.480000pt;}
._2_c00103{width:5.696000pt;}
._3_c00103{width:6.720000pt;}
._e_c00103{width:7.808000pt;}
._f_c00103{width:8.704000pt;}
._13_c00103{width:9.664000pt;}
._12_c00103{width:10.944000pt;}
._6_c00103{width:11.840000pt;}
._7_c00103{width:13.376000pt;}
._10_c00103{width:14.784000pt;}
._11_c00103{width:17.664000pt;}
._a_c00103{width:18.560000pt;}
._9_c00103{width:20.288000pt;}
._c_c00103{width:21.184000pt;}
._d_c00103{width:22.656000pt;}
._14_c00103{width:24.128000pt;}
._1a_c00103{width:25.920000pt;}
._19_c00103{width:26.880000pt;}
._16_c00103{width:27.968000pt;}
._17_c00103{width:29.120000pt;}
._18_c00103{width:30.336000pt;}
._1b_c00103{width:57.920000pt;}
._1c_c00103{width:58.880000pt;}
._1d_c00103{width:60.032000pt;}
._15_c00103{width:94.080000pt;}
.fs0_c00103{font-size:64.000000pt;}
.y0_c00103{bottom:0.000000pt;}
.y6_c00103{bottom:4.156000pt;}
.y3_c00103{bottom:4.160000pt;}
.y5_c00103{bottom:22.396000pt;}
.y4_c00103{bottom:29.156000pt;}
.y1_c00103{bottom:51.552000pt;}
.y23_c00103{bottom:102.112000pt;}
.y22_c00103{bottom:129.632000pt;}
.y21_c00103{bottom:157.186667pt;}
.y20_c00103{bottom:185.026667pt;}
.y1f_c00103{bottom:212.546667pt;}
.y1e_c00103{bottom:248.093333pt;}
.y1d_c00103{bottom:283.613333pt;}
.y1c_c00103{bottom:319.453333pt;}
.y1b_c00103{bottom:355.013333pt;}
.y1a_c00103{bottom:390.533333pt;}
.y19_c00103{bottom:426.053333pt;}
.y18_c00103{bottom:453.893333pt;}
.y17_c00103{bottom:481.440000pt;}
.y16_c00103{bottom:508.960000pt;}
.y15_c00103{bottom:536.480000pt;}
.y14_c00103{bottom:572.346667pt;}
.y13_c00103{bottom:607.866667pt;}
.y12_c00103{bottom:635.386667pt;}
.y11_c00103{bottom:662.906667pt;}
.y10_c00103{bottom:690.786667pt;}
.yf_c00103{bottom:718.306667pt;}
.ye_c00103{bottom:745.826667pt;}
.yd_c00103{bottom:773.346667pt;}
.yc_c00103{bottom:809.213333pt;}
.yb_c00103{bottom:836.733333pt;}
.ya_c00103{bottom:864.253333pt;}
.y9_c00103{bottom:891.773333pt;}
.y8_c00103{bottom:919.653333pt;}
.y7_c00103{bottom:947.173333pt;}
.y2_c00103{bottom:989.413333pt;}
.h2_c00103{height:18.586667pt;}
.h3_c00103{height:36.796000pt;}
.h1_c00103{height:57.375000pt;}
.h5_c00103{height:62.781250pt;}
.h4_c00103{height:62.812500pt;}
.h0_c00103{height:1056.000000pt;}
.w1_c00103{width:7.346667pt;}
.w2_c00103{width:589.640000pt;}
.w0_c00103{width:816.000000pt;}
.x0_c00103{left:0.000000pt;}
.x3_c00103{left:113.324000pt;}
.x1_c00103{left:137.346667pt;}
.x6_c00103{left:151.106667pt;}
.x4_c00103{left:158.786667pt;}
.x5_c00103{left:160.706667pt;}
.x2_c00103{left:695.613333pt;}
}





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

.ir_c00104:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00104;src:url('chunks/assets/font_940bdcd2b42b0e7ac6306b39.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_88651235fa2d44fa4ed21473.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_45b7d95e75c06c33530323cc.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;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_c00104;src:url('chunks/assets/font_f6fac9c6f1c2204748a04437.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_380149ce7df3ce55844d3e93.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00104;src:url('chunks/assets/font_16aaaebab3ab8fc922669147.woff2')format("woff");}.ff6_c00104{font-family:ff6_c00104;line-height:1.117188;font-style:normal;font-weight: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_c00104;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00104{font-family:ff7_c00104;line-height:1.311035;font-style:normal;font-weight: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_c00104;src:url('chunks/assets/font_9e372fe385e7f1cd426ccc47.woff2')format("woff");}.ff8_c00104{font-family:ff8_c00104;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls12_c00104{letter-spacing:-1.944000px;}
.ls14_c00104{letter-spacing:-1.416000px;}
.ls11_c00104{letter-spacing:-1.380000px;}
.lsd_c00104{letter-spacing:-0.936000px;}
.lse_c00104{letter-spacing:-0.532800px;}
.ls18_c00104{letter-spacing:-0.466800px;}
.ls13_c00104{letter-spacing:-0.241800px;}
.lsb_c00104{letter-spacing:0.000000px;}
.ls17_c00104{letter-spacing:0.020400px;}
.lsf_c00104{letter-spacing:0.022800px;}
.lsc_c00104{letter-spacing:0.166800px;}
.ls1_c00104{letter-spacing:0.302400px;}
.ls15_c00104{letter-spacing:0.507000px;}
.ls16_c00104{letter-spacing:0.529800px;}
.ls3_c00104{letter-spacing:0.638400px;}
.ls10_c00104{letter-spacing:0.702000px;}
.ls0_c00104{letter-spacing:0.720000px;}
.ls2_c00104{letter-spacing:0.728640px;}
.ls9_c00104{letter-spacing:0.732000px;}
.lsa_c00104{letter-spacing:1.440000px;}
.ls6_c00104{letter-spacing:3.600000px;}
.ls4_c00104{letter-spacing:5.040000px;}
.ls5_c00104{letter-spacing:5.042759px;}
.ls7_c00104{letter-spacing:23.760000px;}
.ls8_c00104{letter-spacing:48.384000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00104{word-spacing:-72.000000px;}
.ws4_c00104{word-spacing:-60.480000px;}
.ws0_c00104{word-spacing:-18.000000px;}
.ws5_c00104{word-spacing:-15.822000px;}
.wsb_c00104{word-spacing:-15.627000px;}
.ws2_c00104{word-spacing:-15.286800px;}
.ws3_c00104{word-spacing:-15.142800px;}
.wsa_c00104{word-spacing:-15.140400px;}
.ws1_c00104{word-spacing:-15.120000px;}
.ws8_c00104{word-spacing:-14.878200px;}
.wsc_c00104{word-spacing:-14.653200px;}
.ws6_c00104{word-spacing:-13.740000px;}
.ws7_c00104{word-spacing:-13.176000px;}
.wsd_c00104{word-spacing:0.000000px;}
._f_c00104{margin-left:-3.240000px;}
._0_c00104{margin-left:-2.232000px;}
._3_c00104{margin-left:-1.008000px;}
._1_c00104{width:1.368000px;}
._2_c00104{width:2.520000px;}
._4_c00104{width:4.392000px;}
._5_c00104{width:5.772000px;}
._a_c00104{width:7.378802px;}
._12_c00104{width:8.601638px;}
._7_c00104{width:9.670193px;}
._6_c00104{width:10.705202px;}
._d_c00104{width:12.744000px;}
._c_c00104{width:14.184000px;}
._e_c00104{width:16.608000px;}
._10_c00104{width:20.088000px;}
._11_c00104{width:21.528000px;}
._9_c00104{width:22.742384px;}
._8_c00104{width:24.451200px;}
._b_c00104{width:105.840000px;}
._13_c00104{width:818.161920px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs3_c00104{font-size:38.880000px;}
.fs1_c00104{font-size:47.520000px;}
.fs2_c00104{font-size:60.480000px;}
.fs0_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.y6_c00104{bottom:4.675500px;}
.y3_c00104{bottom:4.680000px;}
.y5_c00104{bottom:25.195500px;}
.y4_c00104{bottom:32.800500px;}
.y1_c00104{bottom:57.996000px;}
.y27_c00104{bottom:130.716000px;}
.y26_c00104{bottom:147.996000px;}
.y25_c00104{bottom:164.955000px;}
.y24_c00104{bottom:171.795000px;}
.y23_c00104{bottom:182.955000px;}
.y22_c00104{bottom:217.515000px;}
.y21_c00104{bottom:252.435000px;}
.y20_c00104{bottom:287.385000px;}
.y1f_c00104{bottom:322.305000px;}
.y1e_c00104{bottom:357.225000px;}
.y1d_c00104{bottom:394.350000px;}
.y1c_c00104{bottom:425.310000px;}
.y1b_c00104{bottom:456.630000px;}
.y1a_c00104{bottom:487.590000px;}
.y19_c00104{bottom:518.580000px;}
.y18_c00104{bottom:549.540000px;}
.y17_c00104{bottom:580.860000px;}
.y16_c00104{bottom:620.820000px;}
.y15_c00104{bottom:658.650000px;}
.y14_c00104{bottom:684.570000px;}
.y13_c00104{bottom:710.130000px;}
.y12_c00104{bottom:745.050000px;}
.y11_c00104{bottom:771.015000px;}
.y10_c00104{bottom:796.935000px;}
.yf_c00104{bottom:831.855000px;}
.ye_c00104{bottom:866.775000px;}
.yd_c00104{bottom:892.725000px;}
.yc_c00104{bottom:927.645000px;}
.yb_c00104{bottom:962.205000px;}
.ya_c00104{bottom:997.125000px;}
.y8_c00104{bottom:1034.610000px;}
.y9_c00104{bottom:1042.890000px;}
.y7_c00104{bottom:1065.570000px;}
.y2_c00104{bottom:1113.090000px;}
.h2_c00104{height:20.910000px;}
.hb_c00104{height:34.855313px;}
.h3_c00104{height:41.395500px;}
.h6_c00104{height:46.638281px;}
.hc_c00104{height:54.219375px;}
.hd_c00104{height:54.514688px;}
.h8_c00104{height:59.328281px;}
.h7_c00104{height:59.357813px;}
.ha_c00104{height:60.952500px;}
.h1_c00104{height:64.546875px;}
.h9_c00104{height:70.628906px;}
.h4_c00104{height:70.664062px;}
.h5_c00104{height:1187.995500px;}
.h0_c00104{height:1188.000000px;}
.w1_c00104{width:8.265000px;}
.w2_c00104{width:663.345000px;}
.w3_c00104{width:917.997000px;}
.w0_c00104{width:918.000000px;}
.x0_c00104{left:0.000000px;}
.x3_c00104{left:127.489500px;}
.x8_c00104{left:137.556000px;}
.x1_c00104{left:154.515000px;}
.x6_c00104{left:169.995000px;}
.x7_c00104{left:343.590000px;}
.x4_c00104{left:687.132000px;}
.x5_c00104{left:699.375000px;}
.x2_c00104{left:782.565000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls12_c00104{letter-spacing:-1.728000pt;}
.ls14_c00104{letter-spacing:-1.258667pt;}
.ls11_c00104{letter-spacing:-1.226667pt;}
.lsd_c00104{letter-spacing:-0.832000pt;}
.lse_c00104{letter-spacing:-0.473600pt;}
.ls18_c00104{letter-spacing:-0.414933pt;}
.ls13_c00104{letter-spacing:-0.214933pt;}
.lsb_c00104{letter-spacing:0.000000pt;}
.ls17_c00104{letter-spacing:0.018133pt;}
.lsf_c00104{letter-spacing:0.020267pt;}
.lsc_c00104{letter-spacing:0.148267pt;}
.ls1_c00104{letter-spacing:0.268800pt;}
.ls15_c00104{letter-spacing:0.450667pt;}
.ls16_c00104{letter-spacing:0.470933pt;}
.ls3_c00104{letter-spacing:0.567467pt;}
.ls10_c00104{letter-spacing:0.624000pt;}
.ls0_c00104{letter-spacing:0.640000pt;}
.ls2_c00104{letter-spacing:0.647680pt;}
.ls9_c00104{letter-spacing:0.650667pt;}
.lsa_c00104{letter-spacing:1.280000pt;}
.ls6_c00104{letter-spacing:3.200000pt;}
.ls4_c00104{letter-spacing:4.480000pt;}
.ls5_c00104{letter-spacing:4.482452pt;}
.ls7_c00104{letter-spacing:21.120000pt;}
.ls8_c00104{letter-spacing:43.008000pt;}
.ws9_c00104{word-spacing:-64.000000pt;}
.ws4_c00104{word-spacing:-53.760000pt;}
.ws0_c00104{word-spacing:-16.000000pt;}
.ws5_c00104{word-spacing:-14.064000pt;}
.wsb_c00104{word-spacing:-13.890667pt;}
.ws2_c00104{word-spacing:-13.588267pt;}
.ws3_c00104{word-spacing:-13.460267pt;}
.wsa_c00104{word-spacing:-13.458133pt;}
.ws1_c00104{word-spacing:-13.440000pt;}
.ws8_c00104{word-spacing:-13.225067pt;}
.wsc_c00104{word-spacing:-13.025067pt;}
.ws6_c00104{word-spacing:-12.213333pt;}
.ws7_c00104{word-spacing:-11.712000pt;}
.wsd_c00104{word-spacing:0.000000pt;}
._f_c00104{margin-left:-2.880000pt;}
._0_c00104{margin-left:-1.984000pt;}
._3_c00104{margin-left:-0.896000pt;}
._1_c00104{width:1.216000pt;}
._2_c00104{width:2.240000pt;}
._4_c00104{width:3.904000pt;}
._5_c00104{width:5.130667pt;}
._a_c00104{width:6.558935pt;}
._12_c00104{width:7.645901pt;}
._7_c00104{width:8.595727pt;}
._6_c00104{width:9.515735pt;}
._d_c00104{width:11.328000pt;}
._c_c00104{width:12.608000pt;}
._e_c00104{width:14.762667pt;}
._10_c00104{width:17.856000pt;}
._11_c00104{width:19.136000pt;}
._9_c00104{width:20.215452pt;}
._8_c00104{width:21.734400pt;}
._b_c00104{width:94.080000pt;}
._13_c00104{width:727.255040pt;}
.fs3_c00104{font-size:34.560000pt;}
.fs1_c00104{font-size:42.240000pt;}
.fs2_c00104{font-size:53.760000pt;}
.fs0_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y6_c00104{bottom:4.156000pt;}
.y3_c00104{bottom:4.160000pt;}
.y5_c00104{bottom:22.396000pt;}
.y4_c00104{bottom:29.156000pt;}
.y1_c00104{bottom:51.552000pt;}
.y27_c00104{bottom:116.192000pt;}
.y26_c00104{bottom:131.552000pt;}
.y25_c00104{bottom:146.626667pt;}
.y24_c00104{bottom:152.706667pt;}
.y23_c00104{bottom:162.626667pt;}
.y22_c00104{bottom:193.346667pt;}
.y21_c00104{bottom:224.386667pt;}
.y20_c00104{bottom:255.453333pt;}
.y1f_c00104{bottom:286.493333pt;}
.y1e_c00104{bottom:317.533333pt;}
.y1d_c00104{bottom:350.533333pt;}
.y1c_c00104{bottom:378.053333pt;}
.y1b_c00104{bottom:405.893333pt;}
.y1a_c00104{bottom:433.413333pt;}
.y19_c00104{bottom:460.960000pt;}
.y18_c00104{bottom:488.480000pt;}
.y17_c00104{bottom:516.320000pt;}
.y16_c00104{bottom:551.840000pt;}
.y15_c00104{bottom:585.466667pt;}
.y14_c00104{bottom:608.506667pt;}
.y13_c00104{bottom:631.226667pt;}
.y12_c00104{bottom:662.266667pt;}
.y11_c00104{bottom:685.346667pt;}
.y10_c00104{bottom:708.386667pt;}
.yf_c00104{bottom:739.426667pt;}
.ye_c00104{bottom:770.466667pt;}
.yd_c00104{bottom:793.533333pt;}
.yc_c00104{bottom:824.573333pt;}
.yb_c00104{bottom:855.293333pt;}
.ya_c00104{bottom:886.333333pt;}
.y8_c00104{bottom:919.653333pt;}
.y9_c00104{bottom:927.013333pt;}
.y7_c00104{bottom:947.173333pt;}
.y2_c00104{bottom:989.413333pt;}
.h2_c00104{height:18.586667pt;}
.hb_c00104{height:30.982500pt;}
.h3_c00104{height:36.796000pt;}
.h6_c00104{height:41.456250pt;}
.hc_c00104{height:48.195000pt;}
.hd_c00104{height:48.457500pt;}
.h8_c00104{height:52.736250pt;}
.h7_c00104{height:52.762500pt;}
.ha_c00104{height:54.180000pt;}
.h1_c00104{height:57.375000pt;}
.h9_c00104{height:62.781250pt;}
.h4_c00104{height:62.812500pt;}
.h5_c00104{height:1055.996000pt;}
.h0_c00104{height:1056.000000pt;}
.w1_c00104{width:7.346667pt;}
.w2_c00104{width:589.640000pt;}
.w3_c00104{width:815.997333pt;}
.w0_c00104{width:816.000000pt;}
.x0_c00104{left:0.000000pt;}
.x3_c00104{left:113.324000pt;}
.x8_c00104{left:122.272000pt;}
.x1_c00104{left:137.346667pt;}
.x6_c00104{left:151.106667pt;}
.x7_c00104{left:305.413333pt;}
.x4_c00104{left:610.784000pt;}
.x5_c00104{left:621.666667pt;}
.x2_c00104{left:695.613333pt;}
}





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

.ir_c00105:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00105;src:url('chunks/assets/font_21262ac3c4ac0e548bae8334.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_e035c7ca233411906c054455.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00105;src:url('chunks/assets/font_bcccd2abaace597cada19e18.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00105;src:url('chunks/assets/font_02467bb754bddd479739d2d6.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;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_c00105;src:url('chunks/assets/font_16aaaebab3ab8fc922669147.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00105;src:url('chunks/assets/font_46c8a3fb64a7ed95761716c5.woff2')format("woff");}.ff6_c00105{font-family:ff6_c00105;line-height:1.104004;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_0efd92bf2494fd0b993b8880.woff2')format("woff");}.ff7_c00105{font-family:ff7_c00105;line-height:1.117188;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_896af646b80af3a2dfb27ace.woff2')format("woff");}.ff8_c00105{font-family:ff8_c00105;line-height:1.117188;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_7ca68acc0aee1b0e52106971.woff2')format("woff");}.ff9_c00105{font-family:ff9_c00105;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.lsc_c00105{letter-spacing:-1.416000px;}
.lsa_c00105{letter-spacing:-0.532800px;}
.ls9_c00105{letter-spacing:-0.466800px;}
.lsd_c00105{letter-spacing:-0.241800px;}
.ls8_c00105{letter-spacing:0.000000px;}
.lsb_c00105{letter-spacing:0.166800px;}
.ls7_c00105{letter-spacing:0.506880px;}
.lse_c00105{letter-spacing:0.529800px;}
.ls0_c00105{letter-spacing:0.720000px;}
.ls3_c00105{letter-spacing:0.728640px;}
.ls2_c00105{letter-spacing:0.732000px;}
.ls5_c00105{letter-spacing:0.740480px;}
.ls6_c00105{letter-spacing:0.740652px;}
.ls1_c00105{letter-spacing:48.384000px;}
.ls4_c00105{letter-spacing:1037.940000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00105{word-spacing:-72.000000px;}
.ws5_c00105{word-spacing:-60.480000px;}
.ws0_c00105{word-spacing:-18.000000px;}
.ws4_c00105{word-spacing:-15.286800px;}
.ws3_c00105{word-spacing:-15.120000px;}
.ws7_c00105{word-spacing:-14.878200px;}
.ws2_c00105{word-spacing:-14.653200px;}
.ws9_c00105{word-spacing:-14.587200px;}
.ws6_c00105{word-spacing:-13.704000px;}
.ws8_c00105{word-spacing:-12.600000px;}
.wsa_c00105{word-spacing:0.000000px;}
._7_c00105{margin-left:-2.736000px;}
._0_c00105{margin-left:-1.451399px;}
._1_c00105{width:1.390798px;}
._2_c00105{width:2.963399px;}
._4_c00105{width:3.991801px;}
._3_c00105{width:5.382599px;}
._10_c00105{width:7.557002px;}
._9_c00105{width:8.969990px;}
._8_c00105{width:10.261803px;}
._c_c00105{width:12.073202px;}
._d_c00105{width:13.088394px;}
._f_c00105{width:14.320788px;}
._e_c00105{width:15.506404px;}
._a_c00105{width:19.072207px;}
._5_c00105{width:20.088000px;}
._6_c00105{width:22.119005px;}
._b_c00105{width:105.840000px;}
.fc0_c00105{color:rgb(0,0,0);}
.fs3_c00105{font-size:38.880000px;}
.fs2_c00105{font-size:47.520000px;}
.fs1_c00105{font-size:60.480000px;}
.fs0_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y6_c00105{bottom:4.675500px;}
.y3_c00105{bottom:4.680000px;}
.y5_c00105{bottom:25.195500px;}
.y4_c00105{bottom:32.800500px;}
.y1_c00105{bottom:57.996000px;}
.y27_c00105{bottom:130.716000px;}
.y26_c00105{bottom:147.996000px;}
.y25_c00105{bottom:164.955000px;}
.y24_c00105{bottom:171.795000px;}
.y23_c00105{bottom:182.955000px;}
.y22_c00105{bottom:222.555000px;}
.y21_c00105{bottom:257.475000px;}
.y20_c00105{bottom:292.425000px;}
.y1f_c00105{bottom:327.345000px;}
.y1e_c00105{bottom:362.265000px;}
.y1d_c00105{bottom:397.230000px;}
.y1c_c00105{bottom:434.310000px;}
.y1a_c00105{bottom:465.270000px;}
.y1b_c00105{bottom:473.550000px;}
.y19_c00105{bottom:496.230000px;}
.y18_c00105{bottom:527.580000px;}
.y17_c00105{bottom:558.540000px;}
.y16_c00105{bottom:589.500000px;}
.y15_c00105{bottom:620.460000px;}
.y14_c00105{bottom:660.810000px;}
.y13_c00105{bottom:691.770000px;}
.y12_c00105{bottom:731.730000px;}
.y11_c00105{bottom:762.735000px;}
.y10_c00105{bottom:793.695000px;}
.yf_c00105{bottom:825.015000px;}
.ye_c00105{bottom:855.975000px;}
.yd_c00105{bottom:886.965000px;}
.yc_c00105{bottom:917.925000px;}
.yb_c00105{bottom:955.725000px;}
.ya_c00105{bottom:981.645000px;}
.y9_c00105{bottom:1007.565000px;}
.y8_c00105{bottom:1033.530000px;}
.y7_c00105{bottom:1068.450000px;}
.y2_c00105{bottom:1113.090000px;}
.h2_c00105{height:20.910000px;}
.ha_c00105{height:34.855313px;}
.h3_c00105{height:41.395500px;}
.h9_c00105{height:46.638281px;}
.hc_c00105{height:54.219375px;}
.hb_c00105{height:54.514688px;}
.h5_c00105{height:59.328281px;}
.h4_c00105{height:59.357813px;}
.h1_c00105{height:64.546875px;}
.h7_c00105{height:70.628906px;}
.h6_c00105{height:70.664062px;}
.h8_c00105{height:1187.995500px;}
.h0_c00105{height:1188.000000px;}
.w1_c00105{width:8.265000px;}
.w2_c00105{width:663.345000px;}
.w3_c00105{width:917.997000px;}
.w0_c00105{width:918.000000px;}
.x0_c00105{left:0.000000px;}
.x3_c00105{left:127.489500px;}
.x9_c00105{left:137.556000px;}
.x1_c00105{left:154.515000px;}
.x4_c00105{left:169.995000px;}
.x5_c00105{left:181.515000px;}
.x8_c00105{left:343.590000px;}
.x6_c00105{left:576.207000px;}
.x7_c00105{left:588.450000px;}
.x2_c00105{left:782.565000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.lsc_c00105{letter-spacing:-1.258667pt;}
.lsa_c00105{letter-spacing:-0.473600pt;}
.ls9_c00105{letter-spacing:-0.414933pt;}
.lsd_c00105{letter-spacing:-0.214933pt;}
.ls8_c00105{letter-spacing:0.000000pt;}
.lsb_c00105{letter-spacing:0.148267pt;}
.ls7_c00105{letter-spacing:0.450560pt;}
.lse_c00105{letter-spacing:0.470933pt;}
.ls0_c00105{letter-spacing:0.640000pt;}
.ls3_c00105{letter-spacing:0.647680pt;}
.ls2_c00105{letter-spacing:0.650667pt;}
.ls5_c00105{letter-spacing:0.658204pt;}
.ls6_c00105{letter-spacing:0.658357pt;}
.ls1_c00105{letter-spacing:43.008000pt;}
.ls4_c00105{letter-spacing:922.613333pt;}
.ws1_c00105{word-spacing:-64.000000pt;}
.ws5_c00105{word-spacing:-53.760000pt;}
.ws0_c00105{word-spacing:-16.000000pt;}
.ws4_c00105{word-spacing:-13.588267pt;}
.ws3_c00105{word-spacing:-13.440000pt;}
.ws7_c00105{word-spacing:-13.225067pt;}
.ws2_c00105{word-spacing:-13.025067pt;}
.ws9_c00105{word-spacing:-12.966400pt;}
.ws6_c00105{word-spacing:-12.181333pt;}
.ws8_c00105{word-spacing:-11.200000pt;}
.wsa_c00105{word-spacing:0.000000pt;}
._7_c00105{margin-left:-2.432000pt;}
._0_c00105{margin-left:-1.290132pt;}
._1_c00105{width:1.236265pt;}
._2_c00105{width:2.634132pt;}
._4_c00105{width:3.548268pt;}
._3_c00105{width:4.784532pt;}
._10_c00105{width:6.717335pt;}
._9_c00105{width:7.973325pt;}
._8_c00105{width:9.121603pt;}
._c_c00105{width:10.731735pt;}
._d_c00105{width:11.634128pt;}
._f_c00105{width:12.729590pt;}
._e_c00105{width:13.783470pt;}
._a_c00105{width:16.953073pt;}
._5_c00105{width:17.856000pt;}
._6_c00105{width:19.661338pt;}
._b_c00105{width:94.080000pt;}
.fs3_c00105{font-size:34.560000pt;}
.fs2_c00105{font-size:42.240000pt;}
.fs1_c00105{font-size:53.760000pt;}
.fs0_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y6_c00105{bottom:4.156000pt;}
.y3_c00105{bottom:4.160000pt;}
.y5_c00105{bottom:22.396000pt;}
.y4_c00105{bottom:29.156000pt;}
.y1_c00105{bottom:51.552000pt;}
.y27_c00105{bottom:116.192000pt;}
.y26_c00105{bottom:131.552000pt;}
.y25_c00105{bottom:146.626667pt;}
.y24_c00105{bottom:152.706667pt;}
.y23_c00105{bottom:162.626667pt;}
.y22_c00105{bottom:197.826667pt;}
.y21_c00105{bottom:228.866667pt;}
.y20_c00105{bottom:259.933333pt;}
.y1f_c00105{bottom:290.973333pt;}
.y1e_c00105{bottom:322.013333pt;}
.y1d_c00105{bottom:353.093333pt;}
.y1c_c00105{bottom:386.053333pt;}
.y1a_c00105{bottom:413.573333pt;}
.y1b_c00105{bottom:420.933333pt;}
.y19_c00105{bottom:441.093333pt;}
.y18_c00105{bottom:468.960000pt;}
.y17_c00105{bottom:496.480000pt;}
.y16_c00105{bottom:524.000000pt;}
.y15_c00105{bottom:551.520000pt;}
.y14_c00105{bottom:587.386667pt;}
.y13_c00105{bottom:614.906667pt;}
.y12_c00105{bottom:650.426667pt;}
.y11_c00105{bottom:677.986667pt;}
.y10_c00105{bottom:705.506667pt;}
.yf_c00105{bottom:733.346667pt;}
.ye_c00105{bottom:760.866667pt;}
.yd_c00105{bottom:788.413333pt;}
.yc_c00105{bottom:815.933333pt;}
.yb_c00105{bottom:849.533333pt;}
.ya_c00105{bottom:872.573333pt;}
.y9_c00105{bottom:895.613333pt;}
.y8_c00105{bottom:918.693333pt;}
.y7_c00105{bottom:949.733333pt;}
.y2_c00105{bottom:989.413333pt;}
.h2_c00105{height:18.586667pt;}
.ha_c00105{height:30.982500pt;}
.h3_c00105{height:36.796000pt;}
.h9_c00105{height:41.456250pt;}
.hc_c00105{height:48.195000pt;}
.hb_c00105{height:48.457500pt;}
.h5_c00105{height:52.736250pt;}
.h4_c00105{height:52.762500pt;}
.h1_c00105{height:57.375000pt;}
.h7_c00105{height:62.781250pt;}
.h6_c00105{height:62.812500pt;}
.h8_c00105{height:1055.996000pt;}
.h0_c00105{height:1056.000000pt;}
.w1_c00105{width:7.346667pt;}
.w2_c00105{width:589.640000pt;}
.w3_c00105{width:815.997333pt;}
.w0_c00105{width:816.000000pt;}
.x0_c00105{left:0.000000pt;}
.x3_c00105{left:113.324000pt;}
.x9_c00105{left:122.272000pt;}
.x1_c00105{left:137.346667pt;}
.x4_c00105{left:151.106667pt;}
.x5_c00105{left:161.346667pt;}
.x8_c00105{left:305.413333pt;}
.x6_c00105{left:512.184000pt;}
.x7_c00105{left:523.066667pt;}
.x2_c00105{left:695.613333pt;}
}





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

.ir_c00106:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00106;src:url('chunks/assets/font_421a54190f510f2934a477b4.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_e3df49a7fe4ef36339cbf6ec.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_311dab893526f8f205e4ae92.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_32b014db80ff890d0b882e23.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00106;src:url('chunks/assets/font_ff63a24caddf790517e6eacb.woff2')format("woff");}.ff6_c00106{font-family:ff6_c00106;line-height:1.117188;font-style:normal;font-weight: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_c00106;src:url('chunks/assets/font_203265f502d9414aefd7b264.woff2')format("woff");}.ff7_c00106{font-family:ff7_c00106;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls2_c00106{letter-spacing:0.000000px;}
.ls1_c00106{letter-spacing:0.506880px;}
.ls4_c00106{letter-spacing:0.507000px;}
.ls0_c00106{letter-spacing:0.720000px;}
.ls3_c00106{letter-spacing:0.792000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00106{word-spacing:-72.000000px;}
.ws5_c00106{word-spacing:-60.480000px;}
.ws1_c00106{word-spacing:-18.792000px;}
.ws0_c00106{word-spacing:-18.000000px;}
.ws4_c00106{word-spacing:-15.627000px;}
.ws3_c00106{word-spacing:-15.120000px;}
.ws6_c00106{word-spacing:0.000000px;}
._8_c00106{margin-left:-3.528000px;}
._1_c00106{margin-left:-1.512000px;}
._0_c00106{width:1.633202px;}
._2_c00106{width:2.961585px;}
._a_c00106{width:4.464000px;}
._3_c00106{width:5.926798px;}
._7_c00106{width:6.984000px;}
._6_c00106{width:8.161202px;}
._f_c00106{width:9.268788px;}
._10_c00106{width:10.399212px;}
._4_c00106{width:11.974798px;}
._5_c00106{width:13.066220px;}
._9_c00106{width:14.218174px;}
._d_c00106{width:16.323641px;}
._e_c00106{width:19.390798px;}
._b_c00106{width:23.631587px;}
._c_c00106{width:24.694836px;}
._11_c00106{width:25.704000px;}
._12_c00106{width:27.519587px;}
.fc0_c00106{color:rgb(0,0,0);}
.fs3_c00106{font-size:38.880000px;}
.fs2_c00106{font-size:47.520000px;}
.fs1_c00106{font-size:60.480000px;}
.fs0_c00106{font-size:72.000000px;}
.y0_c00106{bottom:0.000000px;}
.y6_c00106{bottom:4.675500px;}
.y3_c00106{bottom:4.680000px;}
.y5_c00106{bottom:25.195500px;}
.y4_c00106{bottom:32.800500px;}
.y1_c00106{bottom:57.996000px;}
.y2b_c00106{bottom:130.716000px;}
.y2a_c00106{bottom:147.996000px;}
.y29_c00106{bottom:164.955000px;}
.y28_c00106{bottom:182.235000px;}
.y27_c00106{bottom:199.515000px;}
.y26_c00106{bottom:216.795000px;}
.y25_c00106{bottom:234.075000px;}
.y24_c00106{bottom:251.355000px;}
.y23_c00106{bottom:268.635000px;}
.y22_c00106{bottom:285.945000px;}
.y21_c00106{bottom:292.785000px;}
.y20_c00106{bottom:303.585000px;}
.y1f_c00106{bottom:344.985000px;}
.y1e_c00106{bottom:375.945000px;}
.y1d_c00106{bottom:406.950000px;}
.y1c_c00106{bottom:446.910000px;}
.y1b_c00106{bottom:487.230000px;}
.y1a_c00106{bottom:518.220000px;}
.y19_c00106{bottom:549.180000px;}
.y17_c00106{bottom:580.140000px;}
.y18_c00106{bottom:588.420000px;}
.y16_c00106{bottom:611.460000px;}
.y15_c00106{bottom:642.450000px;}
.y14_c00106{bottom:673.410000px;}
.y13_c00106{bottom:704.370000px;}
.y12_c00106{bottom:735.690000px;}
.y11_c00106{bottom:766.695000px;}
.y10_c00106{bottom:797.655000px;}
.yf_c00106{bottom:828.615000px;}
.ye_c00106{bottom:859.935000px;}
.yd_c00106{bottom:890.925000px;}
.yc_c00106{bottom:921.885000px;}
.yb_c00106{bottom:952.845000px;}
.ya_c00106{bottom:990.645000px;}
.y9_c00106{bottom:1016.610000px;}
.y8_c00106{bottom:1042.530000px;}
.y7_c00106{bottom:1068.450000px;}
.y2_c00106{bottom:1113.090000px;}
.h2_c00106{height:20.910000px;}
.h9_c00106{height:34.855313px;}
.h3_c00106{height:41.395500px;}
.h7_c00106{height:46.638281px;}
.hb_c00106{height:54.219375px;}
.ha_c00106{height:54.514688px;}
.h4_c00106{height:59.328281px;}
.hc_c00106{height:59.357813px;}
.h1_c00106{height:64.546875px;}
.h8_c00106{height:70.628906px;}
.h5_c00106{height:70.664062px;}
.h6_c00106{height:1187.995500px;}
.h0_c00106{height:1188.000000px;}
.w1_c00106{width:8.265000px;}
.w2_c00106{width:663.345000px;}
.w3_c00106{width:917.997000px;}
.w0_c00106{width:918.000000px;}
.x0_c00106{left:0.000000px;}
.x3_c00106{left:127.489500px;}
.x9_c00106{left:137.556000px;}
.x1_c00106{left:154.515000px;}
.x4_c00106{left:169.995000px;}
.x7_c00106{left:180.795000px;}
.x8_c00106{left:343.590000px;}
.x5_c00106{left:469.257000px;}
.x6_c00106{left:481.500000px;}
.x2_c00106{left:782.565000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls2_c00106{letter-spacing:0.000000pt;}
.ls1_c00106{letter-spacing:0.450560pt;}
.ls4_c00106{letter-spacing:0.450667pt;}
.ls0_c00106{letter-spacing:0.640000pt;}
.ls3_c00106{letter-spacing:0.704000pt;}
.ws2_c00106{word-spacing:-64.000000pt;}
.ws5_c00106{word-spacing:-53.760000pt;}
.ws1_c00106{word-spacing:-16.704000pt;}
.ws0_c00106{word-spacing:-16.000000pt;}
.ws4_c00106{word-spacing:-13.890667pt;}
.ws3_c00106{word-spacing:-13.440000pt;}
.ws6_c00106{word-spacing:0.000000pt;}
._8_c00106{margin-left:-3.136000pt;}
._1_c00106{margin-left:-1.344000pt;}
._0_c00106{width:1.451735pt;}
._2_c00106{width:2.632520pt;}
._a_c00106{width:3.968000pt;}
._3_c00106{width:5.268265pt;}
._7_c00106{width:6.208000pt;}
._6_c00106{width:7.254402pt;}
._f_c00106{width:8.238923pt;}
._10_c00106{width:9.243744pt;}
._4_c00106{width:10.644265pt;}
._5_c00106{width:11.614418pt;}
._9_c00106{width:12.638377pt;}
._d_c00106{width:14.509903pt;}
._e_c00106{width:17.236265pt;}
._b_c00106{width:21.005855pt;}
._c_c00106{width:21.950966pt;}
._11_c00106{width:22.848000pt;}
._12_c00106{width:24.461855pt;}
.fs3_c00106{font-size:34.560000pt;}
.fs2_c00106{font-size:42.240000pt;}
.fs1_c00106{font-size:53.760000pt;}
.fs0_c00106{font-size:64.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y6_c00106{bottom:4.156000pt;}
.y3_c00106{bottom:4.160000pt;}
.y5_c00106{bottom:22.396000pt;}
.y4_c00106{bottom:29.156000pt;}
.y1_c00106{bottom:51.552000pt;}
.y2b_c00106{bottom:116.192000pt;}
.y2a_c00106{bottom:131.552000pt;}
.y29_c00106{bottom:146.626667pt;}
.y28_c00106{bottom:161.986667pt;}
.y27_c00106{bottom:177.346667pt;}
.y26_c00106{bottom:192.706667pt;}
.y25_c00106{bottom:208.066667pt;}
.y24_c00106{bottom:223.426667pt;}
.y23_c00106{bottom:238.786667pt;}
.y22_c00106{bottom:254.173333pt;}
.y21_c00106{bottom:260.253333pt;}
.y20_c00106{bottom:269.853333pt;}
.y1f_c00106{bottom:306.653333pt;}
.y1e_c00106{bottom:334.173333pt;}
.y1d_c00106{bottom:361.733333pt;}
.y1c_c00106{bottom:397.253333pt;}
.y1b_c00106{bottom:433.093333pt;}
.y1a_c00106{bottom:460.640000pt;}
.y19_c00106{bottom:488.160000pt;}
.y17_c00106{bottom:515.680000pt;}
.y18_c00106{bottom:523.040000pt;}
.y16_c00106{bottom:543.520000pt;}
.y15_c00106{bottom:571.066667pt;}
.y14_c00106{bottom:598.586667pt;}
.y13_c00106{bottom:626.106667pt;}
.y12_c00106{bottom:653.946667pt;}
.y11_c00106{bottom:681.506667pt;}
.y10_c00106{bottom:709.026667pt;}
.yf_c00106{bottom:736.546667pt;}
.ye_c00106{bottom:764.386667pt;}
.yd_c00106{bottom:791.933333pt;}
.yc_c00106{bottom:819.453333pt;}
.yb_c00106{bottom:846.973333pt;}
.ya_c00106{bottom:880.573333pt;}
.y9_c00106{bottom:903.653333pt;}
.y8_c00106{bottom:926.693333pt;}
.y7_c00106{bottom:949.733333pt;}
.y2_c00106{bottom:989.413333pt;}
.h2_c00106{height:18.586667pt;}
.h9_c00106{height:30.982500pt;}
.h3_c00106{height:36.796000pt;}
.h7_c00106{height:41.456250pt;}
.hb_c00106{height:48.195000pt;}
.ha_c00106{height:48.457500pt;}
.h4_c00106{height:52.736250pt;}
.hc_c00106{height:52.762500pt;}
.h1_c00106{height:57.375000pt;}
.h8_c00106{height:62.781250pt;}
.h5_c00106{height:62.812500pt;}
.h6_c00106{height:1055.996000pt;}
.h0_c00106{height:1056.000000pt;}
.w1_c00106{width:7.346667pt;}
.w2_c00106{width:589.640000pt;}
.w3_c00106{width:815.997333pt;}
.w0_c00106{width:816.000000pt;}
.x0_c00106{left:0.000000pt;}
.x3_c00106{left:113.324000pt;}
.x9_c00106{left:122.272000pt;}
.x1_c00106{left:137.346667pt;}
.x4_c00106{left:151.106667pt;}
.x7_c00106{left:160.706667pt;}
.x8_c00106{left:305.413333pt;}
.x5_c00106{left:417.117333pt;}
.x6_c00106{left:428.000000pt;}
.x2_c00106{left:695.613333pt;}
}





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

.ir_c00107:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00107;src:url('chunks/assets/font_7c5d306bd9e637a294da0ea6.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_85a5d3f52e62b8b8cee3ccc2.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_ba1c424f273e20c1fe0d5ffd.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;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_c00107;src:url('chunks/assets/font_5fad8c4de69f1f4910b993c8.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00107;src:url('chunks/assets/font_987dc6c2aba5ba099bfd6017.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00107;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00107{font-family:ff6_c00107;line-height:1.311035;font-style:normal;font-weight: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_c00107;src:url('chunks/assets/font_16aaaebab3ab8fc922669147.woff2')format("woff");}.ff7_c00107{font-family:ff7_c00107;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls9_c00107{letter-spacing:-0.720000px;}
.ls7_c00107{letter-spacing:0.000000px;}
.ls5_c00107{letter-spacing:0.120000px;}
.lsa_c00107{letter-spacing:0.288000px;}
.ls0_c00107{letter-spacing:0.486720px;}
.ls8_c00107{letter-spacing:0.529800px;}
.ls1_c00107{letter-spacing:0.720000px;}
.ls4_c00107{letter-spacing:0.732000px;}
.ls6_c00107{letter-spacing:9.360000px;}
.ls2_c00107{letter-spacing:18.000000px;}
.ls3_c00107{letter-spacing:48.384000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00107{word-spacing:-72.000000px;}
.ws0_c00107{word-spacing:-60.480000px;}
.ws2_c00107{word-spacing:-18.000000px;}
.ws3_c00107{word-spacing:0.000000px;}
._a_c00107{margin-left:-3.384000px;}
._0_c00107{margin-left:-2.232000px;}
._3_c00107{margin-left:-1.080000px;}
._1_c00107{width:1.368000px;}
._4_c00107{width:3.384000px;}
._e_c00107{width:4.596000px;}
._6_c00107{width:5.603976px;}
._c_c00107{width:7.272000px;}
._d_c00107{width:8.496000px;}
._7_c00107{width:9.864000px;}
._9_c00107{width:11.160000px;}
._8_c00107{width:12.816000px;}
._10_c00107{width:14.112000px;}
._5_c00107{width:15.624000px;}
._2_c00107{width:16.776000px;}
._b_c00107{width:20.016000px;}
._f_c00107{width:105.840000px;}
.fc0_c00107{color:rgb(0,0,0);}
.fs3_c00107{font-size:38.880000px;}
.fs2_c00107{font-size:47.520000px;}
.fs1_c00107{font-size:60.480000px;}
.fs0_c00107{font-size:72.000000px;}
.y0_c00107{bottom:0.000000px;}
.y6_c00107{bottom:4.675500px;}
.y3_c00107{bottom:4.680000px;}
.y5_c00107{bottom:25.195500px;}
.y4_c00107{bottom:32.800500px;}
.y1_c00107{bottom:57.996000px;}
.y23_c00107{bottom:130.716000px;}
.y22_c00107{bottom:147.996000px;}
.y21_c00107{bottom:164.955000px;}
.y20_c00107{bottom:171.795000px;}
.y1f_c00107{bottom:182.955000px;}
.y1e_c00107{bottom:222.915000px;}
.y1c_c00107{bottom:262.875000px;}
.y1d_c00107{bottom:271.155000px;}
.y1b_c00107{bottom:294.225000px;}
.y1a_c00107{bottom:325.185000px;}
.y19_c00107{bottom:356.145000px;}
.y18_c00107{bottom:387.105000px;}
.y17_c00107{bottom:418.470000px;}
.y16_c00107{bottom:454.110000px;}
.y15_c00107{bottom:598.860000px;}
.y14_c00107{bottom:638.820000px;}
.y13_c00107{bottom:669.810000px;}
.y12_c00107{bottom:700.770000px;}
.y11_c00107{bottom:732.090000px;}
.y10_c00107{bottom:763.095000px;}
.yf_c00107{bottom:794.055000px;}
.ye_c00107{bottom:831.855000px;}
.yd_c00107{bottom:857.775000px;}
.yc_c00107{bottom:892.725000px;}
.yb_c00107{bottom:927.645000px;}
.ya_c00107{bottom:962.205000px;}
.y9_c00107{bottom:997.125000px;}
.y8_c00107{bottom:1034.610000px;}
.y7_c00107{bottom:1065.570000px;}
.y2_c00107{bottom:1113.090000px;}
.h2_c00107{height:20.910000px;}
.hb_c00107{height:38.158594px;}
.h3_c00107{height:41.395500px;}
.ha_c00107{height:46.638281px;}
.h7_c00107{height:59.328281px;}
.h5_c00107{height:59.357813px;}
.h6_c00107{height:60.952500px;}
.h1_c00107{height:64.546875px;}
.h4_c00107{height:70.664062px;}
.h8_c00107{height:72.562500px;}
.h9_c00107{height:1187.995500px;}
.h0_c00107{height:1188.000000px;}
.w1_c00107{width:8.265000px;}
.w2_c00107{width:663.345000px;}
.w3_c00107{width:917.997000px;}
.w0_c00107{width:918.000000px;}
.x0_c00107{left:0.000000px;}
.x3_c00107{left:127.489500px;}
.xa_c00107{left:137.556000px;}
.x1_c00107{left:154.515000px;}
.x4_c00107{left:169.995000px;}
.x6_c00107{left:178.635000px;}
.x9_c00107{left:343.590000px;}
.x7_c00107{left:478.617000px;}
.x8_c00107{left:490.860000px;}
.x5_c00107{left:764.205000px;}
.x2_c00107{left:782.565000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls9_c00107{letter-spacing:-0.640000pt;}
.ls7_c00107{letter-spacing:0.000000pt;}
.ls5_c00107{letter-spacing:0.106667pt;}
.lsa_c00107{letter-spacing:0.256000pt;}
.ls0_c00107{letter-spacing:0.432640pt;}
.ls8_c00107{letter-spacing:0.470933pt;}
.ls1_c00107{letter-spacing:0.640000pt;}
.ls4_c00107{letter-spacing:0.650667pt;}
.ls6_c00107{letter-spacing:8.320000pt;}
.ls2_c00107{letter-spacing:16.000000pt;}
.ls3_c00107{letter-spacing:43.008000pt;}
.ws1_c00107{word-spacing:-64.000000pt;}
.ws0_c00107{word-spacing:-53.760000pt;}
.ws2_c00107{word-spacing:-16.000000pt;}
.ws3_c00107{word-spacing:0.000000pt;}
._a_c00107{margin-left:-3.008000pt;}
._0_c00107{margin-left:-1.984000pt;}
._3_c00107{margin-left:-0.960000pt;}
._1_c00107{width:1.216000pt;}
._4_c00107{width:3.008000pt;}
._e_c00107{width:4.085333pt;}
._6_c00107{width:4.981312pt;}
._c_c00107{width:6.464000pt;}
._d_c00107{width:7.552000pt;}
._7_c00107{width:8.768000pt;}
._9_c00107{width:9.920000pt;}
._8_c00107{width:11.392000pt;}
._10_c00107{width:12.544000pt;}
._5_c00107{width:13.888000pt;}
._2_c00107{width:14.912000pt;}
._b_c00107{width:17.792000pt;}
._f_c00107{width:94.080000pt;}
.fs3_c00107{font-size:34.560000pt;}
.fs2_c00107{font-size:42.240000pt;}
.fs1_c00107{font-size:53.760000pt;}
.fs0_c00107{font-size:64.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y6_c00107{bottom:4.156000pt;}
.y3_c00107{bottom:4.160000pt;}
.y5_c00107{bottom:22.396000pt;}
.y4_c00107{bottom:29.156000pt;}
.y1_c00107{bottom:51.552000pt;}
.y23_c00107{bottom:116.192000pt;}
.y22_c00107{bottom:131.552000pt;}
.y21_c00107{bottom:146.626667pt;}
.y20_c00107{bottom:152.706667pt;}
.y1f_c00107{bottom:162.626667pt;}
.y1e_c00107{bottom:198.146667pt;}
.y1c_c00107{bottom:233.666667pt;}
.y1d_c00107{bottom:241.026667pt;}
.y1b_c00107{bottom:261.533333pt;}
.y1a_c00107{bottom:289.053333pt;}
.y19_c00107{bottom:316.573333pt;}
.y18_c00107{bottom:344.093333pt;}
.y17_c00107{bottom:371.973333pt;}
.y16_c00107{bottom:403.653333pt;}
.y15_c00107{bottom:532.320000pt;}
.y14_c00107{bottom:567.840000pt;}
.y13_c00107{bottom:595.386667pt;}
.y12_c00107{bottom:622.906667pt;}
.y11_c00107{bottom:650.746667pt;}
.y10_c00107{bottom:678.306667pt;}
.yf_c00107{bottom:705.826667pt;}
.ye_c00107{bottom:739.426667pt;}
.yd_c00107{bottom:762.466667pt;}
.yc_c00107{bottom:793.533333pt;}
.yb_c00107{bottom:824.573333pt;}
.ya_c00107{bottom:855.293333pt;}
.y9_c00107{bottom:886.333333pt;}
.y8_c00107{bottom:919.653333pt;}
.y7_c00107{bottom:947.173333pt;}
.y2_c00107{bottom:989.413333pt;}
.h2_c00107{height:18.586667pt;}
.hb_c00107{height:33.918750pt;}
.h3_c00107{height:36.796000pt;}
.ha_c00107{height:41.456250pt;}
.h7_c00107{height:52.736250pt;}
.h5_c00107{height:52.762500pt;}
.h6_c00107{height:54.180000pt;}
.h1_c00107{height:57.375000pt;}
.h4_c00107{height:62.812500pt;}
.h8_c00107{height:64.500000pt;}
.h9_c00107{height:1055.996000pt;}
.h0_c00107{height:1056.000000pt;}
.w1_c00107{width:7.346667pt;}
.w2_c00107{width:589.640000pt;}
.w3_c00107{width:815.997333pt;}
.w0_c00107{width:816.000000pt;}
.x0_c00107{left:0.000000pt;}
.x3_c00107{left:113.324000pt;}
.xa_c00107{left:122.272000pt;}
.x1_c00107{left:137.346667pt;}
.x4_c00107{left:151.106667pt;}
.x6_c00107{left:158.786667pt;}
.x9_c00107{left:305.413333pt;}
.x7_c00107{left:425.437333pt;}
.x8_c00107{left:436.320000pt;}
.x5_c00107{left:679.293333pt;}
.x2_c00107{left:695.613333pt;}
}





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

.ir_c00108:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00108;src:url('chunks/assets/font_96f7f95ad50b61d15557340d.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_13c85b41d4251a53d7607255.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_7c572b06825df0393e886b2e.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_35b68d6ef74f13685be28684.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;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_c00108;src:url('chunks/assets/font_7231f8c527e396ce99cbabb8.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00108;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6_c00108{font-family:ff6_c00108;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_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls12_c00108{letter-spacing:-1.416000px;}
.ls10_c00108{letter-spacing:-0.972000px;}
.lsf_c00108{letter-spacing:-0.720000px;}
.ls13_c00108{letter-spacing:-0.302400px;}
.lsc_c00108{letter-spacing:-0.288000px;}
.ls14_c00108{letter-spacing:-0.241800px;}
.ls16_c00108{letter-spacing:-0.020400px;}
.lsb_c00108{letter-spacing:0.000000px;}
.ls11_c00108{letter-spacing:0.060600px;}
.lse_c00108{letter-spacing:0.466800px;}
.ls15_c00108{letter-spacing:0.518400px;}
.lsa_c00108{letter-spacing:0.518880px;}
.ls7_c00108{letter-spacing:0.524400px;}
.lsd_c00108{letter-spacing:0.529800px;}
.ls0_c00108{letter-spacing:0.720000px;}
.ls9_c00108{letter-spacing:0.740160px;}
.ls1_c00108{letter-spacing:2.160000px;}
.ls2_c00108{letter-spacing:2.180197px;}
.ls3_c00108{letter-spacing:3.600000px;}
.ls4_c00108{letter-spacing:3.720000px;}
.ls6_c00108{letter-spacing:5.040000px;}
.ls5_c00108{letter-spacing:5.049008px;}
.ls8_c00108{letter-spacing:5.060160px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:-18.000000px;}
.ws1_c00108{word-spacing:-17.712000px;}
.ws4_c00108{word-spacing:-15.638400px;}
.ws2_c00108{word-spacing:-15.120000px;}
.ws5_c00108{word-spacing:-15.099600px;}
.ws3_c00108{word-spacing:-14.817600px;}
.ws6_c00108{word-spacing:0.000000px;}
._3_c00108{margin-left:-2.664000px;}
._1_c00108{margin-left:-1.440000px;}
._0_c00108{width:1.080000px;}
._2_c00108{width:2.232000px;}
._6_c00108{width:3.672000px;}
._9_c00108{width:5.184000px;}
._8_c00108{width:6.696000px;}
._a_c00108{width:8.352000px;}
._5_c00108{width:10.008000px;}
._4_c00108{width:11.016000px;}
._13_c00108{width:12.240000px;}
._7_c00108{width:13.248000px;}
._b_c00108{width:15.120000px;}
._c_c00108{width:16.848000px;}
._d_c00108{width:19.728000px;}
._f_c00108{width:21.024000px;}
._e_c00108{width:22.176000px;}
._10_c00108{width:23.664024px;}
._11_c00108{width:26.568000px;}
._12_c00108{width:28.284000px;}
.fc0_c00108{color:rgb(0,0,0);}
.fs2_c00108{font-size:38.880000px;}
.fs1_c00108{font-size:47.520000px;}
.fs3_c00108{font-size:60.480000px;}
.fs0_c00108{font-size:72.000000px;}
.y0_c00108{bottom:0.000000px;}
.y6_c00108{bottom:4.675500px;}
.y3_c00108{bottom:4.680000px;}
.y5_c00108{bottom:25.195500px;}
.y4_c00108{bottom:32.800500px;}
.y1_c00108{bottom:57.996000px;}
.y31_c00108{bottom:130.716000px;}
.y30_c00108{bottom:137.556000px;}
.y2f_c00108{bottom:147.996000px;}
.y2e_c00108{bottom:164.955000px;}
.y2d_c00108{bottom:182.235000px;}
.y2c_c00108{bottom:199.515000px;}
.y2b_c00108{bottom:216.795000px;}
.y2a_c00108{bottom:234.075000px;}
.y29_c00108{bottom:240.915000px;}
.y28_c00108{bottom:251.355000px;}
.y27_c00108{bottom:268.635000px;}
.y26_c00108{bottom:285.945000px;}
.y25_c00108{bottom:303.225000px;}
.y24_c00108{bottom:320.505000px;}
.y23_c00108{bottom:337.785000px;}
.y22_c00108{bottom:354.705000px;}
.y21_c00108{bottom:361.545000px;}
.y20_c00108{bottom:372.705000px;}
.y1f_c00108{bottom:395.430000px;}
.y1e_c00108{bottom:426.390000px;}
.y1d_c00108{bottom:457.350000px;}
.y1c_c00108{bottom:488.310000px;}
.y1b_c00108{bottom:519.660000px;}
.y1a_c00108{bottom:550.620000px;}
.y19_c00108{bottom:581.580000px;}
.y18_c00108{bottom:621.540000px;}
.y16_c00108{bottom:661.890000px;}
.y17_c00108{bottom:670.170000px;}
.y15_c00108{bottom:692.850000px;}
.y14_c00108{bottom:723.810000px;}
.y13_c00108{bottom:754.770000px;}
.y12_c00108{bottom:786.135000px;}
.y11_c00108{bottom:817.095000px;}
.y10_c00108{bottom:848.055000px;}
.yf_c00108{bottom:879.015000px;}
.ye_c00108{bottom:910.365000px;}
.yd_c00108{bottom:941.325000px;}
.yb_c00108{bottom:972.285000px;}
.yc_c00108{bottom:980.565000px;}
.ya_c00108{bottom:1003.245000px;}
.y8_c00108{bottom:1034.610000px;}
.y9_c00108{bottom:1042.890000px;}
.y7_c00108{bottom:1065.570000px;}
.y2_c00108{bottom:1113.090000px;}
.h2_c00108{height:20.910000px;}
.h8_c00108{height:38.158594px;}
.h3_c00108{height:41.395500px;}
.h6_c00108{height:46.638281px;}
.h9_c00108{height:59.357813px;}
.h1_c00108{height:64.546875px;}
.h7_c00108{height:70.628906px;}
.h4_c00108{height:70.664062px;}
.h5_c00108{height:1187.995500px;}
.h0_c00108{height:1188.000000px;}
.w1_c00108{width:8.265000px;}
.w2_c00108{width:663.345000px;}
.w3_c00108{width:917.997000px;}
.w0_c00108{width:918.000000px;}
.x0_c00108{left:0.000000px;}
.x3_c00108{left:127.489500px;}
.xd_c00108{left:137.556000px;}
.x1_c00108{left:154.515000px;}
.xb_c00108{left:178.635000px;}
.xa_c00108{left:180.795000px;}
.x8_c00108{left:192.312000px;}
.x9_c00108{left:204.555000px;}
.xc_c00108{left:343.590000px;}
.x6_c00108{left:526.137000px;}
.x7_c00108{left:538.410000px;}
.x4_c00108{left:543.807000px;}
.x5_c00108{left:556.050000px;}
.x2_c00108{left:782.565000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls12_c00108{letter-spacing:-1.258667pt;}
.ls10_c00108{letter-spacing:-0.864000pt;}
.lsf_c00108{letter-spacing:-0.640000pt;}
.ls13_c00108{letter-spacing:-0.268800pt;}
.lsc_c00108{letter-spacing:-0.256000pt;}
.ls14_c00108{letter-spacing:-0.214933pt;}
.ls16_c00108{letter-spacing:-0.018133pt;}
.lsb_c00108{letter-spacing:0.000000pt;}
.ls11_c00108{letter-spacing:0.053867pt;}
.lse_c00108{letter-spacing:0.414933pt;}
.ls15_c00108{letter-spacing:0.460800pt;}
.lsa_c00108{letter-spacing:0.461227pt;}
.ls7_c00108{letter-spacing:0.466133pt;}
.lsd_c00108{letter-spacing:0.470933pt;}
.ls0_c00108{letter-spacing:0.640000pt;}
.ls9_c00108{letter-spacing:0.657920pt;}
.ls1_c00108{letter-spacing:1.920000pt;}
.ls2_c00108{letter-spacing:1.937953pt;}
.ls3_c00108{letter-spacing:3.200000pt;}
.ls4_c00108{letter-spacing:3.306667pt;}
.ls6_c00108{letter-spacing:4.480000pt;}
.ls5_c00108{letter-spacing:4.488007pt;}
.ls8_c00108{letter-spacing:4.497920pt;}
.ws0_c00108{word-spacing:-16.000000pt;}
.ws1_c00108{word-spacing:-15.744000pt;}
.ws4_c00108{word-spacing:-13.900800pt;}
.ws2_c00108{word-spacing:-13.440000pt;}
.ws5_c00108{word-spacing:-13.421867pt;}
.ws3_c00108{word-spacing:-13.171200pt;}
.ws6_c00108{word-spacing:0.000000pt;}
._3_c00108{margin-left:-2.368000pt;}
._1_c00108{margin-left:-1.280000pt;}
._0_c00108{width:0.960000pt;}
._2_c00108{width:1.984000pt;}
._6_c00108{width:3.264000pt;}
._9_c00108{width:4.608000pt;}
._8_c00108{width:5.952000pt;}
._a_c00108{width:7.424000pt;}
._5_c00108{width:8.896000pt;}
._4_c00108{width:9.792000pt;}
._13_c00108{width:10.880000pt;}
._7_c00108{width:11.776000pt;}
._b_c00108{width:13.440000pt;}
._c_c00108{width:14.976000pt;}
._d_c00108{width:17.536000pt;}
._f_c00108{width:18.688000pt;}
._e_c00108{width:19.712000pt;}
._10_c00108{width:21.034688pt;}
._11_c00108{width:23.616000pt;}
._12_c00108{width:25.141333pt;}
.fs2_c00108{font-size:34.560000pt;}
.fs1_c00108{font-size:42.240000pt;}
.fs3_c00108{font-size:53.760000pt;}
.fs0_c00108{font-size:64.000000pt;}
.y0_c00108{bottom:0.000000pt;}
.y6_c00108{bottom:4.156000pt;}
.y3_c00108{bottom:4.160000pt;}
.y5_c00108{bottom:22.396000pt;}
.y4_c00108{bottom:29.156000pt;}
.y1_c00108{bottom:51.552000pt;}
.y31_c00108{bottom:116.192000pt;}
.y30_c00108{bottom:122.272000pt;}
.y2f_c00108{bottom:131.552000pt;}
.y2e_c00108{bottom:146.626667pt;}
.y2d_c00108{bottom:161.986667pt;}
.y2c_c00108{bottom:177.346667pt;}
.y2b_c00108{bottom:192.706667pt;}
.y2a_c00108{bottom:208.066667pt;}
.y29_c00108{bottom:214.146667pt;}
.y28_c00108{bottom:223.426667pt;}
.y27_c00108{bottom:238.786667pt;}
.y26_c00108{bottom:254.173333pt;}
.y25_c00108{bottom:269.533333pt;}
.y24_c00108{bottom:284.893333pt;}
.y23_c00108{bottom:300.253333pt;}
.y22_c00108{bottom:315.293333pt;}
.y21_c00108{bottom:321.373333pt;}
.y20_c00108{bottom:331.293333pt;}
.y1f_c00108{bottom:351.493333pt;}
.y1e_c00108{bottom:379.013333pt;}
.y1d_c00108{bottom:406.533333pt;}
.y1c_c00108{bottom:434.053333pt;}
.y1b_c00108{bottom:461.920000pt;}
.y1a_c00108{bottom:489.440000pt;}
.y19_c00108{bottom:516.960000pt;}
.y18_c00108{bottom:552.480000pt;}
.y16_c00108{bottom:588.346667pt;}
.y17_c00108{bottom:595.706667pt;}
.y15_c00108{bottom:615.866667pt;}
.y14_c00108{bottom:643.386667pt;}
.y13_c00108{bottom:670.906667pt;}
.y12_c00108{bottom:698.786667pt;}
.y11_c00108{bottom:726.306667pt;}
.y10_c00108{bottom:753.826667pt;}
.yf_c00108{bottom:781.346667pt;}
.ye_c00108{bottom:809.213333pt;}
.yd_c00108{bottom:836.733333pt;}
.yb_c00108{bottom:864.253333pt;}
.yc_c00108{bottom:871.613333pt;}
.ya_c00108{bottom:891.773333pt;}
.y8_c00108{bottom:919.653333pt;}
.y9_c00108{bottom:927.013333pt;}
.y7_c00108{bottom:947.173333pt;}
.y2_c00108{bottom:989.413333pt;}
.h2_c00108{height:18.586667pt;}
.h8_c00108{height:33.918750pt;}
.h3_c00108{height:36.796000pt;}
.h6_c00108{height:41.456250pt;}
.h9_c00108{height:52.762500pt;}
.h1_c00108{height:57.375000pt;}
.h7_c00108{height:62.781250pt;}
.h4_c00108{height:62.812500pt;}
.h5_c00108{height:1055.996000pt;}
.h0_c00108{height:1056.000000pt;}
.w1_c00108{width:7.346667pt;}
.w2_c00108{width:589.640000pt;}
.w3_c00108{width:815.997333pt;}
.w0_c00108{width:816.000000pt;}
.x0_c00108{left:0.000000pt;}
.x3_c00108{left:113.324000pt;}
.xd_c00108{left:122.272000pt;}
.x1_c00108{left:137.346667pt;}
.xb_c00108{left:158.786667pt;}
.xa_c00108{left:160.706667pt;}
.x8_c00108{left:170.944000pt;}
.x9_c00108{left:181.826667pt;}
.xc_c00108{left:305.413333pt;}
.x6_c00108{left:467.677333pt;}
.x7_c00108{left:478.586667pt;}
.x4_c00108{left:483.384000pt;}
.x5_c00108{left:494.266667pt;}
.x2_c00108{left:695.613333pt;}
}





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

.ir_c00109:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00109;src:url('chunks/assets/font_5db4836723ca5cc35232f336.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_642185481ad5c861fb52665d.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_cb4b69cb774d4ba267595bda.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_a63afa1ab874bcf6df607e5d.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;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_c00109;src:url('chunks/assets/font_439a5455432b90ca6189536f.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls3_c00109{letter-spacing:0.000000px;}
.ls4_c00109{letter-spacing:0.504000px;}
.ls5_c00109{letter-spacing:0.648000px;}
.ls2_c00109{letter-spacing:0.720000px;}
.ls1_c00109{letter-spacing:0.732000px;}
.ls0_c00109{letter-spacing:48.384000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00109{word-spacing:-72.000000px;}
.ws3_c00109{word-spacing:-18.648000px;}
.ws2_c00109{word-spacing:-18.504000px;}
.ws1_c00109{word-spacing:-18.000000px;}
.ws4_c00109{word-spacing:0.000000px;}
._b_c00109{margin-left:-3.528000px;}
._0_c00109{margin-left:-2.016000px;}
._2_c00109{margin-left:-1.008000px;}
._1_c00109{width:1.368000px;}
._3_c00109{width:2.376000px;}
._4_c00109{width:3.407976px;}
._9_c00109{width:5.040000px;}
._10_c00109{width:7.560000px;}
._11_c00109{width:8.784000px;}
._a_c00109{width:10.440000px;}
._c_c00109{width:11.664000px;}
._d_c00109{width:12.744000px;}
._14_c00109{width:14.112000px;}
._f_c00109{width:16.572000px;}
._12_c00109{width:19.872000px;}
._7_c00109{width:21.672000px;}
._6_c00109{width:23.256000px;}
._8_c00109{width:24.552000px;}
._e_c00109{width:25.776000px;}
._13_c00109{width:30.048048px;}
._16_c00109{width:31.824024px;}
._15_c00109{width:32.904000px;}
._5_c00109{width:105.840000px;}
.fc0_c00109{color:rgb(0,0,0);}
.fs2_c00109{font-size:38.880000px;}
.fs1_c00109{font-size:47.520000px;}
.fs3_c00109{font-size:60.480000px;}
.fs0_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y6_c00109{bottom:4.675500px;}
.y3_c00109{bottom:4.680000px;}
.y5_c00109{bottom:25.195500px;}
.y4_c00109{bottom:32.800500px;}
.y1_c00109{bottom:57.996000px;}
.y27_c00109{bottom:130.716000px;}
.y26_c00109{bottom:147.996000px;}
.y25_c00109{bottom:164.955000px;}
.y24_c00109{bottom:171.795000px;}
.y23_c00109{bottom:182.955000px;}
.y22_c00109{bottom:212.835000px;}
.y21_c00109{bottom:244.155000px;}
.y20_c00109{bottom:284.145000px;}
.y1f_c00109{bottom:315.105000px;}
.y1e_c00109{bottom:346.065000px;}
.y1d_c00109{bottom:377.385000px;}
.y1c_c00109{bottom:408.390000px;}
.y1b_c00109{bottom:439.350000px;}
.y1a_c00109{bottom:470.310000px;}
.y18_c00109{bottom:501.630000px;}
.y19_c00109{bottom:509.910000px;}
.y17_c00109{bottom:532.620000px;}
.y16_c00109{bottom:563.580000px;}
.y15_c00109{bottom:594.540000px;}
.y14_c00109{bottom:634.860000px;}
.y13_c00109{bottom:674.850000px;}
.y12_c00109{bottom:705.810000px;}
.y11_c00109{bottom:736.770000px;}
.y10_c00109{bottom:768.135000px;}
.yf_c00109{bottom:799.095000px;}
.ye_c00109{bottom:830.055000px;}
.yd_c00109{bottom:861.015000px;}
.yc_c00109{bottom:892.365000px;}
.yb_c00109{bottom:923.325000px;}
.ya_c00109{bottom:954.285000px;}
.y9_c00109{bottom:985.245000px;}
.y8_c00109{bottom:1025.610000px;}
.y7_c00109{bottom:1065.570000px;}
.y2_c00109{bottom:1113.090000px;}
.h2_c00109{height:20.910000px;}
.h8_c00109{height:34.855313px;}
.h3_c00109{height:41.395500px;}
.h7_c00109{height:46.638281px;}
.h9_c00109{height:54.219375px;}
.h1_c00109{height:64.546875px;}
.h5_c00109{height:70.628906px;}
.h4_c00109{height:70.664062px;}
.h6_c00109{height:1187.995500px;}
.h0_c00109{height:1188.000000px;}
.w1_c00109{width:8.265000px;}
.w2_c00109{width:663.345000px;}
.w3_c00109{width:917.997000px;}
.w0_c00109{width:918.000000px;}
.x0_c00109{left:0.000000px;}
.x3_c00109{left:127.489500px;}
.x9_c00109{left:137.556000px;}
.x1_c00109{left:154.515000px;}
.x7_c00109{left:169.995000px;}
.x4_c00109{left:178.635000px;}
.x8_c00109{left:343.590000px;}
.x5_c00109{left:422.067000px;}
.x6_c00109{left:434.310000px;}
.x2_c00109{left:782.565000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls3_c00109{letter-spacing:0.000000pt;}
.ls4_c00109{letter-spacing:0.448000pt;}
.ls5_c00109{letter-spacing:0.576000pt;}
.ls2_c00109{letter-spacing:0.640000pt;}
.ls1_c00109{letter-spacing:0.650667pt;}
.ls0_c00109{letter-spacing:43.008000pt;}
.ws0_c00109{word-spacing:-64.000000pt;}
.ws3_c00109{word-spacing:-16.576000pt;}
.ws2_c00109{word-spacing:-16.448000pt;}
.ws1_c00109{word-spacing:-16.000000pt;}
.ws4_c00109{word-spacing:0.000000pt;}
._b_c00109{margin-left:-3.136000pt;}
._0_c00109{margin-left:-1.792000pt;}
._2_c00109{margin-left:-0.896000pt;}
._1_c00109{width:1.216000pt;}
._3_c00109{width:2.112000pt;}
._4_c00109{width:3.029312pt;}
._9_c00109{width:4.480000pt;}
._10_c00109{width:6.720000pt;}
._11_c00109{width:7.808000pt;}
._a_c00109{width:9.280000pt;}
._c_c00109{width:10.368000pt;}
._d_c00109{width:11.328000pt;}
._14_c00109{width:12.544000pt;}
._f_c00109{width:14.730667pt;}
._12_c00109{width:17.664000pt;}
._7_c00109{width:19.264000pt;}
._6_c00109{width:20.672000pt;}
._8_c00109{width:21.824000pt;}
._e_c00109{width:22.912000pt;}
._13_c00109{width:26.709376pt;}
._16_c00109{width:28.288021pt;}
._15_c00109{width:29.248000pt;}
._5_c00109{width:94.080000pt;}
.fs2_c00109{font-size:34.560000pt;}
.fs1_c00109{font-size:42.240000pt;}
.fs3_c00109{font-size:53.760000pt;}
.fs0_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y6_c00109{bottom:4.156000pt;}
.y3_c00109{bottom:4.160000pt;}
.y5_c00109{bottom:22.396000pt;}
.y4_c00109{bottom:29.156000pt;}
.y1_c00109{bottom:51.552000pt;}
.y27_c00109{bottom:116.192000pt;}
.y26_c00109{bottom:131.552000pt;}
.y25_c00109{bottom:146.626667pt;}
.y24_c00109{bottom:152.706667pt;}
.y23_c00109{bottom:162.626667pt;}
.y22_c00109{bottom:189.186667pt;}
.y21_c00109{bottom:217.026667pt;}
.y20_c00109{bottom:252.573333pt;}
.y1f_c00109{bottom:280.093333pt;}
.y1e_c00109{bottom:307.613333pt;}
.y1d_c00109{bottom:335.453333pt;}
.y1c_c00109{bottom:363.013333pt;}
.y1b_c00109{bottom:390.533333pt;}
.y1a_c00109{bottom:418.053333pt;}
.y18_c00109{bottom:445.893333pt;}
.y19_c00109{bottom:453.253333pt;}
.y17_c00109{bottom:473.440000pt;}
.y16_c00109{bottom:500.960000pt;}
.y15_c00109{bottom:528.480000pt;}
.y14_c00109{bottom:564.320000pt;}
.y13_c00109{bottom:599.866667pt;}
.y12_c00109{bottom:627.386667pt;}
.y11_c00109{bottom:654.906667pt;}
.y10_c00109{bottom:682.786667pt;}
.yf_c00109{bottom:710.306667pt;}
.ye_c00109{bottom:737.826667pt;}
.yd_c00109{bottom:765.346667pt;}
.yc_c00109{bottom:793.213333pt;}
.yb_c00109{bottom:820.733333pt;}
.ya_c00109{bottom:848.253333pt;}
.y9_c00109{bottom:875.773333pt;}
.y8_c00109{bottom:911.653333pt;}
.y7_c00109{bottom:947.173333pt;}
.y2_c00109{bottom:989.413333pt;}
.h2_c00109{height:18.586667pt;}
.h8_c00109{height:30.982500pt;}
.h3_c00109{height:36.796000pt;}
.h7_c00109{height:41.456250pt;}
.h9_c00109{height:48.195000pt;}
.h1_c00109{height:57.375000pt;}
.h5_c00109{height:62.781250pt;}
.h4_c00109{height:62.812500pt;}
.h6_c00109{height:1055.996000pt;}
.h0_c00109{height:1056.000000pt;}
.w1_c00109{width:7.346667pt;}
.w2_c00109{width:589.640000pt;}
.w3_c00109{width:815.997333pt;}
.w0_c00109{width:816.000000pt;}
.x0_c00109{left:0.000000pt;}
.x3_c00109{left:113.324000pt;}
.x9_c00109{left:122.272000pt;}
.x1_c00109{left:137.346667pt;}
.x7_c00109{left:151.106667pt;}
.x4_c00109{left:158.786667pt;}
.x8_c00109{left:305.413333pt;}
.x5_c00109{left:375.170667pt;}
.x6_c00109{left:386.053333pt;}
.x2_c00109{left:695.613333pt;}
}





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

.ir_c00110:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00110;src:url('chunks/assets/font_24657bcae85f4b627fe3a789.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_6098586f2a25bebcc67e76fe.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_773363985f17b787ae139e91.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_6235f8060119142c48f0f902.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_839cde37081412f7ce2ba27a.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;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_c00110;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00110{font-family:ff6_c00110;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls15_c00110{letter-spacing:-0.912000px;}
.ls11_c00110{letter-spacing:-0.738000px;}
.lsf_c00110{letter-spacing:-0.466800px;}
.ls13_c00110{letter-spacing:-0.241800px;}
.lse_c00110{letter-spacing:0.000000px;}
.ls10_c00110{letter-spacing:0.022800px;}
.ls12_c00110{letter-spacing:0.060600px;}
.ls14_c00110{letter-spacing:0.166800px;}
.ls6_c00110{letter-spacing:0.302400px;}
.ls3_c00110{letter-spacing:0.524160px;}
.lsc_c00110{letter-spacing:0.529800px;}
.ls1_c00110{letter-spacing:0.720000px;}
.lsd_c00110{letter-spacing:0.840000px;}
.ls2_c00110{letter-spacing:2.160000px;}
.ls0_c00110{letter-spacing:5.040000px;}
.lsb_c00110{letter-spacing:6.480000px;}
.lsa_c00110{letter-spacing:7.920000px;}
.ls9_c00110{letter-spacing:10.771229px;}
.ls8_c00110{letter-spacing:10.800000px;}
.ls7_c00110{letter-spacing:10.940480px;}
.ls4_c00110{letter-spacing:13.680000px;}
.ls5_c00110{letter-spacing:15.120000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00110{word-spacing:-18.000000px;}
.ws5_c00110{word-spacing:-15.286800px;}
.ws4_c00110{word-spacing:-15.180600px;}
.ws1_c00110{word-spacing:-15.120000px;}
.ws0_c00110{word-spacing:-14.653200px;}
.ws3_c00110{word-spacing:-14.382000px;}
.ws6_c00110{word-spacing:0.000000px;}
._7_c00110{margin-left:-3.240000px;}
._0_c00110{margin-left:-2.088000px;}
._4_c00110{margin-left:-1.008000px;}
._1_c00110{width:1.512000px;}
._5_c00110{width:2.808000px;}
._6_c00110{width:3.876000px;}
._3_c00110{width:5.688000px;}
._2_c00110{width:7.560000px;}
._d_c00110{width:9.374400px;}
._b_c00110{width:10.800000px;}
._e_c00110{width:12.516601px;}
._c_c00110{width:16.211563px;}
._a_c00110{width:31.392000px;}
._9_c00110{width:32.616000px;}
._8_c00110{width:34.128000px;}
.fc0_c00110{color:rgb(0,0,0);}
.fs1_c00110{font-size:60.480000px;}
.fs0_c00110{font-size:72.000000px;}
.y0_c00110{bottom:0.000000px;}
.y6_c00110{bottom:4.675500px;}
.y3_c00110{bottom:4.680000px;}
.y5_c00110{bottom:25.195500px;}
.y4_c00110{bottom:32.800500px;}
.y1_c00110{bottom:57.996000px;}
.y25_c00110{bottom:112.716000px;}
.y24_c00110{bottom:147.636000px;}
.y23_c00110{bottom:173.595000px;}
.y22_c00110{bottom:199.515000px;}
.y21_c00110{bottom:234.435000px;}
.y20_c00110{bottom:271.515000px;}
.y1f_c00110{bottom:302.505000px;}
.y1e_c00110{bottom:333.465000px;}
.y1d_c00110{bottom:371.265000px;}
.y1c_c00110{bottom:397.230000px;}
.y1b_c00110{bottom:423.150000px;}
.y1a_c00110{bottom:449.070000px;}
.y19_c00110{bottom:483.990000px;}
.y18_c00110{bottom:509.910000px;}
.y17_c00110{bottom:535.860000px;}
.y16_c00110{bottom:570.420000px;}
.y15_c00110{bottom:607.860000px;}
.y14_c00110{bottom:638.820000px;}
.y13_c00110{bottom:669.810000px;}
.y12_c00110{bottom:700.770000px;}
.y11_c00110{bottom:732.090000px;}
.y10_c00110{bottom:769.575000px;}
.yf_c00110{bottom:795.495000px;}
.ye_c00110{bottom:830.415000px;}
.yd_c00110{bottom:865.335000px;}
.yc_c00110{bottom:900.285000px;}
.yb_c00110{bottom:935.205000px;}
.ya_c00110{bottom:972.285000px;}
.y9_c00110{bottom:1003.245000px;}
.y8_c00110{bottom:1034.610000px;}
.y7_c00110{bottom:1065.570000px;}
.y2_c00110{bottom:1113.090000px;}
.h2_c00110{height:20.910000px;}
.h3_c00110{height:41.395500px;}
.h6_c00110{height:59.328281px;}
.h5_c00110{height:59.357813px;}
.h8_c00110{height:60.952500px;}
.h1_c00110{height:64.546875px;}
.h4_c00110{height:70.664062px;}
.h7_c00110{height:72.562500px;}
.h0_c00110{height:1188.000000px;}
.w1_c00110{width:8.265000px;}
.w2_c00110{width:663.345000px;}
.w0_c00110{width:918.000000px;}
.x0_c00110{left:0.000000px;}
.x3_c00110{left:127.489500px;}
.x1_c00110{left:154.515000px;}
.x4_c00110{left:169.995000px;}
.x2_c00110{left:782.565000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls15_c00110{letter-spacing:-0.810667pt;}
.ls11_c00110{letter-spacing:-0.656000pt;}
.lsf_c00110{letter-spacing:-0.414933pt;}
.ls13_c00110{letter-spacing:-0.214933pt;}
.lse_c00110{letter-spacing:0.000000pt;}
.ls10_c00110{letter-spacing:0.020267pt;}
.ls12_c00110{letter-spacing:0.053867pt;}
.ls14_c00110{letter-spacing:0.148267pt;}
.ls6_c00110{letter-spacing:0.268800pt;}
.ls3_c00110{letter-spacing:0.465920pt;}
.lsc_c00110{letter-spacing:0.470933pt;}
.ls1_c00110{letter-spacing:0.640000pt;}
.lsd_c00110{letter-spacing:0.746667pt;}
.ls2_c00110{letter-spacing:1.920000pt;}
.ls0_c00110{letter-spacing:4.480000pt;}
.lsb_c00110{letter-spacing:5.760000pt;}
.lsa_c00110{letter-spacing:7.040000pt;}
.ls9_c00110{letter-spacing:9.574426pt;}
.ls8_c00110{letter-spacing:9.600000pt;}
.ls7_c00110{letter-spacing:9.724871pt;}
.ls4_c00110{letter-spacing:12.160000pt;}
.ls5_c00110{letter-spacing:13.440000pt;}
.ws2_c00110{word-spacing:-16.000000pt;}
.ws5_c00110{word-spacing:-13.588267pt;}
.ws4_c00110{word-spacing:-13.493867pt;}
.ws1_c00110{word-spacing:-13.440000pt;}
.ws0_c00110{word-spacing:-13.025067pt;}
.ws3_c00110{word-spacing:-12.784000pt;}
.ws6_c00110{word-spacing:0.000000pt;}
._7_c00110{margin-left:-2.880000pt;}
._0_c00110{margin-left:-1.856000pt;}
._4_c00110{margin-left:-0.896000pt;}
._1_c00110{width:1.344000pt;}
._5_c00110{width:2.496000pt;}
._6_c00110{width:3.445333pt;}
._3_c00110{width:5.056000pt;}
._2_c00110{width:6.720000pt;}
._d_c00110{width:8.332800pt;}
._b_c00110{width:9.600000pt;}
._e_c00110{width:11.125868pt;}
._c_c00110{width:14.410278pt;}
._a_c00110{width:27.904000pt;}
._9_c00110{width:28.992000pt;}
._8_c00110{width:30.336000pt;}
.fs1_c00110{font-size:53.760000pt;}
.fs0_c00110{font-size:64.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y6_c00110{bottom:4.156000pt;}
.y3_c00110{bottom:4.160000pt;}
.y5_c00110{bottom:22.396000pt;}
.y4_c00110{bottom:29.156000pt;}
.y1_c00110{bottom:51.552000pt;}
.y25_c00110{bottom:100.192000pt;}
.y24_c00110{bottom:131.232000pt;}
.y23_c00110{bottom:154.306667pt;}
.y22_c00110{bottom:177.346667pt;}
.y21_c00110{bottom:208.386667pt;}
.y20_c00110{bottom:241.346667pt;}
.y1f_c00110{bottom:268.893333pt;}
.y1e_c00110{bottom:296.413333pt;}
.y1d_c00110{bottom:330.013333pt;}
.y1c_c00110{bottom:353.093333pt;}
.y1b_c00110{bottom:376.133333pt;}
.y1a_c00110{bottom:399.173333pt;}
.y19_c00110{bottom:430.213333pt;}
.y18_c00110{bottom:453.253333pt;}
.y17_c00110{bottom:476.320000pt;}
.y16_c00110{bottom:507.040000pt;}
.y15_c00110{bottom:540.320000pt;}
.y14_c00110{bottom:567.840000pt;}
.y13_c00110{bottom:595.386667pt;}
.y12_c00110{bottom:622.906667pt;}
.y11_c00110{bottom:650.746667pt;}
.y10_c00110{bottom:684.066667pt;}
.yf_c00110{bottom:707.106667pt;}
.ye_c00110{bottom:738.146667pt;}
.yd_c00110{bottom:769.186667pt;}
.yc_c00110{bottom:800.253333pt;}
.yb_c00110{bottom:831.293333pt;}
.ya_c00110{bottom:864.253333pt;}
.y9_c00110{bottom:891.773333pt;}
.y8_c00110{bottom:919.653333pt;}
.y7_c00110{bottom:947.173333pt;}
.y2_c00110{bottom:989.413333pt;}
.h2_c00110{height:18.586667pt;}
.h3_c00110{height:36.796000pt;}
.h6_c00110{height:52.736250pt;}
.h5_c00110{height:52.762500pt;}
.h8_c00110{height:54.180000pt;}
.h1_c00110{height:57.375000pt;}
.h4_c00110{height:62.812500pt;}
.h7_c00110{height:64.500000pt;}
.h0_c00110{height:1056.000000pt;}
.w1_c00110{width:7.346667pt;}
.w2_c00110{width:589.640000pt;}
.w0_c00110{width:816.000000pt;}
.x0_c00110{left:0.000000pt;}
.x3_c00110{left:113.324000pt;}
.x1_c00110{left:137.346667pt;}
.x4_c00110{left:151.106667pt;}
.x2_c00110{left:695.613333pt;}
}





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

.ir_c00111:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00111;src:url('chunks/assets/font_0022dfc080196ff4bfe461c8.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_719f8c998920755fd48522ab.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_8845e1cb0deeedd4a1a877c8.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_6dc5fb0ea46963cf0cd2bb78.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00111;src:url('chunks/assets/font_2340108575a43bd5fef1d5a7.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00111;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00111{font-family:ff6_c00111;line-height:1.311035;font-style:normal;font-weight: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_c00111;src:url('chunks/assets/font_5f74c80147f5e577839eac47.woff2')format("woff");}.ff7_c00111{font-family:ff7_c00111;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls9_c00111{letter-spacing:-0.912000px;}
.ls8_c00111{letter-spacing:-0.466800px;}
.ls7_c00111{letter-spacing:0.000000px;}
.ls4_c00111{letter-spacing:0.048960px;}
.lsa_c00111{letter-spacing:0.429000px;}
.lsb_c00111{letter-spacing:0.529800px;}
.ls5_c00111{letter-spacing:0.708295px;}
.ls1_c00111{letter-spacing:0.720000px;}
.ls3_c00111{letter-spacing:0.740195px;}
.ls2_c00111{letter-spacing:2.160000px;}
.ls0_c00111{letter-spacing:18.000000px;}
.ls6_c00111{letter-spacing:500.520000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:-18.000000px;}
.ws3_c00111{word-spacing:-15.549000px;}
.ws2_c00111{word-spacing:-15.120000px;}
.ws1_c00111{word-spacing:-14.653200px;}
.ws4_c00111{word-spacing:-12.600000px;}
.ws5_c00111{word-spacing:0.000000px;}
._9_c00111{margin-left:-3.043797px;}
._1_c00111{margin-left:-1.996203px;}
._4_c00111{width:1.028402px;}
._5_c00111{width:2.438997px;}
._3_c00111{width:4.475399px;}
._0_c00111{width:5.866802px;}
._2_c00111{width:6.894599px;}
._6_c00111{width:8.288398px;}
._7_c00111{width:10.252800px;}
._e_c00111{width:12.064199px;}
._8_c00111{width:15.552000px;}
._a_c00111{width:16.848000px;}
._b_c00111{width:19.111801px;}
._f_c00111{width:21.404984px;}
._10_c00111{width:26.280000px;}
._11_c00111{width:27.358790px;}
._c_c00111{width:30.621007px;}
._d_c00111{width:32.040000px;}
.fc0_c00111{color:rgb(0,0,0);}
.fs3_c00111{font-size:38.880000px;}
.fs2_c00111{font-size:47.520000px;}
.fs1_c00111{font-size:60.480000px;}
.fs0_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.y6_c00111{bottom:4.675500px;}
.y3_c00111{bottom:4.680000px;}
.y5_c00111{bottom:25.195500px;}
.y4_c00111{bottom:32.800500px;}
.y1_c00111{bottom:57.996000px;}
.y26_c00111{bottom:130.716000px;}
.y25_c00111{bottom:147.996000px;}
.y24_c00111{bottom:154.875000px;}
.y23_c00111{bottom:165.675000px;}
.y22_c00111{bottom:209.955000px;}
.y21_c00111{bottom:244.515000px;}
.y20_c00111{bottom:279.465000px;}
.y1f_c00111{bottom:314.385000px;}
.y1e_c00111{bottom:349.305000px;}
.y1d_c00111{bottom:384.225000px;}
.y1c_c00111{bottom:419.190000px;}
.y1b_c00111{bottom:456.270000px;}
.y1a_c00111{bottom:487.230000px;}
.y19_c00111{bottom:518.580000px;}
.y18_c00111{bottom:549.540000px;}
.y17_c00111{bottom:580.500000px;}
.y16_c00111{bottom:611.460000px;}
.y15_c00111{bottom:649.290000px;}
.y14_c00111{bottom:684.210000px;}
.y13_c00111{bottom:719.130000px;}
.y12_c00111{bottom:756.210000px;}
.y11_c00111{bottom:787.215000px;}
.y10_c00111{bottom:818.535000px;}
.ye_c00111{bottom:849.495000px;}
.yf_c00111{bottom:857.775000px;}
.yd_c00111{bottom:880.455000px;}
.yc_c00111{bottom:911.445000px;}
.yb_c00111{bottom:942.765000px;}
.ya_c00111{bottom:973.725000px;}
.y9_c00111{bottom:1004.685000px;}
.y8_c00111{bottom:1042.530000px;}
.y7_c00111{bottom:1068.450000px;}
.y2_c00111{bottom:1113.090000px;}
.h2_c00111{height:20.910000px;}
.hb_c00111{height:38.158594px;}
.h3_c00111{height:41.395500px;}
.h8_c00111{height:46.638281px;}
.ha_c00111{height:54.514688px;}
.h4_c00111{height:59.328281px;}
.h5_c00111{height:59.357813px;}
.h9_c00111{height:60.952500px;}
.h1_c00111{height:64.546875px;}
.h6_c00111{height:70.664062px;}
.h7_c00111{height:1187.995500px;}
.h0_c00111{height:1188.000000px;}
.w1_c00111{width:8.265000px;}
.w2_c00111{width:663.345000px;}
.w3_c00111{width:917.997000px;}
.w0_c00111{width:918.000000px;}
.x0_c00111{left:0.000000px;}
.x3_c00111{left:127.489500px;}
.x8_c00111{left:137.556000px;}
.x1_c00111{left:154.515000px;}
.x4_c00111{left:169.995000px;}
.x7_c00111{left:343.590000px;}
.x5_c00111{left:702.972000px;}
.x6_c00111{left:715.215000px;}
.x2_c00111{left:782.565000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls9_c00111{letter-spacing:-0.810667pt;}
.ls8_c00111{letter-spacing:-0.414933pt;}
.ls7_c00111{letter-spacing:0.000000pt;}
.ls4_c00111{letter-spacing:0.043520pt;}
.lsa_c00111{letter-spacing:0.381333pt;}
.lsb_c00111{letter-spacing:0.470933pt;}
.ls5_c00111{letter-spacing:0.629595pt;}
.ls1_c00111{letter-spacing:0.640000pt;}
.ls3_c00111{letter-spacing:0.657951pt;}
.ls2_c00111{letter-spacing:1.920000pt;}
.ls0_c00111{letter-spacing:16.000000pt;}
.ls6_c00111{letter-spacing:444.906667pt;}
.ws0_c00111{word-spacing:-16.000000pt;}
.ws3_c00111{word-spacing:-13.821333pt;}
.ws2_c00111{word-spacing:-13.440000pt;}
.ws1_c00111{word-spacing:-13.025067pt;}
.ws4_c00111{word-spacing:-11.200000pt;}
.ws5_c00111{word-spacing:0.000000pt;}
._9_c00111{margin-left:-2.705597pt;}
._1_c00111{margin-left:-1.774403pt;}
._4_c00111{width:0.914135pt;}
._5_c00111{width:2.167997pt;}
._3_c00111{width:3.978132pt;}
._0_c00111{width:5.214935pt;}
._2_c00111{width:6.128532pt;}
._6_c00111{width:7.367465pt;}
._7_c00111{width:9.113600pt;}
._e_c00111{width:10.723732pt;}
._8_c00111{width:13.824000pt;}
._a_c00111{width:14.976000pt;}
._b_c00111{width:16.988268pt;}
._f_c00111{width:19.026652pt;}
._10_c00111{width:23.360000pt;}
._11_c00111{width:24.318925pt;}
._c_c00111{width:27.218673pt;}
._d_c00111{width:28.480000pt;}
.fs3_c00111{font-size:34.560000pt;}
.fs2_c00111{font-size:42.240000pt;}
.fs1_c00111{font-size:53.760000pt;}
.fs0_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y6_c00111{bottom:4.156000pt;}
.y3_c00111{bottom:4.160000pt;}
.y5_c00111{bottom:22.396000pt;}
.y4_c00111{bottom:29.156000pt;}
.y1_c00111{bottom:51.552000pt;}
.y26_c00111{bottom:116.192000pt;}
.y25_c00111{bottom:131.552000pt;}
.y24_c00111{bottom:137.666667pt;}
.y23_c00111{bottom:147.266667pt;}
.y22_c00111{bottom:186.626667pt;}
.y21_c00111{bottom:217.346667pt;}
.y20_c00111{bottom:248.413333pt;}
.y1f_c00111{bottom:279.453333pt;}
.y1e_c00111{bottom:310.493333pt;}
.y1d_c00111{bottom:341.533333pt;}
.y1c_c00111{bottom:372.613333pt;}
.y1b_c00111{bottom:405.573333pt;}
.y1a_c00111{bottom:433.093333pt;}
.y19_c00111{bottom:460.960000pt;}
.y18_c00111{bottom:488.480000pt;}
.y17_c00111{bottom:516.000000pt;}
.y16_c00111{bottom:543.520000pt;}
.y15_c00111{bottom:577.146667pt;}
.y14_c00111{bottom:608.186667pt;}
.y13_c00111{bottom:639.226667pt;}
.y12_c00111{bottom:672.186667pt;}
.y11_c00111{bottom:699.746667pt;}
.y10_c00111{bottom:727.586667pt;}
.ye_c00111{bottom:755.106667pt;}
.yf_c00111{bottom:762.466667pt;}
.yd_c00111{bottom:782.626667pt;}
.yc_c00111{bottom:810.173333pt;}
.yb_c00111{bottom:838.013333pt;}
.ya_c00111{bottom:865.533333pt;}
.y9_c00111{bottom:893.053333pt;}
.y8_c00111{bottom:926.693333pt;}
.y7_c00111{bottom:949.733333pt;}
.y2_c00111{bottom:989.413333pt;}
.h2_c00111{height:18.586667pt;}
.hb_c00111{height:33.918750pt;}
.h3_c00111{height:36.796000pt;}
.h8_c00111{height:41.456250pt;}
.ha_c00111{height:48.457500pt;}
.h4_c00111{height:52.736250pt;}
.h5_c00111{height:52.762500pt;}
.h9_c00111{height:54.180000pt;}
.h1_c00111{height:57.375000pt;}
.h6_c00111{height:62.812500pt;}
.h7_c00111{height:1055.996000pt;}
.h0_c00111{height:1056.000000pt;}
.w1_c00111{width:7.346667pt;}
.w2_c00111{width:589.640000pt;}
.w3_c00111{width:815.997333pt;}
.w0_c00111{width:816.000000pt;}
.x0_c00111{left:0.000000pt;}
.x3_c00111{left:113.324000pt;}
.x8_c00111{left:122.272000pt;}
.x1_c00111{left:137.346667pt;}
.x4_c00111{left:151.106667pt;}
.x7_c00111{left:305.413333pt;}
.x5_c00111{left:624.864000pt;}
.x6_c00111{left:635.746667pt;}
.x2_c00111{left:695.613333pt;}
}





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

.ir_c00112:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00112;src:url('chunks/assets/font_1d2e80780505eec9e60e591d.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_c0e881ba4da2f694754f8dc2.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_763b5efbfb210ccfd51b4337.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_4d40aadaa39e5fc370251f1b.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00112;src:url('chunks/assets/font_bf3ebc086b7fa3d0ccdbf4df.woff2')format("woff");}.ff5_c00112{font-family:ff5_c00112;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00112;src:url('chunks/assets/font_1132cc74933249e6c5a03a34.woff2')format("woff");}.ff6_c00112{font-family:ff6_c00112;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls7_c00112{letter-spacing:-1.440000px;}
.ls8_c00112{letter-spacing:-0.241800px;}
.ls6_c00112{letter-spacing:0.000000px;}
.ls9_c00112{letter-spacing:0.022800px;}
.ls2_c00112{letter-spacing:0.720000px;}
.ls1_c00112{letter-spacing:0.732000px;}
.ls4_c00112{letter-spacing:0.740195px;}
.ls3_c00112{letter-spacing:12.240000px;}
.ls5_c00112{letter-spacing:16.704000px;}
.ls0_c00112{letter-spacing:48.384000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:-72.000000px;}
.ws3_c00112{word-spacing:-60.480000px;}
.ws1_c00112{word-spacing:-18.000000px;}
.ws2_c00112{word-spacing:-15.120000px;}
.ws4_c00112{word-spacing:0.000000px;}
._e_c00112{margin-left:-3.346948px;}
._5_c00112{margin-left:-2.239212px;}
._1_c00112{margin-left:-1.088398px;}
._3_c00112{width:1.330802px;}
._6_c00112{width:2.400000px;}
._2_c00112{width:3.446997px;}
._0_c00112{width:4.475399px;}
._4_c00112{width:5.504406px;}
._11_c00112{width:6.523354px;}
._8_c00112{width:9.296398px;}
._9_c00112{width:10.368035px;}
._d_c00112{width:12.220808px;}
._12_c00112{width:14.168536px;}
._f_c00112{width:15.388808px;}
._10_c00112{width:16.639511px;}
._c_c00112{width:22.802384px;}
._a_c00112{width:24.264000px;}
._b_c00112{width:26.080819px;}
._7_c00112{width:105.840000px;}
.fc0_c00112{color:rgb(0,0,0);}
.fs3_c00112{font-size:38.880000px;}
.fs2_c00112{font-size:47.520000px;}
.fs1_c00112{font-size:60.480000px;}
.fs0_c00112{font-size:72.000000px;}
.y0_c00112{bottom:0.000000px;}
.y6_c00112{bottom:4.675500px;}
.y3_c00112{bottom:4.680000px;}
.y5_c00112{bottom:25.195500px;}
.y4_c00112{bottom:32.800500px;}
.y1_c00112{bottom:57.996000px;}
.y28_c00112{bottom:130.716000px;}
.y27_c00112{bottom:147.996000px;}
.y26_c00112{bottom:164.955000px;}
.y25_c00112{bottom:171.795000px;}
.y24_c00112{bottom:182.955000px;}
.y23_c00112{bottom:203.115000px;}
.y22_c00112{bottom:229.035000px;}
.y21_c00112{bottom:254.955000px;}
.y20_c00112{bottom:280.545000px;}
.y1f_c00112{bottom:315.465000px;}
.y1e_c00112{bottom:352.905000px;}
.y1d_c00112{bottom:383.865000px;}
.y1c_c00112{bottom:414.870000px;}
.y1b_c00112{bottom:445.830000px;}
.y19_c00112{bottom:477.150000px;}
.y1a_c00112{bottom:485.430000px;}
.y18_c00112{bottom:508.110000px;}
.y17_c00112{bottom:539.100000px;}
.y16_c00112{bottom:570.060000px;}
.y15_c00112{bottom:601.380000px;}
.y14_c00112{bottom:641.370000px;}
.y13_c00112{bottom:681.330000px;}
.y12_c00112{bottom:712.290000px;}
.y11_c00112{bottom:743.250000px;}
.y10_c00112{bottom:774.615000px;}
.yf_c00112{bottom:805.575000px;}
.ye_c00112{bottom:836.535000px;}
.yd_c00112{bottom:867.495000px;}
.yc_c00112{bottom:898.845000px;}
.yb_c00112{bottom:938.805000px;}
.ya_c00112{bottom:978.765000px;}
.y9_c00112{bottom:1016.610000px;}
.y8_c00112{bottom:1042.530000px;}
.y7_c00112{bottom:1068.450000px;}
.y2_c00112{bottom:1113.090000px;}
.h2_c00112{height:20.910000px;}
.ha_c00112{height:38.158594px;}
.h3_c00112{height:41.395500px;}
.h8_c00112{height:46.638281px;}
.h4_c00112{height:59.328281px;}
.h9_c00112{height:59.357813px;}
.h1_c00112{height:64.546875px;}
.h6_c00112{height:70.628906px;}
.h5_c00112{height:70.664062px;}
.h7_c00112{height:1187.995500px;}
.h0_c00112{height:1188.000000px;}
.w1_c00112{width:8.265000px;}
.w2_c00112{width:663.345000px;}
.w3_c00112{width:917.997000px;}
.w0_c00112{width:918.000000px;}
.x0_c00112{left:0.000000px;}
.x3_c00112{left:127.489500px;}
.xa_c00112{left:137.556000px;}
.x6_c00112{left:148.752000px;}
.x1_c00112{left:154.515000px;}
.x4_c00112{left:169.995000px;}
.x5_c00112{left:178.635000px;}
.x9_c00112{left:343.590000px;}
.x7_c00112{left:635.652000px;}
.x8_c00112{left:647.895000px;}
.x2_c00112{left:782.565000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls7_c00112{letter-spacing:-1.280000pt;}
.ls8_c00112{letter-spacing:-0.214933pt;}
.ls6_c00112{letter-spacing:0.000000pt;}
.ls9_c00112{letter-spacing:0.020267pt;}
.ls2_c00112{letter-spacing:0.640000pt;}
.ls1_c00112{letter-spacing:0.650667pt;}
.ls4_c00112{letter-spacing:0.657951pt;}
.ls3_c00112{letter-spacing:10.880000pt;}
.ls5_c00112{letter-spacing:14.848000pt;}
.ls0_c00112{letter-spacing:43.008000pt;}
.ws0_c00112{word-spacing:-64.000000pt;}
.ws3_c00112{word-spacing:-53.760000pt;}
.ws1_c00112{word-spacing:-16.000000pt;}
.ws2_c00112{word-spacing:-13.440000pt;}
.ws4_c00112{word-spacing:0.000000pt;}
._e_c00112{margin-left:-2.975065pt;}
._5_c00112{margin-left:-1.990410pt;}
._1_c00112{margin-left:-0.967465pt;}
._3_c00112{width:1.182935pt;}
._6_c00112{width:2.133333pt;}
._2_c00112{width:3.063997pt;}
._0_c00112{width:3.978132pt;}
._4_c00112{width:4.892805pt;}
._11_c00112{width:5.798537pt;}
._8_c00112{width:8.263465pt;}
._9_c00112{width:9.216031pt;}
._d_c00112{width:10.862940pt;}
._12_c00112{width:12.594255pt;}
._f_c00112{width:13.678940pt;}
._10_c00112{width:14.790676pt;}
._c_c00112{width:20.268785pt;}
._a_c00112{width:21.568000pt;}
._b_c00112{width:23.182950pt;}
._7_c00112{width:94.080000pt;}
.fs3_c00112{font-size:34.560000pt;}
.fs2_c00112{font-size:42.240000pt;}
.fs1_c00112{font-size:53.760000pt;}
.fs0_c00112{font-size:64.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.y6_c00112{bottom:4.156000pt;}
.y3_c00112{bottom:4.160000pt;}
.y5_c00112{bottom:22.396000pt;}
.y4_c00112{bottom:29.156000pt;}
.y1_c00112{bottom:51.552000pt;}
.y28_c00112{bottom:116.192000pt;}
.y27_c00112{bottom:131.552000pt;}
.y26_c00112{bottom:146.626667pt;}
.y25_c00112{bottom:152.706667pt;}
.y24_c00112{bottom:162.626667pt;}
.y23_c00112{bottom:180.546667pt;}
.y22_c00112{bottom:203.586667pt;}
.y21_c00112{bottom:226.626667pt;}
.y20_c00112{bottom:249.373333pt;}
.y1f_c00112{bottom:280.413333pt;}
.y1e_c00112{bottom:313.693333pt;}
.y1d_c00112{bottom:341.213333pt;}
.y1c_c00112{bottom:368.773333pt;}
.y1b_c00112{bottom:396.293333pt;}
.y19_c00112{bottom:424.133333pt;}
.y1a_c00112{bottom:431.493333pt;}
.y18_c00112{bottom:451.653333pt;}
.y17_c00112{bottom:479.200000pt;}
.y16_c00112{bottom:506.720000pt;}
.y15_c00112{bottom:534.560000pt;}
.y14_c00112{bottom:570.106667pt;}
.y13_c00112{bottom:605.626667pt;}
.y12_c00112{bottom:633.146667pt;}
.y11_c00112{bottom:660.666667pt;}
.y10_c00112{bottom:688.546667pt;}
.yf_c00112{bottom:716.066667pt;}
.ye_c00112{bottom:743.586667pt;}
.yd_c00112{bottom:771.106667pt;}
.yc_c00112{bottom:798.973333pt;}
.yb_c00112{bottom:834.493333pt;}
.ya_c00112{bottom:870.013333pt;}
.y9_c00112{bottom:903.653333pt;}
.y8_c00112{bottom:926.693333pt;}
.y7_c00112{bottom:949.733333pt;}
.y2_c00112{bottom:989.413333pt;}
.h2_c00112{height:18.586667pt;}
.ha_c00112{height:33.918750pt;}
.h3_c00112{height:36.796000pt;}
.h8_c00112{height:41.456250pt;}
.h4_c00112{height:52.736250pt;}
.h9_c00112{height:52.762500pt;}
.h1_c00112{height:57.375000pt;}
.h6_c00112{height:62.781250pt;}
.h5_c00112{height:62.812500pt;}
.h7_c00112{height:1055.996000pt;}
.h0_c00112{height:1056.000000pt;}
.w1_c00112{width:7.346667pt;}
.w2_c00112{width:589.640000pt;}
.w3_c00112{width:815.997333pt;}
.w0_c00112{width:816.000000pt;}
.x0_c00112{left:0.000000pt;}
.x3_c00112{left:113.324000pt;}
.xa_c00112{left:122.272000pt;}
.x6_c00112{left:132.224000pt;}
.x1_c00112{left:137.346667pt;}
.x4_c00112{left:151.106667pt;}
.x5_c00112{left:158.786667pt;}
.x9_c00112{left:305.413333pt;}
.x7_c00112{left:565.024000pt;}
.x8_c00112{left:575.906667pt;}
.x2_c00112{left:695.613333pt;}
}





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

.ir_c00113:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00113;src:url('chunks/assets/font_6d947b290fabe9607faec709.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_b5e2ef53f043e3cbdbc7e6c2.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_6abc41a2e4faea42399b6177.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_88387174110ffdecec32aebd.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00113;src:url('chunks/assets/font_c8138045ebbb5b3b1bf893ec.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;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_c00113;src:url('chunks/assets/font_33ab72d87d9b011fa247d3bc.woff2')format("woff");}.ff6_c00113{font-family:ff6_c00113;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.lsd_c00113{letter-spacing:-0.532800px;}
.lsb_c00113{letter-spacing:-0.429000px;}
.lse_c00113{letter-spacing:-0.302400px;}
.ls8_c00113{letter-spacing:0.000000px;}
.ls9_c00113{letter-spacing:0.022800px;}
.lsa_c00113{letter-spacing:0.166800px;}
.ls4_c00113{letter-spacing:0.302400px;}
.ls6_c00113{letter-spacing:0.518400px;}
.lsc_c00113{letter-spacing:0.529800px;}
.ls5_c00113{letter-spacing:0.696960px;}
.ls0_c00113{letter-spacing:0.720000px;}
.ls7_c00113{letter-spacing:0.740143px;}
.ls3_c00113{letter-spacing:0.740191px;}
.ls2_c00113{letter-spacing:0.740195px;}
.ls1_c00113{letter-spacing:0.740310px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00113{word-spacing:-60.480000px;}
.ws8_c00113{word-spacing:-18.000000px;}
.ws2_c00113{word-spacing:-15.286800px;}
.ws3_c00113{word-spacing:-15.142800px;}
.ws0_c00113{word-spacing:-15.120000px;}
.ws7_c00113{word-spacing:-14.817600px;}
.ws4_c00113{word-spacing:-14.691000px;}
.ws6_c00113{word-spacing:-14.587200px;}
.ws1_c00113{word-spacing:-12.600000px;}
.ws9_c00113{word-spacing:0.000000px;}
._18_c00113{margin-left:-3.647388px;}
._7_c00113{margin-left:-2.539797px;}
._0_c00113{margin-left:-1.451399px;}
._1_c00113{width:1.027797px;}
._5_c00113{width:2.054989px;}
._4_c00113{width:3.084601px;}
._10_c00113{width:4.308651px;}
._15_c00113{width:5.452226px;}
._f_c00113{width:6.894599px;}
._d_c00113{width:7.923001px;}
._e_c00113{width:9.071395px;}
._b_c00113{width:10.281600px;}
._c_c00113{width:11.551801px;}
._6_c00113{width:13.003200px;}
._8_c00113{width:14.030997px;}
._14_c00113{width:15.597053px;}
._13_c00113{width:16.606197px;}
._11_c00113{width:19.608008px;}
._12_c00113{width:21.431992px;}
._16_c00113{width:27.576000px;}
._17_c00113{width:29.347805px;}
._a_c00113{width:35.280000px;}
._3_c00113{width:77.040000px;}
._2_c00113{width:400.739399px;}
._9_c00113{width:503.016618px;}
.fc0_c00113{color:rgb(0,0,0);}
.fs2_c00113{font-size:47.520000px;}
.fs1_c00113{font-size:60.480000px;}
.fs0_c00113{font-size:72.000000px;}
.y0_c00113{bottom:0.000000px;}
.y6_c00113{bottom:4.675500px;}
.y3_c00113{bottom:4.680000px;}
.y5_c00113{bottom:25.195500px;}
.y4_c00113{bottom:32.800500px;}
.y1_c00113{bottom:57.996000px;}
.y27_c00113{bottom:124.956000px;}
.y26_c00113{bottom:155.955000px;}
.y25_c00113{bottom:187.275000px;}
.y24_c00113{bottom:218.235000px;}
.y23_c00113{bottom:249.195000px;}
.y22_c00113{bottom:280.185000px;}
.y21_c00113{bottom:311.505000px;}
.y20_c00113{bottom:342.465000px;}
.y1f_c00113{bottom:373.425000px;}
.y1e_c00113{bottom:404.430000px;}
.y1d_c00113{bottom:435.750000px;}
.y1c_c00113{bottom:466.710000px;}
.y1b_c00113{bottom:497.670000px;}
.y1a_c00113{bottom:528.660000px;}
.y19_c00113{bottom:566.460000px;}
.y18_c00113{bottom:592.380000px;}
.y17_c00113{bottom:618.300000px;}
.y16_c00113{bottom:644.250000px;}
.y15_c00113{bottom:679.170000px;}
.y14_c00113{bottom:704.730000px;}
.y13_c00113{bottom:730.650000px;}
.y12_c00113{bottom:756.570000px;}
.y11_c00113{bottom:782.535000px;}
.y10_c00113{bottom:808.455000px;}
.yf_c00113{bottom:843.375000px;}
.ye_c00113{bottom:878.295000px;}
.yd_c00113{bottom:904.245000px;}
.yc_c00113{bottom:929.805000px;}
.yb_c00113{bottom:955.725000px;}
.ya_c00113{bottom:981.645000px;}
.y9_c00113{bottom:1016.610000px;}
.y8_c00113{bottom:1042.530000px;}
.y7_c00113{bottom:1068.450000px;}
.y2_c00113{bottom:1113.090000px;}
.h2_c00113{height:20.910000px;}
.h3_c00113{height:41.395500px;}
.h5_c00113{height:54.514688px;}
.h6_c00113{height:59.328281px;}
.h4_c00113{height:59.357813px;}
.h1_c00113{height:64.546875px;}
.h7_c00113{height:70.664062px;}
.h0_c00113{height:1188.000000px;}
.w1_c00113{width:8.265000px;}
.w2_c00113{width:663.345000px;}
.w0_c00113{width:918.000000px;}
.x0_c00113{left:0.000000px;}
.x3_c00113{left:127.489500px;}
.x1_c00113{left:154.515000px;}
.x4_c00113{left:169.995000px;}
.x2_c00113{left:782.565000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.lsd_c00113{letter-spacing:-0.473600pt;}
.lsb_c00113{letter-spacing:-0.381333pt;}
.lse_c00113{letter-spacing:-0.268800pt;}
.ls8_c00113{letter-spacing:0.000000pt;}
.ls9_c00113{letter-spacing:0.020267pt;}
.lsa_c00113{letter-spacing:0.148267pt;}
.ls4_c00113{letter-spacing:0.268800pt;}
.ls6_c00113{letter-spacing:0.460800pt;}
.lsc_c00113{letter-spacing:0.470933pt;}
.ls5_c00113{letter-spacing:0.619520pt;}
.ls0_c00113{letter-spacing:0.640000pt;}
.ls7_c00113{letter-spacing:0.657905pt;}
.ls3_c00113{letter-spacing:0.657947pt;}
.ls2_c00113{letter-spacing:0.657951pt;}
.ls1_c00113{letter-spacing:0.658053pt;}
.ws5_c00113{word-spacing:-53.760000pt;}
.ws8_c00113{word-spacing:-16.000000pt;}
.ws2_c00113{word-spacing:-13.588267pt;}
.ws3_c00113{word-spacing:-13.460267pt;}
.ws0_c00113{word-spacing:-13.440000pt;}
.ws7_c00113{word-spacing:-13.171200pt;}
.ws4_c00113{word-spacing:-13.058667pt;}
.ws6_c00113{word-spacing:-12.966400pt;}
.ws1_c00113{word-spacing:-11.200000pt;}
.ws9_c00113{word-spacing:0.000000pt;}
._18_c00113{margin-left:-3.242122pt;}
._7_c00113{margin-left:-2.257597pt;}
._0_c00113{margin-left:-1.290132pt;}
._1_c00113{width:0.913597pt;}
._5_c00113{width:1.826657pt;}
._4_c00113{width:2.741868pt;}
._10_c00113{width:3.829912pt;}
._15_c00113{width:4.846423pt;}
._f_c00113{width:6.128532pt;}
._d_c00113{width:7.042668pt;}
._e_c00113{width:8.063462pt;}
._b_c00113{width:9.139200pt;}
._c_c00113{width:10.268268pt;}
._6_c00113{width:11.558400pt;}
._8_c00113{width:12.471997pt;}
._14_c00113{width:13.864047pt;}
._13_c00113{width:14.761064pt;}
._11_c00113{width:17.429340pt;}
._12_c00113{width:19.050660pt;}
._16_c00113{width:24.512000pt;}
._17_c00113{width:26.086938pt;}
._a_c00113{width:31.360000pt;}
._3_c00113{width:68.480000pt;}
._2_c00113{width:356.212799pt;}
._9_c00113{width:447.125883pt;}
.fs2_c00113{font-size:42.240000pt;}
.fs1_c00113{font-size:53.760000pt;}
.fs0_c00113{font-size:64.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y6_c00113{bottom:4.156000pt;}
.y3_c00113{bottom:4.160000pt;}
.y5_c00113{bottom:22.396000pt;}
.y4_c00113{bottom:29.156000pt;}
.y1_c00113{bottom:51.552000pt;}
.y27_c00113{bottom:111.072000pt;}
.y26_c00113{bottom:138.626667pt;}
.y25_c00113{bottom:166.466667pt;}
.y24_c00113{bottom:193.986667pt;}
.y23_c00113{bottom:221.506667pt;}
.y22_c00113{bottom:249.053333pt;}
.y21_c00113{bottom:276.893333pt;}
.y20_c00113{bottom:304.413333pt;}
.y1f_c00113{bottom:331.933333pt;}
.y1e_c00113{bottom:359.493333pt;}
.y1d_c00113{bottom:387.333333pt;}
.y1c_c00113{bottom:414.853333pt;}
.y1b_c00113{bottom:442.373333pt;}
.y1a_c00113{bottom:469.920000pt;}
.y19_c00113{bottom:503.520000pt;}
.y18_c00113{bottom:526.560000pt;}
.y17_c00113{bottom:549.600000pt;}
.y16_c00113{bottom:572.666667pt;}
.y15_c00113{bottom:603.706667pt;}
.y14_c00113{bottom:626.426667pt;}
.y13_c00113{bottom:649.466667pt;}
.y12_c00113{bottom:672.506667pt;}
.y11_c00113{bottom:695.586667pt;}
.y10_c00113{bottom:718.626667pt;}
.yf_c00113{bottom:749.666667pt;}
.ye_c00113{bottom:780.706667pt;}
.yd_c00113{bottom:803.773333pt;}
.yc_c00113{bottom:826.493333pt;}
.yb_c00113{bottom:849.533333pt;}
.ya_c00113{bottom:872.573333pt;}
.y9_c00113{bottom:903.653333pt;}
.y8_c00113{bottom:926.693333pt;}
.y7_c00113{bottom:949.733333pt;}
.y2_c00113{bottom:989.413333pt;}
.h2_c00113{height:18.586667pt;}
.h3_c00113{height:36.796000pt;}
.h5_c00113{height:48.457500pt;}
.h6_c00113{height:52.736250pt;}
.h4_c00113{height:52.762500pt;}
.h1_c00113{height:57.375000pt;}
.h7_c00113{height:62.812500pt;}
.h0_c00113{height:1056.000000pt;}
.w1_c00113{width:7.346667pt;}
.w2_c00113{width:589.640000pt;}
.w0_c00113{width:816.000000pt;}
.x0_c00113{left:0.000000pt;}
.x3_c00113{left:113.324000pt;}
.x1_c00113{left:137.346667pt;}
.x4_c00113{left:151.106667pt;}
.x2_c00113{left:695.613333pt;}
}





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

.ir_c00114:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00114;src:url('chunks/assets/font_56bdbed10375b9b2f2addde8.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_b2867bd26689b42cf3334126.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_a531e6fd5aea0d1b7fda4217.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_bf9c5fa945b0391518ccefec.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;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_c00114;src:url('chunks/assets/font_ddc8b0bc8b99ae8abebcec83.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00114;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff6_c00114{font-family:ff6_c00114;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.lsd_c00114{letter-spacing:-2.880000px;}
.lsb_c00114{letter-spacing:-1.440000px;}
.lsa_c00114{letter-spacing:-0.144000px;}
.ls9_c00114{letter-spacing:0.000000px;}
.lsc_c00114{letter-spacing:0.504000px;}
.ls1_c00114{letter-spacing:0.720000px;}
.ls3_c00114{letter-spacing:0.732000px;}
.ls6_c00114{letter-spacing:2.160000px;}
.ls7_c00114{letter-spacing:3.600000px;}
.ls5_c00114{letter-spacing:8.100000px;}
.ls8_c00114{letter-spacing:10.944000px;}
.ls0_c00114{letter-spacing:18.000000px;}
.ls2_c00114{letter-spacing:48.384000px;}
.ls4_c00114{letter-spacing:105.840000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00114{word-spacing:-18.504000px;}
.ws0_c00114{word-spacing:-18.000000px;}
.ws1_c00114{word-spacing:-17.856000px;}
.ws2_c00114{word-spacing:-16.560000px;}
.ws4_c00114{word-spacing:-15.120000px;}
.ws5_c00114{word-spacing:0.000000px;}
._3_c00114{margin-left:-2.736000px;}
._0_c00114{margin-left:-1.008000px;}
._1_c00114{width:1.080000px;}
._4_c00114{width:2.232000px;}
._5_c00114{width:3.600000px;}
._8_c00114{width:5.040000px;}
._7_c00114{width:6.120000px;}
._11_c00114{width:7.200000px;}
._f_c00114{width:8.208000px;}
._10_c00114{width:9.576000px;}
._12_c00114{width:10.656000px;}
._d_c00114{width:11.664000px;}
._e_c00114{width:13.320000px;}
._b_c00114{width:14.556024px;}
._a_c00114{width:15.768000px;}
._c_c00114{width:16.895952px;}
._2_c00114{width:19.080000px;}
._6_c00114{width:20.208000px;}
._9_c00114{width:21.948000px;}
._14_c00114{width:23.475001px;}
._13_c00114{width:24.652800px;}
.fc0_c00114{color:rgb(0,0,0);}
.fs2_c00114{font-size:38.880000px;}
.fs1_c00114{font-size:47.520000px;}
.fs3_c00114{font-size:60.480000px;}
.fs0_c00114{font-size:72.000000px;}
.y0_c00114{bottom:0.000000px;}
.y6_c00114{bottom:4.675500px;}
.y3_c00114{bottom:4.680000px;}
.y5_c00114{bottom:25.195500px;}
.y4_c00114{bottom:32.800500px;}
.y1_c00114{bottom:57.996000px;}
.y2e_c00114{bottom:130.716000px;}
.y2d_c00114{bottom:147.996000px;}
.y2c_c00114{bottom:164.955000px;}
.y2b_c00114{bottom:171.795000px;}
.y2a_c00114{bottom:182.235000px;}
.y29_c00114{bottom:199.515000px;}
.y28_c00114{bottom:216.795000px;}
.y27_c00114{bottom:234.075000px;}
.y26_c00114{bottom:251.355000px;}
.y25_c00114{bottom:258.195000px;}
.y24_c00114{bottom:268.635000px;}
.y23_c00114{bottom:285.945000px;}
.y22_c00114{bottom:303.225000px;}
.y21_c00114{bottom:310.065000px;}
.y20_c00114{bottom:320.865000px;}
.y1f_c00114{bottom:355.065000px;}
.y1e_c00114{bottom:386.385000px;}
.y1d_c00114{bottom:417.390000px;}
.y1c_c00114{bottom:448.350000px;}
.y1b_c00114{bottom:479.310000px;}
.y19_c00114{bottom:510.630000px;}
.y1a_c00114{bottom:518.940000px;}
.y17_c00114{bottom:541.620000px;}
.y18_c00114{bottom:549.900000px;}
.y16_c00114{bottom:572.580000px;}
.y15_c00114{bottom:603.540000px;}
.y14_c00114{bottom:643.890000px;}
.y13_c00114{bottom:683.850000px;}
.y12_c00114{bottom:714.810000px;}
.y11_c00114{bottom:745.770000px;}
.y10_c00114{bottom:777.135000px;}
.yf_c00114{bottom:808.095000px;}
.ye_c00114{bottom:839.055000px;}
.yd_c00114{bottom:870.015000px;}
.yc_c00114{bottom:901.365000px;}
.yb_c00114{bottom:932.325000px;}
.ya_c00114{bottom:972.285000px;}
.y9_c00114{bottom:1003.245000px;}
.y8_c00114{bottom:1034.610000px;}
.y7_c00114{bottom:1065.570000px;}
.y2_c00114{bottom:1113.090000px;}
.h2_c00114{height:20.910000px;}
.hc_c00114{height:34.855313px;}
.h9_c00114{height:38.158594px;}
.h3_c00114{height:41.395500px;}
.h8_c00114{height:46.615078px;}
.h7_c00114{height:46.638281px;}
.hb_c00114{height:54.219375px;}
.ha_c00114{height:59.357813px;}
.h1_c00114{height:64.546875px;}
.h5_c00114{height:70.628906px;}
.h4_c00114{height:70.664062px;}
.h6_c00114{height:1187.995500px;}
.h0_c00114{height:1188.000000px;}
.w1_c00114{width:8.265000px;}
.w2_c00114{width:663.345000px;}
.w3_c00114{width:917.997000px;}
.w0_c00114{width:918.000000px;}
.x0_c00114{left:0.000000px;}
.x3_c00114{left:127.489500px;}
.xd_c00114{left:137.556000px;}
.x1_c00114{left:154.515000px;}
.x4_c00114{left:169.995000px;}
.x5_c00114{left:178.635000px;}
.x8_c00114{left:211.392000px;}
.x9_c00114{left:223.635000px;}
.x6_c00114{left:239.832000px;}
.x7_c00114{left:252.105000px;}
.xc_c00114{left:343.590000px;}
.xa_c00114{left:509.577000px;}
.xb_c00114{left:521.820000px;}
.x2_c00114{left:782.565000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.lsd_c00114{letter-spacing:-2.560000pt;}
.lsb_c00114{letter-spacing:-1.280000pt;}
.lsa_c00114{letter-spacing:-0.128000pt;}
.ls9_c00114{letter-spacing:0.000000pt;}
.lsc_c00114{letter-spacing:0.448000pt;}
.ls1_c00114{letter-spacing:0.640000pt;}
.ls3_c00114{letter-spacing:0.650667pt;}
.ls6_c00114{letter-spacing:1.920000pt;}
.ls7_c00114{letter-spacing:3.200000pt;}
.ls5_c00114{letter-spacing:7.200000pt;}
.ls8_c00114{letter-spacing:9.728000pt;}
.ls0_c00114{letter-spacing:16.000000pt;}
.ls2_c00114{letter-spacing:43.008000pt;}
.ls4_c00114{letter-spacing:94.080000pt;}
.ws3_c00114{word-spacing:-16.448000pt;}
.ws0_c00114{word-spacing:-16.000000pt;}
.ws1_c00114{word-spacing:-15.872000pt;}
.ws2_c00114{word-spacing:-14.720000pt;}
.ws4_c00114{word-spacing:-13.440000pt;}
.ws5_c00114{word-spacing:0.000000pt;}
._3_c00114{margin-left:-2.432000pt;}
._0_c00114{margin-left:-0.896000pt;}
._1_c00114{width:0.960000pt;}
._4_c00114{width:1.984000pt;}
._5_c00114{width:3.200000pt;}
._8_c00114{width:4.480000pt;}
._7_c00114{width:5.440000pt;}
._11_c00114{width:6.400000pt;}
._f_c00114{width:7.296000pt;}
._10_c00114{width:8.512000pt;}
._12_c00114{width:9.472000pt;}
._d_c00114{width:10.368000pt;}
._e_c00114{width:11.840000pt;}
._b_c00114{width:12.938688pt;}
._a_c00114{width:14.016000pt;}
._c_c00114{width:15.018624pt;}
._2_c00114{width:16.960000pt;}
._6_c00114{width:17.962667pt;}
._9_c00114{width:19.509333pt;}
._14_c00114{width:20.866668pt;}
._13_c00114{width:21.913600pt;}
.fs2_c00114{font-size:34.560000pt;}
.fs1_c00114{font-size:42.240000pt;}
.fs3_c00114{font-size:53.760000pt;}
.fs0_c00114{font-size:64.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y6_c00114{bottom:4.156000pt;}
.y3_c00114{bottom:4.160000pt;}
.y5_c00114{bottom:22.396000pt;}
.y4_c00114{bottom:29.156000pt;}
.y1_c00114{bottom:51.552000pt;}
.y2e_c00114{bottom:116.192000pt;}
.y2d_c00114{bottom:131.552000pt;}
.y2c_c00114{bottom:146.626667pt;}
.y2b_c00114{bottom:152.706667pt;}
.y2a_c00114{bottom:161.986667pt;}
.y29_c00114{bottom:177.346667pt;}
.y28_c00114{bottom:192.706667pt;}
.y27_c00114{bottom:208.066667pt;}
.y26_c00114{bottom:223.426667pt;}
.y25_c00114{bottom:229.506667pt;}
.y24_c00114{bottom:238.786667pt;}
.y23_c00114{bottom:254.173333pt;}
.y22_c00114{bottom:269.533333pt;}
.y21_c00114{bottom:275.613333pt;}
.y20_c00114{bottom:285.213333pt;}
.y1f_c00114{bottom:315.613333pt;}
.y1e_c00114{bottom:343.453333pt;}
.y1d_c00114{bottom:371.013333pt;}
.y1c_c00114{bottom:398.533333pt;}
.y1b_c00114{bottom:426.053333pt;}
.y19_c00114{bottom:453.893333pt;}
.y1a_c00114{bottom:461.280000pt;}
.y17_c00114{bottom:481.440000pt;}
.y18_c00114{bottom:488.800000pt;}
.y16_c00114{bottom:508.960000pt;}
.y15_c00114{bottom:536.480000pt;}
.y14_c00114{bottom:572.346667pt;}
.y13_c00114{bottom:607.866667pt;}
.y12_c00114{bottom:635.386667pt;}
.y11_c00114{bottom:662.906667pt;}
.y10_c00114{bottom:690.786667pt;}
.yf_c00114{bottom:718.306667pt;}
.ye_c00114{bottom:745.826667pt;}
.yd_c00114{bottom:773.346667pt;}
.yc_c00114{bottom:801.213333pt;}
.yb_c00114{bottom:828.733333pt;}
.ya_c00114{bottom:864.253333pt;}
.y9_c00114{bottom:891.773333pt;}
.y8_c00114{bottom:919.653333pt;}
.y7_c00114{bottom:947.173333pt;}
.y2_c00114{bottom:989.413333pt;}
.h2_c00114{height:18.586667pt;}
.hc_c00114{height:30.982500pt;}
.h9_c00114{height:33.918750pt;}
.h3_c00114{height:36.796000pt;}
.h8_c00114{height:41.435625pt;}
.h7_c00114{height:41.456250pt;}
.hb_c00114{height:48.195000pt;}
.ha_c00114{height:52.762500pt;}
.h1_c00114{height:57.375000pt;}
.h5_c00114{height:62.781250pt;}
.h4_c00114{height:62.812500pt;}
.h6_c00114{height:1055.996000pt;}
.h0_c00114{height:1056.000000pt;}
.w1_c00114{width:7.346667pt;}
.w2_c00114{width:589.640000pt;}
.w3_c00114{width:815.997333pt;}
.w0_c00114{width:816.000000pt;}
.x0_c00114{left:0.000000pt;}
.x3_c00114{left:113.324000pt;}
.xd_c00114{left:122.272000pt;}
.x1_c00114{left:137.346667pt;}
.x4_c00114{left:151.106667pt;}
.x5_c00114{left:158.786667pt;}
.x8_c00114{left:187.904000pt;}
.x9_c00114{left:198.786667pt;}
.x6_c00114{left:213.184000pt;}
.x7_c00114{left:224.093333pt;}
.xc_c00114{left:305.413333pt;}
.xa_c00114{left:452.957333pt;}
.xb_c00114{left:463.840000pt;}
.x2_c00114{left:695.613333pt;}
}





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

.ir_c00115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00115;src:url('chunks/assets/font_dbd825f0273c8fb6b96831e6.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_7402f98438821d1246c82eaf.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_84f2917d82f144c06978afc3.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00115;src:url('chunks/assets/font_04d4606b4b22ed82a83b2e78.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_1754fcb5eb61bada7237ddc6.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;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_c00115;src:url('chunks/assets/font_3dbce06b43528b92b4c723c9.woff2')format("woff");}.ff6_c00115{font-family:ff6_c00115;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls5_c00115{letter-spacing:-2.880000px;}
.lsa_c00115{letter-spacing:-1.740000px;}
.ls8_c00115{letter-spacing:-1.422000px;}
.lsb_c00115{letter-spacing:-0.302400px;}
.ls6_c00115{letter-spacing:-0.288000px;}
.ls9_c00115{letter-spacing:-0.241800px;}
.ls4_c00115{letter-spacing:0.000000px;}
.ls7_c00115{letter-spacing:0.020400px;}
.ls0_c00115{letter-spacing:0.180000px;}
.ls3_c00115{letter-spacing:0.708917px;}
.ls2_c00115{letter-spacing:0.720000px;}
.ls1_c00115{letter-spacing:16.560000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00115{word-spacing:-60.500400px;}
.ws3_c00115{word-spacing:-60.480000px;}
.ws0_c00115{word-spacing:-18.000000px;}
.ws1_c00115{word-spacing:-17.712000px;}
.ws5_c00115{word-spacing:-15.140400px;}
.ws4_c00115{word-spacing:-15.120000px;}
.ws7_c00115{word-spacing:-14.878200px;}
.ws9_c00115{word-spacing:-14.817600px;}
.ws6_c00115{word-spacing:-13.698000px;}
.ws8_c00115{word-spacing:-13.380000px;}
.wsa_c00115{word-spacing:0.000000px;}
._10_c00115{margin-left:-3.396000px;}
._2_c00115{margin-left:-2.376000px;}
._5_c00115{margin-left:-1.080000px;}
._3_c00115{width:1.368000px;}
._6_c00115{width:2.376000px;}
._7_c00115{width:3.456000px;}
._8_c00115{width:5.604000px;}
._a_c00115{width:6.888000px;}
._9_c00115{width:8.064000px;}
._0_c00115{width:11.736000px;}
._4_c00115{width:12.888000px;}
._1_c00115{width:13.896000px;}
._e_c00115{width:15.552000px;}
._f_c00115{width:17.268000px;}
._11_c00115{width:20.100000px;}
._c_c00115{width:21.888000px;}
._b_c00115{width:23.040000px;}
._d_c00115{width:24.624000px;}
.fc0_c00115{color:rgb(0,0,0);}
.fs1_c00115{font-size:60.480000px;}
.fs0_c00115{font-size:72.000000px;}
.y0_c00115{bottom:0.000000px;}
.y6_c00115{bottom:4.675500px;}
.y3_c00115{bottom:4.680000px;}
.y5_c00115{bottom:25.195500px;}
.y4_c00115{bottom:32.800500px;}
.y1_c00115{bottom:57.996000px;}
.y23_c00115{bottom:136.116000px;}
.y22_c00115{bottom:171.075000px;}
.y21_c00115{bottom:205.995000px;}
.y20_c00115{bottom:240.915000px;}
.y1f_c00115{bottom:275.865000px;}
.y1e_c00115{bottom:301.785000px;}
.y1d_c00115{bottom:336.345000px;}
.y1c_c00115{bottom:371.265000px;}
.y1b_c00115{bottom:406.230000px;}
.y1a_c00115{bottom:441.150000px;}
.y19_c00115{bottom:476.070000px;}
.y18_c00115{bottom:510.990000px;}
.y17_c00115{bottom:545.940000px;}
.y16_c00115{bottom:580.860000px;}
.y15_c00115{bottom:615.420000px;}
.y14_c00115{bottom:652.890000px;}
.y13_c00115{bottom:683.850000px;}
.y12_c00115{bottom:714.810000px;}
.y11_c00115{bottom:745.770000px;}
.y10_c00115{bottom:786.135000px;}
.yf_c00115{bottom:817.095000px;}
.ye_c00115{bottom:848.055000px;}
.yd_c00115{bottom:879.015000px;}
.yc_c00115{bottom:910.365000px;}
.yb_c00115{bottom:941.325000px;}
.ya_c00115{bottom:972.285000px;}
.y9_c00115{bottom:1003.245000px;}
.y8_c00115{bottom:1034.610000px;}
.y7_c00115{bottom:1065.570000px;}
.y2_c00115{bottom:1113.090000px;}
.h2_c00115{height:20.910000px;}
.h3_c00115{height:41.395500px;}
.h6_c00115{height:59.328281px;}
.h5_c00115{height:59.357813px;}
.h1_c00115{height:64.546875px;}
.h4_c00115{height:70.664062px;}
.h0_c00115{height:1188.000000px;}
.w1_c00115{width:8.265000px;}
.w2_c00115{width:663.345000px;}
.w0_c00115{width:918.000000px;}
.x0_c00115{left:0.000000px;}
.x3_c00115{left:127.489500px;}
.x1_c00115{left:154.515000px;}
.x5_c00115{left:169.995000px;}
.x4_c00115{left:178.635000px;}
.x2_c00115{left:782.565000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls5_c00115{letter-spacing:-2.560000pt;}
.lsa_c00115{letter-spacing:-1.546667pt;}
.ls8_c00115{letter-spacing:-1.264000pt;}
.lsb_c00115{letter-spacing:-0.268800pt;}
.ls6_c00115{letter-spacing:-0.256000pt;}
.ls9_c00115{letter-spacing:-0.214933pt;}
.ls4_c00115{letter-spacing:0.000000pt;}
.ls7_c00115{letter-spacing:0.018133pt;}
.ls0_c00115{letter-spacing:0.160000pt;}
.ls3_c00115{letter-spacing:0.630148pt;}
.ls2_c00115{letter-spacing:0.640000pt;}
.ls1_c00115{letter-spacing:14.720000pt;}
.ws2_c00115{word-spacing:-53.778133pt;}
.ws3_c00115{word-spacing:-53.760000pt;}
.ws0_c00115{word-spacing:-16.000000pt;}
.ws1_c00115{word-spacing:-15.744000pt;}
.ws5_c00115{word-spacing:-13.458133pt;}
.ws4_c00115{word-spacing:-13.440000pt;}
.ws7_c00115{word-spacing:-13.225067pt;}
.ws9_c00115{word-spacing:-13.171200pt;}
.ws6_c00115{word-spacing:-12.176000pt;}
.ws8_c00115{word-spacing:-11.893333pt;}
.wsa_c00115{word-spacing:0.000000pt;}
._10_c00115{margin-left:-3.018667pt;}
._2_c00115{margin-left:-2.112000pt;}
._5_c00115{margin-left:-0.960000pt;}
._3_c00115{width:1.216000pt;}
._6_c00115{width:2.112000pt;}
._7_c00115{width:3.072000pt;}
._8_c00115{width:4.981333pt;}
._a_c00115{width:6.122667pt;}
._9_c00115{width:7.168000pt;}
._0_c00115{width:10.432000pt;}
._4_c00115{width:11.456000pt;}
._1_c00115{width:12.352000pt;}
._e_c00115{width:13.824000pt;}
._f_c00115{width:15.349333pt;}
._11_c00115{width:17.866667pt;}
._c_c00115{width:19.456000pt;}
._b_c00115{width:20.480000pt;}
._d_c00115{width:21.888000pt;}
.fs1_c00115{font-size:53.760000pt;}
.fs0_c00115{font-size:64.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y6_c00115{bottom:4.156000pt;}
.y3_c00115{bottom:4.160000pt;}
.y5_c00115{bottom:22.396000pt;}
.y4_c00115{bottom:29.156000pt;}
.y1_c00115{bottom:51.552000pt;}
.y23_c00115{bottom:120.992000pt;}
.y22_c00115{bottom:152.066667pt;}
.y21_c00115{bottom:183.106667pt;}
.y20_c00115{bottom:214.146667pt;}
.y1f_c00115{bottom:245.213333pt;}
.y1e_c00115{bottom:268.253333pt;}
.y1d_c00115{bottom:298.973333pt;}
.y1c_c00115{bottom:330.013333pt;}
.y1b_c00115{bottom:361.093333pt;}
.y1a_c00115{bottom:392.133333pt;}
.y19_c00115{bottom:423.173333pt;}
.y18_c00115{bottom:454.213333pt;}
.y17_c00115{bottom:485.280000pt;}
.y16_c00115{bottom:516.320000pt;}
.y15_c00115{bottom:547.040000pt;}
.y14_c00115{bottom:580.346667pt;}
.y13_c00115{bottom:607.866667pt;}
.y12_c00115{bottom:635.386667pt;}
.y11_c00115{bottom:662.906667pt;}
.y10_c00115{bottom:698.786667pt;}
.yf_c00115{bottom:726.306667pt;}
.ye_c00115{bottom:753.826667pt;}
.yd_c00115{bottom:781.346667pt;}
.yc_c00115{bottom:809.213333pt;}
.yb_c00115{bottom:836.733333pt;}
.ya_c00115{bottom:864.253333pt;}
.y9_c00115{bottom:891.773333pt;}
.y8_c00115{bottom:919.653333pt;}
.y7_c00115{bottom:947.173333pt;}
.y2_c00115{bottom:989.413333pt;}
.h2_c00115{height:18.586667pt;}
.h3_c00115{height:36.796000pt;}
.h6_c00115{height:52.736250pt;}
.h5_c00115{height:52.762500pt;}
.h1_c00115{height:57.375000pt;}
.h4_c00115{height:62.812500pt;}
.h0_c00115{height:1056.000000pt;}
.w1_c00115{width:7.346667pt;}
.w2_c00115{width:589.640000pt;}
.w0_c00115{width:816.000000pt;}
.x0_c00115{left:0.000000pt;}
.x3_c00115{left:113.324000pt;}
.x1_c00115{left:137.346667pt;}
.x5_c00115{left:151.106667pt;}
.x4_c00115{left:158.786667pt;}
.x2_c00115{left:695.613333pt;}
}





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

.ir_c00116:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00116;src:url('chunks/assets/font_b70710b437c69b276449f566.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_6d28ffb969aebcce0b298f68.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_c507619ecd21ad71c0cea0a6.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00116;src:url('chunks/assets/font_d96e54135c8ece32216208b2.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00116;src:url('chunks/assets/font_4a4b7422669fddcae6573638.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;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_c00116;src:url('chunks/assets/font_4bdfe11cf09e702db8b13e37.woff2')format("woff");}.ff6_c00116{font-family:ff6_c00116;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls1d_c00116{letter-spacing:-2.880000px;}
.ls16_c00116{letter-spacing:-1.416000px;}
.ls14_c00116{letter-spacing:-0.912000px;}
.ls1c_c00116{letter-spacing:-0.648000px;}
.ls1b_c00116{letter-spacing:-0.302400px;}
.ls1a_c00116{letter-spacing:-0.241800px;}
.ls13_c00116{letter-spacing:0.000000px;}
.ls19_c00116{letter-spacing:0.020400px;}
.ls1f_c00116{letter-spacing:0.022800px;}
.ls15_c00116{letter-spacing:0.060600px;}
.ls1e_c00116{letter-spacing:0.166800px;}
.ls18_c00116{letter-spacing:0.313800px;}
.ls12_c00116{letter-spacing:0.524160px;}
.ls17_c00116{letter-spacing:0.529800px;}
.lsd_c00116{letter-spacing:0.708247px;}
.lsc_c00116{letter-spacing:0.708270px;}
.lsb_c00116{letter-spacing:0.708728px;}
.ls0_c00116{letter-spacing:0.720000px;}
.lsa_c00116{letter-spacing:0.828716px;}
.ls3_c00116{letter-spacing:1.152000px;}
.lse_c00116{letter-spacing:2.160000px;}
.ls6_c00116{letter-spacing:3.600000px;}
.ls4_c00116{letter-spacing:5.040000px;}
.ls8_c00116{letter-spacing:5.048622px;}
.ls7_c00116{letter-spacing:5.060303px;}
.ls11_c00116{letter-spacing:6.468716px;}
.ls10_c00116{letter-spacing:6.480000px;}
.ls9_c00116{letter-spacing:9.360000px;}
.ls5_c00116{letter-spacing:18.000000px;}
.lsf_c00116{letter-spacing:18.180000px;}
.ls2_c00116{letter-spacing:23.760000px;}
.ls1_c00116{letter-spacing:117.360000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00116{word-spacing:-18.000000px;}
.ws5_c00116{word-spacing:-15.649800px;}
.ws3_c00116{word-spacing:-15.433800px;}
.ws9_c00116{word-spacing:-15.286800px;}
.ws1_c00116{word-spacing:-15.180600px;}
.ws0_c00116{word-spacing:-15.120000px;}
.ws4_c00116{word-spacing:-14.878200px;}
.ws6_c00116{word-spacing:-14.817600px;}
.ws7_c00116{word-spacing:-14.208000px;}
.ws2_c00116{word-spacing:-13.704000px;}
.wsa_c00116{word-spacing:0.000000px;}
._6_c00116{margin-left:-2.849660px;}
._0_c00116{margin-left:-1.837745px;}
._1_c00116{width:1.054227px;}
._5_c00116{width:2.981918px;}
._c_c00116{width:4.108201px;}
._d_c00116{width:5.156247px;}
._11_c00116{width:7.115895px;}
._4_c00116{width:8.728776px;}
._2_c00116{width:10.160398px;}
._3_c00116{width:11.270267px;}
._9_c00116{width:15.616489px;}
._a_c00116{width:16.955394px;}
._10_c00116{width:18.000269px;}
._b_c00116{width:19.047644px;}
._e_c00116{width:23.607518px;}
._f_c00116{width:25.770779px;}
._7_c00116{width:27.936000px;}
._8_c00116{width:29.913374px;}
.fc1_c00116{color:rgb(255,0,0);}
.fc0_c00116{color:rgb(0,0,0);}
.fs1_c00116{font-size:60.480000px;}
.fs0_c00116{font-size:72.000000px;}
.y0_c00116{bottom:0.000000px;}
.y6_c00116{bottom:4.675500px;}
.y3_c00116{bottom:4.680000px;}
.y5_c00116{bottom:25.195500px;}
.y4_c00116{bottom:32.800500px;}
.y1_c00116{bottom:57.996000px;}
.y25_c00116{bottom:119.196000px;}
.y24_c00116{bottom:145.116000px;}
.y23_c00116{bottom:171.075000px;}
.y22_c00116{bottom:196.995000px;}
.y21_c00116{bottom:222.915000px;}
.y20_c00116{bottom:248.835000px;}
.y1f_c00116{bottom:274.785000px;}
.y1e_c00116{bottom:300.345000px;}
.y1d_c00116{bottom:335.265000px;}
.y1c_c00116{bottom:372.705000px;}
.y1b_c00116{bottom:403.710000px;}
.y1a_c00116{bottom:434.670000px;}
.y19_c00116{bottom:465.630000px;}
.y18_c00116{bottom:496.950000px;}
.y17_c00116{bottom:527.940000px;}
.y16_c00116{bottom:558.900000px;}
.y15_c00116{bottom:589.860000px;}
.y14_c00116{bottom:620.820000px;}
.y13_c00116{bottom:658.650000px;}
.y12_c00116{bottom:693.570000px;}
.y11_c00116{bottom:728.490000px;}
.y10_c00116{bottom:763.455000px;}
.yf_c00116{bottom:798.375000px;}
.ye_c00116{bottom:833.295000px;}
.yd_c00116{bottom:868.215000px;}
.yc_c00116{bottom:902.805000px;}
.yb_c00116{bottom:937.725000px;}
.ya_c00116{bottom:972.645000px;}
.y9_c00116{bottom:1007.565000px;}
.y8_c00116{bottom:1033.530000px;}
.y7_c00116{bottom:1068.450000px;}
.y2_c00116{bottom:1113.090000px;}
.h2_c00116{height:20.910000px;}
.h3_c00116{height:41.395500px;}
.h5_c00116{height:59.328281px;}
.h4_c00116{height:59.357813px;}
.h1_c00116{height:64.546875px;}
.h6_c00116{height:70.628906px;}
.h7_c00116{height:70.664062px;}
.h0_c00116{height:1188.000000px;}
.w1_c00116{width:8.265000px;}
.w2_c00116{width:663.345000px;}
.w0_c00116{width:918.000000px;}
.x0_c00116{left:0.000000px;}
.x3_c00116{left:127.489500px;}
.x1_c00116{left:154.515000px;}
.x4_c00116{left:169.995000px;}
.x2_c00116{left:782.565000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls1d_c00116{letter-spacing:-2.560000pt;}
.ls16_c00116{letter-spacing:-1.258667pt;}
.ls14_c00116{letter-spacing:-0.810667pt;}
.ls1c_c00116{letter-spacing:-0.576000pt;}
.ls1b_c00116{letter-spacing:-0.268800pt;}
.ls1a_c00116{letter-spacing:-0.214933pt;}
.ls13_c00116{letter-spacing:0.000000pt;}
.ls19_c00116{letter-spacing:0.018133pt;}
.ls1f_c00116{letter-spacing:0.020267pt;}
.ls15_c00116{letter-spacing:0.053867pt;}
.ls1e_c00116{letter-spacing:0.148267pt;}
.ls18_c00116{letter-spacing:0.278933pt;}
.ls12_c00116{letter-spacing:0.465920pt;}
.ls17_c00116{letter-spacing:0.470933pt;}
.lsd_c00116{letter-spacing:0.629553pt;}
.lsc_c00116{letter-spacing:0.629573pt;}
.lsb_c00116{letter-spacing:0.629980pt;}
.ls0_c00116{letter-spacing:0.640000pt;}
.lsa_c00116{letter-spacing:0.736637pt;}
.ls3_c00116{letter-spacing:1.024000pt;}
.lse_c00116{letter-spacing:1.920000pt;}
.ls6_c00116{letter-spacing:3.200000pt;}
.ls4_c00116{letter-spacing:4.480000pt;}
.ls8_c00116{letter-spacing:4.487664pt;}
.ls7_c00116{letter-spacing:4.498047pt;}
.ls11_c00116{letter-spacing:5.749970pt;}
.ls10_c00116{letter-spacing:5.760000pt;}
.ls9_c00116{letter-spacing:8.320000pt;}
.ls5_c00116{letter-spacing:16.000000pt;}
.lsf_c00116{letter-spacing:16.160000pt;}
.ls2_c00116{letter-spacing:21.120000pt;}
.ls1_c00116{letter-spacing:104.320000pt;}
.ws8_c00116{word-spacing:-16.000000pt;}
.ws5_c00116{word-spacing:-13.910933pt;}
.ws3_c00116{word-spacing:-13.718933pt;}
.ws9_c00116{word-spacing:-13.588267pt;}
.ws1_c00116{word-spacing:-13.493867pt;}
.ws0_c00116{word-spacing:-13.440000pt;}
.ws4_c00116{word-spacing:-13.225067pt;}
.ws6_c00116{word-spacing:-13.171200pt;}
.ws7_c00116{word-spacing:-12.629333pt;}
.ws2_c00116{word-spacing:-12.181333pt;}
.wsa_c00116{word-spacing:0.000000pt;}
._6_c00116{margin-left:-2.533031pt;}
._0_c00116{margin-left:-1.633551pt;}
._1_c00116{width:0.937091pt;}
._5_c00116{width:2.650594pt;}
._c_c00116{width:3.651734pt;}
._d_c00116{width:4.583331pt;}
._11_c00116{width:6.325240pt;}
._4_c00116{width:7.758912pt;}
._2_c00116{width:9.031465pt;}
._3_c00116{width:10.018015pt;}
._9_c00116{width:13.881324pt;}
._a_c00116{width:15.071462pt;}
._10_c00116{width:16.000239pt;}
._b_c00116{width:16.931239pt;}
._e_c00116{width:20.984461pt;}
._f_c00116{width:22.907359pt;}
._7_c00116{width:24.832000pt;}
._8_c00116{width:26.589666pt;}
.fs1_c00116{font-size:53.760000pt;}
.fs0_c00116{font-size:64.000000pt;}
.y0_c00116{bottom:0.000000pt;}
.y6_c00116{bottom:4.156000pt;}
.y3_c00116{bottom:4.160000pt;}
.y5_c00116{bottom:22.396000pt;}
.y4_c00116{bottom:29.156000pt;}
.y1_c00116{bottom:51.552000pt;}
.y25_c00116{bottom:105.952000pt;}
.y24_c00116{bottom:128.992000pt;}
.y23_c00116{bottom:152.066667pt;}
.y22_c00116{bottom:175.106667pt;}
.y21_c00116{bottom:198.146667pt;}
.y20_c00116{bottom:221.186667pt;}
.y1f_c00116{bottom:244.253333pt;}
.y1e_c00116{bottom:266.973333pt;}
.y1d_c00116{bottom:298.013333pt;}
.y1c_c00116{bottom:331.293333pt;}
.y1b_c00116{bottom:358.853333pt;}
.y1a_c00116{bottom:386.373333pt;}
.y19_c00116{bottom:413.893333pt;}
.y18_c00116{bottom:441.733333pt;}
.y17_c00116{bottom:469.280000pt;}
.y16_c00116{bottom:496.800000pt;}
.y15_c00116{bottom:524.320000pt;}
.y14_c00116{bottom:551.840000pt;}
.y13_c00116{bottom:585.466667pt;}
.y12_c00116{bottom:616.506667pt;}
.y11_c00116{bottom:647.546667pt;}
.y10_c00116{bottom:678.626667pt;}
.yf_c00116{bottom:709.666667pt;}
.ye_c00116{bottom:740.706667pt;}
.yd_c00116{bottom:771.746667pt;}
.yc_c00116{bottom:802.493333pt;}
.yb_c00116{bottom:833.533333pt;}
.ya_c00116{bottom:864.573333pt;}
.y9_c00116{bottom:895.613333pt;}
.y8_c00116{bottom:918.693333pt;}
.y7_c00116{bottom:949.733333pt;}
.y2_c00116{bottom:989.413333pt;}
.h2_c00116{height:18.586667pt;}
.h3_c00116{height:36.796000pt;}
.h5_c00116{height:52.736250pt;}
.h4_c00116{height:52.762500pt;}
.h1_c00116{height:57.375000pt;}
.h6_c00116{height:62.781250pt;}
.h7_c00116{height:62.812500pt;}
.h0_c00116{height:1056.000000pt;}
.w1_c00116{width:7.346667pt;}
.w2_c00116{width:589.640000pt;}
.w0_c00116{width:816.000000pt;}
.x0_c00116{left:0.000000pt;}
.x3_c00116{left:113.324000pt;}
.x1_c00116{left:137.346667pt;}
.x4_c00116{left:151.106667pt;}
.x2_c00116{left:695.613333pt;}
}





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

.ir_c00117:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00117;src:url('chunks/assets/font_889a5c9f6fcf23e49b8e4b21.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_dc046ed13a93906d2e0632f6.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_fa4ca1967d4001049d79a73f.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_35c88bdd4d253ee274f161c7.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;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_c00117;src:url('chunks/assets/font_348fec8d7f4d82955f0d7134.woff2')format("woff");}.ff5_c00117{font-family:ff5_c00117;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00117;src:url('chunks/assets/font_4c52c3db3b28d2d7d256bb91.woff2')format("woff");}.ff6_c00117{font-family:ff6_c00117;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls5_c00117{letter-spacing:-0.720000px;}
.ls4_c00117{letter-spacing:0.000000px;}
.ls1_c00117{letter-spacing:0.720000px;}
.ls3_c00117{letter-spacing:0.732000px;}
.ls0_c00117{letter-spacing:0.840000px;}
.ls2_c00117{letter-spacing:48.384000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00117{word-spacing:-72.000000px;}
.ws1_c00117{word-spacing:-60.480000px;}
.ws0_c00117{word-spacing:-15.120000px;}
.ws3_c00117{word-spacing:0.000000px;}
._d_c00117{margin-left:-2.793293px;}
._0_c00117{margin-left:-1.633202px;}
._1_c00117{width:1.385063px;}
._2_c00117{width:2.902798px;}
._e_c00117{width:3.927076px;}
._4_c00117{width:5.685604px;}
._3_c00117{width:6.833998px;}
._f_c00117{width:8.504496px;}
._6_c00117{width:9.986145px;}
._5_c00117{width:12.035399px;}
._7_c00117{width:13.312545px;}
._8_c00117{width:16.753202px;}
._a_c00117{width:19.051805px;}
._9_c00117{width:20.321401px;}
._b_c00117{width:24.171719px;}
._c_c00117{width:105.840000px;}
.fc0_c00117{color:rgb(0,0,0);}
.fs1_c00117{font-size:60.480000px;}
.fs0_c00117{font-size:72.000000px;}
.y0_c00117{bottom:0.000000px;}
.y6_c00117{bottom:4.675500px;}
.y3_c00117{bottom:4.680000px;}
.y5_c00117{bottom:25.195500px;}
.y4_c00117{bottom:32.800500px;}
.y1_c00117{bottom:57.996000px;}
.y22_c00117{bottom:138.276000px;}
.y21_c00117{bottom:169.275000px;}
.y20_c00117{bottom:200.235000px;}
.y1f_c00117{bottom:231.555000px;}
.y1e_c00117{bottom:262.515000px;}
.y1d_c00117{bottom:302.505000px;}
.y1c_c00117{bottom:340.305000px;}
.y1b_c00117{bottom:375.225000px;}
.y1a_c00117{bottom:410.190000px;}
.y19_c00117{bottom:436.110000px;}
.y18_c00117{bottom:472.470000px;}
.y17_c00117{bottom:507.390000px;}
.y16_c00117{bottom:538.380000px;}
.y15_c00117{bottom:673.770000px;}
.y14_c00117{bottom:710.850000px;}
.y13_c00117{bottom:748.650000px;}
.y12_c00117{bottom:774.615000px;}
.y11_c00117{bottom:800.535000px;}
.y10_c00117{bottom:826.455000px;}
.yf_c00117{bottom:852.375000px;}
.ye_c00117{bottom:878.295000px;}
.yd_c00117{bottom:904.245000px;}
.yc_c00117{bottom:929.805000px;}
.yb_c00117{bottom:955.725000px;}
.ya_c00117{bottom:981.645000px;}
.y9_c00117{bottom:1007.565000px;}
.y8_c00117{bottom:1033.530000px;}
.y7_c00117{bottom:1068.450000px;}
.y2_c00117{bottom:1113.090000px;}
.h2_c00117{height:20.910000px;}
.h3_c00117{height:41.395500px;}
.h5_c00117{height:59.328281px;}
.h4_c00117{height:59.357813px;}
.h1_c00117{height:64.546875px;}
.h6_c00117{height:70.628906px;}
.h7_c00117{height:70.664062px;}
.h0_c00117{height:1188.000000px;}
.w1_c00117{width:8.265000px;}
.w2_c00117{width:663.345000px;}
.w0_c00117{width:918.000000px;}
.x0_c00117{left:0.000000px;}
.x3_c00117{left:127.489500px;}
.x1_c00117{left:154.515000px;}
.x4_c00117{left:169.995000px;}
.xa_c00117{left:291.705000px;}
.x9_c00117{left:292.785000px;}
.xb_c00117{left:294.945000px;}
.x6_c00117{left:296.025000px;}
.x7_c00117{left:299.625000px;}
.x8_c00117{left:355.110000px;}
.x5_c00117{left:660.135000px;}
.x2_c00117{left:782.565000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls5_c00117{letter-spacing:-0.640000pt;}
.ls4_c00117{letter-spacing:0.000000pt;}
.ls1_c00117{letter-spacing:0.640000pt;}
.ls3_c00117{letter-spacing:0.650667pt;}
.ls0_c00117{letter-spacing:0.746667pt;}
.ls2_c00117{letter-spacing:43.008000pt;}
.ws2_c00117{word-spacing:-64.000000pt;}
.ws1_c00117{word-spacing:-53.760000pt;}
.ws0_c00117{word-spacing:-13.440000pt;}
.ws3_c00117{word-spacing:0.000000pt;}
._d_c00117{margin-left:-2.482927pt;}
._0_c00117{margin-left:-1.451735pt;}
._1_c00117{width:1.231167pt;}
._2_c00117{width:2.580265pt;}
._e_c00117{width:3.490734pt;}
._4_c00117{width:5.053870pt;}
._3_c00117{width:6.074665pt;}
._f_c00117{width:7.559552pt;}
._6_c00117{width:8.876573pt;}
._5_c00117{width:10.698132pt;}
._7_c00117{width:11.833373pt;}
._8_c00117{width:14.891735pt;}
._a_c00117{width:16.934938pt;}
._9_c00117{width:18.063468pt;}
._b_c00117{width:21.485972pt;}
._c_c00117{width:94.080000pt;}
.fs1_c00117{font-size:53.760000pt;}
.fs0_c00117{font-size:64.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y6_c00117{bottom:4.156000pt;}
.y3_c00117{bottom:4.160000pt;}
.y5_c00117{bottom:22.396000pt;}
.y4_c00117{bottom:29.156000pt;}
.y1_c00117{bottom:51.552000pt;}
.y22_c00117{bottom:122.912000pt;}
.y21_c00117{bottom:150.466667pt;}
.y20_c00117{bottom:177.986667pt;}
.y1f_c00117{bottom:205.826667pt;}
.y1e_c00117{bottom:233.346667pt;}
.y1d_c00117{bottom:268.893333pt;}
.y1c_c00117{bottom:302.493333pt;}
.y1b_c00117{bottom:333.533333pt;}
.y1a_c00117{bottom:364.613333pt;}
.y19_c00117{bottom:387.653333pt;}
.y18_c00117{bottom:419.973333pt;}
.y17_c00117{bottom:451.013333pt;}
.y16_c00117{bottom:478.560000pt;}
.y15_c00117{bottom:598.906667pt;}
.y14_c00117{bottom:631.866667pt;}
.y13_c00117{bottom:665.466667pt;}
.y12_c00117{bottom:688.546667pt;}
.y11_c00117{bottom:711.586667pt;}
.y10_c00117{bottom:734.626667pt;}
.yf_c00117{bottom:757.666667pt;}
.ye_c00117{bottom:780.706667pt;}
.yd_c00117{bottom:803.773333pt;}
.yc_c00117{bottom:826.493333pt;}
.yb_c00117{bottom:849.533333pt;}
.ya_c00117{bottom:872.573333pt;}
.y9_c00117{bottom:895.613333pt;}
.y8_c00117{bottom:918.693333pt;}
.y7_c00117{bottom:949.733333pt;}
.y2_c00117{bottom:989.413333pt;}
.h2_c00117{height:18.586667pt;}
.h3_c00117{height:36.796000pt;}
.h5_c00117{height:52.736250pt;}
.h4_c00117{height:52.762500pt;}
.h1_c00117{height:57.375000pt;}
.h6_c00117{height:62.781250pt;}
.h7_c00117{height:62.812500pt;}
.h0_c00117{height:1056.000000pt;}
.w1_c00117{width:7.346667pt;}
.w2_c00117{width:589.640000pt;}
.w0_c00117{width:816.000000pt;}
.x0_c00117{left:0.000000pt;}
.x3_c00117{left:113.324000pt;}
.x1_c00117{left:137.346667pt;}
.x4_c00117{left:151.106667pt;}
.xa_c00117{left:259.293333pt;}
.x9_c00117{left:260.253333pt;}
.xb_c00117{left:262.173333pt;}
.x6_c00117{left:263.133333pt;}
.x7_c00117{left:266.333333pt;}
.x8_c00117{left:315.653333pt;}
.x5_c00117{left:586.786667pt;}
.x2_c00117{left:695.613333pt;}
}





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

.ir_c00118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00118;src:url('chunks/assets/font_d6827ec675dc19194670a5ad.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_83232579300566de7a2f683e.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_141dbdbd39d1fb2e90b1689f.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_9b662ec9949621ec7727eb2d.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;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_c00118;src:url('chunks/assets/font_dac199931c196c3faa407452.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00118;src:url('chunks/assets/font_f757d456893417eb635f2c7c.woff2')format("woff");}.ff6_c00118{font-family:ff6_c00118;line-height:1.104004;font-style:normal;font-weight: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_c00118;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00118{font-family:ff7_c00118;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls7_c00118{letter-spacing:-1.728000px;}
.lsa_c00118{letter-spacing:-0.720000px;}
.ls9_c00118{letter-spacing:-0.288000px;}
.ls6_c00118{letter-spacing:0.000000px;}
.ls2_c00118{letter-spacing:0.120000px;}
.ls8_c00118{letter-spacing:0.648000px;}
.ls4_c00118{letter-spacing:0.720000px;}
.ls3_c00118{letter-spacing:0.739921px;}
.ls0_c00118{letter-spacing:1.620000px;}
.ls5_c00118{letter-spacing:5.040000px;}
.ls1_c00118{letter-spacing:12.240000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00118{word-spacing:-60.480000px;}
.ws2_c00118{word-spacing:-18.648000px;}
.ws0_c00118{word-spacing:-18.000000px;}
.ws6_c00118{word-spacing:-17.712000px;}
.ws1_c00118{word-spacing:-16.272000px;}
.ws3_c00118{word-spacing:-15.120000px;}
.ws5_c00118{word-spacing:-12.600000px;}
.ws7_c00118{word-spacing:0.000000px;}
._4_c00118{margin-left:-2.736000px;}
._0_c00118{margin-left:-1.152000px;}
._1_c00118{width:1.368000px;}
._5_c00118{width:2.952000px;}
._a_c00118{width:4.104000px;}
._6_c00118{width:5.628024px;}
._12_c00118{width:7.104000px;}
._13_c00118{width:8.304000px;}
._16_c00118{width:10.008000px;}
._c_c00118{width:11.520000px;}
._b_c00118{width:13.320000px;}
._2_c00118{width:14.976000px;}
._3_c00118{width:15.984000px;}
._7_c00118{width:23.112000px;}
._8_c00118{width:24.192000px;}
._9_c00118{width:25.404000px;}
._14_c00118{width:26.712000px;}
._15_c00118{width:28.740024px;}
._11_c00118{width:30.096000px;}
._18_c00118{width:31.272000px;}
._10_c00118{width:32.328000px;}
._f_c00118{width:34.164000px;}
._e_c00118{width:35.568000px;}
._d_c00118{width:37.152000px;}
._17_c00118{width:1024.244640px;}
.fc0_c00118{color:rgb(0,0,0);}
.fs2_c00118{font-size:47.520000px;}
.fs1_c00118{font-size:60.480000px;}
.fs0_c00118{font-size:72.000000px;}
.y0_c00118{bottom:0.000000px;}
.y6_c00118{bottom:4.675500px;}
.y3_c00118{bottom:4.680000px;}
.y5_c00118{bottom:25.195500px;}
.y4_c00118{bottom:32.800500px;}
.y1_c00118{bottom:57.996000px;}
.y23_c00118{bottom:133.236000px;}
.y22_c00118{bottom:164.235000px;}
.y21_c00118{bottom:202.035000px;}
.y20_c00118{bottom:227.955000px;}
.y1f_c00118{bottom:262.515000px;}
.y1e_c00118{bottom:297.465000px;}
.y1d_c00118{bottom:332.385000px;}
.y1c_c00118{bottom:367.305000px;}
.y1b_c00118{bottom:402.270000px;}
.y1a_c00118{bottom:439.350000px;}
.y19_c00118{bottom:470.310000px;}
.y18_c00118{bottom:501.630000px;}
.y17_c00118{bottom:532.620000px;}
.y16_c00118{bottom:563.580000px;}
.y15_c00118{bottom:594.540000px;}
.y14_c00118{bottom:625.860000px;}
.y13_c00118{bottom:656.850000px;}
.y12_c00118{bottom:696.810000px;}
.y11_c00118{bottom:727.770000px;}
.y10_c00118{bottom:759.090000px;}
.yf_c00118{bottom:790.095000px;}
.ye_c00118{bottom:830.055000px;}
.yd_c00118{bottom:861.015000px;}
.yc_c00118{bottom:892.365000px;}
.yb_c00118{bottom:923.325000px;}
.ya_c00118{bottom:954.285000px;}
.y9_c00118{bottom:994.245000px;}
.y8_c00118{bottom:1034.610000px;}
.y7_c00118{bottom:1065.570000px;}
.y2_c00118{bottom:1113.090000px;}
.h2_c00118{height:20.910000px;}
.h3_c00118{height:41.395500px;}
.h8_c00118{height:59.328281px;}
.h6_c00118{height:59.357813px;}
.h7_c00118{height:60.952500px;}
.h1_c00118{height:64.546875px;}
.h5_c00118{height:70.628906px;}
.h4_c00118{height:70.664062px;}
.h0_c00118{height:1188.000000px;}
.w1_c00118{width:8.265000px;}
.w2_c00118{width:663.345000px;}
.w0_c00118{width:918.000000px;}
.x0_c00118{left:0.000000px;}
.x3_c00118{left:127.489500px;}
.x1_c00118{left:154.515000px;}
.x6_c00118{left:169.995000px;}
.x5_c00118{left:178.635000px;}
.x4_c00118{left:180.795000px;}
.x2_c00118{left:782.565000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls7_c00118{letter-spacing:-1.536000pt;}
.lsa_c00118{letter-spacing:-0.640000pt;}
.ls9_c00118{letter-spacing:-0.256000pt;}
.ls6_c00118{letter-spacing:0.000000pt;}
.ls2_c00118{letter-spacing:0.106667pt;}
.ls8_c00118{letter-spacing:0.576000pt;}
.ls4_c00118{letter-spacing:0.640000pt;}
.ls3_c00118{letter-spacing:0.657708pt;}
.ls0_c00118{letter-spacing:1.440000pt;}
.ls5_c00118{letter-spacing:4.480000pt;}
.ls1_c00118{letter-spacing:10.880000pt;}
.ws4_c00118{word-spacing:-53.760000pt;}
.ws2_c00118{word-spacing:-16.576000pt;}
.ws0_c00118{word-spacing:-16.000000pt;}
.ws6_c00118{word-spacing:-15.744000pt;}
.ws1_c00118{word-spacing:-14.464000pt;}
.ws3_c00118{word-spacing:-13.440000pt;}
.ws5_c00118{word-spacing:-11.200000pt;}
.ws7_c00118{word-spacing:0.000000pt;}
._4_c00118{margin-left:-2.432000pt;}
._0_c00118{margin-left:-1.024000pt;}
._1_c00118{width:1.216000pt;}
._5_c00118{width:2.624000pt;}
._a_c00118{width:3.648000pt;}
._6_c00118{width:5.002688pt;}
._12_c00118{width:6.314667pt;}
._13_c00118{width:7.381333pt;}
._16_c00118{width:8.896000pt;}
._c_c00118{width:10.240000pt;}
._b_c00118{width:11.840000pt;}
._2_c00118{width:13.312000pt;}
._3_c00118{width:14.208000pt;}
._7_c00118{width:20.544000pt;}
._8_c00118{width:21.504000pt;}
._9_c00118{width:22.581333pt;}
._14_c00118{width:23.744000pt;}
._15_c00118{width:25.546688pt;}
._11_c00118{width:26.752000pt;}
._18_c00118{width:27.797333pt;}
._10_c00118{width:28.736000pt;}
._f_c00118{width:30.368000pt;}
._e_c00118{width:31.616000pt;}
._d_c00118{width:33.024000pt;}
._17_c00118{width:910.439680pt;}
.fs2_c00118{font-size:42.240000pt;}
.fs1_c00118{font-size:53.760000pt;}
.fs0_c00118{font-size:64.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y6_c00118{bottom:4.156000pt;}
.y3_c00118{bottom:4.160000pt;}
.y5_c00118{bottom:22.396000pt;}
.y4_c00118{bottom:29.156000pt;}
.y1_c00118{bottom:51.552000pt;}
.y23_c00118{bottom:118.432000pt;}
.y22_c00118{bottom:145.986667pt;}
.y21_c00118{bottom:179.586667pt;}
.y20_c00118{bottom:202.626667pt;}
.y1f_c00118{bottom:233.346667pt;}
.y1e_c00118{bottom:264.413333pt;}
.y1d_c00118{bottom:295.453333pt;}
.y1c_c00118{bottom:326.493333pt;}
.y1b_c00118{bottom:357.573333pt;}
.y1a_c00118{bottom:390.533333pt;}
.y19_c00118{bottom:418.053333pt;}
.y18_c00118{bottom:445.893333pt;}
.y17_c00118{bottom:473.440000pt;}
.y16_c00118{bottom:500.960000pt;}
.y15_c00118{bottom:528.480000pt;}
.y14_c00118{bottom:556.320000pt;}
.y13_c00118{bottom:583.866667pt;}
.y12_c00118{bottom:619.386667pt;}
.y11_c00118{bottom:646.906667pt;}
.y10_c00118{bottom:674.746667pt;}
.yf_c00118{bottom:702.306667pt;}
.ye_c00118{bottom:737.826667pt;}
.yd_c00118{bottom:765.346667pt;}
.yc_c00118{bottom:793.213333pt;}
.yb_c00118{bottom:820.733333pt;}
.ya_c00118{bottom:848.253333pt;}
.y9_c00118{bottom:883.773333pt;}
.y8_c00118{bottom:919.653333pt;}
.y7_c00118{bottom:947.173333pt;}
.y2_c00118{bottom:989.413333pt;}
.h2_c00118{height:18.586667pt;}
.h3_c00118{height:36.796000pt;}
.h8_c00118{height:52.736250pt;}
.h6_c00118{height:52.762500pt;}
.h7_c00118{height:54.180000pt;}
.h1_c00118{height:57.375000pt;}
.h5_c00118{height:62.781250pt;}
.h4_c00118{height:62.812500pt;}
.h0_c00118{height:1056.000000pt;}
.w1_c00118{width:7.346667pt;}
.w2_c00118{width:589.640000pt;}
.w0_c00118{width:816.000000pt;}
.x0_c00118{left:0.000000pt;}
.x3_c00118{left:113.324000pt;}
.x1_c00118{left:137.346667pt;}
.x6_c00118{left:151.106667pt;}
.x5_c00118{left:158.786667pt;}
.x4_c00118{left:160.706667pt;}
.x2_c00118{left:695.613333pt;}
}





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

.ir_c00119:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00119;src:url('chunks/assets/font_a80b4bbd70390de2ae9a1dae.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_fd88dfb7c859a904869accc1.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_6b413e506b3a3907c03e18bf.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_9a2e0af8d709f9511f9189d1.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;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_c00119;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00119;src:url('chunks/assets/font_fa0368d0e3b34ecd5aacf889.woff2')format("woff");}.ff6_c00119{font-family:ff6_c00119;line-height:1.112305;font-style:normal;font-weight: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_c00119;src:url('chunks/assets/font_8e33232c371d594759d5d310.woff2')format("woff");}.ff7_c00119{font-family:ff7_c00119;line-height:1.117188;font-style:normal;font-weight: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_c00119;src:url('chunks/assets/font_83e170b0960d0c462145e60f.woff2')format("woff");}.ff8_c00119{font-family:ff8_c00119;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls6_c00119{letter-spacing:0.000000px;}
.ls5_c00119{letter-spacing:0.720000px;}
.ls1_c00119{letter-spacing:0.732000px;}
.ls4_c00119{letter-spacing:0.792000px;}
.ls3_c00119{letter-spacing:1.440000px;}
.ls2_c00119{letter-spacing:3.600000px;}
.ls0_c00119{letter-spacing:48.384000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00119{word-spacing:-72.000000px;}
.ws3_c00119{word-spacing:-60.480000px;}
.ws0_c00119{word-spacing:-18.000000px;}
.ws2_c00119{word-spacing:-15.120000px;}
.ws4_c00119{word-spacing:0.000000px;}
._5_c00119{margin-left:-2.520000px;}
._1_c00119{margin-left:-1.440000px;}
._0_c00119{width:1.296000px;}
._6_c00119{width:2.808000px;}
._c_c00119{width:3.816000px;}
._b_c00119{width:4.824000px;}
._13_c00119{width:5.844024px;}
._11_c00119{width:7.056000px;}
._12_c00119{width:8.280000px;}
._10_c00119{width:9.288000px;}
._3_c00119{width:10.296000px;}
._2_c00119{width:11.376000px;}
._4_c00119{width:12.624000px;}
._7_c00119{width:13.680000px;}
._8_c00119{width:14.928000px;}
._9_c00119{width:16.656000px;}
._d_c00119{width:19.332000px;}
._e_c00119{width:21.456000px;}
._f_c00119{width:23.040000px;}
._a_c00119{width:105.840000px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs2_c00119{font-size:38.880000px;}
.fs1_c00119{font-size:47.520000px;}
.fs3_c00119{font-size:60.480000px;}
.fs0_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y6_c00119{bottom:4.675500px;}
.y3_c00119{bottom:4.680000px;}
.y5_c00119{bottom:25.195500px;}
.y4_c00119{bottom:32.800500px;}
.y1_c00119{bottom:57.996000px;}
.y2d_c00119{bottom:130.716000px;}
.y2c_c00119{bottom:147.996000px;}
.y2b_c00119{bottom:154.875000px;}
.y2a_c00119{bottom:164.955000px;}
.y29_c00119{bottom:182.235000px;}
.y28_c00119{bottom:189.075000px;}
.y27_c00119{bottom:199.515000px;}
.y26_c00119{bottom:216.795000px;}
.y25_c00119{bottom:234.075000px;}
.y24_c00119{bottom:251.355000px;}
.y23_c00119{bottom:258.195000px;}
.y22_c00119{bottom:268.995000px;}
.y21_c00119{bottom:315.105000px;}
.y20_c00119{bottom:346.065000px;}
.y1f_c00119{bottom:377.385000px;}
.y1e_c00119{bottom:408.390000px;}
.y1d_c00119{bottom:439.350000px;}
.y1c_c00119{bottom:470.310000px;}
.y1b_c00119{bottom:501.630000px;}
.y19_c00119{bottom:541.620000px;}
.y1a_c00119{bottom:549.900000px;}
.y18_c00119{bottom:572.580000px;}
.y17_c00119{bottom:603.540000px;}
.y16_c00119{bottom:634.860000px;}
.y15_c00119{bottom:665.850000px;}
.y14_c00119{bottom:696.810000px;}
.y13_c00119{bottom:727.770000px;}
.y11_c00119{bottom:759.090000px;}
.y12_c00119{bottom:767.415000px;}
.y10_c00119{bottom:790.095000px;}
.yf_c00119{bottom:821.055000px;}
.ye_c00119{bottom:852.015000px;}
.yd_c00119{bottom:892.365000px;}
.yc_c00119{bottom:932.325000px;}
.ya_c00119{bottom:972.285000px;}
.yb_c00119{bottom:980.565000px;}
.y9_c00119{bottom:1003.245000px;}
.y8_c00119{bottom:1034.610000px;}
.y7_c00119{bottom:1065.570000px;}
.y2_c00119{bottom:1113.090000px;}
.h2_c00119{height:20.910000px;}
.h7_c00119{height:34.855313px;}
.h3_c00119{height:41.395500px;}
.h6_c00119{height:46.638281px;}
.h8_c00119{height:54.219375px;}
.h9_c00119{height:54.514688px;}
.h1_c00119{height:64.546875px;}
.h4_c00119{height:70.664062px;}
.h5_c00119{height:1187.995500px;}
.h0_c00119{height:1188.000000px;}
.w1_c00119{width:8.265000px;}
.w2_c00119{width:663.345000px;}
.w3_c00119{width:917.997000px;}
.w0_c00119{width:918.000000px;}
.x0_c00119{left:0.000000px;}
.x3_c00119{left:127.489500px;}
.xc_c00119{left:137.556000px;}
.x1_c00119{left:154.515000px;}
.x6_c00119{left:178.635000px;}
.x7_c00119{left:278.382000px;}
.x8_c00119{left:290.625000px;}
.xb_c00119{left:343.590000px;}
.x9_c00119{left:432.867000px;}
.xa_c00119{left:445.140000px;}
.x4_c00119{left:623.367000px;}
.x5_c00119{left:635.655000px;}
.x2_c00119{left:782.565000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls6_c00119{letter-spacing:0.000000pt;}
.ls5_c00119{letter-spacing:0.640000pt;}
.ls1_c00119{letter-spacing:0.650667pt;}
.ls4_c00119{letter-spacing:0.704000pt;}
.ls3_c00119{letter-spacing:1.280000pt;}
.ls2_c00119{letter-spacing:3.200000pt;}
.ls0_c00119{letter-spacing:43.008000pt;}
.ws1_c00119{word-spacing:-64.000000pt;}
.ws3_c00119{word-spacing:-53.760000pt;}
.ws0_c00119{word-spacing:-16.000000pt;}
.ws2_c00119{word-spacing:-13.440000pt;}
.ws4_c00119{word-spacing:0.000000pt;}
._5_c00119{margin-left:-2.240000pt;}
._1_c00119{margin-left:-1.280000pt;}
._0_c00119{width:1.152000pt;}
._6_c00119{width:2.496000pt;}
._c_c00119{width:3.392000pt;}
._b_c00119{width:4.288000pt;}
._13_c00119{width:5.194688pt;}
._11_c00119{width:6.272000pt;}
._12_c00119{width:7.360000pt;}
._10_c00119{width:8.256000pt;}
._3_c00119{width:9.152000pt;}
._2_c00119{width:10.112000pt;}
._4_c00119{width:11.221333pt;}
._7_c00119{width:12.160000pt;}
._8_c00119{width:13.269333pt;}
._9_c00119{width:14.805333pt;}
._d_c00119{width:17.184000pt;}
._e_c00119{width:19.072000pt;}
._f_c00119{width:20.480000pt;}
._a_c00119{width:94.080000pt;}
.fs2_c00119{font-size:34.560000pt;}
.fs1_c00119{font-size:42.240000pt;}
.fs3_c00119{font-size:53.760000pt;}
.fs0_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y6_c00119{bottom:4.156000pt;}
.y3_c00119{bottom:4.160000pt;}
.y5_c00119{bottom:22.396000pt;}
.y4_c00119{bottom:29.156000pt;}
.y1_c00119{bottom:51.552000pt;}
.y2d_c00119{bottom:116.192000pt;}
.y2c_c00119{bottom:131.552000pt;}
.y2b_c00119{bottom:137.666667pt;}
.y2a_c00119{bottom:146.626667pt;}
.y29_c00119{bottom:161.986667pt;}
.y28_c00119{bottom:168.066667pt;}
.y27_c00119{bottom:177.346667pt;}
.y26_c00119{bottom:192.706667pt;}
.y25_c00119{bottom:208.066667pt;}
.y24_c00119{bottom:223.426667pt;}
.y23_c00119{bottom:229.506667pt;}
.y22_c00119{bottom:239.106667pt;}
.y21_c00119{bottom:280.093333pt;}
.y20_c00119{bottom:307.613333pt;}
.y1f_c00119{bottom:335.453333pt;}
.y1e_c00119{bottom:363.013333pt;}
.y1d_c00119{bottom:390.533333pt;}
.y1c_c00119{bottom:418.053333pt;}
.y1b_c00119{bottom:445.893333pt;}
.y19_c00119{bottom:481.440000pt;}
.y1a_c00119{bottom:488.800000pt;}
.y18_c00119{bottom:508.960000pt;}
.y17_c00119{bottom:536.480000pt;}
.y16_c00119{bottom:564.320000pt;}
.y15_c00119{bottom:591.866667pt;}
.y14_c00119{bottom:619.386667pt;}
.y13_c00119{bottom:646.906667pt;}
.y11_c00119{bottom:674.746667pt;}
.y12_c00119{bottom:682.146667pt;}
.y10_c00119{bottom:702.306667pt;}
.yf_c00119{bottom:729.826667pt;}
.ye_c00119{bottom:757.346667pt;}
.yd_c00119{bottom:793.213333pt;}
.yc_c00119{bottom:828.733333pt;}
.ya_c00119{bottom:864.253333pt;}
.yb_c00119{bottom:871.613333pt;}
.y9_c00119{bottom:891.773333pt;}
.y8_c00119{bottom:919.653333pt;}
.y7_c00119{bottom:947.173333pt;}
.y2_c00119{bottom:989.413333pt;}
.h2_c00119{height:18.586667pt;}
.h7_c00119{height:30.982500pt;}
.h3_c00119{height:36.796000pt;}
.h6_c00119{height:41.456250pt;}
.h8_c00119{height:48.195000pt;}
.h9_c00119{height:48.457500pt;}
.h1_c00119{height:57.375000pt;}
.h4_c00119{height:62.812500pt;}
.h5_c00119{height:1055.996000pt;}
.h0_c00119{height:1056.000000pt;}
.w1_c00119{width:7.346667pt;}
.w2_c00119{width:589.640000pt;}
.w3_c00119{width:815.997333pt;}
.w0_c00119{width:816.000000pt;}
.x0_c00119{left:0.000000pt;}
.x3_c00119{left:113.324000pt;}
.xc_c00119{left:122.272000pt;}
.x1_c00119{left:137.346667pt;}
.x6_c00119{left:158.786667pt;}
.x7_c00119{left:247.450667pt;}
.x8_c00119{left:258.333333pt;}
.xb_c00119{left:305.413333pt;}
.x9_c00119{left:384.770667pt;}
.xa_c00119{left:395.680000pt;}
.x4_c00119{left:554.104000pt;}
.x5_c00119{left:565.026667pt;}
.x2_c00119{left:695.613333pt;}
}





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

.ir_c00120:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00120;src:url('chunks/assets/font_572c66dde0c03b5679b3b2d4.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_88576218d6f14bb37ebe0c5f.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_0f034b2668960e7cf62c3d6d.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_0267e81a5c2ee36fe1484299.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;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_c00120;src:url('chunks/assets/font_a545d7014541cd5d8e71b635.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls7_c00120{letter-spacing:-0.648000px;}
.ls6_c00120{letter-spacing:0.000000px;}
.ls0_c00120{letter-spacing:0.180000px;}
.ls5_c00120{letter-spacing:0.720000px;}
.ls3_c00120{letter-spacing:0.732000px;}
.ls4_c00120{letter-spacing:0.792000px;}
.ls8_c00120{letter-spacing:1.152000px;}
.ls1_c00120{letter-spacing:1.440000px;}
.ls2_c00120{letter-spacing:48.384000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00120{word-spacing:-72.000000px;}
.ws0_c00120{word-spacing:-18.000000px;}
.ws2_c00120{word-spacing:0.000000px;}
._1_c00120{margin-left:-2.736000px;}
._3_c00120{margin-left:-1.584000px;}
._0_c00120{width:1.224000px;}
._4_c00120{width:3.096000px;}
._a_c00120{width:4.332000px;}
._6_c00120{width:5.976000px;}
._2_c00120{width:7.704000px;}
._5_c00120{width:9.792000px;}
._7_c00120{width:11.664000px;}
._8_c00120{width:12.888000px;}
._9_c00120{width:14.472000px;}
._e_c00120{width:15.864000px;}
._d_c00120{width:16.992000px;}
._c_c00120{width:19.152000px;}
._b_c00120{width:105.840000px;}
.fc0_c00120{color:rgb(0,0,0);}
.fs2_c00120{font-size:38.880000px;}
.fs1_c00120{font-size:47.520000px;}
.fs3_c00120{font-size:60.480000px;}
.fs0_c00120{font-size:72.000000px;}
.y0_c00120{bottom:0.000000px;}
.y6_c00120{bottom:4.675500px;}
.y3_c00120{bottom:4.680000px;}
.y5_c00120{bottom:25.195500px;}
.y4_c00120{bottom:32.800500px;}
.y1_c00120{bottom:57.996000px;}
.y27_c00120{bottom:130.716000px;}
.y26_c00120{bottom:147.996000px;}
.y25_c00120{bottom:154.875000px;}
.y24_c00120{bottom:165.675000px;}
.y23_c00120{bottom:199.875000px;}
.y22_c00120{bottom:230.835000px;}
.y21_c00120{bottom:262.155000px;}
.y1f_c00120{bottom:293.145000px;}
.y20_c00120{bottom:301.425000px;}
.y1e_c00120{bottom:324.105000px;}
.y1d_c00120{bottom:355.065000px;}
.y1c_c00120{bottom:386.385000px;}
.y1b_c00120{bottom:417.390000px;}
.y1a_c00120{bottom:448.350000px;}
.y19_c00120{bottom:479.310000px;}
.y18_c00120{bottom:510.630000px;}
.y17_c00120{bottom:541.620000px;}
.y16_c00120{bottom:572.580000px;}
.y15_c00120{bottom:603.540000px;}
.y14_c00120{bottom:634.860000px;}
.y13_c00120{bottom:665.850000px;}
.y12_c00120{bottom:696.810000px;}
.y11_c00120{bottom:736.770000px;}
.y10_c00120{bottom:777.135000px;}
.yf_c00120{bottom:808.095000px;}
.ye_c00120{bottom:839.055000px;}
.yd_c00120{bottom:870.015000px;}
.yc_c00120{bottom:910.365000px;}
.yb_c00120{bottom:941.325000px;}
.ya_c00120{bottom:972.285000px;}
.y9_c00120{bottom:1003.245000px;}
.y8_c00120{bottom:1034.610000px;}
.y7_c00120{bottom:1065.570000px;}
.y2_c00120{bottom:1113.090000px;}
.h2_c00120{height:20.910000px;}
.h7_c00120{height:34.855313px;}
.h3_c00120{height:41.395500px;}
.h6_c00120{height:46.638281px;}
.h8_c00120{height:54.219375px;}
.h1_c00120{height:64.546875px;}
.h4_c00120{height:70.664062px;}
.h5_c00120{height:1187.995500px;}
.h0_c00120{height:1188.000000px;}
.w1_c00120{width:8.265000px;}
.w2_c00120{width:663.345000px;}
.w3_c00120{width:917.997000px;}
.w0_c00120{width:918.000000px;}
.x0_c00120{left:0.000000px;}
.x3_c00120{left:127.489500px;}
.x9_c00120{left:137.556000px;}
.x1_c00120{left:154.515000px;}
.x5_c00120{left:169.995000px;}
.x4_c00120{left:178.635000px;}
.x6_c00120{left:194.472000px;}
.x7_c00120{left:206.715000px;}
.x8_c00120{left:343.590000px;}
.x2_c00120{left:782.565000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls7_c00120{letter-spacing:-0.576000pt;}
.ls6_c00120{letter-spacing:0.000000pt;}
.ls0_c00120{letter-spacing:0.160000pt;}
.ls5_c00120{letter-spacing:0.640000pt;}
.ls3_c00120{letter-spacing:0.650667pt;}
.ls4_c00120{letter-spacing:0.704000pt;}
.ls8_c00120{letter-spacing:1.024000pt;}
.ls1_c00120{letter-spacing:1.280000pt;}
.ls2_c00120{letter-spacing:43.008000pt;}
.ws1_c00120{word-spacing:-64.000000pt;}
.ws0_c00120{word-spacing:-16.000000pt;}
.ws2_c00120{word-spacing:0.000000pt;}
._1_c00120{margin-left:-2.432000pt;}
._3_c00120{margin-left:-1.408000pt;}
._0_c00120{width:1.088000pt;}
._4_c00120{width:2.752000pt;}
._a_c00120{width:3.850667pt;}
._6_c00120{width:5.312000pt;}
._2_c00120{width:6.848000pt;}
._5_c00120{width:8.704000pt;}
._7_c00120{width:10.368000pt;}
._8_c00120{width:11.456000pt;}
._9_c00120{width:12.864000pt;}
._e_c00120{width:14.101333pt;}
._d_c00120{width:15.104000pt;}
._c_c00120{width:17.024000pt;}
._b_c00120{width:94.080000pt;}
.fs2_c00120{font-size:34.560000pt;}
.fs1_c00120{font-size:42.240000pt;}
.fs3_c00120{font-size:53.760000pt;}
.fs0_c00120{font-size:64.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y6_c00120{bottom:4.156000pt;}
.y3_c00120{bottom:4.160000pt;}
.y5_c00120{bottom:22.396000pt;}
.y4_c00120{bottom:29.156000pt;}
.y1_c00120{bottom:51.552000pt;}
.y27_c00120{bottom:116.192000pt;}
.y26_c00120{bottom:131.552000pt;}
.y25_c00120{bottom:137.666667pt;}
.y24_c00120{bottom:147.266667pt;}
.y23_c00120{bottom:177.666667pt;}
.y22_c00120{bottom:205.186667pt;}
.y21_c00120{bottom:233.026667pt;}
.y1f_c00120{bottom:260.573333pt;}
.y20_c00120{bottom:267.933333pt;}
.y1e_c00120{bottom:288.093333pt;}
.y1d_c00120{bottom:315.613333pt;}
.y1c_c00120{bottom:343.453333pt;}
.y1b_c00120{bottom:371.013333pt;}
.y1a_c00120{bottom:398.533333pt;}
.y19_c00120{bottom:426.053333pt;}
.y18_c00120{bottom:453.893333pt;}
.y17_c00120{bottom:481.440000pt;}
.y16_c00120{bottom:508.960000pt;}
.y15_c00120{bottom:536.480000pt;}
.y14_c00120{bottom:564.320000pt;}
.y13_c00120{bottom:591.866667pt;}
.y12_c00120{bottom:619.386667pt;}
.y11_c00120{bottom:654.906667pt;}
.y10_c00120{bottom:690.786667pt;}
.yf_c00120{bottom:718.306667pt;}
.ye_c00120{bottom:745.826667pt;}
.yd_c00120{bottom:773.346667pt;}
.yc_c00120{bottom:809.213333pt;}
.yb_c00120{bottom:836.733333pt;}
.ya_c00120{bottom:864.253333pt;}
.y9_c00120{bottom:891.773333pt;}
.y8_c00120{bottom:919.653333pt;}
.y7_c00120{bottom:947.173333pt;}
.y2_c00120{bottom:989.413333pt;}
.h2_c00120{height:18.586667pt;}
.h7_c00120{height:30.982500pt;}
.h3_c00120{height:36.796000pt;}
.h6_c00120{height:41.456250pt;}
.h8_c00120{height:48.195000pt;}
.h1_c00120{height:57.375000pt;}
.h4_c00120{height:62.812500pt;}
.h5_c00120{height:1055.996000pt;}
.h0_c00120{height:1056.000000pt;}
.w1_c00120{width:7.346667pt;}
.w2_c00120{width:589.640000pt;}
.w3_c00120{width:815.997333pt;}
.w0_c00120{width:816.000000pt;}
.x0_c00120{left:0.000000pt;}
.x3_c00120{left:113.324000pt;}
.x9_c00120{left:122.272000pt;}
.x1_c00120{left:137.346667pt;}
.x5_c00120{left:151.106667pt;}
.x4_c00120{left:158.786667pt;}
.x6_c00120{left:172.864000pt;}
.x7_c00120{left:183.746667pt;}
.x8_c00120{left:305.413333pt;}
.x2_c00120{left:695.613333pt;}
}





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

.ir_c00121:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00121;src:url('chunks/assets/font_0734ef921d63a388b06ddc64.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_82f511185cfe8059d2b1add2.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_a356338e67c7c8ea1372dd6d.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;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_c00121;src:url('chunks/assets/font_094fbd6e1da163c8f8c9867f.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00121;src:url('chunks/assets/font_3497216fab6a6fe3502ca61d.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00121;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00121{font-family:ff6_c00121;line-height:1.311035;font-style:normal;font-weight: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_c00121;src:url('chunks/assets/font_a545d7014541cd5d8e71b635.woff2')format("woff");}.ff7_c00121{font-family:ff7_c00121;line-height:1.117188;font-style:normal;font-weight: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_c00121;src:url('chunks/assets/font_600fe607c859130cd33990ef.woff2')format("woff");}.ff8_c00121{font-family:ff8_c00121;line-height:1.117188;font-style:normal;font-weight: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_c00121;src:url('chunks/assets/font_5baece7e92a673497dc6995c.woff2')format("woff");}.ff9_c00121{font-family:ff9_c00121;line-height:1.112305;font-style:normal;font-weight: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_c00121;src:url('chunks/assets/font_eca95c0fd1c2e077de582b3c.woff2')format("woff");}.ffa_c00121{font-family:ffa_c00121;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.lsc_c00121{letter-spacing:-0.532800px;}
.lsf_c00121{letter-spacing:-0.302400px;}
.lsa_c00121{letter-spacing:-0.241800px;}
.ls8_c00121{letter-spacing:0.000000px;}
.ls9_c00121{letter-spacing:0.020400px;}
.ls0_c00121{letter-spacing:0.048960px;}
.ls10_c00121{letter-spacing:0.166800px;}
.ls5_c00121{letter-spacing:0.302400px;}
.lsd_c00121{letter-spacing:0.486600px;}
.lse_c00121{letter-spacing:0.529800px;}
.lsb_c00121{letter-spacing:0.702000px;}
.ls1_c00121{letter-spacing:0.720000px;}
.ls7_c00121{letter-spacing:0.732000px;}
.ls2_c00121{letter-spacing:0.740139px;}
.ls3_c00121{letter-spacing:0.900000px;}
.ls6_c00121{letter-spacing:48.384000px;}
.ls4_c00121{letter-spacing:591.360000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00121{word-spacing:-72.000000px;}
.ws4_c00121{word-spacing:-60.480000px;}
.ws9_c00121{word-spacing:-18.000000px;}
.ws3_c00121{word-spacing:-15.822000px;}
.ws5_c00121{word-spacing:-15.606600px;}
.ws8_c00121{word-spacing:-15.286800px;}
.ws0_c00121{word-spacing:-15.140400px;}
.ws2_c00121{word-spacing:-15.120000px;}
.ws1_c00121{word-spacing:-14.878200px;}
.ws6_c00121{word-spacing:-14.817600px;}
.ws7_c00121{word-spacing:-12.600000px;}
.wsb_c00121{word-spacing:0.000000px;}
._2_c00121{margin-left:-2.736000px;}
._0_c00121{margin-left:-1.440000px;}
._1_c00121{width:1.800000px;}
._3_c00121{width:3.168000px;}
._7_c00121{width:4.518599px;}
._8_c00121{width:5.596203px;}
._9_c00121{width:7.036203px;}
._5_c00121{width:8.737799px;}
._4_c00121{width:10.644601px;}
._6_c00121{width:11.742019px;}
._a_c00121{width:12.835755px;}
._c_c00121{width:14.184000px;}
._d_c00121{width:15.945961px;}
._b_c00121{width:105.840000px;}
.fc0_c00121{color:rgb(0,0,0);}
.fs3_c00121{font-size:38.880000px;}
.fs2_c00121{font-size:47.520000px;}
.fs1_c00121{font-size:60.480000px;}
.fs0_c00121{font-size:72.000000px;}
.y0_c00121{bottom:0.000000px;}
.y6_c00121{bottom:4.675500px;}
.y3_c00121{bottom:4.680000px;}
.y5_c00121{bottom:25.195500px;}
.y4_c00121{bottom:32.800500px;}
.y1_c00121{bottom:57.996000px;}
.y29_c00121{bottom:110.556000px;}
.y28_c00121{bottom:130.716000px;}
.y27_c00121{bottom:147.996000px;}
.y26_c00121{bottom:154.875000px;}
.y25_c00121{bottom:164.955000px;}
.y24_c00121{bottom:171.795000px;}
.y23_c00121{bottom:182.955000px;}
.y21_c00121{bottom:252.075000px;}
.y22_c00121{bottom:260.355000px;}
.y20_c00121{bottom:283.065000px;}
.y1f_c00121{bottom:314.385000px;}
.y1e_c00121{bottom:345.345000px;}
.y1d_c00121{bottom:376.305000px;}
.y1c_c00121{bottom:407.310000px;}
.y1b_c00121{bottom:447.630000px;}
.y19_c00121{bottom:487.590000px;}
.y1a_c00121{bottom:495.870000px;}
.y18_c00121{bottom:518.580000px;}
.y17_c00121{bottom:549.540000px;}
.y16_c00121{bottom:580.860000px;}
.y15_c00121{bottom:611.820000px;}
.y14_c00121{bottom:642.810000px;}
.y13_c00121{bottom:680.610000px;}
.y12_c00121{bottom:706.530000px;}
.y11_c00121{bottom:732.450000px;}
.y10_c00121{bottom:758.370000px;}
.yf_c00121{bottom:783.975000px;}
.ye_c00121{bottom:818.895000px;}
.yd_c00121{bottom:853.815000px;}
.yc_c00121{bottom:888.765000px;}
.yb_c00121{bottom:923.685000px;}
.ya_c00121{bottom:958.605000px;}
.y9_c00121{bottom:993.525000px;}
.y8_c00121{bottom:1028.490000px;}
.y7_c00121{bottom:1065.570000px;}
.y2_c00121{bottom:1113.090000px;}
.h2_c00121{height:20.910000px;}
.ha_c00121{height:34.855313px;}
.h3_c00121{height:41.395500px;}
.h9_c00121{height:46.638281px;}
.hc_c00121{height:54.219375px;}
.hb_c00121{height:54.514688px;}
.h7_c00121{height:59.328281px;}
.h5_c00121{height:59.357813px;}
.h6_c00121{height:60.952500px;}
.h1_c00121{height:64.546875px;}
.h4_c00121{height:70.664062px;}
.h8_c00121{height:1187.995500px;}
.h0_c00121{height:1188.000000px;}
.w1_c00121{width:8.265000px;}
.w2_c00121{width:663.345000px;}
.w3_c00121{width:917.997000px;}
.w0_c00121{width:918.000000px;}
.x0_c00121{left:0.000000px;}
.x3_c00121{left:127.489500px;}
.xa_c00121{left:137.556000px;}
.x1_c00121{left:154.515000px;}
.x4_c00121{left:169.995000px;}
.x9_c00121{left:343.590000px;}
.x5_c00121{left:450.537000px;}
.x6_c00121{left:462.780000px;}
.x7_c00121{left:519.297000px;}
.x8_c00121{left:531.540000px;}
.x2_c00121{left:782.565000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.lsc_c00121{letter-spacing:-0.473600pt;}
.lsf_c00121{letter-spacing:-0.268800pt;}
.lsa_c00121{letter-spacing:-0.214933pt;}
.ls8_c00121{letter-spacing:0.000000pt;}
.ls9_c00121{letter-spacing:0.018133pt;}
.ls0_c00121{letter-spacing:0.043520pt;}
.ls10_c00121{letter-spacing:0.148267pt;}
.ls5_c00121{letter-spacing:0.268800pt;}
.lsd_c00121{letter-spacing:0.432533pt;}
.lse_c00121{letter-spacing:0.470933pt;}
.lsb_c00121{letter-spacing:0.624000pt;}
.ls1_c00121{letter-spacing:0.640000pt;}
.ls7_c00121{letter-spacing:0.650667pt;}
.ls2_c00121{letter-spacing:0.657901pt;}
.ls3_c00121{letter-spacing:0.800000pt;}
.ls6_c00121{letter-spacing:43.008000pt;}
.ls4_c00121{letter-spacing:525.653333pt;}
.wsa_c00121{word-spacing:-64.000000pt;}
.ws4_c00121{word-spacing:-53.760000pt;}
.ws9_c00121{word-spacing:-16.000000pt;}
.ws3_c00121{word-spacing:-14.064000pt;}
.ws5_c00121{word-spacing:-13.872533pt;}
.ws8_c00121{word-spacing:-13.588267pt;}
.ws0_c00121{word-spacing:-13.458133pt;}
.ws2_c00121{word-spacing:-13.440000pt;}
.ws1_c00121{word-spacing:-13.225067pt;}
.ws6_c00121{word-spacing:-13.171200pt;}
.ws7_c00121{word-spacing:-11.200000pt;}
.wsb_c00121{word-spacing:0.000000pt;}
._2_c00121{margin-left:-2.432000pt;}
._0_c00121{margin-left:-1.280000pt;}
._1_c00121{width:1.600000pt;}
._3_c00121{width:2.816000pt;}
._7_c00121{width:4.016532pt;}
._8_c00121{width:4.974403pt;}
._9_c00121{width:6.254403pt;}
._5_c00121{width:7.766932pt;}
._4_c00121{width:9.461868pt;}
._6_c00121{width:10.437350pt;}
._a_c00121{width:11.409560pt;}
._c_c00121{width:12.608000pt;}
._d_c00121{width:14.174188pt;}
._b_c00121{width:94.080000pt;}
.fs3_c00121{font-size:34.560000pt;}
.fs2_c00121{font-size:42.240000pt;}
.fs1_c00121{font-size:53.760000pt;}
.fs0_c00121{font-size:64.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y6_c00121{bottom:4.156000pt;}
.y3_c00121{bottom:4.160000pt;}
.y5_c00121{bottom:22.396000pt;}
.y4_c00121{bottom:29.156000pt;}
.y1_c00121{bottom:51.552000pt;}
.y29_c00121{bottom:98.272000pt;}
.y28_c00121{bottom:116.192000pt;}
.y27_c00121{bottom:131.552000pt;}
.y26_c00121{bottom:137.666667pt;}
.y25_c00121{bottom:146.626667pt;}
.y24_c00121{bottom:152.706667pt;}
.y23_c00121{bottom:162.626667pt;}
.y21_c00121{bottom:224.066667pt;}
.y22_c00121{bottom:231.426667pt;}
.y20_c00121{bottom:251.613333pt;}
.y1f_c00121{bottom:279.453333pt;}
.y1e_c00121{bottom:306.973333pt;}
.y1d_c00121{bottom:334.493333pt;}
.y1c_c00121{bottom:362.053333pt;}
.y1b_c00121{bottom:397.893333pt;}
.y19_c00121{bottom:433.413333pt;}
.y1a_c00121{bottom:440.773333pt;}
.y18_c00121{bottom:460.960000pt;}
.y17_c00121{bottom:488.480000pt;}
.y16_c00121{bottom:516.320000pt;}
.y15_c00121{bottom:543.840000pt;}
.y14_c00121{bottom:571.386667pt;}
.y13_c00121{bottom:604.986667pt;}
.y12_c00121{bottom:628.026667pt;}
.y11_c00121{bottom:651.066667pt;}
.y10_c00121{bottom:674.106667pt;}
.yf_c00121{bottom:696.866667pt;}
.ye_c00121{bottom:727.906667pt;}
.yd_c00121{bottom:758.946667pt;}
.yc_c00121{bottom:790.013333pt;}
.yb_c00121{bottom:821.053333pt;}
.ya_c00121{bottom:852.093333pt;}
.y9_c00121{bottom:883.133333pt;}
.y8_c00121{bottom:914.213333pt;}
.y7_c00121{bottom:947.173333pt;}
.y2_c00121{bottom:989.413333pt;}
.h2_c00121{height:18.586667pt;}
.ha_c00121{height:30.982500pt;}
.h3_c00121{height:36.796000pt;}
.h9_c00121{height:41.456250pt;}
.hc_c00121{height:48.195000pt;}
.hb_c00121{height:48.457500pt;}
.h7_c00121{height:52.736250pt;}
.h5_c00121{height:52.762500pt;}
.h6_c00121{height:54.180000pt;}
.h1_c00121{height:57.375000pt;}
.h4_c00121{height:62.812500pt;}
.h8_c00121{height:1055.996000pt;}
.h0_c00121{height:1056.000000pt;}
.w1_c00121{width:7.346667pt;}
.w2_c00121{width:589.640000pt;}
.w3_c00121{width:815.997333pt;}
.w0_c00121{width:816.000000pt;}
.x0_c00121{left:0.000000pt;}
.x3_c00121{left:113.324000pt;}
.xa_c00121{left:122.272000pt;}
.x1_c00121{left:137.346667pt;}
.x4_c00121{left:151.106667pt;}
.x9_c00121{left:305.413333pt;}
.x5_c00121{left:400.477333pt;}
.x6_c00121{left:411.360000pt;}
.x7_c00121{left:461.597333pt;}
.x8_c00121{left:472.480000pt;}
.x2_c00121{left:695.613333pt;}
}





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

.ir_c00122:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00122;src:url('chunks/assets/font_cf7477abac377089af20edc5.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_a7ed9eccc7a5645cdfce5be7.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_204b2d1776c28637f5aab31f.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;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_c00122;src:url('chunks/assets/font_6d6012ad3d039b796109a8c8.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_002393f08d72ec8bb5e3d5ab.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00122;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00122{font-family:ff6_c00122;line-height:1.311035;font-style:normal;font-weight: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_c00122;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff7_c00122{font-family:ff7_c00122;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls17_c00122{letter-spacing:-1.416000px;}
.ls1d_c00122{letter-spacing:-1.380000px;}
.ls1e_c00122{letter-spacing:-0.912000px;}
.ls16_c00122{letter-spacing:-0.466800px;}
.ls1c_c00122{letter-spacing:-0.302400px;}
.ls18_c00122{letter-spacing:-0.241800px;}
.ls15_c00122{letter-spacing:0.000000px;}
.ls19_c00122{letter-spacing:0.022800px;}
.ls1f_c00122{letter-spacing:0.060600px;}
.ls14_c00122{letter-spacing:0.120000px;}
.ls1a_c00122{letter-spacing:0.166800px;}
.ls11_c00122{letter-spacing:0.529800px;}
.ls7_c00122{letter-spacing:0.662625px;}
.ls1b_c00122{letter-spacing:0.702000px;}
.ls0_c00122{letter-spacing:0.720000px;}
.ls6_c00122{letter-spacing:0.739999px;}
.ls3_c00122{letter-spacing:0.740010px;}
.ls2_c00122{letter-spacing:0.740310px;}
.ls1_c00122{letter-spacing:0.740425px;}
.ls5_c00122{letter-spacing:0.840000px;}
.ls10_c00122{letter-spacing:1.968000px;}
.ls12_c00122{letter-spacing:2.160000px;}
.ls13_c00122{letter-spacing:3.600000px;}
.lsf_c00122{letter-spacing:8.040000px;}
.lse_c00122{letter-spacing:9.331436px;}
.lsc_c00122{letter-spacing:9.348388px;}
.lsd_c00122{letter-spacing:9.360000px;}
.lsb_c00122{letter-spacing:10.771315px;}
.lsa_c00122{letter-spacing:10.800000px;}
.ls9_c00122{letter-spacing:12.240000px;}
.ls8_c00122{letter-spacing:461.640000px;}
.ls4_c00122{letter-spacing:650.400000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00122{word-spacing:-60.480000px;}
.ws3_c00122{word-spacing:-15.822000px;}
.ws2_c00122{word-spacing:-15.286800px;}
.ws9_c00122{word-spacing:-15.180600px;}
.ws0_c00122{word-spacing:-15.120000px;}
.ws5_c00122{word-spacing:-14.878200px;}
.ws6_c00122{word-spacing:-14.817600px;}
.ws1_c00122{word-spacing:-14.653200px;}
.ws8_c00122{word-spacing:-13.740000px;}
.ws4_c00122{word-spacing:-12.600000px;}
.wsa_c00122{word-spacing:0.000000px;}
._2_c00122{margin-left:-2.866770px;}
._0_c00122{margin-left:-1.390798px;}
._1_c00122{width:1.643967px;}
._7_c00122{width:2.952029px;}
._8_c00122{width:4.064377px;}
._b_c00122{width:7.439403px;}
._a_c00122{width:8.932177px;}
._9_c00122{width:10.448990px;}
._4_c00122{width:12.228590px;}
._3_c00122{width:13.971001px;}
._5_c00122{width:22.740601px;}
._6_c00122{width:23.949596px;}
.fc0_c00122{color:rgb(0,0,0);}
.fs2_c00122{font-size:47.520000px;}
.fs1_c00122{font-size:60.480000px;}
.fs0_c00122{font-size:72.000000px;}
.y0_c00122{bottom:0.000000px;}
.y6_c00122{bottom:4.675500px;}
.y3_c00122{bottom:4.680000px;}
.y5_c00122{bottom:25.195500px;}
.y4_c00122{bottom:32.800500px;}
.y1_c00122{bottom:57.996000px;}
.y26_c00122{bottom:130.716000px;}
.y25_c00122{bottom:147.996000px;}
.y24_c00122{bottom:165.675000px;}
.y23_c00122{bottom:208.515000px;}
.y22_c00122{bottom:234.435000px;}
.y21_c00122{bottom:260.355000px;}
.y20_c00122{bottom:286.305000px;}
.y1f_c00122{bottom:312.225000px;}
.y1e_c00122{bottom:338.145000px;}
.y1d_c00122{bottom:373.065000px;}
.y1c_c00122{bottom:408.030000px;}
.y1b_c00122{bottom:433.590000px;}
.y1a_c00122{bottom:459.510000px;}
.y19_c00122{bottom:485.430000px;}
.y18_c00122{bottom:511.350000px;}
.y17_c00122{bottom:537.300000px;}
.y16_c00122{bottom:563.220000px;}
.y15_c00122{bottom:589.140000px;}
.y14_c00122{bottom:614.700000px;}
.y13_c00122{bottom:649.650000px;}
.y12_c00122{bottom:684.570000px;}
.y11_c00122{bottom:719.490000px;}
.y10_c00122{bottom:754.410000px;}
.yf_c00122{bottom:789.375000px;}
.ye_c00122{bottom:824.295000px;}
.yd_c00122{bottom:859.215000px;}
.yc_c00122{bottom:893.805000px;}
.yb_c00122{bottom:928.725000px;}
.ya_c00122{bottom:963.645000px;}
.y9_c00122{bottom:998.565000px;}
.y8_c00122{bottom:1033.530000px;}
.y7_c00122{bottom:1068.450000px;}
.y2_c00122{bottom:1113.090000px;}
.h2_c00122{height:20.910000px;}
.h3_c00122{height:41.395500px;}
.h6_c00122{height:59.328281px;}
.h4_c00122{height:59.357813px;}
.h5_c00122{height:60.952500px;}
.h1_c00122{height:64.546875px;}
.h7_c00122{height:1187.995500px;}
.h0_c00122{height:1188.000000px;}
.w1_c00122{width:8.265000px;}
.w2_c00122{width:663.345000px;}
.w3_c00122{width:917.997000px;}
.w0_c00122{width:918.000000px;}
.x0_c00122{left:0.000000px;}
.x3_c00122{left:127.489500px;}
.x1_c00122{left:154.515000px;}
.x4_c00122{left:169.995000px;}
.x2_c00122{left:782.565000px;}
.x5_c00122{left:790.485000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls17_c00122{letter-spacing:-1.258667pt;}
.ls1d_c00122{letter-spacing:-1.226667pt;}
.ls1e_c00122{letter-spacing:-0.810667pt;}
.ls16_c00122{letter-spacing:-0.414933pt;}
.ls1c_c00122{letter-spacing:-0.268800pt;}
.ls18_c00122{letter-spacing:-0.214933pt;}
.ls15_c00122{letter-spacing:0.000000pt;}
.ls19_c00122{letter-spacing:0.020267pt;}
.ls1f_c00122{letter-spacing:0.053867pt;}
.ls14_c00122{letter-spacing:0.106667pt;}
.ls1a_c00122{letter-spacing:0.148267pt;}
.ls11_c00122{letter-spacing:0.470933pt;}
.ls7_c00122{letter-spacing:0.589000pt;}
.ls1b_c00122{letter-spacing:0.624000pt;}
.ls0_c00122{letter-spacing:0.640000pt;}
.ls6_c00122{letter-spacing:0.657777pt;}
.ls3_c00122{letter-spacing:0.657787pt;}
.ls2_c00122{letter-spacing:0.658053pt;}
.ls1_c00122{letter-spacing:0.658156pt;}
.ls5_c00122{letter-spacing:0.746667pt;}
.ls10_c00122{letter-spacing:1.749333pt;}
.ls12_c00122{letter-spacing:1.920000pt;}
.ls13_c00122{letter-spacing:3.200000pt;}
.lsf_c00122{letter-spacing:7.146667pt;}
.lse_c00122{letter-spacing:8.294610pt;}
.lsc_c00122{letter-spacing:8.309678pt;}
.lsd_c00122{letter-spacing:8.320000pt;}
.lsb_c00122{letter-spacing:9.574502pt;}
.lsa_c00122{letter-spacing:9.600000pt;}
.ls9_c00122{letter-spacing:10.880000pt;}
.ls8_c00122{letter-spacing:410.346667pt;}
.ls4_c00122{letter-spacing:578.133333pt;}
.ws7_c00122{word-spacing:-53.760000pt;}
.ws3_c00122{word-spacing:-14.064000pt;}
.ws2_c00122{word-spacing:-13.588267pt;}
.ws9_c00122{word-spacing:-13.493867pt;}
.ws0_c00122{word-spacing:-13.440000pt;}
.ws5_c00122{word-spacing:-13.225067pt;}
.ws6_c00122{word-spacing:-13.171200pt;}
.ws1_c00122{word-spacing:-13.025067pt;}
.ws8_c00122{word-spacing:-12.213333pt;}
.ws4_c00122{word-spacing:-11.200000pt;}
.wsa_c00122{word-spacing:0.000000pt;}
._2_c00122{margin-left:-2.548240pt;}
._0_c00122{margin-left:-1.236265pt;}
._1_c00122{width:1.461304pt;}
._7_c00122{width:2.624026pt;}
._8_c00122{width:3.612780pt;}
._b_c00122{width:6.612803pt;}
._a_c00122{width:7.939713pt;}
._9_c00122{width:9.287991pt;}
._4_c00122{width:10.869858pt;}
._3_c00122{width:12.418668pt;}
._5_c00122{width:20.213868pt;}
._6_c00122{width:21.288530pt;}
.fs2_c00122{font-size:42.240000pt;}
.fs1_c00122{font-size:53.760000pt;}
.fs0_c00122{font-size:64.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.y6_c00122{bottom:4.156000pt;}
.y3_c00122{bottom:4.160000pt;}
.y5_c00122{bottom:22.396000pt;}
.y4_c00122{bottom:29.156000pt;}
.y1_c00122{bottom:51.552000pt;}
.y26_c00122{bottom:116.192000pt;}
.y25_c00122{bottom:131.552000pt;}
.y24_c00122{bottom:147.266667pt;}
.y23_c00122{bottom:185.346667pt;}
.y22_c00122{bottom:208.386667pt;}
.y21_c00122{bottom:231.426667pt;}
.y20_c00122{bottom:254.493333pt;}
.y1f_c00122{bottom:277.533333pt;}
.y1e_c00122{bottom:300.573333pt;}
.y1d_c00122{bottom:331.613333pt;}
.y1c_c00122{bottom:362.693333pt;}
.y1b_c00122{bottom:385.413333pt;}
.y1a_c00122{bottom:408.453333pt;}
.y19_c00122{bottom:431.493333pt;}
.y18_c00122{bottom:454.533333pt;}
.y17_c00122{bottom:477.600000pt;}
.y16_c00122{bottom:500.640000pt;}
.y15_c00122{bottom:523.680000pt;}
.y14_c00122{bottom:546.400000pt;}
.y13_c00122{bottom:577.466667pt;}
.y12_c00122{bottom:608.506667pt;}
.y11_c00122{bottom:639.546667pt;}
.y10_c00122{bottom:670.586667pt;}
.yf_c00122{bottom:701.666667pt;}
.ye_c00122{bottom:732.706667pt;}
.yd_c00122{bottom:763.746667pt;}
.yc_c00122{bottom:794.493333pt;}
.yb_c00122{bottom:825.533333pt;}
.ya_c00122{bottom:856.573333pt;}
.y9_c00122{bottom:887.613333pt;}
.y8_c00122{bottom:918.693333pt;}
.y7_c00122{bottom:949.733333pt;}
.y2_c00122{bottom:989.413333pt;}
.h2_c00122{height:18.586667pt;}
.h3_c00122{height:36.796000pt;}
.h6_c00122{height:52.736250pt;}
.h4_c00122{height:52.762500pt;}
.h5_c00122{height:54.180000pt;}
.h1_c00122{height:57.375000pt;}
.h7_c00122{height:1055.996000pt;}
.h0_c00122{height:1056.000000pt;}
.w1_c00122{width:7.346667pt;}
.w2_c00122{width:589.640000pt;}
.w3_c00122{width:815.997333pt;}
.w0_c00122{width:816.000000pt;}
.x0_c00122{left:0.000000pt;}
.x3_c00122{left:113.324000pt;}
.x1_c00122{left:137.346667pt;}
.x4_c00122{left:151.106667pt;}
.x2_c00122{left:695.613333pt;}
.x5_c00122{left:702.653333pt;}
}





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

.ir_c00123:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00123;src:url('chunks/assets/font_53a7a9dc76c0a2270281d1e1.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_ea7fca6e302404fdc9701e05.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_a7d23c8ad1639704388985e2.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_2cf082221d98c84e3136e12c.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;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_c00123;src:url('chunks/assets/font_7e461e34488d74d2b9a9f9a2.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00123;src:url('chunks/assets/font_2dd3dbc7ed3ffeb73284e477.woff2')format("woff");}.ff6_c00123{font-family:ff6_c00123;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls11_c00123{letter-spacing:-1.440000px;}
.lsf_c00123{letter-spacing:-0.288000px;}
.ls12_c00123{letter-spacing:-0.241800px;}
.ls10_c00123{letter-spacing:-0.144000px;}
.lsc_c00123{letter-spacing:0.000000px;}
.ls4_c00123{letter-spacing:0.120000px;}
.ls2_c00123{letter-spacing:0.302400px;}
.lse_c00123{letter-spacing:0.313800px;}
.ls1_c00123{letter-spacing:0.518400px;}
.lsd_c00123{letter-spacing:0.702000px;}
.ls3_c00123{letter-spacing:0.720000px;}
.ls6_c00123{letter-spacing:0.792000px;}
.lsa_c00123{letter-spacing:1.560000px;}
.ls8_c00123{letter-spacing:2.160000px;}
.ls9_c00123{letter-spacing:3.600000px;}
.lsb_c00123{letter-spacing:3.612000px;}
.ls0_c00123{letter-spacing:5.040000px;}
.ls5_c00123{letter-spacing:18.000000px;}
.ls7_c00123{letter-spacing:22.320000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00123{word-spacing:-18.000000px;}
.ws5_c00123{word-spacing:-17.856000px;}
.ws4_c00123{word-spacing:-17.712000px;}
.ws0_c00123{word-spacing:-15.822000px;}
.ws1_c00123{word-spacing:-15.433800px;}
.ws2_c00123{word-spacing:-15.120000px;}
.ws6_c00123{word-spacing:-14.878200px;}
.ws7_c00123{word-spacing:0.000000px;}
._5_c00123{margin-left:-2.760489px;}
._1_c00123{margin-left:-1.753799px;}
._2_c00123{width:1.028402px;}
._3_c00123{width:2.069384px;}
._4_c00123{width:3.931200px;}
._0_c00123{width:5.019598px;}
._6_c00123{width:6.471602px;}
._7_c00123{width:8.104199px;}
._c_c00123{width:10.279685px;}
._f_c00123{width:12.744000px;}
._e_c00123{width:14.256000px;}
._d_c00123{width:16.955283px;}
._a_c00123{width:19.888191px;}
._b_c00123{width:21.136608px;}
._8_c00123{width:22.824000px;}
._9_c00123{width:23.921821px;}
.fc1_c00123{color:rgb(255,0,0);}
.fc0_c00123{color:rgb(0,0,0);}
.fs3_c00123{font-size:38.880000px;}
.fs2_c00123{font-size:47.520000px;}
.fs1_c00123{font-size:60.480000px;}
.fs0_c00123{font-size:72.000000px;}
.y0_c00123{bottom:0.000000px;}
.y6_c00123{bottom:4.675500px;}
.y3_c00123{bottom:4.680000px;}
.y5_c00123{bottom:25.195500px;}
.y4_c00123{bottom:32.800500px;}
.y1_c00123{bottom:57.996000px;}
.y2d_c00123{bottom:110.556000px;}
.y2c_c00123{bottom:130.716000px;}
.y2b_c00123{bottom:147.996000px;}
.y2a_c00123{bottom:164.955000px;}
.y29_c00123{bottom:182.235000px;}
.y28_c00123{bottom:199.515000px;}
.y27_c00123{bottom:216.795000px;}
.y26_c00123{bottom:234.075000px;}
.y25_c00123{bottom:251.355000px;}
.y24_c00123{bottom:258.195000px;}
.y23_c00123{bottom:268.995000px;}
.y21_c00123{bottom:307.185000px;}
.y22_c00123{bottom:315.465000px;}
.y20_c00123{bottom:338.505000px;}
.y1f_c00123{bottom:369.465000px;}
.y1e_c00123{bottom:400.470000px;}
.y1d_c00123{bottom:431.430000px;}
.y1c_c00123{bottom:462.750000px;}
.y1b_c00123{bottom:493.710000px;}
.y1a_c00123{bottom:524.700000px;}
.y19_c00123{bottom:555.660000px;}
.y18_c00123{bottom:586.980000px;}
.y17_c00123{bottom:617.940000px;}
.y16_c00123{bottom:648.930000px;}
.y15_c00123{bottom:679.890000px;}
.y14_c00123{bottom:710.850000px;}
.y13_c00123{bottom:748.650000px;}
.y12_c00123{bottom:774.615000px;}
.y11_c00123{bottom:800.535000px;}
.y10_c00123{bottom:826.455000px;}
.yf_c00123{bottom:852.375000px;}
.ye_c00123{bottom:878.295000px;}
.yd_c00123{bottom:904.245000px;}
.yc_c00123{bottom:929.805000px;}
.yb_c00123{bottom:955.725000px;}
.ya_c00123{bottom:981.645000px;}
.y9_c00123{bottom:1007.565000px;}
.y8_c00123{bottom:1042.530000px;}
.y7_c00123{bottom:1068.450000px;}
.y2_c00123{bottom:1113.090000px;}
.h2_c00123{height:20.910000px;}
.ha_c00123{height:34.855313px;}
.h3_c00123{height:41.395500px;}
.h9_c00123{height:46.615078px;}
.hb_c00123{height:54.514688px;}
.h5_c00123{height:59.328281px;}
.h4_c00123{height:59.357813px;}
.h1_c00123{height:64.546875px;}
.h7_c00123{height:70.628906px;}
.h6_c00123{height:70.664062px;}
.h8_c00123{height:1187.995500px;}
.h0_c00123{height:1188.000000px;}
.w1_c00123{width:8.265000px;}
.w2_c00123{width:663.345000px;}
.w3_c00123{width:917.997000px;}
.w0_c00123{width:918.000000px;}
.x0_c00123{left:0.000000px;}
.x3_c00123{left:127.489500px;}
.x8_c00123{left:137.556000px;}
.x1_c00123{left:154.515000px;}
.x4_c00123{left:169.995000px;}
.x5_c00123{left:187.632000px;}
.x6_c00123{left:199.875000px;}
.x7_c00123{left:343.590000px;}
.x2_c00123{left:782.565000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls11_c00123{letter-spacing:-1.280000pt;}
.lsf_c00123{letter-spacing:-0.256000pt;}
.ls12_c00123{letter-spacing:-0.214933pt;}
.ls10_c00123{letter-spacing:-0.128000pt;}
.lsc_c00123{letter-spacing:0.000000pt;}
.ls4_c00123{letter-spacing:0.106667pt;}
.ls2_c00123{letter-spacing:0.268800pt;}
.lse_c00123{letter-spacing:0.278933pt;}
.ls1_c00123{letter-spacing:0.460800pt;}
.lsd_c00123{letter-spacing:0.624000pt;}
.ls3_c00123{letter-spacing:0.640000pt;}
.ls6_c00123{letter-spacing:0.704000pt;}
.lsa_c00123{letter-spacing:1.386667pt;}
.ls8_c00123{letter-spacing:1.920000pt;}
.ls9_c00123{letter-spacing:3.200000pt;}
.lsb_c00123{letter-spacing:3.210667pt;}
.ls0_c00123{letter-spacing:4.480000pt;}
.ls5_c00123{letter-spacing:16.000000pt;}
.ls7_c00123{letter-spacing:19.840000pt;}
.ws3_c00123{word-spacing:-16.000000pt;}
.ws5_c00123{word-spacing:-15.872000pt;}
.ws4_c00123{word-spacing:-15.744000pt;}
.ws0_c00123{word-spacing:-14.064000pt;}
.ws1_c00123{word-spacing:-13.718933pt;}
.ws2_c00123{word-spacing:-13.440000pt;}
.ws6_c00123{word-spacing:-13.225067pt;}
.ws7_c00123{word-spacing:0.000000pt;}
._5_c00123{margin-left:-2.453768pt;}
._1_c00123{margin-left:-1.558932pt;}
._2_c00123{width:0.914135pt;}
._3_c00123{width:1.839452pt;}
._4_c00123{width:3.494400pt;}
._0_c00123{width:4.461865pt;}
._6_c00123{width:5.752535pt;}
._7_c00123{width:7.203732pt;}
._c_c00123{width:9.137498pt;}
._f_c00123{width:11.328000pt;}
._e_c00123{width:12.672000pt;}
._d_c00123{width:15.071363pt;}
._a_c00123{width:17.678392pt;}
._b_c00123{width:18.788096pt;}
._8_c00123{width:20.288000pt;}
._9_c00123{width:21.263841pt;}
.fs3_c00123{font-size:34.560000pt;}
.fs2_c00123{font-size:42.240000pt;}
.fs1_c00123{font-size:53.760000pt;}
.fs0_c00123{font-size:64.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y6_c00123{bottom:4.156000pt;}
.y3_c00123{bottom:4.160000pt;}
.y5_c00123{bottom:22.396000pt;}
.y4_c00123{bottom:29.156000pt;}
.y1_c00123{bottom:51.552000pt;}
.y2d_c00123{bottom:98.272000pt;}
.y2c_c00123{bottom:116.192000pt;}
.y2b_c00123{bottom:131.552000pt;}
.y2a_c00123{bottom:146.626667pt;}
.y29_c00123{bottom:161.986667pt;}
.y28_c00123{bottom:177.346667pt;}
.y27_c00123{bottom:192.706667pt;}
.y26_c00123{bottom:208.066667pt;}
.y25_c00123{bottom:223.426667pt;}
.y24_c00123{bottom:229.506667pt;}
.y23_c00123{bottom:239.106667pt;}
.y21_c00123{bottom:273.053333pt;}
.y22_c00123{bottom:280.413333pt;}
.y20_c00123{bottom:300.893333pt;}
.y1f_c00123{bottom:328.413333pt;}
.y1e_c00123{bottom:355.973333pt;}
.y1d_c00123{bottom:383.493333pt;}
.y1c_c00123{bottom:411.333333pt;}
.y1b_c00123{bottom:438.853333pt;}
.y1a_c00123{bottom:466.400000pt;}
.y19_c00123{bottom:493.920000pt;}
.y18_c00123{bottom:521.760000pt;}
.y17_c00123{bottom:549.280000pt;}
.y16_c00123{bottom:576.826667pt;}
.y15_c00123{bottom:604.346667pt;}
.y14_c00123{bottom:631.866667pt;}
.y13_c00123{bottom:665.466667pt;}
.y12_c00123{bottom:688.546667pt;}
.y11_c00123{bottom:711.586667pt;}
.y10_c00123{bottom:734.626667pt;}
.yf_c00123{bottom:757.666667pt;}
.ye_c00123{bottom:780.706667pt;}
.yd_c00123{bottom:803.773333pt;}
.yc_c00123{bottom:826.493333pt;}
.yb_c00123{bottom:849.533333pt;}
.ya_c00123{bottom:872.573333pt;}
.y9_c00123{bottom:895.613333pt;}
.y8_c00123{bottom:926.693333pt;}
.y7_c00123{bottom:949.733333pt;}
.y2_c00123{bottom:989.413333pt;}
.h2_c00123{height:18.586667pt;}
.ha_c00123{height:30.982500pt;}
.h3_c00123{height:36.796000pt;}
.h9_c00123{height:41.435625pt;}
.hb_c00123{height:48.457500pt;}
.h5_c00123{height:52.736250pt;}
.h4_c00123{height:52.762500pt;}
.h1_c00123{height:57.375000pt;}
.h7_c00123{height:62.781250pt;}
.h6_c00123{height:62.812500pt;}
.h8_c00123{height:1055.996000pt;}
.h0_c00123{height:1056.000000pt;}
.w1_c00123{width:7.346667pt;}
.w2_c00123{width:589.640000pt;}
.w3_c00123{width:815.997333pt;}
.w0_c00123{width:816.000000pt;}
.x0_c00123{left:0.000000pt;}
.x3_c00123{left:113.324000pt;}
.x8_c00123{left:122.272000pt;}
.x1_c00123{left:137.346667pt;}
.x4_c00123{left:151.106667pt;}
.x5_c00123{left:166.784000pt;}
.x6_c00123{left:177.666667pt;}
.x7_c00123{left:305.413333pt;}
.x2_c00123{left:695.613333pt;}
}





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

.ir_c00124:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00124;src:url('chunks/assets/font_3610309875bc67f875ab73fc.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_87adf086f88f706db6cf4b6e.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_3a77bfa360c3f3951eac7caf.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_dd76093f883c14f61faeb37a.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;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_c00124;src:url('chunks/assets/font_a545d7014541cd5d8e71b635.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00124;src:url('chunks/assets/font_fbce48d3bd345172b168d90a.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.lsd_c00124{letter-spacing:-0.532800px;}
.lsf_c00124{letter-spacing:-0.486600px;}
.lse_c00124{letter-spacing:-0.241800px;}
.lsb_c00124{letter-spacing:0.000000px;}
.ls7_c00124{letter-spacing:0.022800px;}
.lsc_c00124{letter-spacing:0.466800px;}
.ls5_c00124{letter-spacing:0.524160px;}
.ls4_c00124{letter-spacing:0.720000px;}
.ls1_c00124{letter-spacing:0.732000px;}
.ls6_c00124{letter-spacing:5.220000px;}
.lsa_c00124{letter-spacing:6.480000px;}
.ls8_c00124{letter-spacing:6.488640px;}
.ls9_c00124{letter-spacing:6.600000px;}
.ls2_c00124{letter-spacing:19.440000px;}
.ls3_c00124{letter-spacing:46.920000px;}
.ls0_c00124{letter-spacing:48.384000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00124{word-spacing:-72.000000px;}
.ws3_c00124{word-spacing:-60.480000px;}
.ws0_c00124{word-spacing:-18.000000px;}
.ws2_c00124{word-spacing:-15.120000px;}
.ws4_c00124{word-spacing:-14.878200px;}
.ws5_c00124{word-spacing:0.000000px;}
._4_c00124{margin-left:-2.664000px;}
._0_c00124{margin-left:-1.440000px;}
._2_c00124{width:1.728000px;}
._6_c00124{width:3.096000px;}
._c_c00124{width:4.320000px;}
._3_c00124{width:5.616000px;}
._1_c00124{width:6.624000px;}
._9_c00124{width:8.496000px;}
._b_c00124{width:10.080000px;}
._5_c00124{width:11.880000px;}
._f_c00124{width:12.996000px;}
._7_c00124{width:14.256000px;}
._8_c00124{width:16.068000px;}
._10_c00124{width:19.728000px;}
._e_c00124{width:21.672000px;}
._d_c00124{width:22.896000px;}
._13_c00124{width:44.820000px;}
._12_c00124{width:46.008000px;}
._11_c00124{width:47.160000px;}
._a_c00124{width:105.840000px;}
.fc0_c00124{color:rgb(0,0,0);}
.fs3_c00124{font-size:38.880000px;}
.fs1_c00124{font-size:47.520000px;}
.fs2_c00124{font-size:60.480000px;}
.fs0_c00124{font-size:72.000000px;}
.y0_c00124{bottom:0.000000px;}
.y6_c00124{bottom:4.675500px;}
.y3_c00124{bottom:4.680000px;}
.y5_c00124{bottom:25.195500px;}
.y4_c00124{bottom:32.800500px;}
.y1_c00124{bottom:57.996000px;}
.y28_c00124{bottom:130.716000px;}
.y27_c00124{bottom:147.996000px;}
.y26_c00124{bottom:154.875000px;}
.y25_c00124{bottom:164.955000px;}
.y24_c00124{bottom:182.235000px;}
.y23_c00124{bottom:199.515000px;}
.y22_c00124{bottom:216.795000px;}
.y21_c00124{bottom:234.795000px;}
.y20_c00124{bottom:266.115000px;}
.y1f_c00124{bottom:297.105000px;}
.y1e_c00124{bottom:328.065000px;}
.y1d_c00124{bottom:359.385000px;}
.y1c_c00124{bottom:390.345000px;}
.y1b_c00124{bottom:421.350000px;}
.y1a_c00124{bottom:452.310000px;}
.y19_c00124{bottom:492.630000px;}
.y18_c00124{bottom:523.620000px;}
.y17_c00124{bottom:554.580000px;}
.y16_c00124{bottom:585.540000px;}
.y15_c00124{bottom:616.860000px;}
.y14_c00124{bottom:656.850000px;}
.y13_c00124{bottom:696.810000px;}
.y12_c00124{bottom:727.770000px;}
.y11_c00124{bottom:759.090000px;}
.y10_c00124{bottom:790.095000px;}
.yf_c00124{bottom:821.055000px;}
.yd_c00124{bottom:852.015000px;}
.ye_c00124{bottom:860.295000px;}
.yc_c00124{bottom:892.365000px;}
.yb_c00124{bottom:932.325000px;}
.ya_c00124{bottom:972.285000px;}
.y9_c00124{bottom:1003.245000px;}
.y8_c00124{bottom:1034.610000px;}
.y7_c00124{bottom:1065.570000px;}
.y2_c00124{bottom:1113.090000px;}
.h2_c00124{height:20.910000px;}
.h9_c00124{height:34.855313px;}
.h3_c00124{height:41.395500px;}
.h7_c00124{height:46.615078px;}
.ha_c00124{height:54.514688px;}
.h8_c00124{height:59.357813px;}
.h1_c00124{height:64.546875px;}
.h5_c00124{height:70.628906px;}
.h4_c00124{height:70.664062px;}
.h6_c00124{height:1187.995500px;}
.h0_c00124{height:1188.000000px;}
.w1_c00124{width:8.265000px;}
.w2_c00124{width:663.345000px;}
.w3_c00124{width:917.997000px;}
.w0_c00124{width:918.000000px;}
.x0_c00124{left:0.000000px;}
.x3_c00124{left:127.489500px;}
.xa_c00124{left:137.556000px;}
.x1_c00124{left:154.515000px;}
.x8_c00124{left:169.995000px;}
.x5_c00124{left:178.635000px;}
.x4_c00124{left:180.795000px;}
.x6_c00124{left:320.142000px;}
.x7_c00124{left:332.385000px;}
.x2_c00124{left:782.565000px;}
.x9_c00124{left:790.485000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.lsd_c00124{letter-spacing:-0.473600pt;}
.lsf_c00124{letter-spacing:-0.432533pt;}
.lse_c00124{letter-spacing:-0.214933pt;}
.lsb_c00124{letter-spacing:0.000000pt;}
.ls7_c00124{letter-spacing:0.020267pt;}
.lsc_c00124{letter-spacing:0.414933pt;}
.ls5_c00124{letter-spacing:0.465920pt;}
.ls4_c00124{letter-spacing:0.640000pt;}
.ls1_c00124{letter-spacing:0.650667pt;}
.ls6_c00124{letter-spacing:4.640000pt;}
.lsa_c00124{letter-spacing:5.760000pt;}
.ls8_c00124{letter-spacing:5.767680pt;}
.ls9_c00124{letter-spacing:5.866667pt;}
.ls2_c00124{letter-spacing:17.280000pt;}
.ls3_c00124{letter-spacing:41.706667pt;}
.ls0_c00124{letter-spacing:43.008000pt;}
.ws1_c00124{word-spacing:-64.000000pt;}
.ws3_c00124{word-spacing:-53.760000pt;}
.ws0_c00124{word-spacing:-16.000000pt;}
.ws2_c00124{word-spacing:-13.440000pt;}
.ws4_c00124{word-spacing:-13.225067pt;}
.ws5_c00124{word-spacing:0.000000pt;}
._4_c00124{margin-left:-2.368000pt;}
._0_c00124{margin-left:-1.280000pt;}
._2_c00124{width:1.536000pt;}
._6_c00124{width:2.752000pt;}
._c_c00124{width:3.840000pt;}
._3_c00124{width:4.992000pt;}
._1_c00124{width:5.888000pt;}
._9_c00124{width:7.552000pt;}
._b_c00124{width:8.960000pt;}
._5_c00124{width:10.560000pt;}
._f_c00124{width:11.552000pt;}
._7_c00124{width:12.672000pt;}
._8_c00124{width:14.282667pt;}
._10_c00124{width:17.536000pt;}
._e_c00124{width:19.264000pt;}
._d_c00124{width:20.352000pt;}
._13_c00124{width:39.840000pt;}
._12_c00124{width:40.896000pt;}
._11_c00124{width:41.920000pt;}
._a_c00124{width:94.080000pt;}
.fs3_c00124{font-size:34.560000pt;}
.fs1_c00124{font-size:42.240000pt;}
.fs2_c00124{font-size:53.760000pt;}
.fs0_c00124{font-size:64.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y6_c00124{bottom:4.156000pt;}
.y3_c00124{bottom:4.160000pt;}
.y5_c00124{bottom:22.396000pt;}
.y4_c00124{bottom:29.156000pt;}
.y1_c00124{bottom:51.552000pt;}
.y28_c00124{bottom:116.192000pt;}
.y27_c00124{bottom:131.552000pt;}
.y26_c00124{bottom:137.666667pt;}
.y25_c00124{bottom:146.626667pt;}
.y24_c00124{bottom:161.986667pt;}
.y23_c00124{bottom:177.346667pt;}
.y22_c00124{bottom:192.706667pt;}
.y21_c00124{bottom:208.706667pt;}
.y20_c00124{bottom:236.546667pt;}
.y1f_c00124{bottom:264.093333pt;}
.y1e_c00124{bottom:291.613333pt;}
.y1d_c00124{bottom:319.453333pt;}
.y1c_c00124{bottom:346.973333pt;}
.y1b_c00124{bottom:374.533333pt;}
.y1a_c00124{bottom:402.053333pt;}
.y19_c00124{bottom:437.893333pt;}
.y18_c00124{bottom:465.440000pt;}
.y17_c00124{bottom:492.960000pt;}
.y16_c00124{bottom:520.480000pt;}
.y15_c00124{bottom:548.320000pt;}
.y14_c00124{bottom:583.866667pt;}
.y13_c00124{bottom:619.386667pt;}
.y12_c00124{bottom:646.906667pt;}
.y11_c00124{bottom:674.746667pt;}
.y10_c00124{bottom:702.306667pt;}
.yf_c00124{bottom:729.826667pt;}
.yd_c00124{bottom:757.346667pt;}
.ye_c00124{bottom:764.706667pt;}
.yc_c00124{bottom:793.213333pt;}
.yb_c00124{bottom:828.733333pt;}
.ya_c00124{bottom:864.253333pt;}
.y9_c00124{bottom:891.773333pt;}
.y8_c00124{bottom:919.653333pt;}
.y7_c00124{bottom:947.173333pt;}
.y2_c00124{bottom:989.413333pt;}
.h2_c00124{height:18.586667pt;}
.h9_c00124{height:30.982500pt;}
.h3_c00124{height:36.796000pt;}
.h7_c00124{height:41.435625pt;}
.ha_c00124{height:48.457500pt;}
.h8_c00124{height:52.762500pt;}
.h1_c00124{height:57.375000pt;}
.h5_c00124{height:62.781250pt;}
.h4_c00124{height:62.812500pt;}
.h6_c00124{height:1055.996000pt;}
.h0_c00124{height:1056.000000pt;}
.w1_c00124{width:7.346667pt;}
.w2_c00124{width:589.640000pt;}
.w3_c00124{width:815.997333pt;}
.w0_c00124{width:816.000000pt;}
.x0_c00124{left:0.000000pt;}
.x3_c00124{left:113.324000pt;}
.xa_c00124{left:122.272000pt;}
.x1_c00124{left:137.346667pt;}
.x8_c00124{left:151.106667pt;}
.x5_c00124{left:158.786667pt;}
.x4_c00124{left:160.706667pt;}
.x6_c00124{left:284.570667pt;}
.x7_c00124{left:295.453333pt;}
.x2_c00124{left:695.613333pt;}
.x9_c00124{left:702.653333pt;}
}





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

.ir_c00125:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00125;src:url('chunks/assets/font_97bdd5b185319155180687a8.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_053713d933c0cef376d467b4.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_3491b2a828128ca6b80f5921.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;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_c00125;src:url('chunks/assets/font_f76425aaf70e5479b0b25299.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00125;src:url('chunks/assets/font_e7cb80283de58498f3a916a4.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00125;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00125{font-family:ff6_c00125;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls5_c00125{letter-spacing:-1.440000px;}
.ls6_c00125{letter-spacing:-0.720000px;}
.lsa_c00125{letter-spacing:-0.241800px;}
.ls4_c00125{letter-spacing:0.000000px;}
.lsb_c00125{letter-spacing:0.020400px;}
.ls7_c00125{letter-spacing:0.022800px;}
.ls9_c00125{letter-spacing:0.094800px;}
.ls8_c00125{letter-spacing:0.291000px;}
.ls2_c00125{letter-spacing:0.495600px;}
.ls1_c00125{letter-spacing:0.518400px;}
.ls0_c00125{letter-spacing:0.720000px;}
.ls3_c00125{letter-spacing:7.920000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00125{word-spacing:-18.000000px;}
.ws6_c00125{word-spacing:-15.615600px;}
.ws3_c00125{word-spacing:-15.411000px;}
.ws4_c00125{word-spacing:-15.214800px;}
.ws2_c00125{word-spacing:-15.142800px;}
.ws7_c00125{word-spacing:-15.140400px;}
.ws0_c00125{word-spacing:-15.120000px;}
.ws5_c00125{word-spacing:-14.878200px;}
.ws8_c00125{word-spacing:0.000000px;}
._e_c00125{margin-left:-3.600000px;}
._1_c00125{margin-left:-2.376000px;}
._2_c00125{margin-left:-1.152000px;}
._0_c00125{width:1.080000px;}
._3_c00125{width:3.024000px;}
._f_c00125{width:4.104000px;}
._a_c00125{width:5.112000px;}
._9_c00125{width:7.056000px;}
._7_c00125{width:8.064000px;}
._8_c00125{width:9.936000px;}
._d_c00125{width:11.015976px;}
._b_c00125{width:13.320000px;}
._c_c00125{width:14.544000px;}
._4_c00125{width:36.360000px;}
._5_c00125{width:38.160000px;}
._6_c00125{width:39.684000px;}
.fc0_c00125{color:rgb(0,0,0);}
.fs1_c00125{font-size:60.480000px;}
.fs0_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y6_c00125{bottom:4.675500px;}
.y3_c00125{bottom:4.680000px;}
.y5_c00125{bottom:25.195500px;}
.y4_c00125{bottom:32.800500px;}
.y1_c00125{bottom:57.996000px;}
.y24_c00125{bottom:112.716000px;}
.y23_c00125{bottom:149.832000px;}
.y22_c00125{bottom:181.155000px;}
.y21_c00125{bottom:212.115000px;}
.y20_c00125{bottom:243.075000px;}
.y1f_c00125{bottom:274.065000px;}
.y1e_c00125{bottom:305.385000px;}
.y1d_c00125{bottom:336.345000px;}
.y1c_c00125{bottom:367.305000px;}
.y1b_c00125{bottom:405.150000px;}
.y1a_c00125{bottom:431.070000px;}
.y19_c00125{bottom:465.990000px;}
.y18_c00125{bottom:500.910000px;}
.y17_c00125{bottom:535.860000px;}
.y16_c00125{bottom:572.940000px;}
.y15_c00125{bottom:603.900000px;}
.y14_c00125{bottom:634.860000px;}
.y13_c00125{bottom:665.850000px;}
.y12_c00125{bottom:697.170000px;}
.y11_c00125{bottom:728.130000px;}
.y10_c00125{bottom:759.090000px;}
.yf_c00125{bottom:790.095000px;}
.ye_c00125{bottom:827.895000px;}
.yd_c00125{bottom:853.815000px;}
.yc_c00125{bottom:888.765000px;}
.yb_c00125{bottom:923.685000px;}
.ya_c00125{bottom:958.605000px;}
.y9_c00125{bottom:993.525000px;}
.y8_c00125{bottom:1028.490000px;}
.y7_c00125{bottom:1065.570000px;}
.y2_c00125{bottom:1113.090000px;}
.h2_c00125{height:20.910000px;}
.h3_c00125{height:41.395500px;}
.h7_c00125{height:59.328281px;}
.h5_c00125{height:59.357813px;}
.h6_c00125{height:60.952500px;}
.h1_c00125{height:64.546875px;}
.h4_c00125{height:70.664062px;}
.h0_c00125{height:1188.000000px;}
.w1_c00125{width:8.265000px;}
.w2_c00125{width:663.345000px;}
.w0_c00125{width:918.000000px;}
.x0_c00125{left:0.000000px;}
.x3_c00125{left:127.489500px;}
.x1_c00125{left:154.515000px;}
.x4_c00125{left:169.995000px;}
.x2_c00125{left:782.565000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls5_c00125{letter-spacing:-1.280000pt;}
.ls6_c00125{letter-spacing:-0.640000pt;}
.lsa_c00125{letter-spacing:-0.214933pt;}
.ls4_c00125{letter-spacing:0.000000pt;}
.lsb_c00125{letter-spacing:0.018133pt;}
.ls7_c00125{letter-spacing:0.020267pt;}
.ls9_c00125{letter-spacing:0.084267pt;}
.ls8_c00125{letter-spacing:0.258667pt;}
.ls2_c00125{letter-spacing:0.440533pt;}
.ls1_c00125{letter-spacing:0.460800pt;}
.ls0_c00125{letter-spacing:0.640000pt;}
.ls3_c00125{letter-spacing:7.040000pt;}
.ws1_c00125{word-spacing:-16.000000pt;}
.ws6_c00125{word-spacing:-13.880533pt;}
.ws3_c00125{word-spacing:-13.698667pt;}
.ws4_c00125{word-spacing:-13.524267pt;}
.ws2_c00125{word-spacing:-13.460267pt;}
.ws7_c00125{word-spacing:-13.458133pt;}
.ws0_c00125{word-spacing:-13.440000pt;}
.ws5_c00125{word-spacing:-13.225067pt;}
.ws8_c00125{word-spacing:0.000000pt;}
._e_c00125{margin-left:-3.200000pt;}
._1_c00125{margin-left:-2.112000pt;}
._2_c00125{margin-left:-1.024000pt;}
._0_c00125{width:0.960000pt;}
._3_c00125{width:2.688000pt;}
._f_c00125{width:3.648000pt;}
._a_c00125{width:4.544000pt;}
._9_c00125{width:6.272000pt;}
._7_c00125{width:7.168000pt;}
._8_c00125{width:8.832000pt;}
._d_c00125{width:9.791979pt;}
._b_c00125{width:11.840000pt;}
._c_c00125{width:12.928000pt;}
._4_c00125{width:32.320000pt;}
._5_c00125{width:33.920000pt;}
._6_c00125{width:35.274667pt;}
.fs1_c00125{font-size:53.760000pt;}
.fs0_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y6_c00125{bottom:4.156000pt;}
.y3_c00125{bottom:4.160000pt;}
.y5_c00125{bottom:22.396000pt;}
.y4_c00125{bottom:29.156000pt;}
.y1_c00125{bottom:51.552000pt;}
.y24_c00125{bottom:100.192000pt;}
.y23_c00125{bottom:133.184000pt;}
.y22_c00125{bottom:161.026667pt;}
.y21_c00125{bottom:188.546667pt;}
.y20_c00125{bottom:216.066667pt;}
.y1f_c00125{bottom:243.613333pt;}
.y1e_c00125{bottom:271.453333pt;}
.y1d_c00125{bottom:298.973333pt;}
.y1c_c00125{bottom:326.493333pt;}
.y1b_c00125{bottom:360.133333pt;}
.y1a_c00125{bottom:383.173333pt;}
.y19_c00125{bottom:414.213333pt;}
.y18_c00125{bottom:445.253333pt;}
.y17_c00125{bottom:476.320000pt;}
.y16_c00125{bottom:509.280000pt;}
.y15_c00125{bottom:536.800000pt;}
.y14_c00125{bottom:564.320000pt;}
.y13_c00125{bottom:591.866667pt;}
.y12_c00125{bottom:619.706667pt;}
.y11_c00125{bottom:647.226667pt;}
.y10_c00125{bottom:674.746667pt;}
.yf_c00125{bottom:702.306667pt;}
.ye_c00125{bottom:735.906667pt;}
.yd_c00125{bottom:758.946667pt;}
.yc_c00125{bottom:790.013333pt;}
.yb_c00125{bottom:821.053333pt;}
.ya_c00125{bottom:852.093333pt;}
.y9_c00125{bottom:883.133333pt;}
.y8_c00125{bottom:914.213333pt;}
.y7_c00125{bottom:947.173333pt;}
.y2_c00125{bottom:989.413333pt;}
.h2_c00125{height:18.586667pt;}
.h3_c00125{height:36.796000pt;}
.h7_c00125{height:52.736250pt;}
.h5_c00125{height:52.762500pt;}
.h6_c00125{height:54.180000pt;}
.h1_c00125{height:57.375000pt;}
.h4_c00125{height:62.812500pt;}
.h0_c00125{height:1056.000000pt;}
.w1_c00125{width:7.346667pt;}
.w2_c00125{width:589.640000pt;}
.w0_c00125{width:816.000000pt;}
.x0_c00125{left:0.000000pt;}
.x3_c00125{left:113.324000pt;}
.x1_c00125{left:137.346667pt;}
.x4_c00125{left:151.106667pt;}
.x2_c00125{left:695.613333pt;}
}





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

.ir_c00126:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00126;src:url('chunks/assets/font_2ce69d8e60cf0d50eb5044e3.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_29370c55805395174d52f06d.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_83ee1fca34f20e2ef8dbe86c.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_3b0bd4a8092cffafd53f8443.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_1ea8492080ce3ab75e50a0bc.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;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_c00126;src:url('chunks/assets/font_6acf63a6df20867507cbe78a.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;line-height:1.117188;font-style:normal;font-weight: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_c00126;src:url('chunks/assets/font_0fd80d5228475b2848f5074e.woff2')format("woff");}.ff7_c00126{font-family:ff7_c00126;line-height:1.115723;font-style:normal;font-weight: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_c00126;src:url('chunks/assets/font_a8eb64bb3500a36633923ed7.woff2')format("woff");}.ff8_c00126{font-family:ff8_c00126;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls15_c00126{letter-spacing:-2.880000px;}
.ls16_c00126{letter-spacing:-1.440000px;}
.ls12_c00126{letter-spacing:-1.044000px;}
.ls10_c00126{letter-spacing:-0.532800px;}
.ls13_c00126{letter-spacing:-0.429000px;}
.lsf_c00126{letter-spacing:0.000000px;}
.lsc_c00126{letter-spacing:0.120000px;}
.ls11_c00126{letter-spacing:0.291000px;}
.ls14_c00126{letter-spacing:0.529800px;}
.ls1_c00126{letter-spacing:0.720000px;}
.ls0_c00126{letter-spacing:0.728640px;}
.ls5_c00126{letter-spacing:0.732000px;}
.ls7_c00126{letter-spacing:0.792000px;}
.ls2_c00126{letter-spacing:0.840000px;}
.ls17_c00126{letter-spacing:1.440000px;}
.lsd_c00126{letter-spacing:2.160000px;}
.ls6_c00126{letter-spacing:2.195976px;}
.lsb_c00126{letter-spacing:5.040000px;}
.ls9_c00126{letter-spacing:6.480000px;}
.ls8_c00126{letter-spacing:7.920000px;}
.lse_c00126{letter-spacing:8.064000px;}
.lsa_c00126{letter-spacing:43.344000px;}
.ls4_c00126{letter-spacing:48.384000px;}
.ls3_c00126{letter-spacing:455.880000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00126{word-spacing:-72.000000px;}
.ws6_c00126{word-spacing:-19.440000px;}
.ws4_c00126{word-spacing:-18.000000px;}
.ws1_c00126{word-spacing:-15.411000px;}
.ws0_c00126{word-spacing:-15.120000px;}
.ws2_c00126{word-spacing:-14.691000px;}
.ws3_c00126{word-spacing:-12.600000px;}
.ws7_c00126{word-spacing:0.000000px;}
._d_c00126{margin-left:-3.691803px;}
._0_c00126{margin-left:-2.304119px;}
._2_c00126{margin-left:-1.010984px;}
._1_c00126{width:1.643399px;}
._3_c00126{width:3.018436px;}
._8_c00126{width:4.295291px;}
._a_c00126{width:5.332305px;}
._9_c00126{width:6.336000px;}
._12_c00126{width:7.425039px;}
._5_c00126{width:8.596424px;}
._4_c00126{width:9.936000px;}
._6_c00126{width:11.376000px;}
._b_c00126{width:14.788305px;}
._c_c00126{width:16.200000px;}
._f_c00126{width:19.020363px;}
._e_c00126{width:20.232119px;}
._10_c00126{width:21.343050px;}
._11_c00126{width:23.286691px;}
._13_c00126{width:24.325943px;}
._7_c00126{width:105.840000px;}
.fc0_c00126{color:rgb(0,0,0);}
.fs3_c00126{font-size:38.880000px;}
.fs2_c00126{font-size:47.520000px;}
.fs1_c00126{font-size:60.480000px;}
.fs0_c00126{font-size:72.000000px;}
.y0_c00126{bottom:0.000000px;}
.y6_c00126{bottom:4.675500px;}
.y3_c00126{bottom:4.680000px;}
.y5_c00126{bottom:25.195500px;}
.y4_c00126{bottom:32.800500px;}
.y1_c00126{bottom:57.996000px;}
.y26_c00126{bottom:130.716000px;}
.y25_c00126{bottom:147.996000px;}
.y24_c00126{bottom:154.875000px;}
.y23_c00126{bottom:165.675000px;}
.y22_c00126{bottom:204.195000px;}
.y21_c00126{bottom:235.155000px;}
.y20_c00126{bottom:266.115000px;}
.y1f_c00126{bottom:297.465000px;}
.y1e_c00126{bottom:328.425000px;}
.y1d_c00126{bottom:359.385000px;}
.y1c_c00126{bottom:390.345000px;}
.y1a_c00126{bottom:421.710000px;}
.y1b_c00126{bottom:429.990000px;}
.y19_c00126{bottom:452.670000px;}
.y18_c00126{bottom:483.630000px;}
.y17_c00126{bottom:523.980000px;}
.y16_c00126{bottom:556.380000px;}
.y15_c00126{bottom:588.780000px;}
.y14_c00126{bottom:629.820000px;}
.y13_c00126{bottom:660.810000px;}
.y12_c00126{bottom:691.770000px;}
.y11_c00126{bottom:723.090000px;}
.y10_c00126{bottom:763.095000px;}
.yf_c00126{bottom:803.055000px;}
.ye_c00126{bottom:834.015000px;}
.yd_c00126{bottom:874.335000px;}
.yc_c00126{bottom:902.805000px;}
.yb_c00126{bottom:928.725000px;}
.ya_c00126{bottom:963.645000px;}
.y9_c00126{bottom:998.565000px;}
.y8_c00126{bottom:1033.530000px;}
.y7_c00126{bottom:1068.450000px;}
.y2_c00126{bottom:1113.090000px;}
.h2_c00126{height:20.910000px;}
.hb_c00126{height:34.855313px;}
.h3_c00126{height:41.395500px;}
.ha_c00126{height:46.638281px;}
.h5_c00126{height:59.328281px;}
.h4_c00126{height:59.357813px;}
.h1_c00126{height:64.546875px;}
.h6_c00126{height:70.628906px;}
.h7_c00126{height:70.664062px;}
.h8_c00126{height:74.004654px;}
.h9_c00126{height:1187.995500px;}
.h0_c00126{height:1188.000000px;}
.w1_c00126{width:8.265000px;}
.w2_c00126{width:663.345000px;}
.w3_c00126{width:917.997000px;}
.w0_c00126{width:918.000000px;}
.x0_c00126{left:0.000000px;}
.x3_c00126{left:127.489500px;}
.x8_c00126{left:137.556000px;}
.x1_c00126{left:154.515000px;}
.x4_c00126{left:169.995000px;}
.x7_c00126{left:343.590000px;}
.x5_c00126{left:706.932000px;}
.x6_c00126{left:719.175000px;}
.x2_c00126{left:782.565000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls15_c00126{letter-spacing:-2.560000pt;}
.ls16_c00126{letter-spacing:-1.280000pt;}
.ls12_c00126{letter-spacing:-0.928000pt;}
.ls10_c00126{letter-spacing:-0.473600pt;}
.ls13_c00126{letter-spacing:-0.381333pt;}
.lsf_c00126{letter-spacing:0.000000pt;}
.lsc_c00126{letter-spacing:0.106667pt;}
.ls11_c00126{letter-spacing:0.258667pt;}
.ls14_c00126{letter-spacing:0.470933pt;}
.ls1_c00126{letter-spacing:0.640000pt;}
.ls0_c00126{letter-spacing:0.647680pt;}
.ls5_c00126{letter-spacing:0.650667pt;}
.ls7_c00126{letter-spacing:0.704000pt;}
.ls2_c00126{letter-spacing:0.746667pt;}
.ls17_c00126{letter-spacing:1.280000pt;}
.lsd_c00126{letter-spacing:1.920000pt;}
.ls6_c00126{letter-spacing:1.951979pt;}
.lsb_c00126{letter-spacing:4.480000pt;}
.ls9_c00126{letter-spacing:5.760000pt;}
.ls8_c00126{letter-spacing:7.040000pt;}
.lse_c00126{letter-spacing:7.168000pt;}
.lsa_c00126{letter-spacing:38.528000pt;}
.ls4_c00126{letter-spacing:43.008000pt;}
.ls3_c00126{letter-spacing:405.226667pt;}
.ws5_c00126{word-spacing:-64.000000pt;}
.ws6_c00126{word-spacing:-17.280000pt;}
.ws4_c00126{word-spacing:-16.000000pt;}
.ws1_c00126{word-spacing:-13.698667pt;}
.ws0_c00126{word-spacing:-13.440000pt;}
.ws2_c00126{word-spacing:-13.058667pt;}
.ws3_c00126{word-spacing:-11.200000pt;}
.ws7_c00126{word-spacing:0.000000pt;}
._d_c00126{margin-left:-3.281603pt;}
._0_c00126{margin-left:-2.048106pt;}
._2_c00126{margin-left:-0.898652pt;}
._1_c00126{width:1.460799pt;}
._3_c00126{width:2.683054pt;}
._8_c00126{width:3.818036pt;}
._a_c00126{width:4.739826pt;}
._9_c00126{width:5.632000pt;}
._12_c00126{width:6.600035pt;}
._5_c00126{width:7.641265pt;}
._4_c00126{width:8.832000pt;}
._6_c00126{width:10.112000pt;}
._b_c00126{width:13.145160pt;}
._c_c00126{width:14.400000pt;}
._f_c00126{width:16.906989pt;}
._e_c00126{width:17.984106pt;}
._10_c00126{width:18.971600pt;}
._11_c00126{width:20.699281pt;}
._13_c00126{width:21.623060pt;}
._7_c00126{width:94.080000pt;}
.fs3_c00126{font-size:34.560000pt;}
.fs2_c00126{font-size:42.240000pt;}
.fs1_c00126{font-size:53.760000pt;}
.fs0_c00126{font-size:64.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y6_c00126{bottom:4.156000pt;}
.y3_c00126{bottom:4.160000pt;}
.y5_c00126{bottom:22.396000pt;}
.y4_c00126{bottom:29.156000pt;}
.y1_c00126{bottom:51.552000pt;}
.y26_c00126{bottom:116.192000pt;}
.y25_c00126{bottom:131.552000pt;}
.y24_c00126{bottom:137.666667pt;}
.y23_c00126{bottom:147.266667pt;}
.y22_c00126{bottom:181.506667pt;}
.y21_c00126{bottom:209.026667pt;}
.y20_c00126{bottom:236.546667pt;}
.y1f_c00126{bottom:264.413333pt;}
.y1e_c00126{bottom:291.933333pt;}
.y1d_c00126{bottom:319.453333pt;}
.y1c_c00126{bottom:346.973333pt;}
.y1a_c00126{bottom:374.853333pt;}
.y1b_c00126{bottom:382.213333pt;}
.y19_c00126{bottom:402.373333pt;}
.y18_c00126{bottom:429.893333pt;}
.y17_c00126{bottom:465.760000pt;}
.y16_c00126{bottom:494.560000pt;}
.y15_c00126{bottom:523.360000pt;}
.y14_c00126{bottom:559.840000pt;}
.y13_c00126{bottom:587.386667pt;}
.y12_c00126{bottom:614.906667pt;}
.y11_c00126{bottom:642.746667pt;}
.y10_c00126{bottom:678.306667pt;}
.yf_c00126{bottom:713.826667pt;}
.ye_c00126{bottom:741.346667pt;}
.yd_c00126{bottom:777.186667pt;}
.yc_c00126{bottom:802.493333pt;}
.yb_c00126{bottom:825.533333pt;}
.ya_c00126{bottom:856.573333pt;}
.y9_c00126{bottom:887.613333pt;}
.y8_c00126{bottom:918.693333pt;}
.y7_c00126{bottom:949.733333pt;}
.y2_c00126{bottom:989.413333pt;}
.h2_c00126{height:18.586667pt;}
.hb_c00126{height:30.982500pt;}
.h3_c00126{height:36.796000pt;}
.ha_c00126{height:41.456250pt;}
.h5_c00126{height:52.736250pt;}
.h4_c00126{height:52.762500pt;}
.h1_c00126{height:57.375000pt;}
.h6_c00126{height:62.781250pt;}
.h7_c00126{height:62.812500pt;}
.h8_c00126{height:65.781915pt;}
.h9_c00126{height:1055.996000pt;}
.h0_c00126{height:1056.000000pt;}
.w1_c00126{width:7.346667pt;}
.w2_c00126{width:589.640000pt;}
.w3_c00126{width:815.997333pt;}
.w0_c00126{width:816.000000pt;}
.x0_c00126{left:0.000000pt;}
.x3_c00126{left:113.324000pt;}
.x8_c00126{left:122.272000pt;}
.x1_c00126{left:137.346667pt;}
.x4_c00126{left:151.106667pt;}
.x7_c00126{left:305.413333pt;}
.x5_c00126{left:628.384000pt;}
.x6_c00126{left:639.266667pt;}
.x2_c00126{left:695.613333pt;}
}





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

.ir_c00127:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00127;src:url('chunks/assets/font_f5659755fafc327cf4983618.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_6ee1dbdf2a51d17bc63864e7.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_333ca3d27fb2bc0f2a004632.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;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_c00127;src:url('chunks/assets/font_b5a1ed1f21b4ee7faed68e2c.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00127;src:url('chunks/assets/font_054158f6631236e0ff5930d4.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00127;src:url('chunks/assets/font_f95278cf3ee3f3b13415bf60.woff2')format("woff");}.ff6_c00127{font-family:ff6_c00127;line-height:1.117188;font-style:normal;font-weight: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_c00127;src:url('chunks/assets/font_165ccc15f9828ed170f5f1f3.woff2')format("woff");}.ff7_c00127{font-family:ff7_c00127;line-height:1.117188;font-style:normal;font-weight: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_c00127;src:url('chunks/assets/font_a334de8a276107c0e70ef0aa.woff2')format("woff");}.ff8_c00127{font-family:ff8_c00127;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls8_c00127{letter-spacing:-2.880000px;}
.ls7_c00127{letter-spacing:-1.440000px;}
.ls6_c00127{letter-spacing:0.000000px;}
.ls2_c00127{letter-spacing:0.720000px;}
.ls1_c00127{letter-spacing:3.600000px;}
.ls0_c00127{letter-spacing:8.040000px;}
.ls3_c00127{letter-spacing:13.680000px;}
.ls4_c00127{letter-spacing:13.700062px;}
.ls5_c00127{letter-spacing:15.120000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:-18.000000px;}
.ws1_c00127{word-spacing:-15.120000px;}
.ws2_c00127{word-spacing:0.000000px;}
._7_c00127{margin-left:-3.096000px;}
._0_c00127{margin-left:-2.088000px;}
._6_c00127{margin-left:-1.080000px;}
._1_c00127{width:1.368000px;}
._8_c00127{width:2.903976px;}
._2_c00127{width:4.896000px;}
._3_c00127{width:5.904000px;}
._a_c00127{width:7.920000px;}
._b_c00127{width:9.084000px;}
._c_c00127{width:10.128000px;}
._e_c00127{width:11.136048px;}
._d_c00127{width:12.384000px;}
._f_c00127{width:13.823974px;}
._10_c00127{width:16.806850px;}
._11_c00127{width:18.409437px;}
._12_c00127{width:19.491598px;}
._9_c00127{width:20.640024px;}
._4_c00127{width:21.960000px;}
._5_c00127{width:22.968000px;}
._13_c00127{width:24.696666px;}
.fc1_c00127{color:rgb(255,0,0);}
.fc0_c00127{color:rgb(0,0,0);}
.fs2_c00127{font-size:38.880000px;}
.fs1_c00127{font-size:47.520000px;}
.fs3_c00127{font-size:60.480000px;}
.fs0_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.y6_c00127{bottom:4.675500px;}
.y3_c00127{bottom:4.680000px;}
.y5_c00127{bottom:25.195500px;}
.y4_c00127{bottom:32.800500px;}
.y1_c00127{bottom:57.996000px;}
.y2e_c00127{bottom:130.716000px;}
.y2d_c00127{bottom:147.996000px;}
.y2c_c00127{bottom:164.955000px;}
.y2b_c00127{bottom:182.235000px;}
.y2a_c00127{bottom:199.515000px;}
.y29_c00127{bottom:206.355000px;}
.y28_c00127{bottom:216.795000px;}
.y27_c00127{bottom:234.075000px;}
.y26_c00127{bottom:251.355000px;}
.y25_c00127{bottom:268.635000px;}
.y24_c00127{bottom:285.945000px;}
.y23_c00127{bottom:303.225000px;}
.y22_c00127{bottom:320.505000px;}
.y21_c00127{bottom:337.785000px;}
.y20_c00127{bottom:354.705000px;}
.y1f_c00127{bottom:361.545000px;}
.y1e_c00127{bottom:372.705000px;}
.y1d_c00127{bottom:417.390000px;}
.y1b_c00127{bottom:457.350000px;}
.y1c_c00127{bottom:465.630000px;}
.y1a_c00127{bottom:488.310000px;}
.y19_c00127{bottom:519.660000px;}
.y18_c00127{bottom:550.620000px;}
.y17_c00127{bottom:581.580000px;}
.y16_c00127{bottom:612.540000px;}
.y15_c00127{bottom:652.890000px;}
.y13_c00127{bottom:692.850000px;}
.y14_c00127{bottom:701.130000px;}
.y12_c00127{bottom:723.810000px;}
.y11_c00127{bottom:754.770000px;}
.y10_c00127{bottom:786.135000px;}
.yf_c00127{bottom:817.095000px;}
.ye_c00127{bottom:848.055000px;}
.yd_c00127{bottom:879.015000px;}
.yc_c00127{bottom:910.365000px;}
.yb_c00127{bottom:941.325000px;}
.ya_c00127{bottom:972.285000px;}
.y9_c00127{bottom:1003.245000px;}
.y8_c00127{bottom:1034.610000px;}
.y7_c00127{bottom:1065.570000px;}
.y2_c00127{bottom:1113.090000px;}
.h2_c00127{height:20.910000px;}
.h8_c00127{height:34.855313px;}
.h3_c00127{height:41.395500px;}
.h6_c00127{height:46.638281px;}
.ha_c00127{height:54.219375px;}
.h9_c00127{height:54.514688px;}
.hb_c00127{height:59.357813px;}
.h1_c00127{height:64.546875px;}
.h7_c00127{height:70.628906px;}
.h4_c00127{height:70.664062px;}
.h5_c00127{height:1187.995500px;}
.h0_c00127{height:1188.000000px;}
.w1_c00127{width:8.265000px;}
.w2_c00127{width:663.345000px;}
.w3_c00127{width:917.997000px;}
.w0_c00127{width:918.000000px;}
.x0_c00127{left:0.000000px;}
.x3_c00127{left:127.489500px;}
.xb_c00127{left:137.556000px;}
.x1_c00127{left:154.515000px;}
.x7_c00127{left:178.635000px;}
.x6_c00127{left:180.795000px;}
.x4_c00127{left:272.982000px;}
.x5_c00127{left:285.225000px;}
.xa_c00127{left:343.590000px;}
.x8_c00127{left:671.292000px;}
.x9_c00127{left:683.535000px;}
.x2_c00127{left:782.565000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls8_c00127{letter-spacing:-2.560000pt;}
.ls7_c00127{letter-spacing:-1.280000pt;}
.ls6_c00127{letter-spacing:0.000000pt;}
.ls2_c00127{letter-spacing:0.640000pt;}
.ls1_c00127{letter-spacing:3.200000pt;}
.ls0_c00127{letter-spacing:7.146667pt;}
.ls3_c00127{letter-spacing:12.160000pt;}
.ls4_c00127{letter-spacing:12.177833pt;}
.ls5_c00127{letter-spacing:13.440000pt;}
.ws0_c00127{word-spacing:-16.000000pt;}
.ws1_c00127{word-spacing:-13.440000pt;}
.ws2_c00127{word-spacing:0.000000pt;}
._7_c00127{margin-left:-2.752000pt;}
._0_c00127{margin-left:-1.856000pt;}
._6_c00127{margin-left:-0.960000pt;}
._1_c00127{width:1.216000pt;}
._8_c00127{width:2.581312pt;}
._2_c00127{width:4.352000pt;}
._3_c00127{width:5.248000pt;}
._a_c00127{width:7.040000pt;}
._b_c00127{width:8.074667pt;}
._c_c00127{width:9.002667pt;}
._e_c00127{width:9.898709pt;}
._d_c00127{width:11.008000pt;}
._f_c00127{width:12.287977pt;}
._10_c00127{width:14.939422pt;}
._11_c00127{width:16.363944pt;}
._12_c00127{width:17.325865pt;}
._9_c00127{width:18.346688pt;}
._4_c00127{width:19.520000pt;}
._5_c00127{width:20.416000pt;}
._13_c00127{width:21.952592pt;}
.fs2_c00127{font-size:34.560000pt;}
.fs1_c00127{font-size:42.240000pt;}
.fs3_c00127{font-size:53.760000pt;}
.fs0_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y6_c00127{bottom:4.156000pt;}
.y3_c00127{bottom:4.160000pt;}
.y5_c00127{bottom:22.396000pt;}
.y4_c00127{bottom:29.156000pt;}
.y1_c00127{bottom:51.552000pt;}
.y2e_c00127{bottom:116.192000pt;}
.y2d_c00127{bottom:131.552000pt;}
.y2c_c00127{bottom:146.626667pt;}
.y2b_c00127{bottom:161.986667pt;}
.y2a_c00127{bottom:177.346667pt;}
.y29_c00127{bottom:183.426667pt;}
.y28_c00127{bottom:192.706667pt;}
.y27_c00127{bottom:208.066667pt;}
.y26_c00127{bottom:223.426667pt;}
.y25_c00127{bottom:238.786667pt;}
.y24_c00127{bottom:254.173333pt;}
.y23_c00127{bottom:269.533333pt;}
.y22_c00127{bottom:284.893333pt;}
.y21_c00127{bottom:300.253333pt;}
.y20_c00127{bottom:315.293333pt;}
.y1f_c00127{bottom:321.373333pt;}
.y1e_c00127{bottom:331.293333pt;}
.y1d_c00127{bottom:371.013333pt;}
.y1b_c00127{bottom:406.533333pt;}
.y1c_c00127{bottom:413.893333pt;}
.y1a_c00127{bottom:434.053333pt;}
.y19_c00127{bottom:461.920000pt;}
.y18_c00127{bottom:489.440000pt;}
.y17_c00127{bottom:516.960000pt;}
.y16_c00127{bottom:544.480000pt;}
.y15_c00127{bottom:580.346667pt;}
.y13_c00127{bottom:615.866667pt;}
.y14_c00127{bottom:623.226667pt;}
.y12_c00127{bottom:643.386667pt;}
.y11_c00127{bottom:670.906667pt;}
.y10_c00127{bottom:698.786667pt;}
.yf_c00127{bottom:726.306667pt;}
.ye_c00127{bottom:753.826667pt;}
.yd_c00127{bottom:781.346667pt;}
.yc_c00127{bottom:809.213333pt;}
.yb_c00127{bottom:836.733333pt;}
.ya_c00127{bottom:864.253333pt;}
.y9_c00127{bottom:891.773333pt;}
.y8_c00127{bottom:919.653333pt;}
.y7_c00127{bottom:947.173333pt;}
.y2_c00127{bottom:989.413333pt;}
.h2_c00127{height:18.586667pt;}
.h8_c00127{height:30.982500pt;}
.h3_c00127{height:36.796000pt;}
.h6_c00127{height:41.456250pt;}
.ha_c00127{height:48.195000pt;}
.h9_c00127{height:48.457500pt;}
.hb_c00127{height:52.762500pt;}
.h1_c00127{height:57.375000pt;}
.h7_c00127{height:62.781250pt;}
.h4_c00127{height:62.812500pt;}
.h5_c00127{height:1055.996000pt;}
.h0_c00127{height:1056.000000pt;}
.w1_c00127{width:7.346667pt;}
.w2_c00127{width:589.640000pt;}
.w3_c00127{width:815.997333pt;}
.w0_c00127{width:816.000000pt;}
.x0_c00127{left:0.000000pt;}
.x3_c00127{left:113.324000pt;}
.xb_c00127{left:122.272000pt;}
.x1_c00127{left:137.346667pt;}
.x7_c00127{left:158.786667pt;}
.x6_c00127{left:160.706667pt;}
.x4_c00127{left:242.650667pt;}
.x5_c00127{left:253.533333pt;}
.xa_c00127{left:305.413333pt;}
.x8_c00127{left:596.704000pt;}
.x9_c00127{left:607.586667pt;}
.x2_c00127{left:695.613333pt;}
}





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

.ir_c00128:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00128;src:url('chunks/assets/font_455fdb239e80d477fb6cf471.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_5337b1ef89a09eb33d8d2719.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_6e7537f77bc8cdb989435de4.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;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_c00128;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00128;src:url('chunks/assets/font_c2995a6815fda4e0cfa45dfd.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls4_c00128{letter-spacing:-1.440000px;}
.ls3_c00128{letter-spacing:0.000000px;}
.ls2_c00128{letter-spacing:0.720000px;}
.ls1_c00128{letter-spacing:0.792000px;}
.ls0_c00128{letter-spacing:15.240000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:-18.000000px;}
.ws1_c00128{word-spacing:0.000000px;}
._1_c00128{margin-left:-2.736000px;}
._2_c00128{margin-left:-1.512000px;}
._0_c00128{width:1.584000px;}
._8_c00128{width:2.592000px;}
._6_c00128{width:6.984000px;}
._7_c00128{width:8.568000px;}
._4_c00128{width:12.096000px;}
._3_c00128{width:13.896000px;}
._5_c00128{width:15.480000px;}
.fc0_c00128{color:rgb(0,0,0);}
.fs0_c00128{font-size:72.000000px;}
.y0_c00128{bottom:0.000000px;}
.y6_c00128{bottom:4.675500px;}
.y3_c00128{bottom:4.680000px;}
.y5_c00128{bottom:25.195500px;}
.y4_c00128{bottom:32.800500px;}
.y1_c00128{bottom:57.996000px;}
.y1f_c00128{bottom:131.076000px;}
.y1e_c00128{bottom:171.075000px;}
.y1d_c00128{bottom:211.035000px;}
.y1c_c00128{bottom:251.355000px;}
.y1b_c00128{bottom:291.345000px;}
.y1a_c00128{bottom:331.305000px;}
.y19_c00128{bottom:371.265000px;}
.y18_c00128{bottom:411.630000px;}
.y17_c00128{bottom:451.590000px;}
.y16_c00128{bottom:491.550000px;}
.y15_c00128{bottom:531.540000px;}
.y14_c00128{bottom:571.860000px;}
.y13_c00128{bottom:611.820000px;}
.y12_c00128{bottom:651.810000px;}
.y11_c00128{bottom:691.770000px;}
.y10_c00128{bottom:732.090000px;}
.yf_c00128{bottom:772.095000px;}
.ye_c00128{bottom:812.055000px;}
.yd_c00128{bottom:852.015000px;}
.yc_c00128{bottom:892.365000px;}
.yb_c00128{bottom:932.325000px;}
.ya_c00128{bottom:972.285000px;}
.y9_c00128{bottom:1003.245000px;}
.y8_c00128{bottom:1034.610000px;}
.y7_c00128{bottom:1065.570000px;}
.y2_c00128{bottom:1113.090000px;}
.h2_c00128{height:20.910000px;}
.h3_c00128{height:41.395500px;}
.h1_c00128{height:64.546875px;}
.h4_c00128{height:70.664062px;}
.h0_c00128{height:1188.000000px;}
.w1_c00128{width:8.265000px;}
.w2_c00128{width:663.345000px;}
.w0_c00128{width:918.000000px;}
.x0_c00128{left:0.000000px;}
.x3_c00128{left:127.489500px;}
.x1_c00128{left:154.515000px;}
.x2_c00128{left:782.565000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls4_c00128{letter-spacing:-1.280000pt;}
.ls3_c00128{letter-spacing:0.000000pt;}
.ls2_c00128{letter-spacing:0.640000pt;}
.ls1_c00128{letter-spacing:0.704000pt;}
.ls0_c00128{letter-spacing:13.546667pt;}
.ws0_c00128{word-spacing:-16.000000pt;}
.ws1_c00128{word-spacing:0.000000pt;}
._1_c00128{margin-left:-2.432000pt;}
._2_c00128{margin-left:-1.344000pt;}
._0_c00128{width:1.408000pt;}
._8_c00128{width:2.304000pt;}
._6_c00128{width:6.208000pt;}
._7_c00128{width:7.616000pt;}
._4_c00128{width:10.752000pt;}
._3_c00128{width:12.352000pt;}
._5_c00128{width:13.760000pt;}
.fs0_c00128{font-size:64.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y6_c00128{bottom:4.156000pt;}
.y3_c00128{bottom:4.160000pt;}
.y5_c00128{bottom:22.396000pt;}
.y4_c00128{bottom:29.156000pt;}
.y1_c00128{bottom:51.552000pt;}
.y1f_c00128{bottom:116.512000pt;}
.y1e_c00128{bottom:152.066667pt;}
.y1d_c00128{bottom:187.586667pt;}
.y1c_c00128{bottom:223.426667pt;}
.y1b_c00128{bottom:258.973333pt;}
.y1a_c00128{bottom:294.493333pt;}
.y19_c00128{bottom:330.013333pt;}
.y18_c00128{bottom:365.893333pt;}
.y17_c00128{bottom:401.413333pt;}
.y16_c00128{bottom:436.933333pt;}
.y15_c00128{bottom:472.480000pt;}
.y14_c00128{bottom:508.320000pt;}
.y13_c00128{bottom:543.840000pt;}
.y12_c00128{bottom:579.386667pt;}
.y11_c00128{bottom:614.906667pt;}
.y10_c00128{bottom:650.746667pt;}
.yf_c00128{bottom:686.306667pt;}
.ye_c00128{bottom:721.826667pt;}
.yd_c00128{bottom:757.346667pt;}
.yc_c00128{bottom:793.213333pt;}
.yb_c00128{bottom:828.733333pt;}
.ya_c00128{bottom:864.253333pt;}
.y9_c00128{bottom:891.773333pt;}
.y8_c00128{bottom:919.653333pt;}
.y7_c00128{bottom:947.173333pt;}
.y2_c00128{bottom:989.413333pt;}
.h2_c00128{height:18.586667pt;}
.h3_c00128{height:36.796000pt;}
.h1_c00128{height:57.375000pt;}
.h4_c00128{height:62.812500pt;}
.h0_c00128{height:1056.000000pt;}
.w1_c00128{width:7.346667pt;}
.w2_c00128{width:589.640000pt;}
.w0_c00128{width:816.000000pt;}
.x0_c00128{left:0.000000pt;}
.x3_c00128{left:113.324000pt;}
.x1_c00128{left:137.346667pt;}
.x2_c00128{left:695.613333pt;}
}





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

.ir_c00129:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00129;src:url('chunks/assets/font_4a056728ad74bad911c0aa74.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls0_c00129{letter-spacing:0.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00129{word-spacing:0.000000px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs0_c00129{font-size:72.000000px;}
.y0_c00129{bottom:0.000000px;}
.y6_c00129{bottom:4.675500px;}
.y3_c00129{bottom:4.680000px;}
.y5_c00129{bottom:25.195500px;}
.y4_c00129{bottom:32.800500px;}
.y1_c00129{bottom:57.996000px;}
.y1e_c00129{bottom:144.036000px;}
.y1d_c00129{bottom:184.035000px;}
.y1c_c00129{bottom:224.355000px;}
.y1b_c00129{bottom:264.315000px;}
.y1a_c00129{bottom:304.305000px;}
.y19_c00129{bottom:344.265000px;}
.y18_c00129{bottom:384.585000px;}
.y17_c00129{bottom:424.590000px;}
.y16_c00129{bottom:464.550000px;}
.y15_c00129{bottom:504.510000px;}
.y14_c00129{bottom:544.860000px;}
.y13_c00129{bottom:584.820000px;}
.y12_c00129{bottom:624.780000px;}
.y11_c00129{bottom:664.770000px;}
.y10_c00129{bottom:705.090000px;}
.yf_c00129{bottom:745.050000px;}
.ye_c00129{bottom:785.055000px;}
.yd_c00129{bottom:825.015000px;}
.yc_c00129{bottom:865.335000px;}
.yb_c00129{bottom:905.325000px;}
.ya_c00129{bottom:945.285000px;}
.y9_c00129{bottom:985.245000px;}
.y8_c00129{bottom:1025.610000px;}
.y7_c00129{bottom:1065.570000px;}
.y2_c00129{bottom:1113.090000px;}
.h2_c00129{height:20.910000px;}
.h3_c00129{height:41.395500px;}
.h1_c00129{height:64.546875px;}
.h4_c00129{height:70.664062px;}
.h0_c00129{height:1188.000000px;}
.w1_c00129{width:8.265000px;}
.w2_c00129{width:663.345000px;}
.w0_c00129{width:918.000000px;}
.x0_c00129{left:0.000000px;}
.x3_c00129{left:127.489500px;}
.x1_c00129{left:154.515000px;}
.x2_c00129{left:782.565000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws0_c00129{word-spacing:0.000000pt;}
.fs0_c00129{font-size:64.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y6_c00129{bottom:4.156000pt;}
.y3_c00129{bottom:4.160000pt;}
.y5_c00129{bottom:22.396000pt;}
.y4_c00129{bottom:29.156000pt;}
.y1_c00129{bottom:51.552000pt;}
.y1e_c00129{bottom:128.032000pt;}
.y1d_c00129{bottom:163.586667pt;}
.y1c_c00129{bottom:199.426667pt;}
.y1b_c00129{bottom:234.946667pt;}
.y1a_c00129{bottom:270.493333pt;}
.y19_c00129{bottom:306.013333pt;}
.y18_c00129{bottom:341.853333pt;}
.y17_c00129{bottom:377.413333pt;}
.y16_c00129{bottom:412.933333pt;}
.y15_c00129{bottom:448.453333pt;}
.y14_c00129{bottom:484.320000pt;}
.y13_c00129{bottom:519.840000pt;}
.y12_c00129{bottom:555.360000pt;}
.y11_c00129{bottom:590.906667pt;}
.y10_c00129{bottom:626.746667pt;}
.yf_c00129{bottom:662.266667pt;}
.ye_c00129{bottom:697.826667pt;}
.yd_c00129{bottom:733.346667pt;}
.yc_c00129{bottom:769.186667pt;}
.yb_c00129{bottom:804.733333pt;}
.ya_c00129{bottom:840.253333pt;}
.y9_c00129{bottom:875.773333pt;}
.y8_c00129{bottom:911.653333pt;}
.y7_c00129{bottom:947.173333pt;}
.y2_c00129{bottom:989.413333pt;}
.h2_c00129{height:18.586667pt;}
.h3_c00129{height:36.796000pt;}
.h1_c00129{height:57.375000pt;}
.h4_c00129{height:62.812500pt;}
.h0_c00129{height:1056.000000pt;}
.w1_c00129{width:7.346667pt;}
.w2_c00129{width:589.640000pt;}
.w0_c00129{width:816.000000pt;}
.x0_c00129{left:0.000000pt;}
.x3_c00129{left:113.324000pt;}
.x1_c00129{left:137.346667pt;}
.x2_c00129{left:695.613333pt;}
}





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

.ir_c00130:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00130;src:url('chunks/assets/font_18038cb7a59f3d5a7619591c.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_7b0f7cbcb1a6036c51e7e6d5.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:0.000000px;}
._0_c00130{margin-left:-1.253951px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs0_c00130{font-size:72.000000px;}
.fs1_c00130{font-size:96.480000px;}
.y0_c00130{bottom:0.000000px;}
.y6_c00130{bottom:4.675500px;}
.y3_c00130{bottom:4.680000px;}
.y5_c00130{bottom:25.195500px;}
.y4_c00130{bottom:32.800500px;}
.y1_c00130{bottom:57.996000px;}
.y15_c00130{bottom:494.430000px;}
.y14_c00130{bottom:534.420000px;}
.y13_c00130{bottom:574.380000px;}
.y12_c00130{bottom:614.340000px;}
.y11_c00130{bottom:654.690000px;}
.y10_c00130{bottom:694.650000px;}
.yf_c00130{bottom:734.610000px;}
.ye_c00130{bottom:774.615000px;}
.yd_c00130{bottom:819.255000px;}
.yc_c00130{bottom:865.335000px;}
.yb_c00130{bottom:905.325000px;}
.ya_c00130{bottom:945.285000px;}
.y9_c00130{bottom:985.245000px;}
.y8_c00130{bottom:1025.610000px;}
.y7_c00130{bottom:1065.570000px;}
.y2_c00130{bottom:1113.090000px;}
.h2_c00130{height:20.910000px;}
.h3_c00130{height:41.395500px;}
.h1_c00130{height:64.546875px;}
.h4_c00130{height:70.664062px;}
.h5_c00130{height:97.233750px;}
.h0_c00130{height:1188.000000px;}
.w1_c00130{width:8.265000px;}
.w2_c00130{width:663.345000px;}
.w0_c00130{width:918.000000px;}
.x0_c00130{left:0.000000px;}
.x3_c00130{left:127.489500px;}
.x1_c00130{left:154.515000px;}
.x4_c00130{left:328.065000px;}
.x2_c00130{left:782.565000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:0.000000pt;}
._0_c00130{margin-left:-1.114623pt;}
.fs0_c00130{font-size:64.000000pt;}
.fs1_c00130{font-size:85.760000pt;}
.y0_c00130{bottom:0.000000pt;}
.y6_c00130{bottom:4.156000pt;}
.y3_c00130{bottom:4.160000pt;}
.y5_c00130{bottom:22.396000pt;}
.y4_c00130{bottom:29.156000pt;}
.y1_c00130{bottom:51.552000pt;}
.y15_c00130{bottom:439.493333pt;}
.y14_c00130{bottom:475.040000pt;}
.y13_c00130{bottom:510.560000pt;}
.y12_c00130{bottom:546.080000pt;}
.y11_c00130{bottom:581.946667pt;}
.y10_c00130{bottom:617.466667pt;}
.yf_c00130{bottom:652.986667pt;}
.ye_c00130{bottom:688.546667pt;}
.yd_c00130{bottom:728.226667pt;}
.yc_c00130{bottom:769.186667pt;}
.yb_c00130{bottom:804.733333pt;}
.ya_c00130{bottom:840.253333pt;}
.y9_c00130{bottom:875.773333pt;}
.y8_c00130{bottom:911.653333pt;}
.y7_c00130{bottom:947.173333pt;}
.y2_c00130{bottom:989.413333pt;}
.h2_c00130{height:18.586667pt;}
.h3_c00130{height:36.796000pt;}
.h1_c00130{height:57.375000pt;}
.h4_c00130{height:62.812500pt;}
.h5_c00130{height:86.430000pt;}
.h0_c00130{height:1056.000000pt;}
.w1_c00130{width:7.346667pt;}
.w2_c00130{width:589.640000pt;}
.w0_c00130{width:816.000000pt;}
.x0_c00130{left:0.000000pt;}
.x3_c00130{left:113.324000pt;}
.x1_c00130{left:137.346667pt;}
.x4_c00130{left:291.613333pt;}
.x2_c00130{left:695.613333pt;}
}





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

.ir_c00131:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00131;src:url('chunks/assets/font_a093c40a72c665f644cd8a59.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_101b0632fa485a05f936ee80.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_00893bdbd7467f6dd8e12d9a.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_56e58a99729d70937b469024.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;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_c00131;src:url('chunks/assets/font_27d28d4f054e308d1936e39a.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;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_c00131;src:url('chunks/assets/font_4cee4ea15986564885972c9e.woff2')format("woff");}.ff6_c00131{font-family:ff6_c00131;line-height:1.191895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls4_c00131{letter-spacing:-0.288000px;}
.ls2_c00131{letter-spacing:0.000000px;}
.ls0_c00131{letter-spacing:0.184320px;}
.ls1_c00131{letter-spacing:0.313920px;}
.ls3_c00131{letter-spacing:1.728000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00131{word-spacing:-54.720000px;}
.ws0_c00131{word-spacing:-19.728000px;}
.ws1_c00131{word-spacing:-18.000000px;}
.ws4_c00131{word-spacing:-15.120000px;}
.ws2_c00131{word-spacing:-13.680000px;}
.ws5_c00131{word-spacing:0.000000px;}
._2_c00131{margin-left:-4.464000px;}
._4_c00131{margin-left:-2.736000px;}
._1_c00131{margin-left:-1.584000px;}
._0_c00131{width:1.296000px;}
._7_c00131{width:2.880000px;}
._9_c00131{width:4.392000px;}
._a_c00131{width:5.688000px;}
._8_c00131{width:7.200000px;}
._f_c00131{width:9.288000px;}
._10_c00131{width:11.016000px;}
._b_c00131{width:12.240000px;}
._c_c00131{width:13.680000px;}
._d_c00131{width:15.552000px;}
._11_c00131{width:16.632000px;}
._e_c00131{width:19.656000px;}
._13_c00131{width:20.976000px;}
._12_c00131{width:22.020000px;}
._6_c00131{width:39.096000px;}
._5_c00131{width:40.248000px;}
._3_c00131{width:41.328000px;}
.fc0_c00131{color:rgb(0,0,0);}
.fs2_c00131{font-size:54.720000px;}
.fs1_c00131{font-size:60.480000px;}
.fs0_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y1e_c00131{bottom:20.865000px;}
.y1c_c00131{bottom:21.225000px;}
.y18_c00131{bottom:21.240000px;}
.y1a_c00131{bottom:21.255000px;}
.y20_c00131{bottom:21.274500px;}
.y1f_c00131{bottom:130.720500px;}
.y1d_c00131{bottom:176.130000px;}
.y1b_c00131{bottom:221.490000px;}
.y19_c00131{bottom:266.850000px;}
.y17_c00131{bottom:312.225000px;}
.y16_c00131{bottom:381.345000px;}
.y15_c00131{bottom:421.350000px;}
.y14_c00131{bottom:461.310000px;}
.y13_c00131{bottom:492.630000px;}
.y12_c00131{bottom:523.620000px;}
.y11_c00131{bottom:554.580000px;}
.y10_c00131{bottom:585.540000px;}
.yf_c00131{bottom:616.860000px;}
.ye_c00131{bottom:656.850000px;}
.yd_c00131{bottom:696.810000px;}
.yc_c00131{bottom:727.770000px;}
.yb_c00131{bottom:759.090000px;}
.ya_c00131{bottom:790.095000px;}
.y9_c00131{bottom:821.055000px;}
.y8_c00131{bottom:852.015000px;}
.y7_c00131{bottom:883.335000px;}
.y6_c00131{bottom:914.325000px;}
.y5_c00131{bottom:945.285000px;}
.y4_c00131{bottom:984.885000px;}
.y3_c00131{bottom:1025.610000px;}
.y2_c00131{bottom:1065.570000px;}
.y1_c00131{bottom:1117.770000px;}
.hb_c00131{height:43.545000px;}
.h9_c00131{height:43.560000px;}
.hc_c00131{height:43.591500px;}
.h5_c00131{height:43.905000px;}
.h7_c00131{height:53.677969px;}
.h6_c00131{height:59.328281px;}
.ha_c00131{height:59.357813px;}
.h8_c00131{height:60.952500px;}
.h1_c00131{height:64.898438px;}
.h4_c00131{height:70.628906px;}
.h2_c00131{height:70.664062px;}
.h3_c00131{height:72.562500px;}
.h0_c00131{height:1188.000000px;}
.w6_c00131{width:51.465000px;}
.w1_c00131{width:51.862500px;}
.w7_c00131{width:62.301000px;}
.w8_c00131{width:70.200000px;}
.w3_c00131{width:72.705000px;}
.w5_c00131{width:72.756000px;}
.w2_c00131{width:73.080000px;}
.w4_c00131{width:73.110000px;}
.w0_c00131{width:918.000000px;}
.x0_c00131{left:0.000000px;}
.xa_c00131{left:5.040000px;}
.xc_c00131{left:7.200000px;}
.x12_c00131{left:8.985000px;}
.xf_c00131{left:11.145000px;}
.x8_c00131{left:13.320000px;}
.x6_c00131{left:19.785000px;}
.x15_c00131{left:21.945000px;}
.x5_c00131{left:25.945500px;}
.x16_c00131{left:27.390000px;}
.x17_c00131{left:28.800000px;}
.x18_c00131{left:30.990000px;}
.x13_c00131{left:32.745000px;}
.x14_c00131{left:36.405000px;}
.x1_c00131{left:127.476000px;}
.x3_c00131{left:178.635000px;}
.x4_c00131{left:180.795000px;}
.x7_c00131{left:256.065000px;}
.x9_c00131{left:330.225000px;}
.x2_c00131{left:351.870000px;}
.xb_c00131{left:404.790000px;}
.xd_c00131{left:479.340000px;}
.xe_c00131{left:553.905000px;}
.x10_c00131{left:606.825000px;}
.x11_c00131{left:670.950000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls4_c00131{letter-spacing:-0.256000pt;}
.ls2_c00131{letter-spacing:0.000000pt;}
.ls0_c00131{letter-spacing:0.163840pt;}
.ls1_c00131{letter-spacing:0.279040pt;}
.ls3_c00131{letter-spacing:1.536000pt;}
.ws3_c00131{word-spacing:-48.640000pt;}
.ws0_c00131{word-spacing:-17.536000pt;}
.ws1_c00131{word-spacing:-16.000000pt;}
.ws4_c00131{word-spacing:-13.440000pt;}
.ws2_c00131{word-spacing:-12.160000pt;}
.ws5_c00131{word-spacing:0.000000pt;}
._2_c00131{margin-left:-3.968000pt;}
._4_c00131{margin-left:-2.432000pt;}
._1_c00131{margin-left:-1.408000pt;}
._0_c00131{width:1.152000pt;}
._7_c00131{width:2.560000pt;}
._9_c00131{width:3.904000pt;}
._a_c00131{width:5.056000pt;}
._8_c00131{width:6.400000pt;}
._f_c00131{width:8.256000pt;}
._10_c00131{width:9.792000pt;}
._b_c00131{width:10.880000pt;}
._c_c00131{width:12.160000pt;}
._d_c00131{width:13.824000pt;}
._11_c00131{width:14.784000pt;}
._e_c00131{width:17.472000pt;}
._13_c00131{width:18.645333pt;}
._12_c00131{width:19.573333pt;}
._6_c00131{width:34.752000pt;}
._5_c00131{width:35.776000pt;}
._3_c00131{width:36.736000pt;}
.fs2_c00131{font-size:48.640000pt;}
.fs1_c00131{font-size:53.760000pt;}
.fs0_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y1e_c00131{bottom:18.546667pt;}
.y1c_c00131{bottom:18.866667pt;}
.y18_c00131{bottom:18.880000pt;}
.y1a_c00131{bottom:18.893333pt;}
.y20_c00131{bottom:18.910667pt;}
.y1f_c00131{bottom:116.196000pt;}
.y1d_c00131{bottom:156.560000pt;}
.y1b_c00131{bottom:196.880000pt;}
.y19_c00131{bottom:237.200000pt;}
.y17_c00131{bottom:277.533333pt;}
.y16_c00131{bottom:338.973333pt;}
.y15_c00131{bottom:374.533333pt;}
.y14_c00131{bottom:410.053333pt;}
.y13_c00131{bottom:437.893333pt;}
.y12_c00131{bottom:465.440000pt;}
.y11_c00131{bottom:492.960000pt;}
.y10_c00131{bottom:520.480000pt;}
.yf_c00131{bottom:548.320000pt;}
.ye_c00131{bottom:583.866667pt;}
.yd_c00131{bottom:619.386667pt;}
.yc_c00131{bottom:646.906667pt;}
.yb_c00131{bottom:674.746667pt;}
.ya_c00131{bottom:702.306667pt;}
.y9_c00131{bottom:729.826667pt;}
.y8_c00131{bottom:757.346667pt;}
.y7_c00131{bottom:785.186667pt;}
.y6_c00131{bottom:812.733333pt;}
.y5_c00131{bottom:840.253333pt;}
.y4_c00131{bottom:875.453333pt;}
.y3_c00131{bottom:911.653333pt;}
.y2_c00131{bottom:947.173333pt;}
.y1_c00131{bottom:993.573333pt;}
.hb_c00131{height:38.706667pt;}
.h9_c00131{height:38.720000pt;}
.hc_c00131{height:38.748000pt;}
.h5_c00131{height:39.026667pt;}
.h7_c00131{height:47.713750pt;}
.h6_c00131{height:52.736250pt;}
.ha_c00131{height:52.762500pt;}
.h8_c00131{height:54.180000pt;}
.h1_c00131{height:57.687500pt;}
.h4_c00131{height:62.781250pt;}
.h2_c00131{height:62.812500pt;}
.h3_c00131{height:64.500000pt;}
.h0_c00131{height:1056.000000pt;}
.w6_c00131{width:45.746667pt;}
.w1_c00131{width:46.100000pt;}
.w7_c00131{width:55.378667pt;}
.w8_c00131{width:62.400000pt;}
.w3_c00131{width:64.626667pt;}
.w5_c00131{width:64.672000pt;}
.w2_c00131{width:64.960000pt;}
.w4_c00131{width:64.986667pt;}
.w0_c00131{width:816.000000pt;}
.x0_c00131{left:0.000000pt;}
.xa_c00131{left:4.480000pt;}
.xc_c00131{left:6.400000pt;}
.x12_c00131{left:7.986667pt;}
.xf_c00131{left:9.906667pt;}
.x8_c00131{left:11.840000pt;}
.x6_c00131{left:17.586667pt;}
.x15_c00131{left:19.506667pt;}
.x5_c00131{left:23.062667pt;}
.x16_c00131{left:24.346667pt;}
.x17_c00131{left:25.600000pt;}
.x18_c00131{left:27.546667pt;}
.x13_c00131{left:29.106667pt;}
.x14_c00131{left:32.360000pt;}
.x1_c00131{left:113.312000pt;}
.x3_c00131{left:158.786667pt;}
.x4_c00131{left:160.706667pt;}
.x7_c00131{left:227.613333pt;}
.x9_c00131{left:293.533333pt;}
.x2_c00131{left:312.773333pt;}
.xb_c00131{left:359.813333pt;}
.xd_c00131{left:426.080000pt;}
.xe_c00131{left:492.360000pt;}
.x10_c00131{left:539.400000pt;}
.x11_c00131{left:596.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_c00132 {
    display:none;
  }
  .loading-indicator_c00132.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00132 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00132 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00132" -> "#page-container .classname_c00132")
 */
.pf_c00132 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00132 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00132 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00132 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00132 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00132 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00132 {overflow:visible;}
  }
}
.c_c00132 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00132 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00132:after { /* webkit #35443 */
  content: '';
}
.t_c00132:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00132 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00132 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00132 { /* info for Javascript */
  display:none;
}
.l_c00132 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00132 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00132 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00132:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00132;src:url('chunks/assets/font_84f15573d4325742a1ce2279.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_271b88e667931a5208815e13.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_a06f3f7d5aaf876d2b50556a.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_6f6b4e51dec0f29155775272.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;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_c00132;src:url('chunks/assets/font_ebb6dc5c8dee6e151a1940a1.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;line-height:1.191895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls5_c00132{letter-spacing:-0.466800px;}
.ls4_c00132{letter-spacing:0.000000px;}
.ls0_c00132{letter-spacing:0.020400px;}
.ls1_c00132{letter-spacing:0.184320px;}
.ls3_c00132{letter-spacing:0.304320px;}
.ls2_c00132{letter-spacing:0.313920px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00132{word-spacing:-54.720000px;}
.ws2_c00132{word-spacing:-15.140400px;}
.ws0_c00132{word-spacing:-15.120000px;}
.ws1_c00132{word-spacing:-14.653200px;}
.ws3_c00132{word-spacing:-13.680000px;}
.ws5_c00132{word-spacing:0.000000px;}
._2_c00132{margin-left:-2.134189px;}
._0_c00132{margin-left:-1.062720px;}
._1_c00132{width:1.097760px;}
.fc0_c00132{color:rgb(0,0,0);}
.fs2_c00132{font-size:54.720000px;}
.fs1_c00132{font-size:60.480000px;}
.fs0_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y6_c00132{bottom:4.675500px;}
.y3_c00132{bottom:4.680000px;}
.y22_c00132{bottom:20.145000px;}
.y25_c00132{bottom:20.194500px;}
.y10_c00132{bottom:20.865000px;}
.ye_c00132{bottom:21.225000px;}
.y17_c00132{bottom:21.270000px;}
.y14_c00132{bottom:21.585000px;}
.y8_c00132{bottom:21.600000px;}
.y16_c00132{bottom:21.630000px;}
.ya_c00132{bottom:21.645000px;}
.y5_c00132{bottom:25.195500px;}
.y4_c00132{bottom:32.800500px;}
.y1_c00132{bottom:57.996000px;}
.y24_c00132{bottom:132.520500px;}
.y23_c00132{bottom:175.410000px;}
.y21_c00132{bottom:217.890000px;}
.y20_c00132{bottom:275.865000px;}
.y1f_c00132{bottom:306.825000px;}
.y1e_c00132{bottom:337.785000px;}
.y1d_c00132{bottom:355.425000px;}
.y1c_c00132{bottom:400.830000px;}
.y1b_c00132{bottom:446.190000px;}
.y1a_c00132{bottom:491.550000px;}
.y19_c00132{bottom:536.940000px;}
.y18_c00132{bottom:582.300000px;}
.y15_c00132{bottom:627.660000px;}
.y13_c00132{bottom:673.065000px;}
.y12_c00132{bottom:718.785000px;}
.y11_c00132{bottom:764.190000px;}
.yf_c00132{bottom:809.550000px;}
.yd_c00132{bottom:854.910000px;}
.yc_c00132{bottom:900.285000px;}
.yb_c00132{bottom:945.645000px;}
.y9_c00132{bottom:991.005000px;}
.y7_c00132{bottom:1036.410000px;}
.y2_c00132{bottom:1113.090000px;}
.h2_c00132{height:20.910000px;}
.h12_c00132{height:41.025000px;}
.h14_c00132{height:41.071500px;}
.hf_c00132{height:41.385000px;}
.h3_c00132{height:41.395500px;}
.h9_c00132{height:43.545000px;}
.h8_c00132{height:43.560000px;}
.h4_c00132{height:43.905000px;}
.hc_c00132{height:43.920000px;}
.h7_c00132{height:43.950000px;}
.hb_c00132{height:43.956000px;}
.h10_c00132{height:53.677969px;}
.h13_c00132{height:53.704687px;}
.h11_c00132{height:55.147500px;}
.h5_c00132{height:59.328281px;}
.h6_c00132{height:59.357813px;}
.ha_c00132{height:60.952500px;}
.h1_c00132{height:64.546875px;}
.he_c00132{height:70.628906px;}
.hd_c00132{height:70.664062px;}
.h0_c00132{height:1188.000000px;}
.w1_c00132{width:8.265000px;}
.w13_c00132{width:31.305000px;}
.wc_c00132{width:35.265000px;}
.wb_c00132{width:39.622500px;}
.we_c00132{width:43.185000px;}
.w15_c00132{width:45.720000px;}
.w12_c00132{width:48.996000px;}
.wd_c00132{width:50.040000px;}
.w16_c00132{width:50.745000px;}
.w8_c00132{width:51.465000px;}
.w3_c00132{width:51.862500px;}
.w14_c00132{width:54.741000px;}
.wf_c00132{width:61.590000px;}
.w9_c00132{width:62.301000px;}
.w11_c00132{width:62.640000px;}
.w10_c00132{width:69.870000px;}
.wa_c00132{width:70.200000px;}
.w5_c00132{width:72.705000px;}
.w7_c00132{width:72.756000px;}
.w4_c00132{width:73.080000px;}
.w6_c00132{width:73.110000px;}
.w2_c00132{width:663.345000px;}
.w0_c00132{width:918.000000px;}
.x0_c00132{left:0.000000px;}
.x17_c00132{left:1.065000px;}
.x1c_c00132{left:2.160000px;}
.x27_c00132{left:12.225000px;}
.x24_c00132{left:14.385000px;}
.x25_c00132{left:18.360000px;}
.x15_c00132{left:19.822500px;}
.x28_c00132{left:20.880000px;}
.x11_c00132{left:21.945000px;}
.x26_c00132{left:24.480000px;}
.xc_c00132{left:25.905000px;}
.x10_c00132{left:27.705000px;}
.x12_c00132{left:28.785000px;}
.xe_c00132{left:30.990000px;}
.x5_c00132{left:32.745000px;}
.x13_c00132{left:35.265000px;}
.x8_c00132{left:36.405000px;}
.x3_c00132{left:127.489500px;}
.x1_c00132{left:154.515000px;}
.x16_c00132{left:168.930000px;}
.x14_c00132{left:178.635000px;}
.x4_c00132{left:181.530000px;}
.x18_c00132{left:205.650000px;}
.x6_c00132{left:256.065000px;}
.x19_c00132{left:257.145000px;}
.x1a_c00132{left:302.145000px;}
.x7_c00132{left:330.225000px;}
.x1b_c00132{left:365.190000px;}
.x9_c00132{left:404.790000px;}
.x1d_c00132{left:436.500000px;}
.xa_c00132{left:479.340000px;}
.x1e_c00132{left:500.580000px;}
.x1f_c00132{left:551.025000px;}
.xb_c00132{left:553.905000px;}
.x20_c00132{left:583.785000px;}
.xd_c00132{left:606.825000px;}
.x21_c00132{left:639.990000px;}
.xf_c00132{left:670.950000px;}
.x22_c00132{left:692.910000px;}
.x23_c00132{left:740.085000px;}
.x2_c00132{left:782.565000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls5_c00132{letter-spacing:-0.414933pt;}
.ls4_c00132{letter-spacing:0.000000pt;}
.ls0_c00132{letter-spacing:0.018133pt;}
.ls1_c00132{letter-spacing:0.163840pt;}
.ls3_c00132{letter-spacing:0.270507pt;}
.ls2_c00132{letter-spacing:0.279040pt;}
.ws4_c00132{word-spacing:-48.640000pt;}
.ws2_c00132{word-spacing:-13.458133pt;}
.ws0_c00132{word-spacing:-13.440000pt;}
.ws1_c00132{word-spacing:-13.025067pt;}
.ws3_c00132{word-spacing:-12.160000pt;}
.ws5_c00132{word-spacing:0.000000pt;}
._2_c00132{margin-left:-1.897057pt;}
._0_c00132{margin-left:-0.944640pt;}
._1_c00132{width:0.975787pt;}
.fs2_c00132{font-size:48.640000pt;}
.fs1_c00132{font-size:53.760000pt;}
.fs0_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y6_c00132{bottom:4.156000pt;}
.y3_c00132{bottom:4.160000pt;}
.y22_c00132{bottom:17.906667pt;}
.y25_c00132{bottom:17.950667pt;}
.y10_c00132{bottom:18.546667pt;}
.ye_c00132{bottom:18.866667pt;}
.y17_c00132{bottom:18.906667pt;}
.y14_c00132{bottom:19.186667pt;}
.y8_c00132{bottom:19.200000pt;}
.y16_c00132{bottom:19.226667pt;}
.ya_c00132{bottom:19.240000pt;}
.y5_c00132{bottom:22.396000pt;}
.y4_c00132{bottom:29.156000pt;}
.y1_c00132{bottom:51.552000pt;}
.y24_c00132{bottom:117.796000pt;}
.y23_c00132{bottom:155.920000pt;}
.y21_c00132{bottom:193.680000pt;}
.y20_c00132{bottom:245.213333pt;}
.y1f_c00132{bottom:272.733333pt;}
.y1e_c00132{bottom:300.253333pt;}
.y1d_c00132{bottom:315.933333pt;}
.y1c_c00132{bottom:356.293333pt;}
.y1b_c00132{bottom:396.613333pt;}
.y1a_c00132{bottom:436.933333pt;}
.y19_c00132{bottom:477.280000pt;}
.y18_c00132{bottom:517.600000pt;}
.y15_c00132{bottom:557.920000pt;}
.y13_c00132{bottom:598.280000pt;}
.y12_c00132{bottom:638.920000pt;}
.y11_c00132{bottom:679.280000pt;}
.yf_c00132{bottom:719.600000pt;}
.yd_c00132{bottom:759.920000pt;}
.yc_c00132{bottom:800.253333pt;}
.yb_c00132{bottom:840.573333pt;}
.y9_c00132{bottom:880.893333pt;}
.y7_c00132{bottom:921.253333pt;}
.y2_c00132{bottom:989.413333pt;}
.h2_c00132{height:18.586667pt;}
.h12_c00132{height:36.466667pt;}
.h14_c00132{height:36.508000pt;}
.hf_c00132{height:36.786667pt;}
.h3_c00132{height:36.796000pt;}
.h9_c00132{height:38.706667pt;}
.h8_c00132{height:38.720000pt;}
.h4_c00132{height:39.026667pt;}
.hc_c00132{height:39.040000pt;}
.h7_c00132{height:39.066667pt;}
.hb_c00132{height:39.072000pt;}
.h10_c00132{height:47.713750pt;}
.h13_c00132{height:47.737500pt;}
.h11_c00132{height:49.020000pt;}
.h5_c00132{height:52.736250pt;}
.h6_c00132{height:52.762500pt;}
.ha_c00132{height:54.180000pt;}
.h1_c00132{height:57.375000pt;}
.he_c00132{height:62.781250pt;}
.hd_c00132{height:62.812500pt;}
.h0_c00132{height:1056.000000pt;}
.w1_c00132{width:7.346667pt;}
.w13_c00132{width:27.826667pt;}
.wc_c00132{width:31.346667pt;}
.wb_c00132{width:35.220000pt;}
.we_c00132{width:38.386667pt;}
.w15_c00132{width:40.640000pt;}
.w12_c00132{width:43.552000pt;}
.wd_c00132{width:44.480000pt;}
.w16_c00132{width:45.106667pt;}
.w8_c00132{width:45.746667pt;}
.w3_c00132{width:46.100000pt;}
.w14_c00132{width:48.658667pt;}
.wf_c00132{width:54.746667pt;}
.w9_c00132{width:55.378667pt;}
.w11_c00132{width:55.680000pt;}
.w10_c00132{width:62.106667pt;}
.wa_c00132{width:62.400000pt;}
.w5_c00132{width:64.626667pt;}
.w7_c00132{width:64.672000pt;}
.w4_c00132{width:64.960000pt;}
.w6_c00132{width:64.986667pt;}
.w2_c00132{width:589.640000pt;}
.w0_c00132{width:816.000000pt;}
.x0_c00132{left:0.000000pt;}
.x17_c00132{left:0.946667pt;}
.x1c_c00132{left:1.920000pt;}
.x27_c00132{left:10.866667pt;}
.x24_c00132{left:12.786667pt;}
.x25_c00132{left:16.320000pt;}
.x15_c00132{left:17.620000pt;}
.x28_c00132{left:18.560000pt;}
.x11_c00132{left:19.506667pt;}
.x26_c00132{left:21.760000pt;}
.xc_c00132{left:23.026667pt;}
.x10_c00132{left:24.626667pt;}
.x12_c00132{left:25.586667pt;}
.xe_c00132{left:27.546667pt;}
.x5_c00132{left:29.106667pt;}
.x13_c00132{left:31.346667pt;}
.x8_c00132{left:32.360000pt;}
.x3_c00132{left:113.324000pt;}
.x1_c00132{left:137.346667pt;}
.x16_c00132{left:150.160000pt;}
.x14_c00132{left:158.786667pt;}
.x4_c00132{left:161.360000pt;}
.x18_c00132{left:182.800000pt;}
.x6_c00132{left:227.613333pt;}
.x19_c00132{left:228.573333pt;}
.x1a_c00132{left:268.573333pt;}
.x7_c00132{left:293.533333pt;}
.x1b_c00132{left:324.613333pt;}
.x9_c00132{left:359.813333pt;}
.x1d_c00132{left:388.000000pt;}
.xa_c00132{left:426.080000pt;}
.x1e_c00132{left:444.960000pt;}
.x1f_c00132{left:489.800000pt;}
.xb_c00132{left:492.360000pt;}
.x20_c00132{left:518.920000pt;}
.xd_c00132{left:539.400000pt;}
.x21_c00132{left:568.880000pt;}
.xf_c00132{left:596.400000pt;}
.x22_c00132{left:615.920000pt;}
.x23_c00132{left:657.853333pt;}
.x2_c00132{left:695.613333pt;}
}





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

.ir_c00133:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00133;src:url('chunks/assets/font_6d947b290fabe9607faec709.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_2a336da5e694d86a6ef6ea67.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_769de7ea15aa133f82eff5cc.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_394aaaf3e35badf503d377d0.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls1_c00133{letter-spacing:-0.630000px;}
.ls0_c00133{letter-spacing:0.000000px;}
.ls2_c00133{letter-spacing:0.498000px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00133{word-spacing:-14.178000px;}
.ws0_c00133{word-spacing:-13.680000px;}
.ws1_c00133{word-spacing:-13.050000px;}
.ws3_c00133{word-spacing:0.000000px;}
._4_c00133{margin-left:-2.513280px;}
._0_c00133{margin-left:-1.440000px;}
._1_c00133{width:1.060320px;}
._5_c00133{width:2.952000px;}
._7_c00133{width:4.412160px;}
._6_c00133{width:5.484960px;}
._8_c00133{width:6.827040px;}
._2_c00133{width:19.080000px;}
._3_c00133{width:20.520000px;}
.fc0_c00133{color:rgb(0,0,0);}
.fs1_c00133{font-size:54.720000px;}
.fs0_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.y6_c00133{bottom:4.675500px;}
.y3_c00133{bottom:4.680000px;}
.y19_c00133{bottom:19.800000px;}
.y11_c00133{bottom:20.145000px;}
.y9_c00133{bottom:20.160000px;}
.yf_c00133{bottom:20.175000px;}
.y13_c00133{bottom:20.505000px;}
.y8_c00133{bottom:20.520000px;}
.yb_c00133{bottom:20.565000px;}
.y1f_c00133{bottom:23.400000px;}
.y5_c00133{bottom:25.195500px;}
.y20_c00133{bottom:26.640000px;}
.y4_c00133{bottom:32.800500px;}
.y1_c00133{bottom:57.996000px;}
.y26_c00133{bottom:138.636000px;}
.y25_c00133{bottom:178.995000px;}
.y24_c00133{bottom:218.955000px;}
.y23_c00133{bottom:249.915000px;}
.y22_c00133{bottom:280.905000px;}
.y21_c00133{bottom:321.225000px;}
.y1e_c00133{bottom:347.865000px;}
.y1d_c00133{bottom:396.870000px;}
.y1c_c00133{bottom:439.710000px;}
.y1b_c00133{bottom:482.550000px;}
.y1a_c00133{bottom:525.420000px;}
.y18_c00133{bottom:568.260000px;}
.y17_c00133{bottom:610.740000px;}
.y16_c00133{bottom:653.625000px;}
.y15_c00133{bottom:696.465000px;}
.y14_c00133{bottom:739.305000px;}
.y12_c00133{bottom:782.190000px;}
.y10_c00133{bottom:825.030000px;}
.ye_c00133{bottom:867.870000px;}
.yd_c00133{bottom:910.365000px;}
.yc_c00133{bottom:953.205000px;}
.ya_c00133{bottom:996.045000px;}
.y7_c00133{bottom:1038.930000px;}
.y2_c00133{bottom:1113.090000px;}
.h2_c00133{height:20.910000px;}
.ha_c00133{height:41.025000px;}
.h9_c00133{height:41.040000px;}
.h4_c00133{height:41.385000px;}
.h3_c00133{height:41.395500px;}
.hb_c00133{height:41.421000px;}
.h8_c00133{height:41.430000px;}
.hc_c00133{height:41.436000px;}
.hd_c00133{height:47.550000px;}
.h5_c00133{height:53.677969px;}
.h6_c00133{height:53.704687px;}
.h7_c00133{height:55.147500px;}
.h1_c00133{height:64.546875px;}
.hf_c00133{height:70.628906px;}
.he_c00133{height:70.664062px;}
.h0_c00133{height:1188.000000px;}
.w1_c00133{width:8.265000px;}
.wb_c00133{width:31.305000px;}
.w4_c00133{width:35.265000px;}
.w3_c00133{width:39.622500px;}
.w6_c00133{width:43.185000px;}
.we_c00133{width:45.720000px;}
.wa_c00133{width:48.996000px;}
.w5_c00133{width:50.040000px;}
.wf_c00133{width:50.745000px;}
.wd_c00133{width:51.465000px;}
.wc_c00133{width:54.741000px;}
.w7_c00133{width:61.590000px;}
.w9_c00133{width:62.640000px;}
.w8_c00133{width:69.870000px;}
.w2_c00133{width:663.345000px;}
.w0_c00133{width:918.000000px;}
.x0_c00133{left:0.000000px;}
.x5_c00133{left:11.145000px;}
.x11_c00133{left:12.225000px;}
.x1c_c00133{left:14.385000px;}
.x1a_c00133{left:15.465000px;}
.x7_c00133{left:17.985000px;}
.x1b_c00133{left:19.425000px;}
.x9_c00133{left:21.600000px;}
.x17_c00133{left:22.665000px;}
.x13_c00133{left:23.745000px;}
.x15_c00133{left:25.545000px;}
.xb_c00133{left:27.360000px;}
.x19_c00133{left:30.600000px;}
.xd_c00133{left:34.920000px;}
.x3_c00133{left:127.489500px;}
.x1_c00133{left:154.515000px;}
.x4_c00133{left:168.930000px;}
.x1d_c00133{left:178.635000px;}
.x6_c00133{left:205.650000px;}
.x8_c00133{left:257.145000px;}
.xa_c00133{left:302.145000px;}
.xc_c00133{left:365.190000px;}
.xe_c00133{left:436.500000px;}
.xf_c00133{left:500.580000px;}
.x10_c00133{left:551.025000px;}
.x12_c00133{left:583.785000px;}
.x14_c00133{left:639.990000px;}
.x16_c00133{left:692.910000px;}
.x18_c00133{left:740.085000px;}
.x2_c00133{left:782.565000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls1_c00133{letter-spacing:-0.560000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ls2_c00133{letter-spacing:0.442667pt;}
.ws2_c00133{word-spacing:-12.602667pt;}
.ws0_c00133{word-spacing:-12.160000pt;}
.ws1_c00133{word-spacing:-11.600000pt;}
.ws3_c00133{word-spacing:0.000000pt;}
._4_c00133{margin-left:-2.234027pt;}
._0_c00133{margin-left:-1.280000pt;}
._1_c00133{width:0.942507pt;}
._5_c00133{width:2.624000pt;}
._7_c00133{width:3.921920pt;}
._6_c00133{width:4.875520pt;}
._8_c00133{width:6.068480pt;}
._2_c00133{width:16.960000pt;}
._3_c00133{width:18.240000pt;}
.fs1_c00133{font-size:48.640000pt;}
.fs0_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y6_c00133{bottom:4.156000pt;}
.y3_c00133{bottom:4.160000pt;}
.y19_c00133{bottom:17.600000pt;}
.y11_c00133{bottom:17.906667pt;}
.y9_c00133{bottom:17.920000pt;}
.yf_c00133{bottom:17.933333pt;}
.y13_c00133{bottom:18.226667pt;}
.y8_c00133{bottom:18.240000pt;}
.yb_c00133{bottom:18.280000pt;}
.y1f_c00133{bottom:20.800000pt;}
.y5_c00133{bottom:22.396000pt;}
.y20_c00133{bottom:23.680000pt;}
.y4_c00133{bottom:29.156000pt;}
.y1_c00133{bottom:51.552000pt;}
.y26_c00133{bottom:123.232000pt;}
.y25_c00133{bottom:159.106667pt;}
.y24_c00133{bottom:194.626667pt;}
.y23_c00133{bottom:222.146667pt;}
.y22_c00133{bottom:249.693333pt;}
.y21_c00133{bottom:285.533333pt;}
.y1e_c00133{bottom:309.213333pt;}
.y1d_c00133{bottom:352.773333pt;}
.y1c_c00133{bottom:390.853333pt;}
.y1b_c00133{bottom:428.933333pt;}
.y1a_c00133{bottom:467.040000pt;}
.y18_c00133{bottom:505.120000pt;}
.y17_c00133{bottom:542.880000pt;}
.y16_c00133{bottom:581.000000pt;}
.y15_c00133{bottom:619.080000pt;}
.y14_c00133{bottom:657.160000pt;}
.y12_c00133{bottom:695.280000pt;}
.y10_c00133{bottom:733.360000pt;}
.ye_c00133{bottom:771.440000pt;}
.yd_c00133{bottom:809.213333pt;}
.yc_c00133{bottom:847.293333pt;}
.ya_c00133{bottom:885.373333pt;}
.y7_c00133{bottom:923.493333pt;}
.y2_c00133{bottom:989.413333pt;}
.h2_c00133{height:18.586667pt;}
.ha_c00133{height:36.466667pt;}
.h9_c00133{height:36.480000pt;}
.h4_c00133{height:36.786667pt;}
.h3_c00133{height:36.796000pt;}
.hb_c00133{height:36.818667pt;}
.h8_c00133{height:36.826667pt;}
.hc_c00133{height:36.832000pt;}
.hd_c00133{height:42.266667pt;}
.h5_c00133{height:47.713750pt;}
.h6_c00133{height:47.737500pt;}
.h7_c00133{height:49.020000pt;}
.h1_c00133{height:57.375000pt;}
.hf_c00133{height:62.781250pt;}
.he_c00133{height:62.812500pt;}
.h0_c00133{height:1056.000000pt;}
.w1_c00133{width:7.346667pt;}
.wb_c00133{width:27.826667pt;}
.w4_c00133{width:31.346667pt;}
.w3_c00133{width:35.220000pt;}
.w6_c00133{width:38.386667pt;}
.we_c00133{width:40.640000pt;}
.wa_c00133{width:43.552000pt;}
.w5_c00133{width:44.480000pt;}
.wf_c00133{width:45.106667pt;}
.wd_c00133{width:45.746667pt;}
.wc_c00133{width:48.658667pt;}
.w7_c00133{width:54.746667pt;}
.w9_c00133{width:55.680000pt;}
.w8_c00133{width:62.106667pt;}
.w2_c00133{width:589.640000pt;}
.w0_c00133{width:816.000000pt;}
.x0_c00133{left:0.000000pt;}
.x5_c00133{left:9.906667pt;}
.x11_c00133{left:10.866667pt;}
.x1c_c00133{left:12.786667pt;}
.x1a_c00133{left:13.746667pt;}
.x7_c00133{left:15.986667pt;}
.x1b_c00133{left:17.266667pt;}
.x9_c00133{left:19.200000pt;}
.x17_c00133{left:20.146667pt;}
.x13_c00133{left:21.106667pt;}
.x15_c00133{left:22.706667pt;}
.xb_c00133{left:24.320000pt;}
.x19_c00133{left:27.200000pt;}
.xd_c00133{left:31.040000pt;}
.x3_c00133{left:113.324000pt;}
.x1_c00133{left:137.346667pt;}
.x4_c00133{left:150.160000pt;}
.x1d_c00133{left:158.786667pt;}
.x6_c00133{left:182.800000pt;}
.x8_c00133{left:228.573333pt;}
.xa_c00133{left:268.573333pt;}
.xc_c00133{left:324.613333pt;}
.xe_c00133{left:388.000000pt;}
.xf_c00133{left:444.960000pt;}
.x10_c00133{left:489.800000pt;}
.x12_c00133{left:518.920000pt;}
.x14_c00133{left:568.880000pt;}
.x16_c00133{left:615.920000pt;}
.x18_c00133{left:657.853333pt;}
.x2_c00133{left:695.613333pt;}
}





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

.ir_c00135:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00135;src:url('chunks/assets/font_46bba75469c8b5c39f90027c.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_17459d4ca05a575181dc12fc.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_f4fb26511a80c66e24433ec5.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;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_c00135;src:url('chunks/assets/font_c79b805d4f72818077df1416.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls3_c00135{letter-spacing:-0.288000px;}
.ls2_c00135{letter-spacing:0.000000px;}
.ls1_c00135{letter-spacing:7.920000px;}
.ls0_c00135{letter-spacing:18.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:-18.000000px;}
.ws1_c00135{word-spacing:0.000000px;}
._1_c00135{margin-left:-2.736000px;}
._3_c00135{margin-left:-1.296000px;}
._0_c00135{width:1.224000px;}
._2_c00135{width:2.736000px;}
._4_c00135{width:3.744000px;}
._6_c00135{width:7.056000px;}
._8_c00135{width:8.352000px;}
._7_c00135{width:9.432000px;}
._5_c00135{width:19.152000px;}
.fc0_c00135{color:rgb(0,0,0);}
.fs0_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y6_c00135{bottom:4.675500px;}
.y3_c00135{bottom:4.680000px;}
.y5_c00135{bottom:25.195500px;}
.y4_c00135{bottom:32.800500px;}
.y1_c00135{bottom:57.996000px;}
.y10_c00135{bottom:120.636000px;}
.yf_c00135{bottom:496.230000px;}
.ye_c00135{bottom:536.580000px;}
.yd_c00135{bottom:567.540000px;}
.yc_c00135{bottom:598.500000px;}
.yb_c00135{bottom:634.500000px;}
.ya_c00135{bottom:963.285000px;}
.y9_c00135{bottom:1003.245000px;}
.y8_c00135{bottom:1034.610000px;}
.y7_c00135{bottom:1065.570000px;}
.y2_c00135{bottom:1113.090000px;}
.h2_c00135{height:20.910000px;}
.h3_c00135{height:41.395500px;}
.h1_c00135{height:64.546875px;}
.h5_c00135{height:70.628906px;}
.h4_c00135{height:70.664062px;}
.h0_c00135{height:1188.000000px;}
.w1_c00135{width:8.265000px;}
.w2_c00135{width:663.345000px;}
.w0_c00135{width:918.000000px;}
.x0_c00135{left:0.000000px;}
.x3_c00135{left:127.489500px;}
.x1_c00135{left:154.515000px;}
.x4_c00135{left:178.635000px;}
.x5_c00135{left:777.165000px;}
.x2_c00135{left:782.565000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls3_c00135{letter-spacing:-0.256000pt;}
.ls2_c00135{letter-spacing:0.000000pt;}
.ls1_c00135{letter-spacing:7.040000pt;}
.ls0_c00135{letter-spacing:16.000000pt;}
.ws0_c00135{word-spacing:-16.000000pt;}
.ws1_c00135{word-spacing:0.000000pt;}
._1_c00135{margin-left:-2.432000pt;}
._3_c00135{margin-left:-1.152000pt;}
._0_c00135{width:1.088000pt;}
._2_c00135{width:2.432000pt;}
._4_c00135{width:3.328000pt;}
._6_c00135{width:6.272000pt;}
._8_c00135{width:7.424000pt;}
._7_c00135{width:8.384000pt;}
._5_c00135{width:17.024000pt;}
.fs0_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y6_c00135{bottom:4.156000pt;}
.y3_c00135{bottom:4.160000pt;}
.y5_c00135{bottom:22.396000pt;}
.y4_c00135{bottom:29.156000pt;}
.y1_c00135{bottom:51.552000pt;}
.y10_c00135{bottom:107.232000pt;}
.yf_c00135{bottom:441.093333pt;}
.ye_c00135{bottom:476.960000pt;}
.yd_c00135{bottom:504.480000pt;}
.yc_c00135{bottom:532.000000pt;}
.yb_c00135{bottom:564.000000pt;}
.ya_c00135{bottom:856.253333pt;}
.y9_c00135{bottom:891.773333pt;}
.y8_c00135{bottom:919.653333pt;}
.y7_c00135{bottom:947.173333pt;}
.y2_c00135{bottom:989.413333pt;}
.h2_c00135{height:18.586667pt;}
.h3_c00135{height:36.796000pt;}
.h1_c00135{height:57.375000pt;}
.h5_c00135{height:62.781250pt;}
.h4_c00135{height:62.812500pt;}
.h0_c00135{height:1056.000000pt;}
.w1_c00135{width:7.346667pt;}
.w2_c00135{width:589.640000pt;}
.w0_c00135{width:816.000000pt;}
.x0_c00135{left:0.000000pt;}
.x3_c00135{left:113.324000pt;}
.x1_c00135{left:137.346667pt;}
.x4_c00135{left:158.786667pt;}
.x5_c00135{left:690.813333pt;}
.x2_c00135{left:695.613333pt;}
}





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

.ir_c00136:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00136;src:url('chunks/assets/font_5e9acd5e3a8929289581246b.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_f70130dd5aba18d4b82caad2.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_699190603a31533a68c03d4c.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_20c1ad4470d50e763e5ebacc.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;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_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls4_c00136{letter-spacing:-2.880000px;}
.ls3_c00136{letter-spacing:-1.440000px;}
.ls5_c00136{letter-spacing:-0.648000px;}
.ls2_c00136{letter-spacing:0.000000px;}
.ls1_c00136{letter-spacing:0.720000px;}
.ls0_c00136{letter-spacing:9.360000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00136{word-spacing:-72.000000px;}
.ws1_c00136{word-spacing:-18.000000px;}
.ws2_c00136{word-spacing:-17.352000px;}
.ws3_c00136{word-spacing:0.000000px;}
._1_c00136{margin-left:-2.736000px;}
._3_c00136{margin-left:-1.296000px;}
._0_c00136{width:1.224000px;}
._2_c00136{width:2.736000px;}
._4_c00136{width:3.744000px;}
._5_c00136{width:4.824000px;}
._6_c00136{width:6.120000px;}
._8_c00136{width:7.464000px;}
._7_c00136{width:8.508000px;}
.fc0_c00136{color:rgb(0,0,0);}
.fs0_c00136{font-size:72.000000px;}
.y0_c00136{bottom:0.000000px;}
.y6_c00136{bottom:4.675500px;}
.y3_c00136{bottom:4.680000px;}
.y5_c00136{bottom:25.195500px;}
.y4_c00136{bottom:32.800500px;}
.y1_c00136{bottom:57.996000px;}
.yf_c00136{bottom:112.716000px;}
.ye_c00136{bottom:515.670000px;}
.yd_c00136{bottom:555.660000px;}
.yc_c00136{bottom:586.620000px;}
.yb_c00136{bottom:622.620000px;}
.ya_c00136{bottom:963.285000px;}
.y9_c00136{bottom:1003.245000px;}
.y8_c00136{bottom:1034.610000px;}
.y7_c00136{bottom:1065.570000px;}
.y2_c00136{bottom:1113.090000px;}
.h2_c00136{height:20.910000px;}
.h3_c00136{height:41.395500px;}
.h1_c00136{height:64.546875px;}
.h5_c00136{height:70.628906px;}
.h4_c00136{height:70.664062px;}
.h0_c00136{height:1188.000000px;}
.w1_c00136{width:8.265000px;}
.w2_c00136{width:663.345000px;}
.w0_c00136{width:918.000000px;}
.x0_c00136{left:0.000000px;}
.x3_c00136{left:127.489500px;}
.x1_c00136{left:154.515000px;}
.x4_c00136{left:178.635000px;}
.x5_c00136{left:777.165000px;}
.x2_c00136{left:782.565000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls4_c00136{letter-spacing:-2.560000pt;}
.ls3_c00136{letter-spacing:-1.280000pt;}
.ls5_c00136{letter-spacing:-0.576000pt;}
.ls2_c00136{letter-spacing:0.000000pt;}
.ls1_c00136{letter-spacing:0.640000pt;}
.ls0_c00136{letter-spacing:8.320000pt;}
.ws0_c00136{word-spacing:-64.000000pt;}
.ws1_c00136{word-spacing:-16.000000pt;}
.ws2_c00136{word-spacing:-15.424000pt;}
.ws3_c00136{word-spacing:0.000000pt;}
._1_c00136{margin-left:-2.432000pt;}
._3_c00136{margin-left:-1.152000pt;}
._0_c00136{width:1.088000pt;}
._2_c00136{width:2.432000pt;}
._4_c00136{width:3.328000pt;}
._5_c00136{width:4.288000pt;}
._6_c00136{width:5.440000pt;}
._8_c00136{width:6.634667pt;}
._7_c00136{width:7.562667pt;}
.fs0_c00136{font-size:64.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y6_c00136{bottom:4.156000pt;}
.y3_c00136{bottom:4.160000pt;}
.y5_c00136{bottom:22.396000pt;}
.y4_c00136{bottom:29.156000pt;}
.y1_c00136{bottom:51.552000pt;}
.yf_c00136{bottom:100.192000pt;}
.ye_c00136{bottom:458.373333pt;}
.yd_c00136{bottom:493.920000pt;}
.yc_c00136{bottom:521.440000pt;}
.yb_c00136{bottom:553.440000pt;}
.ya_c00136{bottom:856.253333pt;}
.y9_c00136{bottom:891.773333pt;}
.y8_c00136{bottom:919.653333pt;}
.y7_c00136{bottom:947.173333pt;}
.y2_c00136{bottom:989.413333pt;}
.h2_c00136{height:18.586667pt;}
.h3_c00136{height:36.796000pt;}
.h1_c00136{height:57.375000pt;}
.h5_c00136{height:62.781250pt;}
.h4_c00136{height:62.812500pt;}
.h0_c00136{height:1056.000000pt;}
.w1_c00136{width:7.346667pt;}
.w2_c00136{width:589.640000pt;}
.w0_c00136{width:816.000000pt;}
.x0_c00136{left:0.000000pt;}
.x3_c00136{left:113.324000pt;}
.x1_c00136{left:137.346667pt;}
.x4_c00136{left:158.786667pt;}
.x5_c00136{left:690.813333pt;}
.x2_c00136{left:695.613333pt;}
}





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

.ir_c00137:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00137;src:url('chunks/assets/font_d329ce74c6bee90520d0de18.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_8be5b24468f06b08488c48fc.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_831b0bcf472473f36eca2352.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;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_c00137;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls2_c00137{letter-spacing:-2.880000px;}
.ls1_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:0.720000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00137{word-spacing:-72.000000px;}
.ws0_c00137{word-spacing:-18.000000px;}
.ws2_c00137{word-spacing:0.000000px;}
._3_c00137{margin-left:-2.304000px;}
._0_c00137{margin-left:-1.080000px;}
._2_c00137{width:1.008000px;}
._1_c00137{width:2.088000px;}
._4_c00137{width:3.684000px;}
._b_c00137{width:4.703976px;}
._7_c00137{width:7.056000px;}
._6_c00137{width:8.928000px;}
._8_c00137{width:9.936000px;}
._a_c00137{width:11.592000px;}
._9_c00137{width:13.032000px;}
._5_c00137{width:19.440000px;}
.fc0_c00137{color:rgb(0,0,0);}
.fs0_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y6_c00137{bottom:4.675500px;}
.y3_c00137{bottom:4.680000px;}
.y5_c00137{bottom:25.195500px;}
.y4_c00137{bottom:32.800500px;}
.y1_c00137{bottom:57.996000px;}
.y17_c00137{bottom:146.556000px;}
.y16_c00137{bottom:186.915000px;}
.y15_c00137{bottom:226.875000px;}
.y14_c00137{bottom:257.835000px;}
.y13_c00137{bottom:288.825000px;}
.y12_c00137{bottom:320.145000px;}
.y11_c00137{bottom:360.105000px;}
.y10_c00137{bottom:391.065000px;}
.yf_c00137{bottom:422.070000px;}
.ye_c00137{bottom:458.070000px;}
.yd_c00137{bottom:861.015000px;}
.yc_c00137{bottom:901.365000px;}
.yb_c00137{bottom:941.325000px;}
.ya_c00137{bottom:972.285000px;}
.y9_c00137{bottom:1003.245000px;}
.y8_c00137{bottom:1034.610000px;}
.y7_c00137{bottom:1065.570000px;}
.y2_c00137{bottom:1113.090000px;}
.h2_c00137{height:20.910000px;}
.h3_c00137{height:41.395500px;}
.h1_c00137{height:64.546875px;}
.h5_c00137{height:70.628906px;}
.h4_c00137{height:70.664062px;}
.h0_c00137{height:1188.000000px;}
.w1_c00137{width:8.265000px;}
.w2_c00137{width:663.345000px;}
.w0_c00137{width:918.000000px;}
.x0_c00137{left:0.000000px;}
.x3_c00137{left:127.489500px;}
.x1_c00137{left:154.515000px;}
.x4_c00137{left:178.635000px;}
.x5_c00137{left:777.165000px;}
.x2_c00137{left:782.565000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls2_c00137{letter-spacing:-2.560000pt;}
.ls1_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:0.640000pt;}
.ws1_c00137{word-spacing:-64.000000pt;}
.ws0_c00137{word-spacing:-16.000000pt;}
.ws2_c00137{word-spacing:0.000000pt;}
._3_c00137{margin-left:-2.048000pt;}
._0_c00137{margin-left:-0.960000pt;}
._2_c00137{width:0.896000pt;}
._1_c00137{width:1.856000pt;}
._4_c00137{width:3.274667pt;}
._b_c00137{width:4.181312pt;}
._7_c00137{width:6.272000pt;}
._6_c00137{width:7.936000pt;}
._8_c00137{width:8.832000pt;}
._a_c00137{width:10.304000pt;}
._9_c00137{width:11.584000pt;}
._5_c00137{width:17.280000pt;}
.fs0_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y6_c00137{bottom:4.156000pt;}
.y3_c00137{bottom:4.160000pt;}
.y5_c00137{bottom:22.396000pt;}
.y4_c00137{bottom:29.156000pt;}
.y1_c00137{bottom:51.552000pt;}
.y17_c00137{bottom:130.272000pt;}
.y16_c00137{bottom:166.146667pt;}
.y15_c00137{bottom:201.666667pt;}
.y14_c00137{bottom:229.186667pt;}
.y13_c00137{bottom:256.733333pt;}
.y12_c00137{bottom:284.573333pt;}
.y11_c00137{bottom:320.093333pt;}
.y10_c00137{bottom:347.613333pt;}
.yf_c00137{bottom:375.173333pt;}
.ye_c00137{bottom:407.173333pt;}
.yd_c00137{bottom:765.346667pt;}
.yc_c00137{bottom:801.213333pt;}
.yb_c00137{bottom:836.733333pt;}
.ya_c00137{bottom:864.253333pt;}
.y9_c00137{bottom:891.773333pt;}
.y8_c00137{bottom:919.653333pt;}
.y7_c00137{bottom:947.173333pt;}
.y2_c00137{bottom:989.413333pt;}
.h2_c00137{height:18.586667pt;}
.h3_c00137{height:36.796000pt;}
.h1_c00137{height:57.375000pt;}
.h5_c00137{height:62.781250pt;}
.h4_c00137{height:62.812500pt;}
.h0_c00137{height:1056.000000pt;}
.w1_c00137{width:7.346667pt;}
.w2_c00137{width:589.640000pt;}
.w0_c00137{width:816.000000pt;}
.x0_c00137{left:0.000000pt;}
.x3_c00137{left:113.324000pt;}
.x1_c00137{left:137.346667pt;}
.x4_c00137{left:158.786667pt;}
.x5_c00137{left:690.813333pt;}
.x2_c00137{left:695.613333pt;}
}





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

.ir_c00138:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00138;src:url('chunks/assets/font_9ecb614671228184e350f3c4.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00138;src:url('chunks/assets/font_3cecca66a1dbb853cbda7a69.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_95eb773b07597bea5b11c1d1.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_c39c4f29f19a7e483fcdccbb.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;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_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls3_c00138{letter-spacing:-0.720000px;}
.ls2_c00138{letter-spacing:0.000000px;}
.ls0_c00138{letter-spacing:0.504000px;}
.ls1_c00138{letter-spacing:0.720000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:-72.000000px;}
.ws1_c00138{word-spacing:-18.000000px;}
.ws2_c00138{word-spacing:0.000000px;}
._2_c00138{margin-left:-2.736000px;}
._1_c00138{margin-left:-1.512000px;}
._0_c00138{width:1.224000px;}
._3_c00138{width:2.736000px;}
._4_c00138{width:3.744000px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs0_c00138{font-size:72.000000px;}
.y0_c00138{bottom:0.000000px;}
.y6_c00138{bottom:4.675500px;}
.y3_c00138{bottom:4.680000px;}
.y5_c00138{bottom:25.195500px;}
.y4_c00138{bottom:32.800500px;}
.y1_c00138{bottom:57.996000px;}
.ye_c00138{bottom:138.636000px;}
.yd_c00138{bottom:174.675000px;}
.yc_c00138{bottom:577.620000px;}
.yb_c00138{bottom:617.580000px;}
.ya_c00138{bottom:648.930000px;}
.y9_c00138{bottom:679.890000px;}
.y8_c00138{bottom:715.890000px;}
.y7_c00138{bottom:1065.570000px;}
.y2_c00138{bottom:1113.090000px;}
.h2_c00138{height:20.910000px;}
.h3_c00138{height:41.395500px;}
.h1_c00138{height:64.546875px;}
.h5_c00138{height:70.628906px;}
.h4_c00138{height:70.664062px;}
.h0_c00138{height:1188.000000px;}
.w1_c00138{width:8.265000px;}
.w2_c00138{width:663.345000px;}
.w0_c00138{width:918.000000px;}
.x0_c00138{left:0.000000px;}
.x3_c00138{left:127.489500px;}
.x1_c00138{left:154.515000px;}
.x4_c00138{left:777.165000px;}
.x2_c00138{left:782.565000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls3_c00138{letter-spacing:-0.640000pt;}
.ls2_c00138{letter-spacing:0.000000pt;}
.ls0_c00138{letter-spacing:0.448000pt;}
.ls1_c00138{letter-spacing:0.640000pt;}
.ws0_c00138{word-spacing:-64.000000pt;}
.ws1_c00138{word-spacing:-16.000000pt;}
.ws2_c00138{word-spacing:0.000000pt;}
._2_c00138{margin-left:-2.432000pt;}
._1_c00138{margin-left:-1.344000pt;}
._0_c00138{width:1.088000pt;}
._3_c00138{width:2.432000pt;}
._4_c00138{width:3.328000pt;}
.fs0_c00138{font-size:64.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y6_c00138{bottom:4.156000pt;}
.y3_c00138{bottom:4.160000pt;}
.y5_c00138{bottom:22.396000pt;}
.y4_c00138{bottom:29.156000pt;}
.y1_c00138{bottom:51.552000pt;}
.ye_c00138{bottom:123.232000pt;}
.yd_c00138{bottom:155.266667pt;}
.yc_c00138{bottom:513.440000pt;}
.yb_c00138{bottom:548.960000pt;}
.ya_c00138{bottom:576.826667pt;}
.y9_c00138{bottom:604.346667pt;}
.y8_c00138{bottom:636.346667pt;}
.y7_c00138{bottom:947.173333pt;}
.y2_c00138{bottom:989.413333pt;}
.h2_c00138{height:18.586667pt;}
.h3_c00138{height:36.796000pt;}
.h1_c00138{height:57.375000pt;}
.h5_c00138{height:62.781250pt;}
.h4_c00138{height:62.812500pt;}
.h0_c00138{height:1056.000000pt;}
.w1_c00138{width:7.346667pt;}
.w2_c00138{width:589.640000pt;}
.w0_c00138{width:816.000000pt;}
.x0_c00138{left:0.000000pt;}
.x3_c00138{left:113.324000pt;}
.x1_c00138{left:137.346667pt;}
.x4_c00138{left:690.813333pt;}
.x2_c00138{left:695.613333pt;}
}





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

.ir_c00139:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00139;src:url('chunks/assets/font_eb3e7854f96a24254f755477.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_d239f3bcc8b98b11282584bf.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_80837a14dda025f31fc475c8.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;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_c00139;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00139;src:url('chunks/assets/font_0fd80d5228475b2848f5074e.woff2')format("woff");}.ff5_c00139{font-family:ff5_c00139;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00139;src:url('chunks/assets/font_95cc356537601cdd629a0858.woff2')format("woff");}.ff6_c00139{font-family:ff6_c00139;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls4_c00139{letter-spacing:-2.880000px;}
.ls5_c00139{letter-spacing:-0.288000px;}
.ls3_c00139{letter-spacing:0.000000px;}
.ls1_c00139{letter-spacing:0.720000px;}
.ls0_c00139{letter-spacing:20.880000px;}
.ls2_c00139{letter-spacing:43.344000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:-72.000000px;}
.ws1_c00139{word-spacing:-18.000000px;}
.ws2_c00139{word-spacing:0.000000px;}
._7_c00139{margin-left:-3.599976px;}
._4_c00139{margin-left:-2.196000px;}
._0_c00139{margin-left:-1.152000px;}
._1_c00139{width:1.080000px;}
._3_c00139{width:2.796000px;}
._6_c00139{width:4.164000px;}
._9_c00139{width:6.984000px;}
._b_c00139{width:8.171976px;}
._a_c00139{width:9.612000px;}
._d_c00139{width:10.872000px;}
._c_c00139{width:12.060000px;}
._8_c00139{width:16.344000px;}
._2_c00139{width:20.736000px;}
._5_c00139{width:22.536000px;}
.fc1_c00139{color:rgb(255,0,0);}
.fc0_c00139{color:rgb(0,0,0);}
.fs0_c00139{font-size:72.000000px;}
.y0_c00139{bottom:0.000000px;}
.y6_c00139{bottom:4.675500px;}
.y3_c00139{bottom:4.680000px;}
.y5_c00139{bottom:25.195500px;}
.y4_c00139{bottom:32.800500px;}
.y1_c00139{bottom:57.996000px;}
.y17_c00139{bottom:137.916000px;}
.y16_c00139{bottom:177.915000px;}
.y15_c00139{bottom:219.315000px;}
.y14_c00139{bottom:250.275000px;}
.y13_c00139{bottom:281.265000px;}
.y12_c00139{bottom:312.225000px;}
.y11_c00139{bottom:343.545000px;}
.y10_c00139{bottom:383.505000px;}
.yf_c00139{bottom:414.510000px;}
.ye_c00139{bottom:444.390000px;}
.yd_c00139{bottom:484.350000px;}
.yc_c00139{bottom:515.310000px;}
.yb_c00139{bottom:551.340000px;}
.ya_c00139{bottom:954.285000px;}
.y9_c00139{bottom:994.245000px;}
.y8_c00139{bottom:1025.610000px;}
.y7_c00139{bottom:1065.570000px;}
.y2_c00139{bottom:1113.090000px;}
.h2_c00139{height:20.910000px;}
.h3_c00139{height:41.395500px;}
.h1_c00139{height:64.546875px;}
.h5_c00139{height:70.628906px;}
.h4_c00139{height:70.664062px;}
.h6_c00139{height:74.004654px;}
.h0_c00139{height:1188.000000px;}
.w1_c00139{width:8.265000px;}
.w2_c00139{width:663.345000px;}
.w0_c00139{width:918.000000px;}
.x0_c00139{left:0.000000px;}
.x3_c00139{left:127.489500px;}
.x1_c00139{left:154.515000px;}
.x5_c00139{left:178.635000px;}
.x4_c00139{left:777.165000px;}
.x2_c00139{left:782.565000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls4_c00139{letter-spacing:-2.560000pt;}
.ls5_c00139{letter-spacing:-0.256000pt;}
.ls3_c00139{letter-spacing:0.000000pt;}
.ls1_c00139{letter-spacing:0.640000pt;}
.ls0_c00139{letter-spacing:18.560000pt;}
.ls2_c00139{letter-spacing:38.528000pt;}
.ws0_c00139{word-spacing:-64.000000pt;}
.ws1_c00139{word-spacing:-16.000000pt;}
.ws2_c00139{word-spacing:0.000000pt;}
._7_c00139{margin-left:-3.199979pt;}
._4_c00139{margin-left:-1.952000pt;}
._0_c00139{margin-left:-1.024000pt;}
._1_c00139{width:0.960000pt;}
._3_c00139{width:2.485333pt;}
._6_c00139{width:3.701333pt;}
._9_c00139{width:6.208000pt;}
._b_c00139{width:7.263979pt;}
._a_c00139{width:8.544000pt;}
._d_c00139{width:9.664000pt;}
._c_c00139{width:10.720000pt;}
._8_c00139{width:14.528000pt;}
._2_c00139{width:18.432000pt;}
._5_c00139{width:20.032000pt;}
.fs0_c00139{font-size:64.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y6_c00139{bottom:4.156000pt;}
.y3_c00139{bottom:4.160000pt;}
.y5_c00139{bottom:22.396000pt;}
.y4_c00139{bottom:29.156000pt;}
.y1_c00139{bottom:51.552000pt;}
.y17_c00139{bottom:122.592000pt;}
.y16_c00139{bottom:158.146667pt;}
.y15_c00139{bottom:194.946667pt;}
.y14_c00139{bottom:222.466667pt;}
.y13_c00139{bottom:250.013333pt;}
.y12_c00139{bottom:277.533333pt;}
.y11_c00139{bottom:305.373333pt;}
.y10_c00139{bottom:340.893333pt;}
.yf_c00139{bottom:368.453333pt;}
.ye_c00139{bottom:395.013333pt;}
.yd_c00139{bottom:430.533333pt;}
.yc_c00139{bottom:458.053333pt;}
.yb_c00139{bottom:490.080000pt;}
.ya_c00139{bottom:848.253333pt;}
.y9_c00139{bottom:883.773333pt;}
.y8_c00139{bottom:911.653333pt;}
.y7_c00139{bottom:947.173333pt;}
.y2_c00139{bottom:989.413333pt;}
.h2_c00139{height:18.586667pt;}
.h3_c00139{height:36.796000pt;}
.h1_c00139{height:57.375000pt;}
.h5_c00139{height:62.781250pt;}
.h4_c00139{height:62.812500pt;}
.h6_c00139{height:65.781915pt;}
.h0_c00139{height:1056.000000pt;}
.w1_c00139{width:7.346667pt;}
.w2_c00139{width:589.640000pt;}
.w0_c00139{width:816.000000pt;}
.x0_c00139{left:0.000000pt;}
.x3_c00139{left:113.324000pt;}
.x1_c00139{left:137.346667pt;}
.x5_c00139{left:158.786667pt;}
.x4_c00139{left:690.813333pt;}
.x2_c00139{left:695.613333pt;}
}





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

.ir_c00140:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00140;src:url('chunks/assets/font_945d478cd5769d00f98aa59d.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_a8849b869176a0e1daeefae5.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_9b1a638e74e573f6dce31305.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;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_c00140;src:url('chunks/assets/font_0fd80d5228475b2848f5074e.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00140;src:url('chunks/assets/font_ba08261c04395d6352f2ab25.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00140;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff6_c00140{font-family:ff6_c00140;line-height:1.112305;font-style:normal;font-weight: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_c00140;src:url('chunks/assets/font_7b3489d3f2638fbaea16bda1.woff2')format("woff");}.ff7_c00140{font-family:ff7_c00140;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls9_c00140{letter-spacing:-2.880000px;}
.lsa_c00140{letter-spacing:-1.440000px;}
.ls8_c00140{letter-spacing:0.000000px;}
.ls4_c00140{letter-spacing:0.120000px;}
.ls2_c00140{letter-spacing:1.440000px;}
.ls3_c00140{letter-spacing:3.600000px;}
.ls0_c00140{letter-spacing:6.480000px;}
.ls6_c00140{letter-spacing:13.680000px;}
.ls7_c00140{letter-spacing:15.120000px;}
.ls5_c00140{letter-spacing:19.440000px;}
.ls1_c00140{letter-spacing:43.344000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00140{word-spacing:-72.000000px;}
.ws2_c00140{word-spacing:-40.608000px;}
.ws0_c00140{word-spacing:-18.000000px;}
.ws3_c00140{word-spacing:0.000000px;}
._1_c00140{margin-left:-2.592000px;}
._5_c00140{margin-left:-1.116000px;}
._0_c00140{width:1.512000px;}
._6_c00140{width:3.204000px;}
._8_c00140{width:4.536024px;}
._2_c00140{width:5.556000px;}
._3_c00140{width:6.912000px;}
._11_c00140{width:7.992000px;}
._4_c00140{width:9.180000px;}
._d_c00140{width:10.668000px;}
._f_c00140{width:11.700000px;}
._e_c00140{width:13.092000px;}
._10_c00140{width:14.208024px;}
._7_c00140{width:15.768000px;}
._c_c00140{width:18.948000px;}
._b_c00140{width:23.196000px;}
._9_c00140{width:24.264000px;}
._a_c00140{width:25.272000px;}
.fc0_c00140{color:rgb(0,0,0);}
.fs0_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y6_c00140{bottom:4.675500px;}
.y3_c00140{bottom:4.680000px;}
.y5_c00140{bottom:25.195500px;}
.y4_c00140{bottom:32.800500px;}
.y1_c00140{bottom:57.996000px;}
.y22_c00140{bottom:144.756000px;}
.y21_c00140{bottom:184.755000px;}
.y20_c00140{bottom:224.715000px;}
.y1f_c00140{bottom:264.675000px;}
.y1e_c00140{bottom:305.025000px;}
.y1d_c00140{bottom:344.985000px;}
.y1c_c00140{bottom:384.945000px;}
.y1b_c00140{bottom:424.950000px;}
.y1a_c00140{bottom:456.270000px;}
.y19_c00140{bottom:487.230000px;}
.y18_c00140{bottom:518.220000px;}
.y17_c00140{bottom:549.180000px;}
.y16_c00140{bottom:580.500000px;}
.y15_c00140{bottom:611.460000px;}
.y14_c00140{bottom:642.450000px;}
.y13_c00140{bottom:673.410000px;}
.y12_c00140{bottom:704.730000px;}
.y11_c00140{bottom:735.690000px;}
.y10_c00140{bottom:766.695000px;}
.yf_c00140{bottom:797.655000px;}
.ye_c00140{bottom:828.975000px;}
.yd_c00140{bottom:868.935000px;}
.yc_c00140{bottom:910.365000px;}
.yb_c00140{bottom:941.325000px;}
.ya_c00140{bottom:972.285000px;}
.y9_c00140{bottom:1003.245000px;}
.y8_c00140{bottom:1034.610000px;}
.y7_c00140{bottom:1065.570000px;}
.y2_c00140{bottom:1113.090000px;}
.h2_c00140{height:20.910000px;}
.h3_c00140{height:41.395500px;}
.h1_c00140{height:64.546875px;}
.h4_c00140{height:70.664062px;}
.h5_c00140{height:74.004654px;}
.h0_c00140{height:1188.000000px;}
.w1_c00140{width:8.265000px;}
.w2_c00140{width:663.345000px;}
.w0_c00140{width:918.000000px;}
.x0_c00140{left:0.000000px;}
.x3_c00140{left:127.489500px;}
.x1_c00140{left:154.515000px;}
.x4_c00140{left:458.820000px;}
.x2_c00140{left:782.565000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls9_c00140{letter-spacing:-2.560000pt;}
.lsa_c00140{letter-spacing:-1.280000pt;}
.ls8_c00140{letter-spacing:0.000000pt;}
.ls4_c00140{letter-spacing:0.106667pt;}
.ls2_c00140{letter-spacing:1.280000pt;}
.ls3_c00140{letter-spacing:3.200000pt;}
.ls0_c00140{letter-spacing:5.760000pt;}
.ls6_c00140{letter-spacing:12.160000pt;}
.ls7_c00140{letter-spacing:13.440000pt;}
.ls5_c00140{letter-spacing:17.280000pt;}
.ls1_c00140{letter-spacing:38.528000pt;}
.ws1_c00140{word-spacing:-64.000000pt;}
.ws2_c00140{word-spacing:-36.096000pt;}
.ws0_c00140{word-spacing:-16.000000pt;}
.ws3_c00140{word-spacing:0.000000pt;}
._1_c00140{margin-left:-2.304000pt;}
._5_c00140{margin-left:-0.992000pt;}
._0_c00140{width:1.344000pt;}
._6_c00140{width:2.848000pt;}
._8_c00140{width:4.032021pt;}
._2_c00140{width:4.938667pt;}
._3_c00140{width:6.144000pt;}
._11_c00140{width:7.104000pt;}
._4_c00140{width:8.160000pt;}
._d_c00140{width:9.482667pt;}
._f_c00140{width:10.400000pt;}
._e_c00140{width:11.637333pt;}
._10_c00140{width:12.629355pt;}
._7_c00140{width:14.016000pt;}
._c_c00140{width:16.842667pt;}
._b_c00140{width:20.618667pt;}
._9_c00140{width:21.568000pt;}
._a_c00140{width:22.464000pt;}
.fs0_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y6_c00140{bottom:4.156000pt;}
.y3_c00140{bottom:4.160000pt;}
.y5_c00140{bottom:22.396000pt;}
.y4_c00140{bottom:29.156000pt;}
.y1_c00140{bottom:51.552000pt;}
.y22_c00140{bottom:128.672000pt;}
.y21_c00140{bottom:164.226667pt;}
.y20_c00140{bottom:199.746667pt;}
.y1f_c00140{bottom:235.266667pt;}
.y1e_c00140{bottom:271.133333pt;}
.y1d_c00140{bottom:306.653333pt;}
.y1c_c00140{bottom:342.173333pt;}
.y1b_c00140{bottom:377.733333pt;}
.y1a_c00140{bottom:405.573333pt;}
.y19_c00140{bottom:433.093333pt;}
.y18_c00140{bottom:460.640000pt;}
.y17_c00140{bottom:488.160000pt;}
.y16_c00140{bottom:516.000000pt;}
.y15_c00140{bottom:543.520000pt;}
.y14_c00140{bottom:571.066667pt;}
.y13_c00140{bottom:598.586667pt;}
.y12_c00140{bottom:626.426667pt;}
.y11_c00140{bottom:653.946667pt;}
.y10_c00140{bottom:681.506667pt;}
.yf_c00140{bottom:709.026667pt;}
.ye_c00140{bottom:736.866667pt;}
.yd_c00140{bottom:772.386667pt;}
.yc_c00140{bottom:809.213333pt;}
.yb_c00140{bottom:836.733333pt;}
.ya_c00140{bottom:864.253333pt;}
.y9_c00140{bottom:891.773333pt;}
.y8_c00140{bottom:919.653333pt;}
.y7_c00140{bottom:947.173333pt;}
.y2_c00140{bottom:989.413333pt;}
.h2_c00140{height:18.586667pt;}
.h3_c00140{height:36.796000pt;}
.h1_c00140{height:57.375000pt;}
.h4_c00140{height:62.812500pt;}
.h5_c00140{height:65.781915pt;}
.h0_c00140{height:1056.000000pt;}
.w1_c00140{width:7.346667pt;}
.w2_c00140{width:589.640000pt;}
.w0_c00140{width:816.000000pt;}
.x0_c00140{left:0.000000pt;}
.x3_c00140{left:113.324000pt;}
.x1_c00140{left:137.346667pt;}
.x4_c00140{left:407.840000pt;}
.x2_c00140{left:695.613333pt;}
}





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

.ir_c00141:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00141;src:url('chunks/assets/font_d3d513adbd001a55221fd0b1.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:0.000000px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs0_c00141{font-size:72.000000px;}
.y0_c00141{bottom:0.000000px;}
.y6_c00141{bottom:4.675500px;}
.y3_c00141{bottom:4.680000px;}
.y5_c00141{bottom:25.195500px;}
.y4_c00141{bottom:32.800500px;}
.y1_c00141{bottom:57.996000px;}
.y1e_c00141{bottom:143.676000px;}
.y1d_c00141{bottom:183.675000px;}
.y1c_c00141{bottom:223.995000px;}
.y1b_c00141{bottom:263.955000px;}
.y1a_c00141{bottom:303.945000px;}
.y19_c00141{bottom:343.905000px;}
.y18_c00141{bottom:384.225000px;}
.y17_c00141{bottom:424.230000px;}
.y16_c00141{bottom:464.190000px;}
.y15_c00141{bottom:504.150000px;}
.y14_c00141{bottom:544.500000px;}
.y13_c00141{bottom:584.460000px;}
.y12_c00141{bottom:624.420000px;}
.y11_c00141{bottom:664.770000px;}
.y10_c00141{bottom:705.090000px;}
.yf_c00141{bottom:745.050000px;}
.ye_c00141{bottom:785.055000px;}
.yd_c00141{bottom:825.015000px;}
.yc_c00141{bottom:865.335000px;}
.yb_c00141{bottom:905.325000px;}
.ya_c00141{bottom:945.285000px;}
.y9_c00141{bottom:985.245000px;}
.y8_c00141{bottom:1025.610000px;}
.y7_c00141{bottom:1065.570000px;}
.y2_c00141{bottom:1113.090000px;}
.h2_c00141{height:20.910000px;}
.h3_c00141{height:41.395500px;}
.h1_c00141{height:64.546875px;}
.h4_c00141{height:70.664062px;}
.h5_c00141{height:72.562500px;}
.h0_c00141{height:1188.000000px;}
.w1_c00141{width:8.265000px;}
.w2_c00141{width:663.345000px;}
.w0_c00141{width:918.000000px;}
.x0_c00141{left:0.000000px;}
.x3_c00141{left:127.489500px;}
.x1_c00141{left:154.515000px;}
.x4_c00141{left:458.820000px;}
.x2_c00141{left:782.565000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:0.000000pt;}
.fs0_c00141{font-size:64.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y6_c00141{bottom:4.156000pt;}
.y3_c00141{bottom:4.160000pt;}
.y5_c00141{bottom:22.396000pt;}
.y4_c00141{bottom:29.156000pt;}
.y1_c00141{bottom:51.552000pt;}
.y1e_c00141{bottom:127.712000pt;}
.y1d_c00141{bottom:163.266667pt;}
.y1c_c00141{bottom:199.106667pt;}
.y1b_c00141{bottom:234.626667pt;}
.y1a_c00141{bottom:270.173333pt;}
.y19_c00141{bottom:305.693333pt;}
.y18_c00141{bottom:341.533333pt;}
.y17_c00141{bottom:377.093333pt;}
.y16_c00141{bottom:412.613333pt;}
.y15_c00141{bottom:448.133333pt;}
.y14_c00141{bottom:484.000000pt;}
.y13_c00141{bottom:519.520000pt;}
.y12_c00141{bottom:555.040000pt;}
.y11_c00141{bottom:590.906667pt;}
.y10_c00141{bottom:626.746667pt;}
.yf_c00141{bottom:662.266667pt;}
.ye_c00141{bottom:697.826667pt;}
.yd_c00141{bottom:733.346667pt;}
.yc_c00141{bottom:769.186667pt;}
.yb_c00141{bottom:804.733333pt;}
.ya_c00141{bottom:840.253333pt;}
.y9_c00141{bottom:875.773333pt;}
.y8_c00141{bottom:911.653333pt;}
.y7_c00141{bottom:947.173333pt;}
.y2_c00141{bottom:989.413333pt;}
.h2_c00141{height:18.586667pt;}
.h3_c00141{height:36.796000pt;}
.h1_c00141{height:57.375000pt;}
.h4_c00141{height:62.812500pt;}
.h5_c00141{height:64.500000pt;}
.h0_c00141{height:1056.000000pt;}
.w1_c00141{width:7.346667pt;}
.w2_c00141{width:589.640000pt;}
.w0_c00141{width:816.000000pt;}
.x0_c00141{left:0.000000pt;}
.x3_c00141{left:113.324000pt;}
.x1_c00141{left:137.346667pt;}
.x4_c00141{left:407.840000pt;}
.x2_c00141{left:695.613333pt;}
}





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

.ir_c00142:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00142;src:url('chunks/assets/font_893fffa2dd3be52f6819d7a1.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_f7f6bfb06a73be1122a15de8.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_e4d710a1cc6da915c47c62c8.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;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_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls1_c00142{letter-spacing:-0.432000px;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00142{word-spacing:-26.568000px;}
.ws1_c00142{word-spacing:0.000000px;}
._0_c00142{margin-left:-1.080000px;}
._1_c00142{width:1.080000px;}
.fc0_c00142{color:rgb(0,0,0);}
.fs0_c00142{font-size:72.000000px;}
.fs1_c00142{font-size:108.000000px;}
.y0_c00142{bottom:0.000000px;}
.y6_c00142{bottom:4.675500px;}
.y3_c00142{bottom:4.680000px;}
.y5_c00142{bottom:25.195500px;}
.y4_c00142{bottom:32.800500px;}
.y1_c00142{bottom:57.996000px;}
.y1c_c00142{bottom:133.236000px;}
.y1b_c00142{bottom:173.235000px;}
.y1a_c00142{bottom:213.195000px;}
.y19_c00142{bottom:253.515000px;}
.y18_c00142{bottom:293.505000px;}
.y17_c00142{bottom:333.465000px;}
.y16_c00142{bottom:373.425000px;}
.y15_c00142{bottom:420.630000px;}
.y14_c00142{bottom:467.070000px;}
.y13_c00142{bottom:522.540000px;}
.y12_c00142{bottom:578.340000px;}
.y11_c00142{bottom:624.780000px;}
.y10_c00142{bottom:680.250000px;}
.yf_c00142{bottom:736.050000px;}
.ye_c00142{bottom:784.695000px;}
.yd_c00142{bottom:824.655000px;}
.yc_c00142{bottom:864.975000px;}
.yb_c00142{bottom:904.965000px;}
.ya_c00142{bottom:944.925000px;}
.y9_c00142{bottom:984.885000px;}
.y8_c00142{bottom:1025.250000px;}
.y7_c00142{bottom:1065.210000px;}
.y2_c00142{bottom:1113.090000px;}
.h2_c00142{height:20.910000px;}
.h3_c00142{height:41.395500px;}
.h1_c00142{height:64.546875px;}
.h7_c00142{height:70.628906px;}
.h4_c00142{height:72.562500px;}
.h6_c00142{height:105.943359px;}
.h5_c00142{height:108.843750px;}
.h0_c00142{height:1188.000000px;}
.w1_c00142{width:8.265000px;}
.w2_c00142{width:663.345000px;}
.w0_c00142{width:918.000000px;}
.x0_c00142{left:0.000000px;}
.x3_c00142{left:127.489500px;}
.x1_c00142{left:154.515000px;}
.x9_c00142{left:160.635000px;}
.x6_c00142{left:199.875000px;}
.x7_c00142{left:272.265000px;}
.x5_c00142{left:374.550000px;}
.xa_c00142{left:408.030000px;}
.x8_c00142{left:445.500000px;}
.x4_c00142{left:458.820000px;}
.x2_c00142{left:782.565000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls1_c00142{letter-spacing:-0.384000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:-23.616000pt;}
.ws1_c00142{word-spacing:0.000000pt;}
._0_c00142{margin-left:-0.960000pt;}
._1_c00142{width:0.960000pt;}
.fs0_c00142{font-size:64.000000pt;}
.fs1_c00142{font-size:96.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y6_c00142{bottom:4.156000pt;}
.y3_c00142{bottom:4.160000pt;}
.y5_c00142{bottom:22.396000pt;}
.y4_c00142{bottom:29.156000pt;}
.y1_c00142{bottom:51.552000pt;}
.y1c_c00142{bottom:118.432000pt;}
.y1b_c00142{bottom:153.986667pt;}
.y1a_c00142{bottom:189.506667pt;}
.y19_c00142{bottom:225.346667pt;}
.y18_c00142{bottom:260.893333pt;}
.y17_c00142{bottom:296.413333pt;}
.y16_c00142{bottom:331.933333pt;}
.y15_c00142{bottom:373.893333pt;}
.y14_c00142{bottom:415.173333pt;}
.y13_c00142{bottom:464.480000pt;}
.y12_c00142{bottom:514.080000pt;}
.y11_c00142{bottom:555.360000pt;}
.y10_c00142{bottom:604.666667pt;}
.yf_c00142{bottom:654.266667pt;}
.ye_c00142{bottom:697.506667pt;}
.yd_c00142{bottom:733.026667pt;}
.yc_c00142{bottom:768.866667pt;}
.yb_c00142{bottom:804.413333pt;}
.ya_c00142{bottom:839.933333pt;}
.y9_c00142{bottom:875.453333pt;}
.y8_c00142{bottom:911.333333pt;}
.y7_c00142{bottom:946.853333pt;}
.y2_c00142{bottom:989.413333pt;}
.h2_c00142{height:18.586667pt;}
.h3_c00142{height:36.796000pt;}
.h1_c00142{height:57.375000pt;}
.h7_c00142{height:62.781250pt;}
.h4_c00142{height:64.500000pt;}
.h6_c00142{height:94.171875pt;}
.h5_c00142{height:96.750000pt;}
.h0_c00142{height:1056.000000pt;}
.w1_c00142{width:7.346667pt;}
.w2_c00142{width:589.640000pt;}
.w0_c00142{width:816.000000pt;}
.x0_c00142{left:0.000000pt;}
.x3_c00142{left:113.324000pt;}
.x1_c00142{left:137.346667pt;}
.x9_c00142{left:142.786667pt;}
.x6_c00142{left:177.666667pt;}
.x7_c00142{left:242.013333pt;}
.x5_c00142{left:332.933333pt;}
.xa_c00142{left:362.693333pt;}
.x8_c00142{left:396.000000pt;}
.x4_c00142{left:407.840000pt;}
.x2_c00142{left:695.613333pt;}
}





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

.ir_c00143:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00143;src:url('chunks/assets/font_dc39f37a3a059faa5218c5f9.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_b69c7612e8b7b436757fd593.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_2ff8dc1fe6fae77a529b5013.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;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_c00143;src:url('chunks/assets/font_0ae5364db7e2536a048c9248.woff2')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00143;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff6_c00143{font-family:ff6_c00143;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls6_c00143{letter-spacing:0.000000px;}
.ls1_c00143{letter-spacing:0.504000px;}
.ls4_c00143{letter-spacing:0.720000px;}
.ls0_c00143{letter-spacing:1.944000px;}
.ls5_c00143{letter-spacing:2.160000px;}
.ls2_c00143{letter-spacing:16.560000px;}
.ls3_c00143{letter-spacing:19.440000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00143{word-spacing:-34.110720px;}
.ws0_c00143{word-spacing:-18.000000px;}
.ws1_c00143{word-spacing:-15.120000px;}
.ws3_c00143{word-spacing:0.000000px;}
._f_c00143{margin-left:-3.672000px;}
._3_c00143{margin-left:-2.232000px;}
._0_c00143{margin-left:-1.080000px;}
._4_c00143{width:1.080000px;}
._2_c00143{width:2.088000px;}
._6_c00143{width:3.096000px;}
._11_c00143{width:4.104000px;}
._e_c00143{width:5.112000px;}
._14_c00143{width:6.336000px;}
._7_c00143{width:7.632000px;}
._13_c00143{width:9.000000px;}
._1_c00143{width:10.728000px;}
._5_c00143{width:11.736000px;}
._12_c00143{width:13.104000px;}
._9_c00143{width:14.184000px;}
._8_c00143{width:15.336000px;}
._a_c00143{width:16.416000px;}
._b_c00143{width:19.068000px;}
._15_c00143{width:20.316000px;}
._d_c00143{width:26.280000px;}
._c_c00143{width:27.360000px;}
._10_c00143{width:64.740024px;}
.fc1_c00143{color:rgb(255,0,0);}
.fc0_c00143{color:rgb(0,0,0);}
.fs2_c00143{font-size:38.880000px;}
.fs1_c00143{font-size:47.520000px;}
.fs3_c00143{font-size:60.480000px;}
.fs0_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y6_c00143{bottom:4.675500px;}
.y3_c00143{bottom:4.680000px;}
.y5_c00143{bottom:25.195500px;}
.y4_c00143{bottom:32.800500px;}
.y1_c00143{bottom:57.996000px;}
.y2a_c00143{bottom:130.716000px;}
.y29_c00143{bottom:147.996000px;}
.y28_c00143{bottom:164.955000px;}
.y27_c00143{bottom:182.235000px;}
.y26_c00143{bottom:199.515000px;}
.y25_c00143{bottom:216.795000px;}
.y24_c00143{bottom:234.075000px;}
.y23_c00143{bottom:251.355000px;}
.y22_c00143{bottom:268.635000px;}
.y21_c00143{bottom:275.505000px;}
.y20_c00143{bottom:286.305000px;}
.y1f_c00143{bottom:324.105000px;}
.y1e_c00143{bottom:355.065000px;}
.y1d_c00143{bottom:386.385000px;}
.y1c_c00143{bottom:417.390000px;}
.y1b_c00143{bottom:448.350000px;}
.y1a_c00143{bottom:479.310000px;}
.y19_c00143{bottom:510.630000px;}
.y18_c00143{bottom:541.620000px;}
.y17_c00143{bottom:572.580000px;}
.y16_c00143{bottom:603.540000px;}
.y15_c00143{bottom:634.860000px;}
.y14_c00143{bottom:665.850000px;}
.y13_c00143{bottom:696.810000px;}
.y12_c00143{bottom:736.770000px;}
.y11_c00143{bottom:768.135000px;}
.y10_c00143{bottom:799.095000px;}
.ye_c00143{bottom:839.055000px;}
.yf_c00143{bottom:847.335000px;}
.yd_c00143{bottom:870.015000px;}
.yc_c00143{bottom:901.365000px;}
.yb_c00143{bottom:932.325000px;}
.ya_c00143{bottom:963.285000px;}
.y9_c00143{bottom:994.245000px;}
.y8_c00143{bottom:1025.610000px;}
.y7_c00143{bottom:1065.210000px;}
.y2_c00143{bottom:1113.090000px;}
.h2_c00143{height:20.910000px;}
.h8_c00143{height:38.158594px;}
.h3_c00143{height:41.395500px;}
.h7_c00143{height:46.638281px;}
.h9_c00143{height:59.357813px;}
.h1_c00143{height:64.546875px;}
.h4_c00143{height:70.628906px;}
.h5_c00143{height:70.664062px;}
.h6_c00143{height:1187.995500px;}
.h0_c00143{height:1188.000000px;}
.w1_c00143{width:8.265000px;}
.w2_c00143{width:663.345000px;}
.w3_c00143{width:917.997000px;}
.w0_c00143{width:918.000000px;}
.x0_c00143{left:0.000000px;}
.x3_c00143{left:127.489500px;}
.x7_c00143{left:137.556000px;}
.x1_c00143{left:154.515000px;}
.x4_c00143{left:216.792000px;}
.x5_c00143{left:229.035000px;}
.x6_c00143{left:343.590000px;}
.x2_c00143{left:782.565000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls6_c00143{letter-spacing:0.000000pt;}
.ls1_c00143{letter-spacing:0.448000pt;}
.ls4_c00143{letter-spacing:0.640000pt;}
.ls0_c00143{letter-spacing:1.728000pt;}
.ls5_c00143{letter-spacing:1.920000pt;}
.ls2_c00143{letter-spacing:14.720000pt;}
.ls3_c00143{letter-spacing:17.280000pt;}
.ws2_c00143{word-spacing:-30.320640pt;}
.ws0_c00143{word-spacing:-16.000000pt;}
.ws1_c00143{word-spacing:-13.440000pt;}
.ws3_c00143{word-spacing:0.000000pt;}
._f_c00143{margin-left:-3.264000pt;}
._3_c00143{margin-left:-1.984000pt;}
._0_c00143{margin-left:-0.960000pt;}
._4_c00143{width:0.960000pt;}
._2_c00143{width:1.856000pt;}
._6_c00143{width:2.752000pt;}
._11_c00143{width:3.648000pt;}
._e_c00143{width:4.544000pt;}
._14_c00143{width:5.632000pt;}
._7_c00143{width:6.784000pt;}
._13_c00143{width:8.000000pt;}
._1_c00143{width:9.536000pt;}
._5_c00143{width:10.432000pt;}
._12_c00143{width:11.648000pt;}
._9_c00143{width:12.608000pt;}
._8_c00143{width:13.632000pt;}
._a_c00143{width:14.592000pt;}
._b_c00143{width:16.949333pt;}
._15_c00143{width:18.058667pt;}
._d_c00143{width:23.360000pt;}
._c_c00143{width:24.320000pt;}
._10_c00143{width:57.546688pt;}
.fs2_c00143{font-size:34.560000pt;}
.fs1_c00143{font-size:42.240000pt;}
.fs3_c00143{font-size:53.760000pt;}
.fs0_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y6_c00143{bottom:4.156000pt;}
.y3_c00143{bottom:4.160000pt;}
.y5_c00143{bottom:22.396000pt;}
.y4_c00143{bottom:29.156000pt;}
.y1_c00143{bottom:51.552000pt;}
.y2a_c00143{bottom:116.192000pt;}
.y29_c00143{bottom:131.552000pt;}
.y28_c00143{bottom:146.626667pt;}
.y27_c00143{bottom:161.986667pt;}
.y26_c00143{bottom:177.346667pt;}
.y25_c00143{bottom:192.706667pt;}
.y24_c00143{bottom:208.066667pt;}
.y23_c00143{bottom:223.426667pt;}
.y22_c00143{bottom:238.786667pt;}
.y21_c00143{bottom:244.893333pt;}
.y20_c00143{bottom:254.493333pt;}
.y1f_c00143{bottom:288.093333pt;}
.y1e_c00143{bottom:315.613333pt;}
.y1d_c00143{bottom:343.453333pt;}
.y1c_c00143{bottom:371.013333pt;}
.y1b_c00143{bottom:398.533333pt;}
.y1a_c00143{bottom:426.053333pt;}
.y19_c00143{bottom:453.893333pt;}
.y18_c00143{bottom:481.440000pt;}
.y17_c00143{bottom:508.960000pt;}
.y16_c00143{bottom:536.480000pt;}
.y15_c00143{bottom:564.320000pt;}
.y14_c00143{bottom:591.866667pt;}
.y13_c00143{bottom:619.386667pt;}
.y12_c00143{bottom:654.906667pt;}
.y11_c00143{bottom:682.786667pt;}
.y10_c00143{bottom:710.306667pt;}
.ye_c00143{bottom:745.826667pt;}
.yf_c00143{bottom:753.186667pt;}
.yd_c00143{bottom:773.346667pt;}
.yc_c00143{bottom:801.213333pt;}
.yb_c00143{bottom:828.733333pt;}
.ya_c00143{bottom:856.253333pt;}
.y9_c00143{bottom:883.773333pt;}
.y8_c00143{bottom:911.653333pt;}
.y7_c00143{bottom:946.853333pt;}
.y2_c00143{bottom:989.413333pt;}
.h2_c00143{height:18.586667pt;}
.h8_c00143{height:33.918750pt;}
.h3_c00143{height:36.796000pt;}
.h7_c00143{height:41.456250pt;}
.h9_c00143{height:52.762500pt;}
.h1_c00143{height:57.375000pt;}
.h4_c00143{height:62.781250pt;}
.h5_c00143{height:62.812500pt;}
.h6_c00143{height:1055.996000pt;}
.h0_c00143{height:1056.000000pt;}
.w1_c00143{width:7.346667pt;}
.w2_c00143{width:589.640000pt;}
.w3_c00143{width:815.997333pt;}
.w0_c00143{width:816.000000pt;}
.x0_c00143{left:0.000000pt;}
.x3_c00143{left:113.324000pt;}
.x7_c00143{left:122.272000pt;}
.x1_c00143{left:137.346667pt;}
.x4_c00143{left:192.704000pt;}
.x5_c00143{left:203.586667pt;}
.x6_c00143{left:305.413333pt;}
.x2_c00143{left:695.613333pt;}
}





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

.ir_c00144:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00144;src:url('chunks/assets/font_d3d513adbd001a55221fd0b1.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_334a4b301d0700fbfb7da406.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_d0be504fbe2af0a7ec69e14c.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;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_c00144;src:url('chunks/assets/font_b7d7e3eb82c6dda1cbffb77e.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00144;src:url('chunks/assets/font_87939a59bffc04f0e938fae6.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls6_c00144{letter-spacing:-2.880000px;}
.ls5_c00144{letter-spacing:-1.422000px;}
.ls3_c00144{letter-spacing:0.000000px;}
.ls4_c00144{letter-spacing:0.020400px;}
.ls2_c00144{letter-spacing:0.120000px;}
.ls0_c00144{letter-spacing:0.504000px;}
.ls1_c00144{letter-spacing:0.720000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00144{word-spacing:-72.000000px;}
.ws3_c00144{word-spacing:-60.480000px;}
.ws0_c00144{word-spacing:-18.000000px;}
.ws2_c00144{word-spacing:-15.120000px;}
.ws4_c00144{word-spacing:0.000000px;}
._5_c00144{margin-left:-3.096000px;}
._1_c00144{margin-left:-2.088000px;}
._2_c00144{margin-left:-1.080000px;}
._0_c00144{width:1.440000px;}
._3_c00144{width:3.024000px;}
._4_c00144{width:5.027976px;}
._8_c00144{width:6.132024px;}
._6_c00144{width:7.560000px;}
._7_c00144{width:8.784000px;}
._f_c00144{width:10.368000px;}
._e_c00144{width:11.736000px;}
._10_c00144{width:13.008000px;}
._12_c00144{width:14.340000px;}
._13_c00144{width:16.704000px;}
._9_c00144{width:19.080000px;}
._a_c00144{width:20.736000px;}
._d_c00144{width:35.928000px;}
._b_c00144{width:37.584000px;}
._c_c00144{width:39.024000px;}
._11_c00144{width:80.868024px;}
.fc0_c00144{color:rgb(0,0,0);}
.fs2_c00144{font-size:38.880000px;}
.fs1_c00144{font-size:47.520000px;}
.fs3_c00144{font-size:60.480000px;}
.fs0_c00144{font-size:72.000000px;}
.y0_c00144{bottom:0.000000px;}
.y6_c00144{bottom:4.675500px;}
.y3_c00144{bottom:4.680000px;}
.y5_c00144{bottom:25.195500px;}
.y4_c00144{bottom:32.800500px;}
.y1_c00144{bottom:57.996000px;}
.y2d_c00144{bottom:130.716000px;}
.y2c_c00144{bottom:147.996000px;}
.y2b_c00144{bottom:164.955000px;}
.y2a_c00144{bottom:182.235000px;}
.y29_c00144{bottom:189.075000px;}
.y28_c00144{bottom:199.515000px;}
.y27_c00144{bottom:216.795000px;}
.y26_c00144{bottom:223.635000px;}
.y25_c00144{bottom:234.075000px;}
.y24_c00144{bottom:251.355000px;}
.y23_c00144{bottom:268.635000px;}
.y22_c00144{bottom:275.505000px;}
.y21_c00144{bottom:286.305000px;}
.y20_c00144{bottom:337.065000px;}
.y1f_c00144{bottom:377.385000px;}
.y1e_c00144{bottom:408.390000px;}
.y1d_c00144{bottom:448.350000px;}
.y1c_c00144{bottom:479.310000px;}
.y1b_c00144{bottom:519.660000px;}
.y1a_c00144{bottom:550.620000px;}
.y19_c00144{bottom:581.580000px;}
.y17_c00144{bottom:612.540000px;}
.y18_c00144{bottom:620.820000px;}
.y16_c00144{bottom:643.890000px;}
.y15_c00144{bottom:674.850000px;}
.y14_c00144{bottom:705.810000px;}
.y13_c00144{bottom:736.770000px;}
.y12_c00144{bottom:768.135000px;}
.y10_c00144{bottom:808.095000px;}
.y11_c00144{bottom:816.375000px;}
.yf_c00144{bottom:839.055000px;}
.ye_c00144{bottom:870.015000px;}
.yd_c00144{bottom:901.365000px;}
.yc_c00144{bottom:941.325000px;}
.yb_c00144{bottom:972.285000px;}
.ya_c00144{bottom:1003.245000px;}
.y8_c00144{bottom:1034.610000px;}
.y9_c00144{bottom:1042.890000px;}
.y7_c00144{bottom:1065.570000px;}
.y2_c00144{bottom:1113.090000px;}
.h2_c00144{height:20.910000px;}
.h7_c00144{height:38.158594px;}
.h3_c00144{height:41.395500px;}
.h6_c00144{height:46.638281px;}
.h8_c00144{height:59.357813px;}
.h1_c00144{height:64.546875px;}
.h4_c00144{height:70.664062px;}
.h5_c00144{height:1187.995500px;}
.h0_c00144{height:1188.000000px;}
.w1_c00144{width:8.265000px;}
.w2_c00144{width:663.345000px;}
.w3_c00144{width:917.997000px;}
.w0_c00144{width:918.000000px;}
.x0_c00144{left:0.000000px;}
.x3_c00144{left:127.489500px;}
.xb_c00144{left:137.556000px;}
.x1_c00144{left:154.515000px;}
.xa_c00144{left:343.590000px;}
.x8_c00144{left:362.667000px;}
.x4_c00144{left:373.467000px;}
.x9_c00144{left:374.910000px;}
.x5_c00144{left:385.710000px;}
.x6_c00144{left:548.487000px;}
.x7_c00144{left:560.730000px;}
.x2_c00144{left:782.565000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls6_c00144{letter-spacing:-2.560000pt;}
.ls5_c00144{letter-spacing:-1.264000pt;}
.ls3_c00144{letter-spacing:0.000000pt;}
.ls4_c00144{letter-spacing:0.018133pt;}
.ls2_c00144{letter-spacing:0.106667pt;}
.ls0_c00144{letter-spacing:0.448000pt;}
.ls1_c00144{letter-spacing:0.640000pt;}
.ws1_c00144{word-spacing:-64.000000pt;}
.ws3_c00144{word-spacing:-53.760000pt;}
.ws0_c00144{word-spacing:-16.000000pt;}
.ws2_c00144{word-spacing:-13.440000pt;}
.ws4_c00144{word-spacing:0.000000pt;}
._5_c00144{margin-left:-2.752000pt;}
._1_c00144{margin-left:-1.856000pt;}
._2_c00144{margin-left:-0.960000pt;}
._0_c00144{width:1.280000pt;}
._3_c00144{width:2.688000pt;}
._4_c00144{width:4.469312pt;}
._8_c00144{width:5.450688pt;}
._6_c00144{width:6.720000pt;}
._7_c00144{width:7.808000pt;}
._f_c00144{width:9.216000pt;}
._e_c00144{width:10.432000pt;}
._10_c00144{width:11.562667pt;}
._12_c00144{width:12.746667pt;}
._13_c00144{width:14.848000pt;}
._9_c00144{width:16.960000pt;}
._a_c00144{width:18.432000pt;}
._d_c00144{width:31.936000pt;}
._b_c00144{width:33.408000pt;}
._c_c00144{width:34.688000pt;}
._11_c00144{width:71.882688pt;}
.fs2_c00144{font-size:34.560000pt;}
.fs1_c00144{font-size:42.240000pt;}
.fs3_c00144{font-size:53.760000pt;}
.fs0_c00144{font-size:64.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y6_c00144{bottom:4.156000pt;}
.y3_c00144{bottom:4.160000pt;}
.y5_c00144{bottom:22.396000pt;}
.y4_c00144{bottom:29.156000pt;}
.y1_c00144{bottom:51.552000pt;}
.y2d_c00144{bottom:116.192000pt;}
.y2c_c00144{bottom:131.552000pt;}
.y2b_c00144{bottom:146.626667pt;}
.y2a_c00144{bottom:161.986667pt;}
.y29_c00144{bottom:168.066667pt;}
.y28_c00144{bottom:177.346667pt;}
.y27_c00144{bottom:192.706667pt;}
.y26_c00144{bottom:198.786667pt;}
.y25_c00144{bottom:208.066667pt;}
.y24_c00144{bottom:223.426667pt;}
.y23_c00144{bottom:238.786667pt;}
.y22_c00144{bottom:244.893333pt;}
.y21_c00144{bottom:254.493333pt;}
.y20_c00144{bottom:299.613333pt;}
.y1f_c00144{bottom:335.453333pt;}
.y1e_c00144{bottom:363.013333pt;}
.y1d_c00144{bottom:398.533333pt;}
.y1c_c00144{bottom:426.053333pt;}
.y1b_c00144{bottom:461.920000pt;}
.y1a_c00144{bottom:489.440000pt;}
.y19_c00144{bottom:516.960000pt;}
.y17_c00144{bottom:544.480000pt;}
.y18_c00144{bottom:551.840000pt;}
.y16_c00144{bottom:572.346667pt;}
.y15_c00144{bottom:599.866667pt;}
.y14_c00144{bottom:627.386667pt;}
.y13_c00144{bottom:654.906667pt;}
.y12_c00144{bottom:682.786667pt;}
.y10_c00144{bottom:718.306667pt;}
.y11_c00144{bottom:725.666667pt;}
.yf_c00144{bottom:745.826667pt;}
.ye_c00144{bottom:773.346667pt;}
.yd_c00144{bottom:801.213333pt;}
.yc_c00144{bottom:836.733333pt;}
.yb_c00144{bottom:864.253333pt;}
.ya_c00144{bottom:891.773333pt;}
.y8_c00144{bottom:919.653333pt;}
.y9_c00144{bottom:927.013333pt;}
.y7_c00144{bottom:947.173333pt;}
.y2_c00144{bottom:989.413333pt;}
.h2_c00144{height:18.586667pt;}
.h7_c00144{height:33.918750pt;}
.h3_c00144{height:36.796000pt;}
.h6_c00144{height:41.456250pt;}
.h8_c00144{height:52.762500pt;}
.h1_c00144{height:57.375000pt;}
.h4_c00144{height:62.812500pt;}
.h5_c00144{height:1055.996000pt;}
.h0_c00144{height:1056.000000pt;}
.w1_c00144{width:7.346667pt;}
.w2_c00144{width:589.640000pt;}
.w3_c00144{width:815.997333pt;}
.w0_c00144{width:816.000000pt;}
.x0_c00144{left:0.000000pt;}
.x3_c00144{left:113.324000pt;}
.xb_c00144{left:122.272000pt;}
.x1_c00144{left:137.346667pt;}
.xa_c00144{left:305.413333pt;}
.x8_c00144{left:322.370667pt;}
.x4_c00144{left:331.970667pt;}
.x9_c00144{left:333.253333pt;}
.x5_c00144{left:342.853333pt;}
.x6_c00144{left:487.544000pt;}
.x7_c00144{left:498.426667pt;}
.x2_c00144{left:695.613333pt;}
}





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

.ir_c00145:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00145;src:url('chunks/assets/font_e78d636e1ac66438f7566be7.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_afde10f9117af38f1fac762f.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00145;src:url('chunks/assets/font_8a96f2ce5d29205b4c4e4234.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;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_c00145;src:url('chunks/assets/font_47651126bbf22e4f9c8dfd54.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls2_c00145{letter-spacing:-0.936000px;}
.ls3_c00145{letter-spacing:-0.720000px;}
.ls1_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:0.720000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:-18.000000px;}
.ws1_c00145{word-spacing:-17.064000px;}
.ws2_c00145{word-spacing:0.000000px;}
._1_c00145{margin-left:-2.880000px;}
._3_c00145{margin-left:-1.728000px;}
._0_c00145{width:1.080000px;}
._2_c00145{width:2.592000px;}
._9_c00145{width:3.672000px;}
._4_c00145{width:5.387976px;}
._f_c00145{width:7.056000px;}
._10_c00145{width:8.400048px;}
._12_c00145{width:10.584000px;}
._e_c00145{width:11.592000px;}
._11_c00145{width:12.600000px;}
._d_c00145{width:13.896000px;}
._13_c00145{width:15.048000px;}
._14_c00145{width:16.848000px;}
._17_c00145{width:19.008000px;}
._18_c00145{width:20.016000px;}
._16_c00145{width:21.719880px;}
._7_c00145{width:22.800024px;}
._6_c00145{width:24.480000px;}
._8_c00145{width:25.848000px;}
._b_c00145{width:26.928000px;}
._a_c00145{width:28.296000px;}
._c_c00145{width:29.424000px;}
._5_c00145{width:61.932024px;}
._15_c00145{width:168.636024px;}
.fc1_c00145{color:rgb(255,0,0);}
.fc0_c00145{color:rgb(0,0,0);}
.fs2_c00145{font-size:38.880000px;}
.fs1_c00145{font-size:47.520000px;}
.fs3_c00145{font-size:60.480000px;}
.fs0_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y6_c00145{bottom:4.675500px;}
.y3_c00145{bottom:4.680000px;}
.y5_c00145{bottom:25.195500px;}
.y4_c00145{bottom:32.800500px;}
.y1_c00145{bottom:57.996000px;}
.y27_c00145{bottom:130.716000px;}
.y26_c00145{bottom:147.996000px;}
.y25_c00145{bottom:154.875000px;}
.y24_c00145{bottom:165.675000px;}
.y23_c00145{bottom:199.875000px;}
.y22_c00145{bottom:230.835000px;}
.y20_c00145{bottom:262.155000px;}
.y21_c00145{bottom:270.435000px;}
.y1f_c00145{bottom:293.145000px;}
.y1e_c00145{bottom:324.105000px;}
.y1d_c00145{bottom:355.065000px;}
.y1c_c00145{bottom:386.385000px;}
.y1b_c00145{bottom:417.390000px;}
.y1a_c00145{bottom:448.350000px;}
.y19_c00145{bottom:479.310000px;}
.y18_c00145{bottom:510.630000px;}
.y17_c00145{bottom:550.620000px;}
.y16_c00145{bottom:581.580000px;}
.y15_c00145{bottom:612.540000px;}
.y14_c00145{bottom:643.890000px;}
.y13_c00145{bottom:674.850000px;}
.y12_c00145{bottom:705.810000px;}
.y11_c00145{bottom:736.770000px;}
.y10_c00145{bottom:768.135000px;}
.yf_c00145{bottom:799.095000px;}
.ye_c00145{bottom:830.055000px;}
.yd_c00145{bottom:861.015000px;}
.yc_c00145{bottom:892.365000px;}
.yb_c00145{bottom:932.325000px;}
.ya_c00145{bottom:963.285000px;}
.y9_c00145{bottom:994.245000px;}
.y8_c00145{bottom:1025.610000px;}
.y7_c00145{bottom:1065.570000px;}
.y2_c00145{bottom:1113.090000px;}
.h2_c00145{height:20.910000px;}
.h7_c00145{height:34.855313px;}
.h3_c00145{height:41.395500px;}
.h6_c00145{height:46.638281px;}
.h8_c00145{height:54.219375px;}
.h1_c00145{height:64.546875px;}
.h4_c00145{height:70.664062px;}
.h5_c00145{height:1187.995500px;}
.h0_c00145{height:1188.000000px;}
.w1_c00145{width:8.265000px;}
.w2_c00145{width:663.345000px;}
.w3_c00145{width:917.997000px;}
.w0_c00145{width:918.000000px;}
.x0_c00145{left:0.000000px;}
.x3_c00145{left:127.489500px;}
.x7_c00145{left:137.556000px;}
.x1_c00145{left:154.515000px;}
.x6_c00145{left:343.590000px;}
.x4_c00145{left:400.467000px;}
.x5_c00145{left:412.710000px;}
.x2_c00145{left:782.565000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls2_c00145{letter-spacing:-0.832000pt;}
.ls3_c00145{letter-spacing:-0.640000pt;}
.ls1_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:0.640000pt;}
.ws0_c00145{word-spacing:-16.000000pt;}
.ws1_c00145{word-spacing:-15.168000pt;}
.ws2_c00145{word-spacing:0.000000pt;}
._1_c00145{margin-left:-2.560000pt;}
._3_c00145{margin-left:-1.536000pt;}
._0_c00145{width:0.960000pt;}
._2_c00145{width:2.304000pt;}
._9_c00145{width:3.264000pt;}
._4_c00145{width:4.789312pt;}
._f_c00145{width:6.272000pt;}
._10_c00145{width:7.466709pt;}
._12_c00145{width:9.408000pt;}
._e_c00145{width:10.304000pt;}
._11_c00145{width:11.200000pt;}
._d_c00145{width:12.352000pt;}
._13_c00145{width:13.376000pt;}
._14_c00145{width:14.976000pt;}
._17_c00145{width:16.896000pt;}
._18_c00145{width:17.792000pt;}
._16_c00145{width:19.306560pt;}
._7_c00145{width:20.266688pt;}
._6_c00145{width:21.760000pt;}
._8_c00145{width:22.976000pt;}
._b_c00145{width:23.936000pt;}
._a_c00145{width:25.152000pt;}
._c_c00145{width:26.154667pt;}
._5_c00145{width:55.050688pt;}
._15_c00145{width:149.898688pt;}
.fs2_c00145{font-size:34.560000pt;}
.fs1_c00145{font-size:42.240000pt;}
.fs3_c00145{font-size:53.760000pt;}
.fs0_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y6_c00145{bottom:4.156000pt;}
.y3_c00145{bottom:4.160000pt;}
.y5_c00145{bottom:22.396000pt;}
.y4_c00145{bottom:29.156000pt;}
.y1_c00145{bottom:51.552000pt;}
.y27_c00145{bottom:116.192000pt;}
.y26_c00145{bottom:131.552000pt;}
.y25_c00145{bottom:137.666667pt;}
.y24_c00145{bottom:147.266667pt;}
.y23_c00145{bottom:177.666667pt;}
.y22_c00145{bottom:205.186667pt;}
.y20_c00145{bottom:233.026667pt;}
.y21_c00145{bottom:240.386667pt;}
.y1f_c00145{bottom:260.573333pt;}
.y1e_c00145{bottom:288.093333pt;}
.y1d_c00145{bottom:315.613333pt;}
.y1c_c00145{bottom:343.453333pt;}
.y1b_c00145{bottom:371.013333pt;}
.y1a_c00145{bottom:398.533333pt;}
.y19_c00145{bottom:426.053333pt;}
.y18_c00145{bottom:453.893333pt;}
.y17_c00145{bottom:489.440000pt;}
.y16_c00145{bottom:516.960000pt;}
.y15_c00145{bottom:544.480000pt;}
.y14_c00145{bottom:572.346667pt;}
.y13_c00145{bottom:599.866667pt;}
.y12_c00145{bottom:627.386667pt;}
.y11_c00145{bottom:654.906667pt;}
.y10_c00145{bottom:682.786667pt;}
.yf_c00145{bottom:710.306667pt;}
.ye_c00145{bottom:737.826667pt;}
.yd_c00145{bottom:765.346667pt;}
.yc_c00145{bottom:793.213333pt;}
.yb_c00145{bottom:828.733333pt;}
.ya_c00145{bottom:856.253333pt;}
.y9_c00145{bottom:883.773333pt;}
.y8_c00145{bottom:911.653333pt;}
.y7_c00145{bottom:947.173333pt;}
.y2_c00145{bottom:989.413333pt;}
.h2_c00145{height:18.586667pt;}
.h7_c00145{height:30.982500pt;}
.h3_c00145{height:36.796000pt;}
.h6_c00145{height:41.456250pt;}
.h8_c00145{height:48.195000pt;}
.h1_c00145{height:57.375000pt;}
.h4_c00145{height:62.812500pt;}
.h5_c00145{height:1055.996000pt;}
.h0_c00145{height:1056.000000pt;}
.w1_c00145{width:7.346667pt;}
.w2_c00145{width:589.640000pt;}
.w3_c00145{width:815.997333pt;}
.w0_c00145{width:816.000000pt;}
.x0_c00145{left:0.000000pt;}
.x3_c00145{left:113.324000pt;}
.x7_c00145{left:122.272000pt;}
.x1_c00145{left:137.346667pt;}
.x6_c00145{left:305.413333pt;}
.x4_c00145{left:355.970667pt;}
.x5_c00145{left:366.853333pt;}
.x2_c00145{left:695.613333pt;}
}





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

.ir_c00146:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00146;src:url('chunks/assets/font_12996afcbb0764702fcaf008.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_de6874a839e2d024e04c8611.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_a758ad92777bf4f2c8c25f29.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00146;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls0_c00146{letter-spacing:0.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:0.000000px;}
._5_c00146{margin-left:-2.736000px;}
._2_c00146{margin-left:-1.584000px;}
._0_c00146{width:1.368000px;}
._4_c00146{width:3.011976px;}
._8_c00146{width:6.912000px;}
._7_c00146{width:8.424000px;}
._9_c00146{width:9.792000px;}
._1_c00146{width:11.160000px;}
._3_c00146{width:12.960000px;}
._6_c00146{width:14.052024px;}
.fc0_c00146{color:rgb(0,0,0);}
.fs0_c00146{font-size:72.000000px;}
.y0_c00146{bottom:0.000000px;}
.y6_c00146{bottom:4.675500px;}
.y3_c00146{bottom:4.680000px;}
.y5_c00146{bottom:25.195500px;}
.y4_c00146{bottom:32.800500px;}
.y1_c00146{bottom:57.996000px;}
.y1f_c00146{bottom:121.716000px;}
.y1e_c00146{bottom:161.715000px;}
.y1d_c00146{bottom:201.675000px;}
.y1c_c00146{bottom:241.995000px;}
.y1b_c00146{bottom:281.985000px;}
.y1a_c00146{bottom:321.945000px;}
.y19_c00146{bottom:361.905000px;}
.y18_c00146{bottom:402.630000px;}
.y17_c00146{bottom:442.590000px;}
.y16_c00146{bottom:482.550000px;}
.y15_c00146{bottom:522.540000px;}
.y14_c00146{bottom:562.860000px;}
.y13_c00146{bottom:602.820000px;}
.y12_c00146{bottom:642.810000px;}
.y11_c00146{bottom:682.770000px;}
.y10_c00146{bottom:723.090000px;}
.yf_c00146{bottom:763.095000px;}
.ye_c00146{bottom:803.055000px;}
.yd_c00146{bottom:843.015000px;}
.yc_c00146{bottom:883.335000px;}
.yb_c00146{bottom:923.325000px;}
.ya_c00146{bottom:963.285000px;}
.y9_c00146{bottom:1003.245000px;}
.y8_c00146{bottom:1034.610000px;}
.y7_c00146{bottom:1065.570000px;}
.y2_c00146{bottom:1113.090000px;}
.h2_c00146{height:20.910000px;}
.h3_c00146{height:41.395500px;}
.h1_c00146{height:64.546875px;}
.h4_c00146{height:70.664062px;}
.h5_c00146{height:72.562500px;}
.h0_c00146{height:1188.000000px;}
.w1_c00146{width:8.265000px;}
.w2_c00146{width:663.345000px;}
.w0_c00146{width:918.000000px;}
.x0_c00146{left:0.000000px;}
.x3_c00146{left:127.489500px;}
.x4_c00146{left:141.156000px;}
.x1_c00146{left:154.515000px;}
.x5_c00146{left:458.820000px;}
.x2_c00146{left:782.565000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
._5_c00146{margin-left:-2.432000pt;}
._2_c00146{margin-left:-1.408000pt;}
._0_c00146{width:1.216000pt;}
._4_c00146{width:2.677312pt;}
._8_c00146{width:6.144000pt;}
._7_c00146{width:7.488000pt;}
._9_c00146{width:8.704000pt;}
._1_c00146{width:9.920000pt;}
._3_c00146{width:11.520000pt;}
._6_c00146{width:12.490688pt;}
.fs0_c00146{font-size:64.000000pt;}
.y0_c00146{bottom:0.000000pt;}
.y6_c00146{bottom:4.156000pt;}
.y3_c00146{bottom:4.160000pt;}
.y5_c00146{bottom:22.396000pt;}
.y4_c00146{bottom:29.156000pt;}
.y1_c00146{bottom:51.552000pt;}
.y1f_c00146{bottom:108.192000pt;}
.y1e_c00146{bottom:143.746667pt;}
.y1d_c00146{bottom:179.266667pt;}
.y1c_c00146{bottom:215.106667pt;}
.y1b_c00146{bottom:250.653333pt;}
.y1a_c00146{bottom:286.173333pt;}
.y19_c00146{bottom:321.693333pt;}
.y18_c00146{bottom:357.893333pt;}
.y17_c00146{bottom:393.413333pt;}
.y16_c00146{bottom:428.933333pt;}
.y15_c00146{bottom:464.480000pt;}
.y14_c00146{bottom:500.320000pt;}
.y13_c00146{bottom:535.840000pt;}
.y12_c00146{bottom:571.386667pt;}
.y11_c00146{bottom:606.906667pt;}
.y10_c00146{bottom:642.746667pt;}
.yf_c00146{bottom:678.306667pt;}
.ye_c00146{bottom:713.826667pt;}
.yd_c00146{bottom:749.346667pt;}
.yc_c00146{bottom:785.186667pt;}
.yb_c00146{bottom:820.733333pt;}
.ya_c00146{bottom:856.253333pt;}
.y9_c00146{bottom:891.773333pt;}
.y8_c00146{bottom:919.653333pt;}
.y7_c00146{bottom:947.173333pt;}
.y2_c00146{bottom:989.413333pt;}
.h2_c00146{height:18.586667pt;}
.h3_c00146{height:36.796000pt;}
.h1_c00146{height:57.375000pt;}
.h4_c00146{height:62.812500pt;}
.h5_c00146{height:64.500000pt;}
.h0_c00146{height:1056.000000pt;}
.w1_c00146{width:7.346667pt;}
.w2_c00146{width:589.640000pt;}
.w0_c00146{width:816.000000pt;}
.x0_c00146{left:0.000000pt;}
.x3_c00146{left:113.324000pt;}
.x4_c00146{left:125.472000pt;}
.x1_c00146{left:137.346667pt;}
.x5_c00146{left:407.840000pt;}
.x2_c00146{left:695.613333pt;}
}





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

.ir_c00147:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00147;src:url('chunks/assets/font_e8dcdb8dacc7368442e92b2a.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls0_c00147{letter-spacing:0.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00147{word-spacing:0.000000px;}
.fc0_c00147{color:rgb(0,0,0);}
.fs0_c00147{font-size:72.000000px;}
.y0_c00147{bottom:0.000000px;}
.y6_c00147{bottom:4.675500px;}
.y3_c00147{bottom:4.680000px;}
.y5_c00147{bottom:25.195500px;}
.y4_c00147{bottom:32.800500px;}
.y1_c00147{bottom:57.996000px;}
.y2f_c00147{bottom:112.356000px;}
.y2e_c00147{bottom:132.876000px;}
.y2d_c00147{bottom:153.435000px;}
.y2c_c00147{bottom:174.315000px;}
.y2b_c00147{bottom:194.835000px;}
.y2a_c00147{bottom:215.715000px;}
.y29_c00147{bottom:236.235000px;}
.y28_c00147{bottom:257.115000px;}
.y27_c00147{bottom:277.665000px;}
.y26_c00147{bottom:298.545000px;}
.y25_c00147{bottom:319.065000px;}
.y24_c00147{bottom:339.945000px;}
.y23_c00147{bottom:360.465000px;}
.y22_c00147{bottom:381.345000px;}
.y21_c00147{bottom:401.910000px;}
.y20_c00147{bottom:422.790000px;}
.y1f_c00147{bottom:443.310000px;}
.y1e_c00147{bottom:464.190000px;}
.y1d_c00147{bottom:484.710000px;}
.y1c_c00147{bottom:505.590000px;}
.y1b_c00147{bottom:526.140000px;}
.y1a_c00147{bottom:547.020000px;}
.y19_c00147{bottom:567.540000px;}
.y18_c00147{bottom:588.420000px;}
.y17_c00147{bottom:608.940000px;}
.y16_c00147{bottom:629.820000px;}
.y15_c00147{bottom:650.370000px;}
.y14_c00147{bottom:671.250000px;}
.y13_c00147{bottom:691.770000px;}
.y12_c00147{bottom:712.650000px;}
.y11_c00147{bottom:752.250000px;}
.y10_c00147{bottom:782.535000px;}
.yf_c00147{bottom:803.055000px;}
.ye_c00147{bottom:823.935000px;}
.yd_c00147{bottom:844.455000px;}
.yc_c00147{bottom:865.335000px;}
.yb_c00147{bottom:904.965000px;}
.ya_c00147{bottom:944.925000px;}
.y9_c00147{bottom:984.885000px;}
.y8_c00147{bottom:1025.250000px;}
.y7_c00147{bottom:1065.210000px;}
.y2_c00147{bottom:1113.090000px;}
.h2_c00147{height:20.910000px;}
.h3_c00147{height:41.395500px;}
.h1_c00147{height:64.546875px;}
.h5_c00147{height:70.664062px;}
.h4_c00147{height:72.562500px;}
.h0_c00147{height:1188.000000px;}
.w1_c00147{width:8.265000px;}
.w2_c00147{width:663.345000px;}
.w0_c00147{width:918.000000px;}
.x0_c00147{left:0.000000px;}
.x3_c00147{left:127.489500px;}
.x1_c00147{left:154.515000px;}
.x4_c00147{left:458.820000px;}
.x2_c00147{left:782.565000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws0_c00147{word-spacing:0.000000pt;}
.fs0_c00147{font-size:64.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y6_c00147{bottom:4.156000pt;}
.y3_c00147{bottom:4.160000pt;}
.y5_c00147{bottom:22.396000pt;}
.y4_c00147{bottom:29.156000pt;}
.y1_c00147{bottom:51.552000pt;}
.y2f_c00147{bottom:99.872000pt;}
.y2e_c00147{bottom:118.112000pt;}
.y2d_c00147{bottom:136.386667pt;}
.y2c_c00147{bottom:154.946667pt;}
.y2b_c00147{bottom:173.186667pt;}
.y2a_c00147{bottom:191.746667pt;}
.y29_c00147{bottom:209.986667pt;}
.y28_c00147{bottom:228.546667pt;}
.y27_c00147{bottom:246.813333pt;}
.y26_c00147{bottom:265.373333pt;}
.y25_c00147{bottom:283.613333pt;}
.y24_c00147{bottom:302.173333pt;}
.y23_c00147{bottom:320.413333pt;}
.y22_c00147{bottom:338.973333pt;}
.y21_c00147{bottom:357.253333pt;}
.y20_c00147{bottom:375.813333pt;}
.y1f_c00147{bottom:394.053333pt;}
.y1e_c00147{bottom:412.613333pt;}
.y1d_c00147{bottom:430.853333pt;}
.y1c_c00147{bottom:449.413333pt;}
.y1b_c00147{bottom:467.680000pt;}
.y1a_c00147{bottom:486.240000pt;}
.y19_c00147{bottom:504.480000pt;}
.y18_c00147{bottom:523.040000pt;}
.y17_c00147{bottom:541.280000pt;}
.y16_c00147{bottom:559.840000pt;}
.y15_c00147{bottom:578.106667pt;}
.y14_c00147{bottom:596.666667pt;}
.y13_c00147{bottom:614.906667pt;}
.y12_c00147{bottom:633.466667pt;}
.y11_c00147{bottom:668.666667pt;}
.y10_c00147{bottom:695.586667pt;}
.yf_c00147{bottom:713.826667pt;}
.ye_c00147{bottom:732.386667pt;}
.yd_c00147{bottom:750.626667pt;}
.yc_c00147{bottom:769.186667pt;}
.yb_c00147{bottom:804.413333pt;}
.ya_c00147{bottom:839.933333pt;}
.y9_c00147{bottom:875.453333pt;}
.y8_c00147{bottom:911.333333pt;}
.y7_c00147{bottom:946.853333pt;}
.y2_c00147{bottom:989.413333pt;}
.h2_c00147{height:18.586667pt;}
.h3_c00147{height:36.796000pt;}
.h1_c00147{height:57.375000pt;}
.h5_c00147{height:62.812500pt;}
.h4_c00147{height:64.500000pt;}
.h0_c00147{height:1056.000000pt;}
.w1_c00147{width:7.346667pt;}
.w2_c00147{width:589.640000pt;}
.w0_c00147{width:816.000000pt;}
.x0_c00147{left:0.000000pt;}
.x3_c00147{left:113.324000pt;}
.x1_c00147{left:137.346667pt;}
.x4_c00147{left:407.840000pt;}
.x2_c00147{left:695.613333pt;}
}





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

.ir_c00148:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00148;src:url('chunks/assets/font_bac79b473b2339b1eaa8fa55.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_d42490d16a07128789a4e312.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00148;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls0_c00148{letter-spacing:0.000000px;}
.ls1_c00148{letter-spacing:0.720000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:0.000000px;}
._1_c00148{margin-left:-1.833602px;}
._0_c00148{width:1.158049px;}
._2_c00148{width:151.029626px;}
._3_c00148{width:185.040000px;}
.fc0_c00148{color:rgb(0,0,0);}
.fs0_c00148{font-size:72.000000px;}
.fs1_c00148{font-size:96.480000px;}
.y0_c00148{bottom:0.000000px;}
.y6_c00148{bottom:4.675500px;}
.y3_c00148{bottom:4.680000px;}
.y5_c00148{bottom:25.195500px;}
.y4_c00148{bottom:32.800500px;}
.y1_c00148{bottom:57.996000px;}
.y1c_c00148{bottom:592.020000px;}
.y1b_c00148{bottom:636.660000px;}
.y1a_c00148{bottom:671.970000px;}
.y19_c00148{bottom:692.850000px;}
.y18_c00148{bottom:713.370000px;}
.y17_c00148{bottom:734.250000px;}
.y16_c00148{bottom:754.770000px;}
.y15_c00148{bottom:775.695000px;}
.y14_c00148{bottom:796.215000px;}
.y13_c00148{bottom:817.095000px;}
.y12_c00148{bottom:837.615000px;}
.y11_c00148{bottom:858.495000px;}
.y10_c00148{bottom:879.015000px;}
.yf_c00148{bottom:899.925000px;}
.ye_c00148{bottom:920.445000px;}
.yd_c00148{bottom:941.325000px;}
.yc_c00148{bottom:961.845000px;}
.yb_c00148{bottom:982.725000px;}
.ya_c00148{bottom:1003.245000px;}
.y9_c00148{bottom:1024.170000px;}
.y8_c00148{bottom:1044.690000px;}
.y7_c00148{bottom:1065.570000px;}
.y2_c00148{bottom:1113.090000px;}
.h2_c00148{height:20.910000px;}
.h3_c00148{height:41.395500px;}
.h1_c00148{height:64.546875px;}
.h5_c00148{height:70.664062px;}
.h4_c00148{height:97.233750px;}
.h0_c00148{height:1188.000000px;}
.w1_c00148{width:8.265000px;}
.w2_c00148{width:663.345000px;}
.w0_c00148{width:918.000000px;}
.x0_c00148{left:0.000000px;}
.x3_c00148{left:127.489500px;}
.x1_c00148{left:154.515000px;}
.x4_c00148{left:402.270000px;}
.x2_c00148{left:782.565000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls0_c00148{letter-spacing:0.000000pt;}
.ls1_c00148{letter-spacing:0.640000pt;}
.ws0_c00148{word-spacing:0.000000pt;}
._1_c00148{margin-left:-1.629869pt;}
._0_c00148{width:1.029377pt;}
._2_c00148{width:134.248557pt;}
._3_c00148{width:164.480000pt;}
.fs0_c00148{font-size:64.000000pt;}
.fs1_c00148{font-size:85.760000pt;}
.y0_c00148{bottom:0.000000pt;}
.y6_c00148{bottom:4.156000pt;}
.y3_c00148{bottom:4.160000pt;}
.y5_c00148{bottom:22.396000pt;}
.y4_c00148{bottom:29.156000pt;}
.y1_c00148{bottom:51.552000pt;}
.y1c_c00148{bottom:526.240000pt;}
.y1b_c00148{bottom:565.920000pt;}
.y1a_c00148{bottom:597.306667pt;}
.y19_c00148{bottom:615.866667pt;}
.y18_c00148{bottom:634.106667pt;}
.y17_c00148{bottom:652.666667pt;}
.y16_c00148{bottom:670.906667pt;}
.y15_c00148{bottom:689.506667pt;}
.y14_c00148{bottom:707.746667pt;}
.y13_c00148{bottom:726.306667pt;}
.y12_c00148{bottom:744.546667pt;}
.y11_c00148{bottom:763.106667pt;}
.y10_c00148{bottom:781.346667pt;}
.yf_c00148{bottom:799.933333pt;}
.ye_c00148{bottom:818.173333pt;}
.yd_c00148{bottom:836.733333pt;}
.yc_c00148{bottom:854.973333pt;}
.yb_c00148{bottom:873.533333pt;}
.ya_c00148{bottom:891.773333pt;}
.y9_c00148{bottom:910.373333pt;}
.y8_c00148{bottom:928.613333pt;}
.y7_c00148{bottom:947.173333pt;}
.y2_c00148{bottom:989.413333pt;}
.h2_c00148{height:18.586667pt;}
.h3_c00148{height:36.796000pt;}
.h1_c00148{height:57.375000pt;}
.h5_c00148{height:62.812500pt;}
.h4_c00148{height:86.430000pt;}
.h0_c00148{height:1056.000000pt;}
.w1_c00148{width:7.346667pt;}
.w2_c00148{width:589.640000pt;}
.w0_c00148{width:816.000000pt;}
.x0_c00148{left:0.000000pt;}
.x3_c00148{left:113.324000pt;}
.x1_c00148{left:137.346667pt;}
.x4_c00148{left:357.573333pt;}
.x2_c00148{left:695.613333pt;}
}





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

.ir_c00149:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00149;src:url('chunks/assets/font_292e1be0c03fc817d0352a28.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_b1bb3503e26ec6117c44b3bc.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_da03b33f14cf2918352ad184.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_519ae38e1a16f88173753e46.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;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_c00149;src:url('chunks/assets/font_8503aff42478db5e1963a8b7.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00149;src:url('chunks/assets/font_f419f4d96d582e1b375dceb1.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:1.112305;font-style:normal;font-weight: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_c00149;src:url('chunks/assets/font_c024418b65f690bdd8efa5a3.woff2')format("woff");}.ff7_c00149{font-family:ff7_c00149;line-height:1.311035;font-style:normal;font-weight: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_c00149;src:url('chunks/assets/font_38b6bd88bee57c9807bcd19c.woff2')format("woff");}.ff8_c00149{font-family:ff8_c00149;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls8_c00149{letter-spacing:-1.416000px;}
.ls9_c00149{letter-spacing:-0.912000px;}
.ls7_c00149{letter-spacing:-0.241800px;}
.ls4_c00149{letter-spacing:0.000000px;}
.ls5_c00149{letter-spacing:0.022800px;}
.ls3_c00149{letter-spacing:0.048960px;}
.lsb_c00149{letter-spacing:0.060600px;}
.ls1_c00149{letter-spacing:0.180000px;}
.ls0_c00149{letter-spacing:0.504000px;}
.ls6_c00149{letter-spacing:0.521400px;}
.lsa_c00149{letter-spacing:0.529800px;}
.ls2_c00149{letter-spacing:0.720000px;}
.lsc_c00149{letter-spacing:1.140000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00149{word-spacing:-72.000000px;}
.ws0_c00149{word-spacing:-18.000000px;}
.ws6_c00149{word-spacing:-16.260000px;}
.ws3_c00149{word-spacing:-15.641400px;}
.ws5_c00149{word-spacing:-15.180600px;}
.ws2_c00149{word-spacing:-15.120000px;}
.ws4_c00149{word-spacing:-14.878200px;}
.ws7_c00149{word-spacing:0.000000px;}
._4_c00149{margin-left:-2.376000px;}
._1_c00149{margin-left:-1.152000px;}
._0_c00149{width:1.296000px;}
._3_c00149{width:2.448000px;}
._2_c00149{width:4.536000px;}
._5_c00149{width:6.336000px;}
._6_c00149{width:176.580000px;}
._8_c00149{width:185.160024px;}
._7_c00149{width:186.480000px;}
.fc0_c00149{color:rgb(0,0,0);}
.fs1_c00149{font-size:60.480000px;}
.fs0_c00149{font-size:72.000000px;}
.y0_c00149{bottom:0.000000px;}
.y6_c00149{bottom:4.315500px;}
.y3_c00149{bottom:4.680000px;}
.y10_c00149{bottom:12.600000px;}
.y2a_c00149{bottom:12.949500px;}
.y1c_c00149{bottom:15.109500px;}
.y26_c00149{bottom:20.869500px;}
.y5_c00149{bottom:25.195500px;}
.y4_c00149{bottom:32.800500px;}
.y29_c00149{bottom:38.869500px;}
.y1b_c00149{bottom:41.389500px;}
.y25_c00149{bottom:47.179500px;}
.y1_c00149{bottom:57.996000px;}
.y28_c00149{bottom:65.179500px;}
.y1a_c00149{bottom:67.699500px;}
.y24_c00149{bottom:73.459500px;}
.y27_c00149{bottom:82.459500px;}
.y23_c00149{bottom:99.739500px;}
.y19_c00149{bottom:102.619500px;}
.y22_c00149{bottom:126.019500px;}
.y18_c00149{bottom:128.179500px;}
.y11_c00149{bottom:145.165500px;}
.y21_c00149{bottom:152.344500px;}
.y17_c00149{bottom:154.144500px;}
.y20_c00149{bottom:178.624500px;}
.y16_c00149{bottom:180.064500px;}
.y1f_c00149{bottom:204.904500px;}
.y15_c00149{bottom:205.984500px;}
.y1e_c00149{bottom:231.184500px;}
.y14_c00149{bottom:231.904500px;}
.y1d_c00149{bottom:257.494500px;}
.y13_c00149{bottom:257.854500px;}
.y12_c00149{bottom:283.774500px;}
.yf_c00149{bottom:451.980000px;}
.ye_c00149{bottom:511.770000px;}
.yd_c00149{bottom:551.730000px;}
.yc_c00149{bottom:591.735000px;}
.yb_c00149{bottom:632.055000px;}
.ya_c00149{bottom:663.015000px;}
.y9_c00149{bottom:694.005000px;}
.y8_c00149{bottom:733.965000px;}
.y7_c00149{bottom:773.925000px;}
.y2_c00149{bottom:843.090000px;}
.h2_c00149{height:20.865000px;}
.h6_c00149{height:35.316000px;}
.h3_c00149{height:41.395500px;}
.h9_c00149{height:59.357813px;}
.h7_c00149{height:60.952500px;}
.h1_c00149{height:64.546875px;}
.h4_c00149{height:70.628906px;}
.h5_c00149{height:70.664062px;}
.h8_c00149{height:306.090000px;}
.h0_c00149{height:918.000000px;}
.w1_c00149{width:8.265000px;}
.w3_c00149{width:306.045000px;}
.w5_c00149{width:314.370000px;}
.w4_c00149{width:369.105000px;}
.w2_c00149{width:975.870000px;}
.w0_c00149{width:1188.000000px;}
.x0_c00149{left:0.000000px;}
.x8_c00149{left:7.546500px;}
.x7_c00149{left:98.689500px;}
.x3_c00149{left:106.249500px;}
.x4_c00149{left:127.476000px;}
.x1_c00149{left:133.236000px;}
.x6_c00149{left:157.350000px;}
.x5_c00149{left:159.510000px;}
.x9_c00149{left:405.465000px;}
.xa_c00149{left:775.305000px;}
.x2_c00149{left:1073.850000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls8_c00149{letter-spacing:-1.258667pt;}
.ls9_c00149{letter-spacing:-0.810667pt;}
.ls7_c00149{letter-spacing:-0.214933pt;}
.ls4_c00149{letter-spacing:0.000000pt;}
.ls5_c00149{letter-spacing:0.020267pt;}
.ls3_c00149{letter-spacing:0.043520pt;}
.lsb_c00149{letter-spacing:0.053867pt;}
.ls1_c00149{letter-spacing:0.160000pt;}
.ls0_c00149{letter-spacing:0.448000pt;}
.ls6_c00149{letter-spacing:0.463467pt;}
.lsa_c00149{letter-spacing:0.470933pt;}
.ls2_c00149{letter-spacing:0.640000pt;}
.lsc_c00149{letter-spacing:1.013333pt;}
.ws1_c00149{word-spacing:-64.000000pt;}
.ws0_c00149{word-spacing:-16.000000pt;}
.ws6_c00149{word-spacing:-14.453333pt;}
.ws3_c00149{word-spacing:-13.903467pt;}
.ws5_c00149{word-spacing:-13.493867pt;}
.ws2_c00149{word-spacing:-13.440000pt;}
.ws4_c00149{word-spacing:-13.225067pt;}
.ws7_c00149{word-spacing:0.000000pt;}
._4_c00149{margin-left:-2.112000pt;}
._1_c00149{margin-left:-1.024000pt;}
._0_c00149{width:1.152000pt;}
._3_c00149{width:2.176000pt;}
._2_c00149{width:4.032000pt;}
._5_c00149{width:5.632000pt;}
._6_c00149{width:156.960000pt;}
._8_c00149{width:164.586688pt;}
._7_c00149{width:165.760000pt;}
.fs1_c00149{font-size:53.760000pt;}
.fs0_c00149{font-size:64.000000pt;}
.y0_c00149{bottom:0.000000pt;}
.y6_c00149{bottom:3.836000pt;}
.y3_c00149{bottom:4.160000pt;}
.y10_c00149{bottom:11.200000pt;}
.y2a_c00149{bottom:11.510667pt;}
.y1c_c00149{bottom:13.430667pt;}
.y26_c00149{bottom:18.550667pt;}
.y5_c00149{bottom:22.396000pt;}
.y4_c00149{bottom:29.156000pt;}
.y29_c00149{bottom:34.550667pt;}
.y1b_c00149{bottom:36.790667pt;}
.y25_c00149{bottom:41.937333pt;}
.y1_c00149{bottom:51.552000pt;}
.y28_c00149{bottom:57.937333pt;}
.y1a_c00149{bottom:60.177333pt;}
.y24_c00149{bottom:65.297333pt;}
.y27_c00149{bottom:73.297333pt;}
.y23_c00149{bottom:88.657333pt;}
.y19_c00149{bottom:91.217333pt;}
.y22_c00149{bottom:112.017333pt;}
.y18_c00149{bottom:113.937333pt;}
.y11_c00149{bottom:129.036000pt;}
.y21_c00149{bottom:135.417333pt;}
.y17_c00149{bottom:137.017333pt;}
.y20_c00149{bottom:158.777333pt;}
.y16_c00149{bottom:160.057333pt;}
.y1f_c00149{bottom:182.137333pt;}
.y15_c00149{bottom:183.097333pt;}
.y1e_c00149{bottom:205.497333pt;}
.y14_c00149{bottom:206.137333pt;}
.y1d_c00149{bottom:228.884000pt;}
.y13_c00149{bottom:229.204000pt;}
.y12_c00149{bottom:252.244000pt;}
.yf_c00149{bottom:401.760000pt;}
.ye_c00149{bottom:454.906667pt;}
.yd_c00149{bottom:490.426667pt;}
.yc_c00149{bottom:525.986667pt;}
.yb_c00149{bottom:561.826667pt;}
.ya_c00149{bottom:589.346667pt;}
.y9_c00149{bottom:616.893333pt;}
.y8_c00149{bottom:652.413333pt;}
.y7_c00149{bottom:687.933333pt;}
.y2_c00149{bottom:749.413333pt;}
.h2_c00149{height:18.546667pt;}
.h6_c00149{height:31.392000pt;}
.h3_c00149{height:36.796000pt;}
.h9_c00149{height:52.762500pt;}
.h7_c00149{height:54.180000pt;}
.h1_c00149{height:57.375000pt;}
.h4_c00149{height:62.781250pt;}
.h5_c00149{height:62.812500pt;}
.h8_c00149{height:272.080000pt;}
.h0_c00149{height:816.000000pt;}
.w1_c00149{width:7.346667pt;}
.w3_c00149{width:272.040000pt;}
.w5_c00149{width:279.440000pt;}
.w4_c00149{width:328.093333pt;}
.w2_c00149{width:867.440000pt;}
.w0_c00149{width:1056.000000pt;}
.x0_c00149{left:0.000000pt;}
.x8_c00149{left:6.708000pt;}
.x7_c00149{left:87.724000pt;}
.x3_c00149{left:94.444000pt;}
.x4_c00149{left:113.312000pt;}
.x1_c00149{left:118.432000pt;}
.x6_c00149{left:139.866667pt;}
.x5_c00149{left:141.786667pt;}
.x9_c00149{left:360.413333pt;}
.xa_c00149{left:689.160000pt;}
.x2_c00149{left:954.533333pt;}
}





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

.ir_c00150:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00150;src:url('chunks/assets/font_dd5294b940f0fbe359a4633d.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_2ec1b326f3228b01dc66b358.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_d7d2184632cd64dec0c1f1c7.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_4f1eaf8c20b98690ec204817.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_89f976c5adc2879f10499f5a.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;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_c00150;src:url('chunks/assets/font_cdc99e3b8f6f9e12d569ea67.woff2')format("woff");}.ff6_c00150{font-family:ff6_c00150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls10_c00150{letter-spacing:-1.740000px;}
.ls14_c00150{letter-spacing:-1.416000px;}
.lsf_c00150{letter-spacing:-1.380000px;}
.lsa_c00150{letter-spacing:-0.918000px;}
.ls13_c00150{letter-spacing:-0.912000px;}
.lsc_c00150{letter-spacing:-0.810000px;}
.lsd_c00150{letter-spacing:-0.720000px;}
.lse_c00150{letter-spacing:-0.532800px;}
.lsb_c00150{letter-spacing:-0.241800px;}
.ls9_c00150{letter-spacing:0.000000px;}
.ls6_c00150{letter-spacing:0.020160px;}
.ls11_c00150{letter-spacing:0.022800px;}
.ls2_c00150{letter-spacing:0.048960px;}
.ls12_c00150{letter-spacing:0.060600px;}
.ls18_c00150{letter-spacing:0.166800px;}
.ls8_c00150{letter-spacing:0.168480px;}
.ls5_c00150{letter-spacing:0.302400px;}
.ls4_c00150{letter-spacing:0.466560px;}
.ls7_c00150{letter-spacing:0.518400px;}
.ls16_c00150{letter-spacing:0.521400px;}
.ls17_c00150{letter-spacing:0.529800px;}
.ls1_c00150{letter-spacing:0.696000px;}
.ls15_c00150{letter-spacing:0.702000px;}
.ls0_c00150{letter-spacing:0.720000px;}
.ls3_c00150{letter-spacing:0.840000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00150{word-spacing:-15.822000px;}
.wsa_c00150{word-spacing:-15.641400px;}
.wsb_c00150{word-spacing:-15.286800px;}
.ws7_c00150{word-spacing:-15.180600px;}
.ws6_c00150{word-spacing:-15.142800px;}
.ws0_c00150{word-spacing:-15.120000px;}
.ws2_c00150{word-spacing:-14.878200px;}
.ws4_c00150{word-spacing:-14.587200px;}
.ws3_c00150{word-spacing:-14.310000px;}
.ws1_c00150{word-spacing:-14.202000px;}
.ws8_c00150{word-spacing:-13.704000px;}
.ws5_c00150{word-spacing:-13.380000px;}
.wsc_c00150{word-spacing:0.000000px;}
._0_c00150{margin-left:-2.269198px;}
._2_c00150{margin-left:-1.148999px;}
._1_c00150{width:1.696074px;}
.fc0_c00150{color:rgb(0,0,0);}
.fs1_c00150{font-size:60.480000px;}
.fs0_c00150{font-size:72.000000px;}
.y0_c00150{bottom:0.000000px;}
.y6_c00150{bottom:4.315500px;}
.y3_c00150{bottom:4.680000px;}
.y20_c00150{bottom:12.946500px;}
.y35_c00150{bottom:21.949500px;}
.y5_c00150{bottom:25.195500px;}
.y4_c00150{bottom:32.800500px;}
.y1f_c00150{bottom:39.229500px;}
.y34_c00150{bottom:48.229500px;}
.y1_c00150{bottom:57.996000px;}
.y1e_c00150{bottom:65.179500px;}
.y33_c00150{bottom:74.179500px;}
.y1d_c00150{bottom:91.459500px;}
.y32_c00150{bottom:100.459500px;}
.y1c_c00150{bottom:117.739500px;}
.y31_c00150{bottom:126.739500px;}
.y7_c00150{bottom:133.285500px;}
.y1b_c00150{bottom:144.019500px;}
.y30_c00150{bottom:153.019500px;}
.y1a_c00150{bottom:170.344500px;}
.y2f_c00150{bottom:179.344500px;}
.y19_c00150{bottom:196.624500px;}
.y2e_c00150{bottom:205.624500px;}
.y18_c00150{bottom:222.904500px;}
.y2d_c00150{bottom:231.904500px;}
.y17_c00150{bottom:249.184500px;}
.y2c_c00150{bottom:258.214500px;}
.y16_c00150{bottom:275.494500px;}
.y2b_c00150{bottom:284.494500px;}
.y15_c00150{bottom:301.774500px;}
.y2a_c00150{bottom:310.774500px;}
.y14_c00150{bottom:328.054500px;}
.y29_c00150{bottom:337.054500px;}
.y13_c00150{bottom:354.364500px;}
.y28_c00150{bottom:363.364500px;}
.y12_c00150{bottom:380.284500px;}
.y27_c00150{bottom:389.284500px;}
.y11_c00150{bottom:406.564500px;}
.y26_c00150{bottom:415.564500px;}
.y10_c00150{bottom:432.844500px;}
.y25_c00150{bottom:441.844500px;}
.yf_c00150{bottom:459.169500px;}
.y24_c00150{bottom:468.169500px;}
.ye_c00150{bottom:485.449500px;}
.y23_c00150{bottom:494.449500px;}
.yd_c00150{bottom:511.729500px;}
.y22_c00150{bottom:520.729500px;}
.yc_c00150{bottom:538.009500px;}
.yb_c00150{bottom:564.319500px;}
.y21_c00150{bottom:590.239500px;}
.ya_c00150{bottom:590.599500px;}
.y9_c00150{bottom:616.879500px;}
.y8_c00150{bottom:643.204500px;}
.y2_c00150{bottom:843.090000px;}
.h2_c00150{height:20.865000px;}
.h3_c00150{height:41.395500px;}
.h5_c00150{height:59.357813px;}
.h6_c00150{height:60.952500px;}
.h1_c00150{height:64.546875px;}
.h4_c00150{height:656.505000px;}
.h0_c00150{height:918.000000px;}
.w1_c00150{width:8.265000px;}
.w3_c00150{width:306.045000px;}
.w5_c00150{width:314.370000px;}
.w4_c00150{width:369.105000px;}
.w2_c00150{width:975.870000px;}
.w0_c00150{width:1188.000000px;}
.x0_c00150{left:0.000000px;}
.x5_c00150{left:7.546500px;}
.x4_c00150{left:98.689500px;}
.x3_c00150{left:106.249500px;}
.x1_c00150{left:133.236000px;}
.x6_c00150{left:405.465000px;}
.x7_c00150{left:775.305000px;}
.x2_c00150{left:1073.850000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls10_c00150{letter-spacing:-1.546667pt;}
.ls14_c00150{letter-spacing:-1.258667pt;}
.lsf_c00150{letter-spacing:-1.226667pt;}
.lsa_c00150{letter-spacing:-0.816000pt;}
.ls13_c00150{letter-spacing:-0.810667pt;}
.lsc_c00150{letter-spacing:-0.720000pt;}
.lsd_c00150{letter-spacing:-0.640000pt;}
.lse_c00150{letter-spacing:-0.473600pt;}
.lsb_c00150{letter-spacing:-0.214933pt;}
.ls9_c00150{letter-spacing:0.000000pt;}
.ls6_c00150{letter-spacing:0.017920pt;}
.ls11_c00150{letter-spacing:0.020267pt;}
.ls2_c00150{letter-spacing:0.043520pt;}
.ls12_c00150{letter-spacing:0.053867pt;}
.ls18_c00150{letter-spacing:0.148267pt;}
.ls8_c00150{letter-spacing:0.149760pt;}
.ls5_c00150{letter-spacing:0.268800pt;}
.ls4_c00150{letter-spacing:0.414720pt;}
.ls7_c00150{letter-spacing:0.460800pt;}
.ls16_c00150{letter-spacing:0.463467pt;}
.ls17_c00150{letter-spacing:0.470933pt;}
.ls1_c00150{letter-spacing:0.618667pt;}
.ls15_c00150{letter-spacing:0.624000pt;}
.ls0_c00150{letter-spacing:0.640000pt;}
.ls3_c00150{letter-spacing:0.746667pt;}
.ws9_c00150{word-spacing:-14.064000pt;}
.wsa_c00150{word-spacing:-13.903467pt;}
.wsb_c00150{word-spacing:-13.588267pt;}
.ws7_c00150{word-spacing:-13.493867pt;}
.ws6_c00150{word-spacing:-13.460267pt;}
.ws0_c00150{word-spacing:-13.440000pt;}
.ws2_c00150{word-spacing:-13.225067pt;}
.ws4_c00150{word-spacing:-12.966400pt;}
.ws3_c00150{word-spacing:-12.720000pt;}
.ws1_c00150{word-spacing:-12.624000pt;}
.ws8_c00150{word-spacing:-12.181333pt;}
.ws5_c00150{word-spacing:-11.893333pt;}
.wsc_c00150{word-spacing:0.000000pt;}
._0_c00150{margin-left:-2.017065pt;}
._2_c00150{margin-left:-1.021332pt;}
._1_c00150{width:1.507622pt;}
.fs1_c00150{font-size:53.760000pt;}
.fs0_c00150{font-size:64.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y6_c00150{bottom:3.836000pt;}
.y3_c00150{bottom:4.160000pt;}
.y20_c00150{bottom:11.508000pt;}
.y35_c00150{bottom:19.510667pt;}
.y5_c00150{bottom:22.396000pt;}
.y4_c00150{bottom:29.156000pt;}
.y1f_c00150{bottom:34.870667pt;}
.y34_c00150{bottom:42.870667pt;}
.y1_c00150{bottom:51.552000pt;}
.y1e_c00150{bottom:57.937333pt;}
.y33_c00150{bottom:65.937333pt;}
.y1d_c00150{bottom:81.297333pt;}
.y32_c00150{bottom:89.297333pt;}
.y1c_c00150{bottom:104.657333pt;}
.y31_c00150{bottom:112.657333pt;}
.y7_c00150{bottom:118.476000pt;}
.y1b_c00150{bottom:128.017333pt;}
.y30_c00150{bottom:136.017333pt;}
.y1a_c00150{bottom:151.417333pt;}
.y2f_c00150{bottom:159.417333pt;}
.y19_c00150{bottom:174.777333pt;}
.y2e_c00150{bottom:182.777333pt;}
.y18_c00150{bottom:198.137333pt;}
.y2d_c00150{bottom:206.137333pt;}
.y17_c00150{bottom:221.497333pt;}
.y2c_c00150{bottom:229.524000pt;}
.y16_c00150{bottom:244.884000pt;}
.y2b_c00150{bottom:252.884000pt;}
.y15_c00150{bottom:268.244000pt;}
.y2a_c00150{bottom:276.244000pt;}
.y14_c00150{bottom:291.604000pt;}
.y29_c00150{bottom:299.604000pt;}
.y13_c00150{bottom:314.990667pt;}
.y28_c00150{bottom:322.990667pt;}
.y12_c00150{bottom:338.030667pt;}
.y27_c00150{bottom:346.030667pt;}
.y11_c00150{bottom:361.390667pt;}
.y26_c00150{bottom:369.390667pt;}
.y10_c00150{bottom:384.750667pt;}
.y25_c00150{bottom:392.750667pt;}
.yf_c00150{bottom:408.150667pt;}
.y24_c00150{bottom:416.150667pt;}
.ye_c00150{bottom:431.510667pt;}
.y23_c00150{bottom:439.510667pt;}
.yd_c00150{bottom:454.870667pt;}
.y22_c00150{bottom:462.870667pt;}
.yc_c00150{bottom:478.230667pt;}
.yb_c00150{bottom:501.617333pt;}
.y21_c00150{bottom:524.657333pt;}
.ya_c00150{bottom:524.977333pt;}
.y9_c00150{bottom:548.337333pt;}
.y8_c00150{bottom:571.737333pt;}
.y2_c00150{bottom:749.413333pt;}
.h2_c00150{height:18.546667pt;}
.h3_c00150{height:36.796000pt;}
.h5_c00150{height:52.762500pt;}
.h6_c00150{height:54.180000pt;}
.h1_c00150{height:57.375000pt;}
.h4_c00150{height:583.560000pt;}
.h0_c00150{height:816.000000pt;}
.w1_c00150{width:7.346667pt;}
.w3_c00150{width:272.040000pt;}
.w5_c00150{width:279.440000pt;}
.w4_c00150{width:328.093333pt;}
.w2_c00150{width:867.440000pt;}
.w0_c00150{width:1056.000000pt;}
.x0_c00150{left:0.000000pt;}
.x5_c00150{left:6.708000pt;}
.x4_c00150{left:87.724000pt;}
.x3_c00150{left:94.444000pt;}
.x1_c00150{left:118.432000pt;}
.x6_c00150{left:360.413333pt;}
.x7_c00150{left:689.160000pt;}
.x2_c00150{left:954.533333pt;}
}





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

.ir_c00151:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00151;src:url('chunks/assets/font_dbd825f0273c8fb6b96831e6.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_143e7b09f955dba8bab0030d.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_9a73e9be6f0b65130be941aa.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_edfba6decde5b26045b6f49e.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00151;src:url('chunks/assets/font_19d8d25b4c2cac6a881ef9f4.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;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_c00151;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00151{font-family:ff6_c00151;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.lsa_c00151{letter-spacing:-0.912000px;}
.lsb_c00151{letter-spacing:-0.532800px;}
.ls9_c00151{letter-spacing:-0.241800px;}
.ls4_c00151{letter-spacing:0.000000px;}
.ls3_c00151{letter-spacing:0.020160px;}
.ls6_c00151{letter-spacing:0.022800px;}
.ls5_c00151{letter-spacing:0.166800px;}
.lsc_c00151{letter-spacing:0.219000px;}
.ls1_c00151{letter-spacing:0.228960px;}
.ls7_c00151{letter-spacing:0.325200px;}
.ls8_c00151{letter-spacing:0.507000px;}
.ls0_c00151{letter-spacing:0.720000px;}
.ls2_c00151{letter-spacing:0.840000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00151{word-spacing:-15.627000px;}
.ws5_c00151{word-spacing:-15.339000px;}
.ws1_c00151{word-spacing:-15.286800px;}
.ws0_c00151{word-spacing:-15.120000px;}
.ws3_c00151{word-spacing:-14.878200px;}
.ws4_c00151{word-spacing:-14.587200px;}
.ws6_c00151{word-spacing:0.000000px;}
._2_c00151{margin-left:-2.705522px;}
._0_c00151{margin-left:-1.390798px;}
._1_c00151{width:1.148394px;}
.fc0_c00151{color:rgb(0,0,0);}
.fs1_c00151{font-size:60.480000px;}
.fs0_c00151{font-size:72.000000px;}
.y0_c00151{bottom:0.000000px;}
.y6_c00151{bottom:4.315500px;}
.y3_c00151{bottom:4.680000px;}
.y1f_c00151{bottom:12.960000px;}
.y5_c00151{bottom:25.195500px;}
.y4_c00151{bottom:32.800500px;}
.y1e_c00151{bottom:39.240000px;}
.y1_c00151{bottom:57.996000px;}
.y1d_c00151{bottom:65.565000px;}
.y1c_c00151{bottom:91.845000px;}
.y1b_c00151{bottom:118.125000px;}
.y22_c00151{bottom:131.832000px;}
.y1a_c00151{bottom:144.405000px;}
.y19_c00151{bottom:170.715000px;}
.y21_c00151{bottom:171.795000px;}
.y18_c00151{bottom:196.995000px;}
.y20_c00151{bottom:211.785000px;}
.y17_c00151{bottom:223.275000px;}
.y7_c00151{bottom:238.065000px;}
.y16_c00151{bottom:249.585000px;}
.y15_c00151{bottom:275.505000px;}
.y14_c00151{bottom:301.785000px;}
.y10_c00151{bottom:320.145000px;}
.y13_c00151{bottom:328.065000px;}
.yf_c00151{bottom:346.110000px;}
.y12_c00151{bottom:354.390000px;}
.ye_c00151{bottom:372.030000px;}
.y11_c00151{bottom:380.670000px;}
.yd_c00151{bottom:406.950000px;}
.yc_c00151{bottom:433.230000px;}
.yb_c00151{bottom:459.540000px;}
.ya_c00151{bottom:485.820000px;}
.y9_c00151{bottom:512.100000px;}
.y8_c00151{bottom:538.425000px;}
.y2_c00151{bottom:843.090000px;}
.h2_c00151{height:20.865000px;}
.h3_c00151{height:41.395500px;}
.h5_c00151{height:59.357813px;}
.h6_c00151{height:60.952500px;}
.h1_c00151{height:64.546875px;}
.h7_c00151{height:72.562500px;}
.h4_c00151{height:551.730000px;}
.h0_c00151{height:918.000000px;}
.w1_c00151{width:8.265000px;}
.w4_c00151{width:314.370000px;}
.w3_c00151{width:369.105000px;}
.w2_c00151{width:975.870000px;}
.w0_c00151{width:1188.000000px;}
.x0_c00151{left:0.000000px;}
.x5_c00151{left:7.560000px;}
.x3_c00151{left:106.249500px;}
.x1_c00151{left:133.236000px;}
.x4_c00151{left:405.465000px;}
.x6_c00151{left:775.305000px;}
.x2_c00151{left:1073.850000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.lsa_c00151{letter-spacing:-0.810667pt;}
.lsb_c00151{letter-spacing:-0.473600pt;}
.ls9_c00151{letter-spacing:-0.214933pt;}
.ls4_c00151{letter-spacing:0.000000pt;}
.ls3_c00151{letter-spacing:0.017920pt;}
.ls6_c00151{letter-spacing:0.020267pt;}
.ls5_c00151{letter-spacing:0.148267pt;}
.lsc_c00151{letter-spacing:0.194667pt;}
.ls1_c00151{letter-spacing:0.203520pt;}
.ls7_c00151{letter-spacing:0.289067pt;}
.ls8_c00151{letter-spacing:0.450667pt;}
.ls0_c00151{letter-spacing:0.640000pt;}
.ls2_c00151{letter-spacing:0.746667pt;}
.ws2_c00151{word-spacing:-13.890667pt;}
.ws5_c00151{word-spacing:-13.634667pt;}
.ws1_c00151{word-spacing:-13.588267pt;}
.ws0_c00151{word-spacing:-13.440000pt;}
.ws3_c00151{word-spacing:-13.225067pt;}
.ws4_c00151{word-spacing:-12.966400pt;}
.ws6_c00151{word-spacing:0.000000pt;}
._2_c00151{margin-left:-2.404908pt;}
._0_c00151{margin-left:-1.236265pt;}
._1_c00151{width:1.020795pt;}
.fs1_c00151{font-size:53.760000pt;}
.fs0_c00151{font-size:64.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y6_c00151{bottom:3.836000pt;}
.y3_c00151{bottom:4.160000pt;}
.y1f_c00151{bottom:11.520000pt;}
.y5_c00151{bottom:22.396000pt;}
.y4_c00151{bottom:29.156000pt;}
.y1e_c00151{bottom:34.880000pt;}
.y1_c00151{bottom:51.552000pt;}
.y1d_c00151{bottom:58.280000pt;}
.y1c_c00151{bottom:81.640000pt;}
.y1b_c00151{bottom:105.000000pt;}
.y22_c00151{bottom:117.184000pt;}
.y1a_c00151{bottom:128.360000pt;}
.y19_c00151{bottom:151.746667pt;}
.y21_c00151{bottom:152.706667pt;}
.y18_c00151{bottom:175.106667pt;}
.y20_c00151{bottom:188.253333pt;}
.y17_c00151{bottom:198.466667pt;}
.y7_c00151{bottom:211.613333pt;}
.y16_c00151{bottom:221.853333pt;}
.y15_c00151{bottom:244.893333pt;}
.y14_c00151{bottom:268.253333pt;}
.y10_c00151{bottom:284.573333pt;}
.y13_c00151{bottom:291.613333pt;}
.yf_c00151{bottom:307.653333pt;}
.y12_c00151{bottom:315.013333pt;}
.ye_c00151{bottom:330.693333pt;}
.y11_c00151{bottom:338.373333pt;}
.yd_c00151{bottom:361.733333pt;}
.yc_c00151{bottom:385.093333pt;}
.yb_c00151{bottom:408.480000pt;}
.ya_c00151{bottom:431.840000pt;}
.y9_c00151{bottom:455.200000pt;}
.y8_c00151{bottom:478.600000pt;}
.y2_c00151{bottom:749.413333pt;}
.h2_c00151{height:18.546667pt;}
.h3_c00151{height:36.796000pt;}
.h5_c00151{height:52.762500pt;}
.h6_c00151{height:54.180000pt;}
.h1_c00151{height:57.375000pt;}
.h7_c00151{height:64.500000pt;}
.h4_c00151{height:490.426667pt;}
.h0_c00151{height:816.000000pt;}
.w1_c00151{width:7.346667pt;}
.w4_c00151{width:279.440000pt;}
.w3_c00151{width:328.093333pt;}
.w2_c00151{width:867.440000pt;}
.w0_c00151{width:1056.000000pt;}
.x0_c00151{left:0.000000pt;}
.x5_c00151{left:6.720000pt;}
.x3_c00151{left:94.444000pt;}
.x1_c00151{left:118.432000pt;}
.x4_c00151{left:360.413333pt;}
.x6_c00151{left:689.160000pt;}
.x2_c00151{left:954.533333pt;}
}





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

.ir_c00152:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00152;src:url('chunks/assets/font_97bdd5b185319155180687a8.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_3617cf23187f4e4918ef104a.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_7e5be71da14fb3c2d59ec753.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_53ae8b7f38ca0fc59f53ad0a.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_f6a0ccbc08b3d50f0c9a4d73.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00152;src:url('chunks/assets/font_335aba94cb9f83fcb299e7a9.woff2')format("woff");}.ff6_c00152{font-family:ff6_c00152;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls9_c00152{letter-spacing:-1.380000px;}
.ls6_c00152{letter-spacing:-0.532800px;}
.ls5_c00152{letter-spacing:-0.241800px;}
.ls4_c00152{letter-spacing:0.000000px;}
.ls3_c00152{letter-spacing:0.020160px;}
.ls8_c00152{letter-spacing:0.022800px;}
.lsc_c00152{letter-spacing:0.166800px;}
.lsb_c00152{letter-spacing:0.219000px;}
.ls7_c00152{letter-spacing:0.521400px;}
.lsa_c00152{letter-spacing:0.529800px;}
.ls2_c00152{letter-spacing:0.638400px;}
.lsd_c00152{letter-spacing:0.702000px;}
.ls0_c00152{letter-spacing:0.720000px;}
.ls1_c00152{letter-spacing:0.840000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00152{word-spacing:-60.699000px;}
.ws4_c00152{word-spacing:-60.480000px;}
.ws9_c00152{word-spacing:-15.822000px;}
.ws6_c00152{word-spacing:-15.649800px;}
.ws3_c00152{word-spacing:-15.641400px;}
.ws8_c00152{word-spacing:-15.286800px;}
.ws5_c00152{word-spacing:-15.142800px;}
.ws0_c00152{word-spacing:-15.120000px;}
.ws1_c00152{word-spacing:-14.878200px;}
.ws2_c00152{word-spacing:-14.587200px;}
.wsa_c00152{word-spacing:0.000000px;}
._2_c00152{margin-left:-2.514119px;}
._1_c00152{margin-left:-1.451399px;}
._0_c00152{width:1.008000px;}
._3_c00152{width:2.954517px;}
.fc0_c00152{color:rgb(0,0,0);}
.fs1_c00152{font-size:60.480000px;}
.fs0_c00152{font-size:72.000000px;}
.y0_c00152{bottom:0.000000px;}
.y6_c00152{bottom:4.315500px;}
.y3_c00152{bottom:4.680000px;}
.y9_c00152{bottom:21.240000px;}
.y23_c00152{bottom:21.589500px;}
.y5_c00152{bottom:25.195500px;}
.y4_c00152{bottom:32.800500px;}
.y22_c00152{bottom:56.149500px;}
.y1_c00152{bottom:57.996000px;}
.y21_c00152{bottom:91.099500px;}
.y20_c00152{bottom:126.019500px;}
.ya_c00152{bottom:131.125500px;}
.y1f_c00152{bottom:160.984500px;}
.y1e_c00152{bottom:195.904500px;}
.y1d_c00152{bottom:230.824500px;}
.y1c_c00152{bottom:265.774500px;}
.y1b_c00152{bottom:300.694500px;}
.y12_c00152{bottom:307.174500px;}
.y1a_c00152{bottom:335.254500px;}
.y11_c00152{bottom:342.094500px;}
.y19_c00152{bottom:370.204500px;}
.y10_c00152{bottom:377.044500px;}
.y18_c00152{bottom:396.124500px;}
.yf_c00152{bottom:411.604500px;}
.y17_c00152{bottom:422.044500px;}
.ye_c00152{bottom:446.884500px;}
.y16_c00152{bottom:447.964500px;}
.y15_c00152{bottom:473.929500px;}
.yd_c00152{bottom:481.849500px;}
.y14_c00152{bottom:499.849500px;}
.yc_c00152{bottom:516.409500px;}
.y13_c00152{bottom:525.409500px;}
.yb_c00152{bottom:551.359500px;}
.y8_c00152{bottom:705.525000px;}
.y7_c00152{bottom:774.285000px;}
.y2_c00152{bottom:843.090000px;}
.h2_c00152{height:20.865000px;}
.h3_c00152{height:41.395500px;}
.h5_c00152{height:43.905000px;}
.h8_c00152{height:59.357813px;}
.h6_c00152{height:60.952500px;}
.h1_c00152{height:64.546875px;}
.h4_c00152{height:70.628906px;}
.h7_c00152{height:573.660000px;}
.h0_c00152{height:918.000000px;}
.w1_c00152{width:8.265000px;}
.w3_c00152{width:473.895000px;}
.w4_c00152{width:516.375000px;}
.w2_c00152{width:975.870000px;}
.w0_c00152{width:1188.000000px;}
.x0_c00152{left:0.000000px;}
.x6_c00152{left:7.546500px;}
.x5_c00152{left:98.689500px;}
.x3_c00152{left:106.249500px;}
.x1_c00152{left:133.236000px;}
.x4_c00152{left:157.350000px;}
.x7_c00152{left:573.300000px;}
.x2_c00152{left:1073.850000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls9_c00152{letter-spacing:-1.226667pt;}
.ls6_c00152{letter-spacing:-0.473600pt;}
.ls5_c00152{letter-spacing:-0.214933pt;}
.ls4_c00152{letter-spacing:0.000000pt;}
.ls3_c00152{letter-spacing:0.017920pt;}
.ls8_c00152{letter-spacing:0.020267pt;}
.lsc_c00152{letter-spacing:0.148267pt;}
.lsb_c00152{letter-spacing:0.194667pt;}
.ls7_c00152{letter-spacing:0.463467pt;}
.lsa_c00152{letter-spacing:0.470933pt;}
.ls2_c00152{letter-spacing:0.567467pt;}
.lsd_c00152{letter-spacing:0.624000pt;}
.ls0_c00152{letter-spacing:0.640000pt;}
.ls1_c00152{letter-spacing:0.746667pt;}
.ws7_c00152{word-spacing:-53.954667pt;}
.ws4_c00152{word-spacing:-53.760000pt;}
.ws9_c00152{word-spacing:-14.064000pt;}
.ws6_c00152{word-spacing:-13.910933pt;}
.ws3_c00152{word-spacing:-13.903467pt;}
.ws8_c00152{word-spacing:-13.588267pt;}
.ws5_c00152{word-spacing:-13.460267pt;}
.ws0_c00152{word-spacing:-13.440000pt;}
.ws1_c00152{word-spacing:-13.225067pt;}
.ws2_c00152{word-spacing:-12.966400pt;}
.wsa_c00152{word-spacing:0.000000pt;}
._2_c00152{margin-left:-2.234772pt;}
._1_c00152{margin-left:-1.290132pt;}
._0_c00152{width:0.896000pt;}
._3_c00152{width:2.626237pt;}
.fs1_c00152{font-size:53.760000pt;}
.fs0_c00152{font-size:64.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y6_c00152{bottom:3.836000pt;}
.y3_c00152{bottom:4.160000pt;}
.y9_c00152{bottom:18.880000pt;}
.y23_c00152{bottom:19.190667pt;}
.y5_c00152{bottom:22.396000pt;}
.y4_c00152{bottom:29.156000pt;}
.y22_c00152{bottom:49.910667pt;}
.y1_c00152{bottom:51.552000pt;}
.y21_c00152{bottom:80.977333pt;}
.y20_c00152{bottom:112.017333pt;}
.ya_c00152{bottom:116.556000pt;}
.y1f_c00152{bottom:143.097333pt;}
.y1e_c00152{bottom:174.137333pt;}
.y1d_c00152{bottom:205.177333pt;}
.y1c_c00152{bottom:236.244000pt;}
.y1b_c00152{bottom:267.284000pt;}
.y12_c00152{bottom:273.044000pt;}
.y1a_c00152{bottom:298.004000pt;}
.y11_c00152{bottom:304.084000pt;}
.y19_c00152{bottom:329.070667pt;}
.y10_c00152{bottom:335.150667pt;}
.y18_c00152{bottom:352.110667pt;}
.yf_c00152{bottom:365.870667pt;}
.y17_c00152{bottom:375.150667pt;}
.ye_c00152{bottom:397.230667pt;}
.y16_c00152{bottom:398.190667pt;}
.y15_c00152{bottom:421.270667pt;}
.yd_c00152{bottom:428.310667pt;}
.y14_c00152{bottom:444.310667pt;}
.yc_c00152{bottom:459.030667pt;}
.y13_c00152{bottom:467.030667pt;}
.yb_c00152{bottom:490.097333pt;}
.y8_c00152{bottom:627.133333pt;}
.y7_c00152{bottom:688.253333pt;}
.y2_c00152{bottom:749.413333pt;}
.h2_c00152{height:18.546667pt;}
.h3_c00152{height:36.796000pt;}
.h5_c00152{height:39.026667pt;}
.h8_c00152{height:52.762500pt;}
.h6_c00152{height:54.180000pt;}
.h1_c00152{height:57.375000pt;}
.h4_c00152{height:62.781250pt;}
.h7_c00152{height:509.920000pt;}
.h0_c00152{height:816.000000pt;}
.w1_c00152{width:7.346667pt;}
.w3_c00152{width:421.240000pt;}
.w4_c00152{width:459.000000pt;}
.w2_c00152{width:867.440000pt;}
.w0_c00152{width:1056.000000pt;}
.x0_c00152{left:0.000000pt;}
.x6_c00152{left:6.708000pt;}
.x5_c00152{left:87.724000pt;}
.x3_c00152{left:94.444000pt;}
.x1_c00152{left:118.432000pt;}
.x4_c00152{left:139.866667pt;}
.x7_c00152{left:509.600000pt;}
.x2_c00152{left:954.533333pt;}
}





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

.ir_c00153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00153;src:url('chunks/assets/font_46bba75469c8b5c39f90027c.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_1c0f010a0f07acfc77d32bdf.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_6ddbbdf289f197e540942638.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_19d8d25b4c2cac6a881ef9f4.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;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_c00153;src:url('chunks/assets/font_22c67aad67487627fcb94a14.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00153;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00153{font-family:ff6_c00153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls6_c00153{letter-spacing:-0.720000px;}
.ls2_c00153{letter-spacing:-0.241800px;}
.ls1_c00153{letter-spacing:0.000000px;}
.ls3_c00153{letter-spacing:0.022800px;}
.ls4_c00153{letter-spacing:0.166800px;}
.ls5_c00153{letter-spacing:0.521400px;}
.ls0_c00153{letter-spacing:0.720000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00153{word-spacing:-60.480000px;}
.ws4_c00153{word-spacing:-15.641400px;}
.ws2_c00153{word-spacing:-15.286800px;}
.ws0_c00153{word-spacing:-15.120000px;}
.ws1_c00153{word-spacing:-14.878200px;}
.ws5_c00153{word-spacing:0.000000px;}
._1_c00153{margin-left:-1.819918px;}
._0_c00153{width:1.005120px;}
.fc0_c00153{color:rgb(0,0,0);}
.fs1_c00153{font-size:60.480000px;}
.fs0_c00153{font-size:72.000000px;}
.y0_c00153{bottom:0.000000px;}
.y6_c00153{bottom:4.315500px;}
.y3_c00153{bottom:4.680000px;}
.y18_c00153{bottom:21.240000px;}
.y5_c00153{bottom:25.195500px;}
.y4_c00153{bottom:32.800500px;}
.y17_c00153{bottom:56.520000px;}
.y1_c00153{bottom:57.996000px;}
.y16_c00153{bottom:91.080000px;}
.y15_c00153{bottom:126.045000px;}
.y14_c00153{bottom:160.965000px;}
.y19_c00153{bottom:170.355000px;}
.y13_c00153{bottom:195.915000px;}
.y7_c00153{bottom:196.665000px;}
.y12_c00153{bottom:230.835000px;}
.y11_c00153{bottom:265.755000px;}
.y10_c00153{bottom:300.705000px;}
.yf_c00153{bottom:335.265000px;}
.ye_c00153{bottom:370.185000px;}
.yd_c00153{bottom:405.150000px;}
.yc_c00153{bottom:440.070000px;}
.yb_c00153{bottom:474.990000px;}
.ya_c00153{bottom:509.940000px;}
.y9_c00153{bottom:544.860000px;}
.y8_c00153{bottom:579.825000px;}
.y2_c00153{bottom:843.090000px;}
.h2_c00153{height:20.865000px;}
.h3_c00153{height:41.395500px;}
.h5_c00153{height:59.357813px;}
.h6_c00153{height:60.952500px;}
.h1_c00153{height:64.546875px;}
.h7_c00153{height:72.562500px;}
.h4_c00153{height:593.130000px;}
.h0_c00153{height:918.000000px;}
.w1_c00153{width:8.265000px;}
.w3_c00153{width:516.375000px;}
.w2_c00153{width:975.870000px;}
.w0_c00153{width:1188.000000px;}
.x0_c00153{left:0.000000px;}
.x5_c00153{left:7.560000px;}
.x3_c00153{left:106.249500px;}
.x1_c00153{left:133.236000px;}
.x4_c00153{left:573.300000px;}
.x2_c00153{left:1073.850000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls6_c00153{letter-spacing:-0.640000pt;}
.ls2_c00153{letter-spacing:-0.214933pt;}
.ls1_c00153{letter-spacing:0.000000pt;}
.ls3_c00153{letter-spacing:0.020267pt;}
.ls4_c00153{letter-spacing:0.148267pt;}
.ls5_c00153{letter-spacing:0.463467pt;}
.ls0_c00153{letter-spacing:0.640000pt;}
.ws3_c00153{word-spacing:-53.760000pt;}
.ws4_c00153{word-spacing:-13.903467pt;}
.ws2_c00153{word-spacing:-13.588267pt;}
.ws0_c00153{word-spacing:-13.440000pt;}
.ws1_c00153{word-spacing:-13.225067pt;}
.ws5_c00153{word-spacing:0.000000pt;}
._1_c00153{margin-left:-1.617705pt;}
._0_c00153{width:0.893440pt;}
.fs1_c00153{font-size:53.760000pt;}
.fs0_c00153{font-size:64.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y6_c00153{bottom:3.836000pt;}
.y3_c00153{bottom:4.160000pt;}
.y18_c00153{bottom:18.880000pt;}
.y5_c00153{bottom:22.396000pt;}
.y4_c00153{bottom:29.156000pt;}
.y17_c00153{bottom:50.240000pt;}
.y1_c00153{bottom:51.552000pt;}
.y16_c00153{bottom:80.960000pt;}
.y15_c00153{bottom:112.040000pt;}
.y14_c00153{bottom:143.080000pt;}
.y19_c00153{bottom:151.426667pt;}
.y13_c00153{bottom:174.146667pt;}
.y7_c00153{bottom:174.813333pt;}
.y12_c00153{bottom:205.186667pt;}
.y11_c00153{bottom:236.226667pt;}
.y10_c00153{bottom:267.293333pt;}
.yf_c00153{bottom:298.013333pt;}
.ye_c00153{bottom:329.053333pt;}
.yd_c00153{bottom:360.133333pt;}
.yc_c00153{bottom:391.173333pt;}
.yb_c00153{bottom:422.213333pt;}
.ya_c00153{bottom:453.280000pt;}
.y9_c00153{bottom:484.320000pt;}
.y8_c00153{bottom:515.400000pt;}
.y2_c00153{bottom:749.413333pt;}
.h2_c00153{height:18.546667pt;}
.h3_c00153{height:36.796000pt;}
.h5_c00153{height:52.762500pt;}
.h6_c00153{height:54.180000pt;}
.h1_c00153{height:57.375000pt;}
.h7_c00153{height:64.500000pt;}
.h4_c00153{height:527.226667pt;}
.h0_c00153{height:816.000000pt;}
.w1_c00153{width:7.346667pt;}
.w3_c00153{width:459.000000pt;}
.w2_c00153{width:867.440000pt;}
.w0_c00153{width:1056.000000pt;}
.x0_c00153{left:0.000000pt;}
.x5_c00153{left:6.720000pt;}
.x3_c00153{left:94.444000pt;}
.x1_c00153{left:118.432000pt;}
.x4_c00153{left:509.600000pt;}
.x2_c00153{left:954.533333pt;}
}





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

.ir_c00154:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00154;src:url('chunks/assets/font_7d1c360ad5d56b0999143878.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00154;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_45f6b963d02f80be2f2096ca.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;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_c00154;src:url('chunks/assets/font_5be1ed7de6c7817a0a714e9e.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_5bae31a1a2fc6c194bd7a3e3.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00154;src:url('chunks/assets/font_200a3dcb26a0f859d3623542.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:1.112305;font-style:normal;font-weight: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_c00154;src:url('chunks/assets/font_88af451bd438d7d90201ed34.woff2')format("woff");}.ff7_c00154{font-family:ff7_c00154;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.lsc_c00154{letter-spacing:-1.416000px;}
.ls8_c00154{letter-spacing:-1.380000px;}
.lsb_c00154{letter-spacing:-0.241800px;}
.ls7_c00154{letter-spacing:0.000000px;}
.ls9_c00154{letter-spacing:0.022800px;}
.ls2_c00154{letter-spacing:0.048960px;}
.ls5_c00154{letter-spacing:0.120000px;}
.lsa_c00154{letter-spacing:0.521400px;}
.ls6_c00154{letter-spacing:0.708745px;}
.ls0_c00154{letter-spacing:0.720000px;}
.ls1_c00154{letter-spacing:0.740169px;}
.ls3_c00154{letter-spacing:0.742944px;}
.ls4_c00154{letter-spacing:1.440000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00154{word-spacing:-60.480000px;}
.ws0_c00154{word-spacing:-18.000000px;}
.ws3_c00154{word-spacing:-15.641400px;}
.ws1_c00154{word-spacing:-15.120000px;}
.ws4_c00154{word-spacing:-14.878200px;}
.ws5_c00154{word-spacing:0.000000px;}
._2_c00154{margin-left:-2.652000px;}
._1_c00154{margin-left:-1.440000px;}
._0_c00154{width:1.296000px;}
._3_c00154{width:2.540402px;}
._11_c00154{width:3.847196px;}
._13_c00154{width:4.956000px;}
._4_c00154{width:7.681202px;}
._5_c00154{width:8.705374px;}
._d_c00154{width:10.584000px;}
._c_c00154{width:11.880000px;}
._e_c00154{width:13.104000px;}
._10_c00154{width:14.556000px;}
._f_c00154{width:16.344000px;}
._12_c00154{width:19.620000px;}
._6_c00154{width:22.968000px;}
._7_c00154{width:24.744000px;}
._8_c00154{width:26.088000px;}
._b_c00154{width:29.083052px;}
._9_c00154{width:30.288024px;}
._a_c00154{width:31.812000px;}
.fc0_c00154{color:rgb(0,0,0);}
.fs1_c00154{font-size:60.480000px;}
.fs0_c00154{font-size:72.000000px;}
.y0_c00154{bottom:0.000000px;}
.y3_c00154{bottom:4.320000px;}
.y5_c00154{bottom:25.200000px;}
.y4_c00154{bottom:32.040000px;}
.y1_c00154{bottom:57.240000px;}
.y23_c00154{bottom:144.396000px;}
.y22_c00154{bottom:175.350000px;}
.y21_c00154{bottom:206.310000px;}
.y20_c00154{bottom:237.675000px;}
.y1f_c00154{bottom:275.475000px;}
.y1e_c00154{bottom:301.035000px;}
.y1d_c00154{bottom:335.955000px;}
.y1c_c00154{bottom:370.905000px;}
.y1b_c00154{bottom:405.825000px;}
.y1a_c00154{bottom:440.745000px;}
.y19_c00154{bottom:477.870000px;}
.y18_c00154{bottom:517.830000px;}
.y17_c00154{bottom:549.150000px;}
.y16_c00154{bottom:580.110000px;}
.y15_c00154{bottom:611.100000px;}
.y14_c00154{bottom:642.060000px;}
.y13_c00154{bottom:679.860000px;}
.y12_c00154{bottom:705.780000px;}
.y11_c00154{bottom:731.730000px;}
.y10_c00154{bottom:757.650000px;}
.yf_c00154{bottom:792.570000px;}
.ye_c00154{bottom:827.490000px;}
.yd_c00154{bottom:862.095000px;}
.yc_c00154{bottom:897.015000px;}
.yb_c00154{bottom:931.935000px;}
.ya_c00154{bottom:966.885000px;}
.y9_c00154{bottom:1001.805000px;}
.y8_c00154{bottom:1038.885000px;}
.y7_c00154{bottom:1078.845000px;}
.y6_c00154{bottom:1118.850000px;}
.y2_c00154{bottom:1189.050000px;}
.h3_c00154{height:20.550000px;}
.h4_c00154{height:41.395500px;}
.h9_c00154{height:59.328281px;}
.h8_c00154{height:59.357813px;}
.ha_c00154{height:60.952500px;}
.h2_c00154{height:64.546875px;}
.h6_c00154{height:70.628906px;}
.h7_c00154{height:70.664062px;}
.h5_c00154{height:72.562500px;}
.h0_c00154{height:1262.880000px;}
.h1_c00154{height:1263.000000px;}
.w2_c00154{width:8.310000px;}
.w3_c00154{width:638.190000px;}
.w0_c00154{width:893.160000px;}
.w1_c00154{width:893.250000px;}
.x0_c00154{left:0.000000px;}
.x3_c00154{left:127.489500px;}
.x1_c00154{left:154.515000px;}
.x5_c00154{left:169.995000px;}
.x4_c00154{left:180.795000px;}
.x2_c00154{left:757.365000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.lsc_c00154{letter-spacing:-1.258667pt;}
.ls8_c00154{letter-spacing:-1.226667pt;}
.lsb_c00154{letter-spacing:-0.214933pt;}
.ls7_c00154{letter-spacing:0.000000pt;}
.ls9_c00154{letter-spacing:0.020267pt;}
.ls2_c00154{letter-spacing:0.043520pt;}
.ls5_c00154{letter-spacing:0.106667pt;}
.lsa_c00154{letter-spacing:0.463467pt;}
.ls6_c00154{letter-spacing:0.629996pt;}
.ls0_c00154{letter-spacing:0.640000pt;}
.ls1_c00154{letter-spacing:0.657928pt;}
.ls3_c00154{letter-spacing:0.660395pt;}
.ls4_c00154{letter-spacing:1.280000pt;}
.ws2_c00154{word-spacing:-53.760000pt;}
.ws0_c00154{word-spacing:-16.000000pt;}
.ws3_c00154{word-spacing:-13.903467pt;}
.ws1_c00154{word-spacing:-13.440000pt;}
.ws4_c00154{word-spacing:-13.225067pt;}
.ws5_c00154{word-spacing:0.000000pt;}
._2_c00154{margin-left:-2.357333pt;}
._1_c00154{margin-left:-1.280000pt;}
._0_c00154{width:1.152000pt;}
._3_c00154{width:2.258135pt;}
._11_c00154{width:3.419730pt;}
._13_c00154{width:4.405333pt;}
._4_c00154{width:6.827735pt;}
._5_c00154{width:7.738110pt;}
._d_c00154{width:9.408000pt;}
._c_c00154{width:10.560000pt;}
._e_c00154{width:11.648000pt;}
._10_c00154{width:12.938667pt;}
._f_c00154{width:14.528000pt;}
._12_c00154{width:17.440000pt;}
._6_c00154{width:20.416000pt;}
._7_c00154{width:21.994667pt;}
._8_c00154{width:23.189333pt;}
._b_c00154{width:25.851602pt;}
._9_c00154{width:26.922688pt;}
._a_c00154{width:28.277333pt;}
.fs1_c00154{font-size:53.760000pt;}
.fs0_c00154{font-size:64.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y3_c00154{bottom:3.840000pt;}
.y5_c00154{bottom:22.400000pt;}
.y4_c00154{bottom:28.480000pt;}
.y1_c00154{bottom:50.880000pt;}
.y23_c00154{bottom:128.352000pt;}
.y22_c00154{bottom:155.866667pt;}
.y21_c00154{bottom:183.386667pt;}
.y20_c00154{bottom:211.266667pt;}
.y1f_c00154{bottom:244.866667pt;}
.y1e_c00154{bottom:267.586667pt;}
.y1d_c00154{bottom:298.626667pt;}
.y1c_c00154{bottom:329.693333pt;}
.y1b_c00154{bottom:360.733333pt;}
.y1a_c00154{bottom:391.773333pt;}
.y19_c00154{bottom:424.773333pt;}
.y18_c00154{bottom:460.293333pt;}
.y17_c00154{bottom:488.133333pt;}
.y16_c00154{bottom:515.653333pt;}
.y15_c00154{bottom:543.200000pt;}
.y14_c00154{bottom:570.720000pt;}
.y13_c00154{bottom:604.320000pt;}
.y12_c00154{bottom:627.360000pt;}
.y11_c00154{bottom:650.426667pt;}
.y10_c00154{bottom:673.466667pt;}
.yf_c00154{bottom:704.506667pt;}
.ye_c00154{bottom:735.546667pt;}
.yd_c00154{bottom:766.306667pt;}
.yc_c00154{bottom:797.346667pt;}
.yb_c00154{bottom:828.386667pt;}
.ya_c00154{bottom:859.453333pt;}
.y9_c00154{bottom:890.493333pt;}
.y8_c00154{bottom:923.453333pt;}
.y7_c00154{bottom:958.973333pt;}
.y6_c00154{bottom:994.533333pt;}
.y2_c00154{bottom:1056.933333pt;}
.h3_c00154{height:18.266667pt;}
.h4_c00154{height:36.796000pt;}
.h9_c00154{height:52.736250pt;}
.h8_c00154{height:52.762500pt;}
.ha_c00154{height:54.180000pt;}
.h2_c00154{height:57.375000pt;}
.h6_c00154{height:62.781250pt;}
.h7_c00154{height:62.812500pt;}
.h5_c00154{height:64.500000pt;}
.h0_c00154{height:1122.560000pt;}
.h1_c00154{height:1122.666667pt;}
.w2_c00154{width:7.386667pt;}
.w3_c00154{width:567.280000pt;}
.w0_c00154{width:793.920000pt;}
.w1_c00154{width:794.000000pt;}
.x0_c00154{left:0.000000pt;}
.x3_c00154{left:113.324000pt;}
.x1_c00154{left:137.346667pt;}
.x5_c00154{left:151.106667pt;}
.x4_c00154{left:160.706667pt;}
.x2_c00154{left:673.213333pt;}
}





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

.ir_c00155:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00155;src:url('chunks/assets/font_dbd825f0273c8fb6b96831e6.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_ee68404d569c362bab4396f9.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_8407935becac50ea7839695f.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_6fda424defe30b39920f3bec.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;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_c00155;src:url('chunks/assets/font_6bff5ee0655eb7f1183d731a.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00155;src:url('chunks/assets/font_50897ce2cfda36a2eda1fdde.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.lsa_c00155{letter-spacing:-1.416000px;}
.ls4_c00155{letter-spacing:-0.918000px;}
.ls6_c00155{letter-spacing:-0.810000px;}
.ls7_c00155{letter-spacing:-0.720000px;}
.ls8_c00155{letter-spacing:-0.532800px;}
.ls5_c00155{letter-spacing:-0.241800px;}
.ls3_c00155{letter-spacing:0.000000px;}
.ls9_c00155{letter-spacing:0.022800px;}
.ls1_c00155{letter-spacing:0.156960px;}
.ls0_c00155{letter-spacing:0.720000px;}
.ls2_c00155{letter-spacing:1.440000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00155{word-spacing:-60.480000px;}
.ws0_c00155{word-spacing:-18.000000px;}
.ws5_c00155{word-spacing:-15.142800px;}
.ws1_c00155{word-spacing:-15.120000px;}
.ws2_c00155{word-spacing:-14.878200px;}
.ws3_c00155{word-spacing:-14.310000px;}
.ws6_c00155{word-spacing:-13.704000px;}
.ws7_c00155{word-spacing:0.000000px;}
._a_c00155{margin-left:-3.552000px;}
._5_c00155{margin-left:-2.376000px;}
._0_c00155{margin-left:-1.152000px;}
._3_c00155{width:1.224000px;}
._2_c00155{width:2.376000px;}
._14_c00155{width:3.636024px;}
._7_c00155{width:4.980000px;}
._8_c00155{width:6.288000px;}
._c_c00155{width:7.416000px;}
._9_c00155{width:8.424000px;}
._b_c00155{width:9.432000px;}
._d_c00155{width:10.800000px;}
._4_c00155{width:11.880000px;}
._1_c00155{width:12.960000px;}
._6_c00155{width:14.400000px;}
._e_c00155{width:15.504000px;}
._16_c00155{width:16.517280px;}
._f_c00155{width:19.872000px;}
._10_c00155{width:21.600000px;}
._12_c00155{width:24.528000px;}
._11_c00155{width:25.656000px;}
._13_c00155{width:27.192000px;}
._15_c00155{width:28.920000px;}
.fc0_c00155{color:rgb(0,0,0);}
.fs3_c00155{font-size:38.880000px;}
.fs1_c00155{font-size:47.520000px;}
.fs2_c00155{font-size:60.480000px;}
.fs0_c00155{font-size:72.000000px;}
.y0_c00155{bottom:0.000000px;}
.y3_c00155{bottom:4.320000px;}
.y5_c00155{bottom:25.200000px;}
.y4_c00155{bottom:32.040000px;}
.y1_c00155{bottom:57.240000px;}
.y2b_c00155{bottom:151.590000px;}
.y2a_c00155{bottom:168.870000px;}
.y29_c00155{bottom:186.150000px;}
.y28_c00155{bottom:203.430000px;}
.y27_c00155{bottom:220.710000px;}
.y26_c00155{bottom:238.035000px;}
.y25_c00155{bottom:255.315000px;}
.y24_c00155{bottom:272.595000px;}
.y23_c00155{bottom:289.875000px;}
.y22_c00155{bottom:307.155000px;}
.y21_c00155{bottom:324.435000px;}
.y20_c00155{bottom:331.275000px;}
.y1f_c00155{bottom:342.075000px;}
.y1e_c00155{bottom:365.145000px;}
.y1d_c00155{bottom:396.105000px;}
.y1c_c00155{bottom:427.425000px;}
.y1b_c00155{bottom:458.385000px;}
.y1a_c00155{bottom:489.390000px;}
.y19_c00155{bottom:520.350000px;}
.y18_c00155{bottom:551.310000px;}
.y17_c00155{bottom:582.630000px;}
.y16_c00155{bottom:613.620000px;}
.y15_c00155{bottom:644.580000px;}
.y14_c00155{bottom:675.540000px;}
.y13_c00155{bottom:713.340000px;}
.y12_c00155{bottom:739.290000px;}
.y11_c00155{bottom:774.210000px;}
.y10_c00155{bottom:809.130000px;}
.yf_c00155{bottom:844.095000px;}
.ye_c00155{bottom:879.015000px;}
.yd_c00155{bottom:913.935000px;}
.yc_c00155{bottom:948.495000px;}
.yb_c00155{bottom:985.965000px;}
.ya_c00155{bottom:1025.925000px;}
.y9_c00155{bottom:1056.885000px;}
.y7_c00155{bottom:1087.890000px;}
.y8_c00155{bottom:1096.170000px;}
.y6_c00155{bottom:1119.210000px;}
.y2_c00155{bottom:1189.050000px;}
.h3_c00155{height:20.550000px;}
.ha_c00155{height:38.158594px;}
.h4_c00155{height:41.395500px;}
.h7_c00155{height:46.638281px;}
.h9_c00155{height:59.328281px;}
.h8_c00155{height:59.357813px;}
.h2_c00155{height:64.546875px;}
.h5_c00155{height:70.664062px;}
.h6_c00155{height:1262.875500px;}
.h0_c00155{height:1262.880000px;}
.h1_c00155{height:1263.000000px;}
.w2_c00155{width:8.310000px;}
.w3_c00155{width:638.190000px;}
.w4_c00155{width:893.157000px;}
.w0_c00155{width:893.160000px;}
.w1_c00155{width:893.250000px;}
.x0_c00155{left:0.000000px;}
.x3_c00155{left:127.489500px;}
.x8_c00155{left:137.592000px;}
.x1_c00155{left:154.515000px;}
.x6_c00155{left:169.995000px;}
.x7_c00155{left:343.590000px;}
.x4_c00155{left:748.722000px;}
.x2_c00155{left:757.365000px;}
.x5_c00155{left:761.010000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.lsa_c00155{letter-spacing:-1.258667pt;}
.ls4_c00155{letter-spacing:-0.816000pt;}
.ls6_c00155{letter-spacing:-0.720000pt;}
.ls7_c00155{letter-spacing:-0.640000pt;}
.ls8_c00155{letter-spacing:-0.473600pt;}
.ls5_c00155{letter-spacing:-0.214933pt;}
.ls3_c00155{letter-spacing:0.000000pt;}
.ls9_c00155{letter-spacing:0.020267pt;}
.ls1_c00155{letter-spacing:0.139520pt;}
.ls0_c00155{letter-spacing:0.640000pt;}
.ls2_c00155{letter-spacing:1.280000pt;}
.ws4_c00155{word-spacing:-53.760000pt;}
.ws0_c00155{word-spacing:-16.000000pt;}
.ws5_c00155{word-spacing:-13.460267pt;}
.ws1_c00155{word-spacing:-13.440000pt;}
.ws2_c00155{word-spacing:-13.225067pt;}
.ws3_c00155{word-spacing:-12.720000pt;}
.ws6_c00155{word-spacing:-12.181333pt;}
.ws7_c00155{word-spacing:0.000000pt;}
._a_c00155{margin-left:-3.157333pt;}
._5_c00155{margin-left:-2.112000pt;}
._0_c00155{margin-left:-1.024000pt;}
._3_c00155{width:1.088000pt;}
._2_c00155{width:2.112000pt;}
._14_c00155{width:3.232021pt;}
._7_c00155{width:4.426667pt;}
._8_c00155{width:5.589333pt;}
._c_c00155{width:6.592000pt;}
._9_c00155{width:7.488000pt;}
._b_c00155{width:8.384000pt;}
._d_c00155{width:9.600000pt;}
._4_c00155{width:10.560000pt;}
._1_c00155{width:11.520000pt;}
._6_c00155{width:12.800000pt;}
._e_c00155{width:13.781333pt;}
._16_c00155{width:14.682027pt;}
._f_c00155{width:17.664000pt;}
._10_c00155{width:19.200000pt;}
._12_c00155{width:21.802667pt;}
._11_c00155{width:22.805333pt;}
._13_c00155{width:24.170667pt;}
._15_c00155{width:25.706667pt;}
.fs3_c00155{font-size:34.560000pt;}
.fs1_c00155{font-size:42.240000pt;}
.fs2_c00155{font-size:53.760000pt;}
.fs0_c00155{font-size:64.000000pt;}
.y0_c00155{bottom:0.000000pt;}
.y3_c00155{bottom:3.840000pt;}
.y5_c00155{bottom:22.400000pt;}
.y4_c00155{bottom:28.480000pt;}
.y1_c00155{bottom:50.880000pt;}
.y2b_c00155{bottom:134.746667pt;}
.y2a_c00155{bottom:150.106667pt;}
.y29_c00155{bottom:165.466667pt;}
.y28_c00155{bottom:180.826667pt;}
.y27_c00155{bottom:196.186667pt;}
.y26_c00155{bottom:211.586667pt;}
.y25_c00155{bottom:226.946667pt;}
.y24_c00155{bottom:242.306667pt;}
.y23_c00155{bottom:257.666667pt;}
.y22_c00155{bottom:273.026667pt;}
.y21_c00155{bottom:288.386667pt;}
.y20_c00155{bottom:294.466667pt;}
.y1f_c00155{bottom:304.066667pt;}
.y1e_c00155{bottom:324.573333pt;}
.y1d_c00155{bottom:352.093333pt;}
.y1c_c00155{bottom:379.933333pt;}
.y1b_c00155{bottom:407.453333pt;}
.y1a_c00155{bottom:435.013333pt;}
.y19_c00155{bottom:462.533333pt;}
.y18_c00155{bottom:490.053333pt;}
.y17_c00155{bottom:517.893333pt;}
.y16_c00155{bottom:545.440000pt;}
.y15_c00155{bottom:572.960000pt;}
.y14_c00155{bottom:600.480000pt;}
.y13_c00155{bottom:634.080000pt;}
.y12_c00155{bottom:657.146667pt;}
.y11_c00155{bottom:688.186667pt;}
.y10_c00155{bottom:719.226667pt;}
.yf_c00155{bottom:750.306667pt;}
.ye_c00155{bottom:781.346667pt;}
.yd_c00155{bottom:812.386667pt;}
.yc_c00155{bottom:843.106667pt;}
.yb_c00155{bottom:876.413333pt;}
.ya_c00155{bottom:911.933333pt;}
.y9_c00155{bottom:939.453333pt;}
.y7_c00155{bottom:967.013333pt;}
.y8_c00155{bottom:974.373333pt;}
.y6_c00155{bottom:994.853333pt;}
.y2_c00155{bottom:1056.933333pt;}
.h3_c00155{height:18.266667pt;}
.ha_c00155{height:33.918750pt;}
.h4_c00155{height:36.796000pt;}
.h7_c00155{height:41.456250pt;}
.h9_c00155{height:52.736250pt;}
.h8_c00155{height:52.762500pt;}
.h2_c00155{height:57.375000pt;}
.h5_c00155{height:62.812500pt;}
.h6_c00155{height:1122.556000pt;}
.h0_c00155{height:1122.560000pt;}
.h1_c00155{height:1122.666667pt;}
.w2_c00155{width:7.386667pt;}
.w3_c00155{width:567.280000pt;}
.w4_c00155{width:793.917333pt;}
.w0_c00155{width:793.920000pt;}
.w1_c00155{width:794.000000pt;}
.x0_c00155{left:0.000000pt;}
.x3_c00155{left:113.324000pt;}
.x8_c00155{left:122.304000pt;}
.x1_c00155{left:137.346667pt;}
.x6_c00155{left:151.106667pt;}
.x7_c00155{left:305.413333pt;}
.x4_c00155{left:665.530667pt;}
.x2_c00155{left:673.213333pt;}
.x5_c00155{left:676.453333pt;}
}





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

.ir_c00156:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00156;src:url('chunks/assets/font_df548fb5ad370c73d366a622.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_14db9d1382aff7a864b8c8c9.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_a9cf22771dfa3f8e640a4374.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;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_c00156;src:url('chunks/assets/font_8d80cd80b9de0a9ed2315983.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00156;src:url('chunks/assets/font_c8042b3ef479353b09c8ca08.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00156;src:url('chunks/assets/font_b4630c8dc26c9360ebd0e367.woff2')format("woff");}.ff6_c00156{font-family:ff6_c00156;line-height:1.104004;font-style:normal;font-weight: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_c00156;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff7_c00156{font-family:ff7_c00156;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls9_c00156{letter-spacing:-1.440000px;}
.lsa_c00156{letter-spacing:-1.422000px;}
.ls8_c00156{letter-spacing:-1.380000px;}
.lsb_c00156{letter-spacing:-0.720000px;}
.lsc_c00156{letter-spacing:-0.486600px;}
.ls7_c00156{letter-spacing:0.000000px;}
.ls1_c00156{letter-spacing:0.048960px;}
.ls2_c00156{letter-spacing:0.576000px;}
.ls0_c00156{letter-spacing:0.720000px;}
.ls3_c00156{letter-spacing:1.440000px;}
.ls5_c00156{letter-spacing:9.360000px;}
.ls6_c00156{letter-spacing:16.560000px;}
.ls4_c00156{letter-spacing:20.880000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00156{word-spacing:-60.480000px;}
.ws0_c00156{word-spacing:-18.000000px;}
.ws1_c00156{word-spacing:-15.120000px;}
.ws4_c00156{word-spacing:-14.633400px;}
.ws3_c00156{word-spacing:-13.698000px;}
.ws5_c00156{word-spacing:0.000000px;}
._2_c00156{margin-left:-2.736000px;}
._0_c00156{margin-left:-1.296000px;}
._3_c00156{width:1.512000px;}
._1_c00156{width:2.808000px;}
._6_c00156{width:4.086599px;}
._12_c00156{width:5.184000px;}
._7_c00156{width:7.128000px;}
._8_c00156{width:8.256000px;}
._9_c00156{width:9.648000px;}
._10_c00156{width:11.280000px;}
._4_c00156{width:14.904000px;}
._5_c00156{width:15.971976px;}
._11_c00156{width:16.992000px;}
._e_c00156{width:19.800000px;}
._f_c00156{width:21.252024px;}
._d_c00156{width:26.640000px;}
._b_c00156{width:66.168000px;}
._a_c00156{width:67.248000px;}
._c_c00156{width:69.492000px;}
.fc1_c00156{color:rgb(255,0,0);}
.fc0_c00156{color:rgb(0,0,0);}
.fs3_c00156{font-size:38.880000px;}
.fs2_c00156{font-size:47.520000px;}
.fs1_c00156{font-size:60.480000px;}
.fs0_c00156{font-size:72.000000px;}
.y0_c00156{bottom:0.000000px;}
.y3_c00156{bottom:4.320000px;}
.y5_c00156{bottom:25.200000px;}
.y4_c00156{bottom:32.040000px;}
.y1_c00156{bottom:57.240000px;}
.y2c_c00156{bottom:151.590000px;}
.y2b_c00156{bottom:168.870000px;}
.y2a_c00156{bottom:186.150000px;}
.y29_c00156{bottom:203.430000px;}
.y28_c00156{bottom:220.710000px;}
.y27_c00156{bottom:238.035000px;}
.y26_c00156{bottom:244.875000px;}
.y25_c00156{bottom:255.315000px;}
.y24_c00156{bottom:272.595000px;}
.y23_c00156{bottom:289.875000px;}
.y22_c00156{bottom:307.155000px;}
.y21_c00156{bottom:313.995000px;}
.y20_c00156{bottom:324.795000px;}
.y1f_c00156{bottom:356.145000px;}
.y1e_c00156{bottom:387.105000px;}
.y1d_c00156{bottom:427.425000px;}
.y1c_c00156{bottom:458.385000px;}
.y1a_c00156{bottom:489.390000px;}
.y1b_c00156{bottom:497.670000px;}
.y19_c00156{bottom:520.350000px;}
.y18_c00156{bottom:551.310000px;}
.y17_c00156{bottom:582.630000px;}
.y16_c00156{bottom:613.620000px;}
.y14_c00156{bottom:644.580000px;}
.y15_c00156{bottom:652.860000px;}
.y13_c00156{bottom:675.540000px;}
.y12_c00156{bottom:706.860000px;}
.y11_c00156{bottom:746.850000px;}
.y10_c00156{bottom:775.650000px;}
.yf_c00156{bottom:801.570000px;}
.ye_c00156{bottom:836.490000px;}
.yd_c00156{bottom:871.095000px;}
.yc_c00156{bottom:906.015000px;}
.yb_c00156{bottom:940.935000px;}
.ya_c00156{bottom:975.885000px;}
.y9_c00156{bottom:1010.805000px;}
.y8_c00156{bottom:1047.885000px;}
.y7_c00156{bottom:1087.890000px;}
.y6_c00156{bottom:1119.210000px;}
.y2_c00156{bottom:1189.050000px;}
.h3_c00156{height:20.550000px;}
.hb_c00156{height:38.158594px;}
.h4_c00156{height:41.395500px;}
.ha_c00156{height:46.638281px;}
.h7_c00156{height:59.328281px;}
.h6_c00156{height:59.357813px;}
.h2_c00156{height:64.546875px;}
.h8_c00156{height:70.628906px;}
.h5_c00156{height:70.664062px;}
.h9_c00156{height:1262.875500px;}
.h0_c00156{height:1262.880000px;}
.h1_c00156{height:1263.000000px;}
.w2_c00156{width:8.310000px;}
.w3_c00156{width:638.190000px;}
.w4_c00156{width:893.157000px;}
.w0_c00156{width:893.160000px;}
.w1_c00156{width:893.250000px;}
.x0_c00156{left:0.000000px;}
.x3_c00156{left:127.489500px;}
.xa_c00156{left:137.592000px;}
.x1_c00156{left:154.515000px;}
.x4_c00156{left:169.995000px;}
.x5_c00156{left:244.182000px;}
.x6_c00156{left:256.425000px;}
.x9_c00156{left:343.590000px;}
.x7_c00156{left:425.697000px;}
.x8_c00156{left:437.940000px;}
.x2_c00156{left:757.365000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls9_c00156{letter-spacing:-1.280000pt;}
.lsa_c00156{letter-spacing:-1.264000pt;}
.ls8_c00156{letter-spacing:-1.226667pt;}
.lsb_c00156{letter-spacing:-0.640000pt;}
.lsc_c00156{letter-spacing:-0.432533pt;}
.ls7_c00156{letter-spacing:0.000000pt;}
.ls1_c00156{letter-spacing:0.043520pt;}
.ls2_c00156{letter-spacing:0.512000pt;}
.ls0_c00156{letter-spacing:0.640000pt;}
.ls3_c00156{letter-spacing:1.280000pt;}
.ls5_c00156{letter-spacing:8.320000pt;}
.ls6_c00156{letter-spacing:14.720000pt;}
.ls4_c00156{letter-spacing:18.560000pt;}
.ws2_c00156{word-spacing:-53.760000pt;}
.ws0_c00156{word-spacing:-16.000000pt;}
.ws1_c00156{word-spacing:-13.440000pt;}
.ws4_c00156{word-spacing:-13.007467pt;}
.ws3_c00156{word-spacing:-12.176000pt;}
.ws5_c00156{word-spacing:0.000000pt;}
._2_c00156{margin-left:-2.432000pt;}
._0_c00156{margin-left:-1.152000pt;}
._3_c00156{width:1.344000pt;}
._1_c00156{width:2.496000pt;}
._6_c00156{width:3.632532pt;}
._12_c00156{width:4.608000pt;}
._7_c00156{width:6.336000pt;}
._8_c00156{width:7.338667pt;}
._9_c00156{width:8.576000pt;}
._10_c00156{width:10.026667pt;}
._4_c00156{width:13.248000pt;}
._5_c00156{width:14.197312pt;}
._11_c00156{width:15.104000pt;}
._e_c00156{width:17.600000pt;}
._f_c00156{width:18.890688pt;}
._d_c00156{width:23.680000pt;}
._b_c00156{width:58.816000pt;}
._a_c00156{width:59.776000pt;}
._c_c00156{width:61.770667pt;}
.fs3_c00156{font-size:34.560000pt;}
.fs2_c00156{font-size:42.240000pt;}
.fs1_c00156{font-size:53.760000pt;}
.fs0_c00156{font-size:64.000000pt;}
.y0_c00156{bottom:0.000000pt;}
.y3_c00156{bottom:3.840000pt;}
.y5_c00156{bottom:22.400000pt;}
.y4_c00156{bottom:28.480000pt;}
.y1_c00156{bottom:50.880000pt;}
.y2c_c00156{bottom:134.746667pt;}
.y2b_c00156{bottom:150.106667pt;}
.y2a_c00156{bottom:165.466667pt;}
.y29_c00156{bottom:180.826667pt;}
.y28_c00156{bottom:196.186667pt;}
.y27_c00156{bottom:211.586667pt;}
.y26_c00156{bottom:217.666667pt;}
.y25_c00156{bottom:226.946667pt;}
.y24_c00156{bottom:242.306667pt;}
.y23_c00156{bottom:257.666667pt;}
.y22_c00156{bottom:273.026667pt;}
.y21_c00156{bottom:279.106667pt;}
.y20_c00156{bottom:288.706667pt;}
.y1f_c00156{bottom:316.573333pt;}
.y1e_c00156{bottom:344.093333pt;}
.y1d_c00156{bottom:379.933333pt;}
.y1c_c00156{bottom:407.453333pt;}
.y1a_c00156{bottom:435.013333pt;}
.y1b_c00156{bottom:442.373333pt;}
.y19_c00156{bottom:462.533333pt;}
.y18_c00156{bottom:490.053333pt;}
.y17_c00156{bottom:517.893333pt;}
.y16_c00156{bottom:545.440000pt;}
.y14_c00156{bottom:572.960000pt;}
.y15_c00156{bottom:580.320000pt;}
.y13_c00156{bottom:600.480000pt;}
.y12_c00156{bottom:628.320000pt;}
.y11_c00156{bottom:663.866667pt;}
.y10_c00156{bottom:689.466667pt;}
.yf_c00156{bottom:712.506667pt;}
.ye_c00156{bottom:743.546667pt;}
.yd_c00156{bottom:774.306667pt;}
.yc_c00156{bottom:805.346667pt;}
.yb_c00156{bottom:836.386667pt;}
.ya_c00156{bottom:867.453333pt;}
.y9_c00156{bottom:898.493333pt;}
.y8_c00156{bottom:931.453333pt;}
.y7_c00156{bottom:967.013333pt;}
.y6_c00156{bottom:994.853333pt;}
.y2_c00156{bottom:1056.933333pt;}
.h3_c00156{height:18.266667pt;}
.hb_c00156{height:33.918750pt;}
.h4_c00156{height:36.796000pt;}
.ha_c00156{height:41.456250pt;}
.h7_c00156{height:52.736250pt;}
.h6_c00156{height:52.762500pt;}
.h2_c00156{height:57.375000pt;}
.h8_c00156{height:62.781250pt;}
.h5_c00156{height:62.812500pt;}
.h9_c00156{height:1122.556000pt;}
.h0_c00156{height:1122.560000pt;}
.h1_c00156{height:1122.666667pt;}
.w2_c00156{width:7.386667pt;}
.w3_c00156{width:567.280000pt;}
.w4_c00156{width:793.917333pt;}
.w0_c00156{width:793.920000pt;}
.w1_c00156{width:794.000000pt;}
.x0_c00156{left:0.000000pt;}
.x3_c00156{left:113.324000pt;}
.xa_c00156{left:122.304000pt;}
.x1_c00156{left:137.346667pt;}
.x4_c00156{left:151.106667pt;}
.x5_c00156{left:217.050667pt;}
.x6_c00156{left:227.933333pt;}
.x9_c00156{left:305.413333pt;}
.x7_c00156{left:378.397333pt;}
.x8_c00156{left:389.280000pt;}
.x2_c00156{left:673.213333pt;}
}





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

.ir_c00157:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00157;src:url('chunks/assets/font_953497a319dbcd2d105c00b7.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00157;src:url('chunks/assets/font_1e1d1f6703f293dcfafa78d1.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_895a56829ca61d80e16cc1f8.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;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_c00157;src:url('chunks/assets/font_4b2800f589a02717e89060f2.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls8_c00157{letter-spacing:-0.360000px;}
.ls6_c00157{letter-spacing:-0.288000px;}
.ls9_c00157{letter-spacing:-0.144000px;}
.ls5_c00157{letter-spacing:0.000000px;}
.lsa_c00157{letter-spacing:0.072000px;}
.ls3_c00157{letter-spacing:0.120000px;}
.ls2_c00157{letter-spacing:0.144000px;}
.ls1_c00157{letter-spacing:0.516000px;}
.ls7_c00157{letter-spacing:0.648000px;}
.ls0_c00157{letter-spacing:0.720000px;}
.ls4_c00157{letter-spacing:1.272000px;}
.lsb_c00157{letter-spacing:2.160000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00157{word-spacing:-72.000000px;}
.ws5_c00157{word-spacing:-40.680000px;}
.ws1_c00157{word-spacing:-40.608000px;}
.ws3_c00157{word-spacing:-40.464000px;}
.ws4_c00157{word-spacing:-18.720000px;}
.ws2_c00157{word-spacing:-18.648000px;}
.ws0_c00157{word-spacing:-18.000000px;}
.ws7_c00157{word-spacing:0.000000px;}
._3_c00157{margin-left:-3.096000px;}
._1_c00157{margin-left:-1.440000px;}
._0_c00157{width:1.080000px;}
._4_c00157{width:2.160000px;}
._6_c00157{width:3.240000px;}
._8_c00157{width:4.680000px;}
._a_c00157{width:5.760000px;}
._9_c00157{width:6.840000px;}
._b_c00157{width:8.652000px;}
._d_c00157{width:9.804000px;}
._c_c00157{width:10.848000px;}
._f_c00157{width:12.096000px;}
._e_c00157{width:13.104000px;}
._14_c00157{width:15.756000px;}
._13_c00157{width:16.776000px;}
._7_c00157{width:19.440000px;}
._11_c00157{width:21.024000px;}
._12_c00157{width:22.032000px;}
._15_c00157{width:24.048000px;}
._2_c00157{width:26.856000px;}
._5_c00157{width:28.728000px;}
._10_c00157{width:29.748024px;}
.fc0_c00157{color:rgb(0,0,0);}
.fs0_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y3_c00157{bottom:4.320000px;}
.y5_c00157{bottom:25.200000px;}
.y4_c00157{bottom:32.040000px;}
.y1_c00157{bottom:57.240000px;}
.y24_c00157{bottom:151.230000px;}
.y23_c00157{bottom:182.550000px;}
.y22_c00157{bottom:213.510000px;}
.y21_c00157{bottom:244.515000px;}
.y20_c00157{bottom:284.475000px;}
.y1f_c00157{bottom:315.795000px;}
.y1e_c00157{bottom:355.785000px;}
.y1d_c00157{bottom:395.745000px;}
.y1c_c00157{bottom:426.705000px;}
.y1b_c00157{bottom:458.025000px;}
.y1a_c00157{bottom:489.030000px;}
.y19_c00157{bottom:528.990000px;}
.y18_c00157{bottom:559.950000px;}
.y17_c00157{bottom:590.910000px;}
.y16_c00157{bottom:622.260000px;}
.y15_c00157{bottom:653.220000px;}
.y14_c00157{bottom:684.180000px;}
.y13_c00157{bottom:715.140000px;}
.y12_c00157{bottom:746.490000px;}
.y11_c00157{bottom:777.450000px;}
.y10_c00157{bottom:808.410000px;}
.yf_c00157{bottom:839.370000px;}
.ye_c00157{bottom:870.735000px;}
.yd_c00157{bottom:901.695000px;}
.yc_c00157{bottom:932.655000px;}
.yb_c00157{bottom:963.645000px;}
.ya_c00157{bottom:994.965000px;}
.y9_c00157{bottom:1025.925000px;}
.y8_c00157{bottom:1056.885000px;}
.y7_c00157{bottom:1087.890000px;}
.y6_c00157{bottom:1119.210000px;}
.y2_c00157{bottom:1189.050000px;}
.h3_c00157{height:20.550000px;}
.h4_c00157{height:41.395500px;}
.h2_c00157{height:64.546875px;}
.h6_c00157{height:70.628906px;}
.h5_c00157{height:70.664062px;}
.h0_c00157{height:1262.880000px;}
.h1_c00157{height:1263.000000px;}
.w2_c00157{width:8.310000px;}
.w3_c00157{width:638.190000px;}
.w0_c00157{width:893.160000px;}
.w1_c00157{width:893.250000px;}
.x0_c00157{left:0.000000px;}
.x3_c00157{left:127.489500px;}
.x1_c00157{left:154.515000px;}
.x4_c00157{left:169.995000px;}
.x5_c00157{left:178.635000px;}
.x2_c00157{left:757.365000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls8_c00157{letter-spacing:-0.320000pt;}
.ls6_c00157{letter-spacing:-0.256000pt;}
.ls9_c00157{letter-spacing:-0.128000pt;}
.ls5_c00157{letter-spacing:0.000000pt;}
.lsa_c00157{letter-spacing:0.064000pt;}
.ls3_c00157{letter-spacing:0.106667pt;}
.ls2_c00157{letter-spacing:0.128000pt;}
.ls1_c00157{letter-spacing:0.458667pt;}
.ls7_c00157{letter-spacing:0.576000pt;}
.ls0_c00157{letter-spacing:0.640000pt;}
.ls4_c00157{letter-spacing:1.130667pt;}
.lsb_c00157{letter-spacing:1.920000pt;}
.ws6_c00157{word-spacing:-64.000000pt;}
.ws5_c00157{word-spacing:-36.160000pt;}
.ws1_c00157{word-spacing:-36.096000pt;}
.ws3_c00157{word-spacing:-35.968000pt;}
.ws4_c00157{word-spacing:-16.640000pt;}
.ws2_c00157{word-spacing:-16.576000pt;}
.ws0_c00157{word-spacing:-16.000000pt;}
.ws7_c00157{word-spacing:0.000000pt;}
._3_c00157{margin-left:-2.752000pt;}
._1_c00157{margin-left:-1.280000pt;}
._0_c00157{width:0.960000pt;}
._4_c00157{width:1.920000pt;}
._6_c00157{width:2.880000pt;}
._8_c00157{width:4.160000pt;}
._a_c00157{width:5.120000pt;}
._9_c00157{width:6.080000pt;}
._b_c00157{width:7.690667pt;}
._d_c00157{width:8.714667pt;}
._c_c00157{width:9.642667pt;}
._f_c00157{width:10.752000pt;}
._e_c00157{width:11.648000pt;}
._14_c00157{width:14.005333pt;}
._13_c00157{width:14.912000pt;}
._7_c00157{width:17.280000pt;}
._11_c00157{width:18.688000pt;}
._12_c00157{width:19.584000pt;}
._15_c00157{width:21.376000pt;}
._2_c00157{width:23.872000pt;}
._5_c00157{width:25.536000pt;}
._10_c00157{width:26.442688pt;}
.fs0_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y3_c00157{bottom:3.840000pt;}
.y5_c00157{bottom:22.400000pt;}
.y4_c00157{bottom:28.480000pt;}
.y1_c00157{bottom:50.880000pt;}
.y24_c00157{bottom:134.426667pt;}
.y23_c00157{bottom:162.266667pt;}
.y22_c00157{bottom:189.786667pt;}
.y21_c00157{bottom:217.346667pt;}
.y20_c00157{bottom:252.866667pt;}
.y1f_c00157{bottom:280.706667pt;}
.y1e_c00157{bottom:316.253333pt;}
.y1d_c00157{bottom:351.773333pt;}
.y1c_c00157{bottom:379.293333pt;}
.y1b_c00157{bottom:407.133333pt;}
.y1a_c00157{bottom:434.693333pt;}
.y19_c00157{bottom:470.213333pt;}
.y18_c00157{bottom:497.733333pt;}
.y17_c00157{bottom:525.253333pt;}
.y16_c00157{bottom:553.120000pt;}
.y15_c00157{bottom:580.640000pt;}
.y14_c00157{bottom:608.160000pt;}
.y13_c00157{bottom:635.680000pt;}
.y12_c00157{bottom:663.546667pt;}
.y11_c00157{bottom:691.066667pt;}
.y10_c00157{bottom:718.586667pt;}
.yf_c00157{bottom:746.106667pt;}
.ye_c00157{bottom:773.986667pt;}
.yd_c00157{bottom:801.506667pt;}
.yc_c00157{bottom:829.026667pt;}
.yb_c00157{bottom:856.573333pt;}
.ya_c00157{bottom:884.413333pt;}
.y9_c00157{bottom:911.933333pt;}
.y8_c00157{bottom:939.453333pt;}
.y7_c00157{bottom:967.013333pt;}
.y6_c00157{bottom:994.853333pt;}
.y2_c00157{bottom:1056.933333pt;}
.h3_c00157{height:18.266667pt;}
.h4_c00157{height:36.796000pt;}
.h2_c00157{height:57.375000pt;}
.h6_c00157{height:62.781250pt;}
.h5_c00157{height:62.812500pt;}
.h0_c00157{height:1122.560000pt;}
.h1_c00157{height:1122.666667pt;}
.w2_c00157{width:7.386667pt;}
.w3_c00157{width:567.280000pt;}
.w0_c00157{width:793.920000pt;}
.w1_c00157{width:794.000000pt;}
.x0_c00157{left:0.000000pt;}
.x3_c00157{left:113.324000pt;}
.x1_c00157{left:137.346667pt;}
.x4_c00157{left:151.106667pt;}
.x5_c00157{left:158.786667pt;}
.x2_c00157{left:673.213333pt;}
}





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

.ir_c00158:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00158;src:url('chunks/assets/font_c263ad30f8a3f38b20e29a46.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_de6051a0bb7d7173247ac441.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_71c7d6f3bdd22b9d5f418a86.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;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_c00158;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_d8883ba883d3eecd4cd6f094.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls2_c00158{letter-spacing:0.000000px;}
.ls0_c00158{letter-spacing:0.120000px;}
.ls1_c00158{letter-spacing:0.720000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00158{word-spacing:-72.000000px;}
.ws0_c00158{word-spacing:-18.000000px;}
.ws2_c00158{word-spacing:0.000000px;}
._6_c00158{margin-left:-2.736000px;}
._2_c00158{margin-left:-1.440000px;}
._1_c00158{width:1.368000px;}
._5_c00158{width:2.520000px;}
._0_c00158{width:4.104000px;}
._3_c00158{width:5.616000px;}
._4_c00158{width:7.272000px;}
._9_c00158{width:8.424000px;}
._8_c00158{width:9.936000px;}
._a_c00158{width:11.328000px;}
._12_c00158{width:12.456000px;}
._10_c00158{width:15.480000px;}
._11_c00158{width:16.920000px;}
._7_c00158{width:19.080000px;}
._d_c00158{width:20.088000px;}
._e_c00158{width:21.096000px;}
._f_c00158{width:22.320000px;}
._b_c00158{width:39.180024px;}
._c_c00158{width:41.112000px;}
.fc1_c00158{color:rgb(255,0,0);}
.fc0_c00158{color:rgb(0,0,0);}
.fs0_c00158{font-size:72.000000px;}
.y0_c00158{bottom:0.000000px;}
.y3_c00158{bottom:4.320000px;}
.y5_c00158{bottom:25.200000px;}
.y4_c00158{bottom:32.040000px;}
.y1_c00158{bottom:57.240000px;}
.y24_c00158{bottom:133.236000px;}
.y23_c00158{bottom:173.550000px;}
.y22_c00158{bottom:204.510000px;}
.y21_c00158{bottom:235.515000px;}
.y20_c00158{bottom:266.475000px;}
.y1f_c00158{bottom:297.795000px;}
.y1e_c00158{bottom:337.755000px;}
.y1d_c00158{bottom:368.745000px;}
.y1c_c00158{bottom:399.705000px;}
.y1b_c00158{bottom:431.025000px;}
.y1a_c00158{bottom:461.985000px;}
.y19_c00158{bottom:492.990000px;}
.y18_c00158{bottom:523.950000px;}
.y17_c00158{bottom:554.910000px;}
.y16_c00158{bottom:586.230000px;}
.y15_c00158{bottom:617.220000px;}
.y14_c00158{bottom:648.180000px;}
.y13_c00158{bottom:679.140000px;}
.y12_c00158{bottom:710.460000px;}
.y11_c00158{bottom:750.450000px;}
.y10_c00158{bottom:781.410000px;}
.yf_c00158{bottom:812.370000px;}
.ye_c00158{bottom:843.735000px;}
.yd_c00158{bottom:874.695000px;}
.yc_c00158{bottom:914.655000px;}
.yb_c00158{bottom:954.615000px;}
.ya_c00158{bottom:994.965000px;}
.y9_c00158{bottom:1025.925000px;}
.y8_c00158{bottom:1056.885000px;}
.y7_c00158{bottom:1087.890000px;}
.y6_c00158{bottom:1119.210000px;}
.y2_c00158{bottom:1189.050000px;}
.h3_c00158{height:20.550000px;}
.h4_c00158{height:41.395500px;}
.h2_c00158{height:64.546875px;}
.h6_c00158{height:70.628906px;}
.h5_c00158{height:70.664062px;}
.h0_c00158{height:1262.880000px;}
.h1_c00158{height:1263.000000px;}
.w2_c00158{width:8.310000px;}
.w3_c00158{width:638.190000px;}
.w0_c00158{width:893.160000px;}
.w1_c00158{width:893.250000px;}
.x0_c00158{left:0.000000px;}
.x3_c00158{left:127.489500px;}
.x1_c00158{left:154.515000px;}
.x4_c00158{left:178.635000px;}
.x2_c00158{left:757.365000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls2_c00158{letter-spacing:0.000000pt;}
.ls0_c00158{letter-spacing:0.106667pt;}
.ls1_c00158{letter-spacing:0.640000pt;}
.ws1_c00158{word-spacing:-64.000000pt;}
.ws0_c00158{word-spacing:-16.000000pt;}
.ws2_c00158{word-spacing:0.000000pt;}
._6_c00158{margin-left:-2.432000pt;}
._2_c00158{margin-left:-1.280000pt;}
._1_c00158{width:1.216000pt;}
._5_c00158{width:2.240000pt;}
._0_c00158{width:3.648000pt;}
._3_c00158{width:4.992000pt;}
._4_c00158{width:6.464000pt;}
._9_c00158{width:7.488000pt;}
._8_c00158{width:8.832000pt;}
._a_c00158{width:10.069333pt;}
._12_c00158{width:11.072000pt;}
._10_c00158{width:13.760000pt;}
._11_c00158{width:15.040000pt;}
._7_c00158{width:16.960000pt;}
._d_c00158{width:17.856000pt;}
._e_c00158{width:18.752000pt;}
._f_c00158{width:19.840000pt;}
._b_c00158{width:34.826688pt;}
._c_c00158{width:36.544000pt;}
.fs0_c00158{font-size:64.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y3_c00158{bottom:3.840000pt;}
.y5_c00158{bottom:22.400000pt;}
.y4_c00158{bottom:28.480000pt;}
.y1_c00158{bottom:50.880000pt;}
.y24_c00158{bottom:118.432000pt;}
.y23_c00158{bottom:154.266667pt;}
.y22_c00158{bottom:181.786667pt;}
.y21_c00158{bottom:209.346667pt;}
.y20_c00158{bottom:236.866667pt;}
.y1f_c00158{bottom:264.706667pt;}
.y1e_c00158{bottom:300.226667pt;}
.y1d_c00158{bottom:327.773333pt;}
.y1c_c00158{bottom:355.293333pt;}
.y1b_c00158{bottom:383.133333pt;}
.y1a_c00158{bottom:410.653333pt;}
.y19_c00158{bottom:438.213333pt;}
.y18_c00158{bottom:465.733333pt;}
.y17_c00158{bottom:493.253333pt;}
.y16_c00158{bottom:521.093333pt;}
.y15_c00158{bottom:548.640000pt;}
.y14_c00158{bottom:576.160000pt;}
.y13_c00158{bottom:603.680000pt;}
.y12_c00158{bottom:631.520000pt;}
.y11_c00158{bottom:667.066667pt;}
.y10_c00158{bottom:694.586667pt;}
.yf_c00158{bottom:722.106667pt;}
.ye_c00158{bottom:749.986667pt;}
.yd_c00158{bottom:777.506667pt;}
.yc_c00158{bottom:813.026667pt;}
.yb_c00158{bottom:848.546667pt;}
.ya_c00158{bottom:884.413333pt;}
.y9_c00158{bottom:911.933333pt;}
.y8_c00158{bottom:939.453333pt;}
.y7_c00158{bottom:967.013333pt;}
.y6_c00158{bottom:994.853333pt;}
.y2_c00158{bottom:1056.933333pt;}
.h3_c00158{height:18.266667pt;}
.h4_c00158{height:36.796000pt;}
.h2_c00158{height:57.375000pt;}
.h6_c00158{height:62.781250pt;}
.h5_c00158{height:62.812500pt;}
.h0_c00158{height:1122.560000pt;}
.h1_c00158{height:1122.666667pt;}
.w2_c00158{width:7.386667pt;}
.w3_c00158{width:567.280000pt;}
.w0_c00158{width:793.920000pt;}
.w1_c00158{width:794.000000pt;}
.x0_c00158{left:0.000000pt;}
.x3_c00158{left:113.324000pt;}
.x1_c00158{left:137.346667pt;}
.x4_c00158{left:158.786667pt;}
.x2_c00158{left:673.213333pt;}
}





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

.ir_c00159:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00159;src:url('chunks/assets/font_e2271f0005dffd658ed766fe.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_c671aa971c35be8829471d2b.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_c8e587057a51149db7d37fe9.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_a3ccbf3101bc076b7994eacf.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;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_c00159;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00159;src:url('chunks/assets/font_16c0cb748c9e9d93cb420005.woff2')format("woff");}.ff6_c00159{font-family:ff6_c00159;line-height:1.104004;font-style:normal;font-weight: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_c00159;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff7_c00159{font-family:ff7_c00159;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.lsa_c00159{letter-spacing:-2.880000px;}
.ls6_c00159{letter-spacing:-1.416000px;}
.ls5_c00159{letter-spacing:-0.912000px;}
.ls9_c00159{letter-spacing:-0.241800px;}
.ls4_c00159{letter-spacing:0.000000px;}
.ls8_c00159{letter-spacing:0.060600px;}
.ls7_c00159{letter-spacing:0.529800px;}
.ls2_c00159{letter-spacing:0.720000px;}
.ls3_c00159{letter-spacing:0.740373px;}
.ls0_c00159{letter-spacing:1.440000px;}
.ls1_c00159{letter-spacing:5.040000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00159{word-spacing:-72.000000px;}
.ws5_c00159{word-spacing:-60.480000px;}
.ws0_c00159{word-spacing:-18.000000px;}
.ws3_c00159{word-spacing:-15.180600px;}
.ws2_c00159{word-spacing:-15.120000px;}
.ws4_c00159{word-spacing:-14.878200px;}
.ws6_c00159{word-spacing:0.000000px;}
._3_c00159{margin-left:-2.880000px;}
._0_c00159{margin-left:-1.152000px;}
._1_c00159{width:1.080000px;}
._5_c00159{width:2.088000px;}
._4_c00159{width:3.240000px;}
._a_c00159{width:4.248000px;}
._2_c00159{width:5.472000px;}
._9_c00159{width:7.416000px;}
._6_c00159{width:8.856000px;}
._7_c00159{width:10.152000px;}
._8_c00159{width:11.160000px;}
._c_c00159{width:12.960000px;}
._d_c00159{width:14.184000px;}
._b_c00159{width:16.632000px;}
._e_c00159{width:20.016000px;}
._f_c00159{width:21.528000px;}
.fc1_c00159{color:rgb(255,0,0);}
.fc0_c00159{color:rgb(0,0,0);}
.fs3_c00159{font-size:38.880000px;}
.fs1_c00159{font-size:47.520000px;}
.fs2_c00159{font-size:60.480000px;}
.fs0_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y3_c00159{bottom:4.320000px;}
.y5_c00159{bottom:25.200000px;}
.y4_c00159{bottom:32.040000px;}
.y1_c00159{bottom:57.240000px;}
.y28_c00159{bottom:151.590000px;}
.y27_c00159{bottom:168.870000px;}
.y26_c00159{bottom:186.150000px;}
.y25_c00159{bottom:203.430000px;}
.y24_c00159{bottom:220.710000px;}
.y23_c00159{bottom:238.035000px;}
.y22_c00159{bottom:255.315000px;}
.y21_c00159{bottom:262.155000px;}
.y20_c00159{bottom:272.955000px;}
.y1f_c00159{bottom:307.155000px;}
.y1e_c00159{bottom:347.115000px;}
.y1d_c00159{bottom:384.945000px;}
.y1c_c00159{bottom:410.865000px;}
.y1b_c00159{bottom:445.785000px;}
.y1a_c00159{bottom:480.750000px;}
.y19_c00159{bottom:515.310000px;}
.y18_c00159{bottom:550.230000px;}
.y17_c00159{bottom:585.150000px;}
.y16_c00159{bottom:620.100000px;}
.y15_c00159{bottom:657.180000px;}
.y14_c00159{bottom:697.140000px;}
.y13_c00159{bottom:737.490000px;}
.y12_c00159{bottom:777.450000px;}
.y11_c00159{bottom:808.410000px;}
.y10_c00159{bottom:839.370000px;}
.yf_c00159{bottom:870.735000px;}
.ye_c00159{bottom:901.695000px;}
.yd_c00159{bottom:932.655000px;}
.yc_c00159{bottom:963.645000px;}
.yb_c00159{bottom:994.965000px;}
.ya_c00159{bottom:1025.925000px;}
.y9_c00159{bottom:1056.885000px;}
.y7_c00159{bottom:1087.890000px;}
.y8_c00159{bottom:1096.170000px;}
.y6_c00159{bottom:1119.210000px;}
.y2_c00159{bottom:1189.050000px;}
.h3_c00159{height:20.550000px;}
.hb_c00159{height:34.855313px;}
.h4_c00159{height:41.395500px;}
.h7_c00159{height:46.638281px;}
.hc_c00159{height:54.219375px;}
.ha_c00159{height:59.328281px;}
.h9_c00159{height:59.357813px;}
.h2_c00159{height:64.546875px;}
.h8_c00159{height:70.628906px;}
.h5_c00159{height:70.664062px;}
.h6_c00159{height:1262.875500px;}
.h0_c00159{height:1262.880000px;}
.h1_c00159{height:1263.000000px;}
.w2_c00159{width:8.310000px;}
.w3_c00159{width:638.190000px;}
.w4_c00159{width:893.157000px;}
.w0_c00159{width:893.160000px;}
.w1_c00159{width:893.250000px;}
.x0_c00159{left:0.000000px;}
.x3_c00159{left:127.489500px;}
.x9_c00159{left:137.592000px;}
.x1_c00159{left:154.515000px;}
.x7_c00159{left:169.995000px;}
.x6_c00159{left:180.795000px;}
.x8_c00159{left:343.590000px;}
.x4_c00159{left:698.322000px;}
.x5_c00159{left:710.565000px;}
.x2_c00159{left:757.365000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.lsa_c00159{letter-spacing:-2.560000pt;}
.ls6_c00159{letter-spacing:-1.258667pt;}
.ls5_c00159{letter-spacing:-0.810667pt;}
.ls9_c00159{letter-spacing:-0.214933pt;}
.ls4_c00159{letter-spacing:0.000000pt;}
.ls8_c00159{letter-spacing:0.053867pt;}
.ls7_c00159{letter-spacing:0.470933pt;}
.ls2_c00159{letter-spacing:0.640000pt;}
.ls3_c00159{letter-spacing:0.658109pt;}
.ls0_c00159{letter-spacing:1.280000pt;}
.ls1_c00159{letter-spacing:4.480000pt;}
.ws1_c00159{word-spacing:-64.000000pt;}
.ws5_c00159{word-spacing:-53.760000pt;}
.ws0_c00159{word-spacing:-16.000000pt;}
.ws3_c00159{word-spacing:-13.493867pt;}
.ws2_c00159{word-spacing:-13.440000pt;}
.ws4_c00159{word-spacing:-13.225067pt;}
.ws6_c00159{word-spacing:0.000000pt;}
._3_c00159{margin-left:-2.560000pt;}
._0_c00159{margin-left:-1.024000pt;}
._1_c00159{width:0.960000pt;}
._5_c00159{width:1.856000pt;}
._4_c00159{width:2.880000pt;}
._a_c00159{width:3.776000pt;}
._2_c00159{width:4.864000pt;}
._9_c00159{width:6.592000pt;}
._6_c00159{width:7.872000pt;}
._7_c00159{width:9.024000pt;}
._8_c00159{width:9.920000pt;}
._c_c00159{width:11.520000pt;}
._d_c00159{width:12.608000pt;}
._b_c00159{width:14.784000pt;}
._e_c00159{width:17.792000pt;}
._f_c00159{width:19.136000pt;}
.fs3_c00159{font-size:34.560000pt;}
.fs1_c00159{font-size:42.240000pt;}
.fs2_c00159{font-size:53.760000pt;}
.fs0_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y3_c00159{bottom:3.840000pt;}
.y5_c00159{bottom:22.400000pt;}
.y4_c00159{bottom:28.480000pt;}
.y1_c00159{bottom:50.880000pt;}
.y28_c00159{bottom:134.746667pt;}
.y27_c00159{bottom:150.106667pt;}
.y26_c00159{bottom:165.466667pt;}
.y25_c00159{bottom:180.826667pt;}
.y24_c00159{bottom:196.186667pt;}
.y23_c00159{bottom:211.586667pt;}
.y22_c00159{bottom:226.946667pt;}
.y21_c00159{bottom:233.026667pt;}
.y20_c00159{bottom:242.626667pt;}
.y1f_c00159{bottom:273.026667pt;}
.y1e_c00159{bottom:308.546667pt;}
.y1d_c00159{bottom:342.173333pt;}
.y1c_c00159{bottom:365.213333pt;}
.y1b_c00159{bottom:396.253333pt;}
.y1a_c00159{bottom:427.333333pt;}
.y19_c00159{bottom:458.053333pt;}
.y18_c00159{bottom:489.093333pt;}
.y17_c00159{bottom:520.133333pt;}
.y16_c00159{bottom:551.200000pt;}
.y15_c00159{bottom:584.160000pt;}
.y14_c00159{bottom:619.680000pt;}
.y13_c00159{bottom:655.546667pt;}
.y12_c00159{bottom:691.066667pt;}
.y11_c00159{bottom:718.586667pt;}
.y10_c00159{bottom:746.106667pt;}
.yf_c00159{bottom:773.986667pt;}
.ye_c00159{bottom:801.506667pt;}
.yd_c00159{bottom:829.026667pt;}
.yc_c00159{bottom:856.573333pt;}
.yb_c00159{bottom:884.413333pt;}
.ya_c00159{bottom:911.933333pt;}
.y9_c00159{bottom:939.453333pt;}
.y7_c00159{bottom:967.013333pt;}
.y8_c00159{bottom:974.373333pt;}
.y6_c00159{bottom:994.853333pt;}
.y2_c00159{bottom:1056.933333pt;}
.h3_c00159{height:18.266667pt;}
.hb_c00159{height:30.982500pt;}
.h4_c00159{height:36.796000pt;}
.h7_c00159{height:41.456250pt;}
.hc_c00159{height:48.195000pt;}
.ha_c00159{height:52.736250pt;}
.h9_c00159{height:52.762500pt;}
.h2_c00159{height:57.375000pt;}
.h8_c00159{height:62.781250pt;}
.h5_c00159{height:62.812500pt;}
.h6_c00159{height:1122.556000pt;}
.h0_c00159{height:1122.560000pt;}
.h1_c00159{height:1122.666667pt;}
.w2_c00159{width:7.386667pt;}
.w3_c00159{width:567.280000pt;}
.w4_c00159{width:793.917333pt;}
.w0_c00159{width:793.920000pt;}
.w1_c00159{width:794.000000pt;}
.x0_c00159{left:0.000000pt;}
.x3_c00159{left:113.324000pt;}
.x9_c00159{left:122.304000pt;}
.x1_c00159{left:137.346667pt;}
.x7_c00159{left:151.106667pt;}
.x6_c00159{left:160.706667pt;}
.x8_c00159{left:305.413333pt;}
.x4_c00159{left:620.730667pt;}
.x5_c00159{left:631.613333pt;}
.x2_c00159{left:673.213333pt;}
}





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

.ir_c00160:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00160;src:url('chunks/assets/font_b57b8562b16e4af1cdced3f6.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_11baf3bbe2c53c53f38e1f72.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_67298265c49f7eebd9f40015.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;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_c00160;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00160;src:url('chunks/assets/font_6d6535c1efc9cbc58843dc50.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00160;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00160{font-family:ff6_c00160;line-height:1.311035;font-style:normal;font-weight: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_c00160;src:url('chunks/assets/font_98b1bb9cb22778ee30e26425.woff2')format("woff");}.ff7_c00160{font-family:ff7_c00160;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.lsb_c00160{letter-spacing:-1.908000px;}
.lsd_c00160{letter-spacing:-0.302400px;}
.lsc_c00160{letter-spacing:-0.241800px;}
.ls7_c00160{letter-spacing:0.000000px;}
.lsa_c00160{letter-spacing:0.020400px;}
.ls8_c00160{letter-spacing:0.072000px;}
.ls1_c00160{letter-spacing:0.120000px;}
.ls9_c00160{letter-spacing:0.521400px;}
.lse_c00160{letter-spacing:0.529800px;}
.ls3_c00160{letter-spacing:0.720000px;}
.ls4_c00160{letter-spacing:0.740310px;}
.ls2_c00160{letter-spacing:0.740415px;}
.ls0_c00160{letter-spacing:1.584000px;}
.ls6_c00160{letter-spacing:13.657716px;}
.ls5_c00160{letter-spacing:13.680000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00160{word-spacing:-72.000000px;}
.ws4_c00160{word-spacing:-60.480000px;}
.ws2_c00160{word-spacing:-18.072000px;}
.ws0_c00160{word-spacing:-18.000000px;}
.ws5_c00160{word-spacing:-15.641400px;}
.ws6_c00160{word-spacing:-15.140400px;}
.ws3_c00160{word-spacing:-15.120000px;}
.ws8_c00160{word-spacing:-14.878200px;}
.ws9_c00160{word-spacing:-14.817600px;}
.ws7_c00160{word-spacing:-13.212000px;}
.wsa_c00160{word-spacing:0.000000px;}
._4_c00160{margin-left:-2.880000px;}
._0_c00160{margin-left:-1.152000px;}
._1_c00160{width:1.512000px;}
._5_c00160{width:2.952000px;}
._8_c00160{width:4.248000px;}
._7_c00160{width:5.844000px;}
._3_c00160{width:6.984000px;}
._2_c00160{width:8.184000px;}
._6_c00160{width:9.408000px;}
._e_c00160{width:13.573626px;}
._9_c00160{width:16.873799px;}
._d_c00160{width:19.080000px;}
._c_c00160{width:27.012000px;}
._b_c00160{width:28.428000px;}
._a_c00160{width:30.168000px;}
.fc0_c00160{color:rgb(0,0,0);}
.fs3_c00160{font-size:38.880000px;}
.fs1_c00160{font-size:47.520000px;}
.fs2_c00160{font-size:60.480000px;}
.fs0_c00160{font-size:72.000000px;}
.y0_c00160{bottom:0.000000px;}
.y3_c00160{bottom:4.320000px;}
.y5_c00160{bottom:25.200000px;}
.y4_c00160{bottom:32.040000px;}
.y1_c00160{bottom:57.240000px;}
.y2e_c00160{bottom:131.796000px;}
.y2d_c00160{bottom:151.590000px;}
.y2c_c00160{bottom:168.870000px;}
.y2b_c00160{bottom:175.710000px;}
.y2a_c00160{bottom:186.150000px;}
.y29_c00160{bottom:203.430000px;}
.y28_c00160{bottom:220.710000px;}
.y27_c00160{bottom:238.035000px;}
.y26_c00160{bottom:255.315000px;}
.y25_c00160{bottom:272.595000px;}
.y24_c00160{bottom:289.875000px;}
.y23_c00160{bottom:307.155000px;}
.y22_c00160{bottom:324.435000px;}
.y21_c00160{bottom:341.355000px;}
.y20_c00160{bottom:358.665000px;}
.y1f_c00160{bottom:365.505000px;}
.y1e_c00160{bottom:376.665000px;}
.y1c_c00160{bottom:420.945000px;}
.y1d_c00160{bottom:429.225000px;}
.y1b_c00160{bottom:451.905000px;}
.y1a_c00160{bottom:482.910000px;}
.y19_c00160{bottom:514.230000px;}
.y18_c00160{bottom:552.030000px;}
.y17_c00160{bottom:577.590000px;}
.y16_c00160{bottom:603.540000px;}
.y15_c00160{bottom:629.460000px;}
.y14_c00160{bottom:664.380000px;}
.y13_c00160{bottom:699.300000px;}
.y12_c00160{bottom:734.250000px;}
.y11_c00160{bottom:769.170000px;}
.y10_c00160{bottom:804.090000px;}
.yf_c00160{bottom:838.650000px;}
.ye_c00160{bottom:873.615000px;}
.yd_c00160{bottom:908.535000px;}
.yc_c00160{bottom:945.615000px;}
.yb_c00160{bottom:985.965000px;}
.ya_c00160{bottom:1025.925000px;}
.y9_c00160{bottom:1056.885000px;}
.y7_c00160{bottom:1087.890000px;}
.y8_c00160{bottom:1096.170000px;}
.y6_c00160{bottom:1119.210000px;}
.y2_c00160{bottom:1189.050000px;}
.h3_c00160{height:20.550000px;}
.hb_c00160{height:38.158594px;}
.h4_c00160{height:41.395500px;}
.h7_c00160{height:46.638281px;}
.hc_c00160{height:54.219375px;}
.ha_c00160{height:59.328281px;}
.h8_c00160{height:59.357813px;}
.h9_c00160{height:60.952500px;}
.h2_c00160{height:64.546875px;}
.h5_c00160{height:70.664062px;}
.h6_c00160{height:1262.875500px;}
.h0_c00160{height:1262.880000px;}
.h1_c00160{height:1263.000000px;}
.w2_c00160{width:8.310000px;}
.w3_c00160{width:638.190000px;}
.w4_c00160{width:893.157000px;}
.w0_c00160{width:893.160000px;}
.w1_c00160{width:893.250000px;}
.x0_c00160{left:0.000000px;}
.x3_c00160{left:127.489500px;}
.xa_c00160{left:137.592000px;}
.x1_c00160{left:154.515000px;}
.x4_c00160{left:169.995000px;}
.x9_c00160{left:343.590000px;}
.x7_c00160{left:595.332000px;}
.x8_c00160{left:607.575000px;}
.x5_c00160{left:646.452000px;}
.x6_c00160{left:658.695000px;}
.x2_c00160{left:757.365000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.lsb_c00160{letter-spacing:-1.696000pt;}
.lsd_c00160{letter-spacing:-0.268800pt;}
.lsc_c00160{letter-spacing:-0.214933pt;}
.ls7_c00160{letter-spacing:0.000000pt;}
.lsa_c00160{letter-spacing:0.018133pt;}
.ls8_c00160{letter-spacing:0.064000pt;}
.ls1_c00160{letter-spacing:0.106667pt;}
.ls9_c00160{letter-spacing:0.463467pt;}
.lse_c00160{letter-spacing:0.470933pt;}
.ls3_c00160{letter-spacing:0.640000pt;}
.ls4_c00160{letter-spacing:0.658053pt;}
.ls2_c00160{letter-spacing:0.658147pt;}
.ls0_c00160{letter-spacing:1.408000pt;}
.ls6_c00160{letter-spacing:12.140192pt;}
.ls5_c00160{letter-spacing:12.160000pt;}
.ws1_c00160{word-spacing:-64.000000pt;}
.ws4_c00160{word-spacing:-53.760000pt;}
.ws2_c00160{word-spacing:-16.064000pt;}
.ws0_c00160{word-spacing:-16.000000pt;}
.ws5_c00160{word-spacing:-13.903467pt;}
.ws6_c00160{word-spacing:-13.458133pt;}
.ws3_c00160{word-spacing:-13.440000pt;}
.ws8_c00160{word-spacing:-13.225067pt;}
.ws9_c00160{word-spacing:-13.171200pt;}
.ws7_c00160{word-spacing:-11.744000pt;}
.wsa_c00160{word-spacing:0.000000pt;}
._4_c00160{margin-left:-2.560000pt;}
._0_c00160{margin-left:-1.024000pt;}
._1_c00160{width:1.344000pt;}
._5_c00160{width:2.624000pt;}
._8_c00160{width:3.776000pt;}
._7_c00160{width:5.194667pt;}
._3_c00160{width:6.208000pt;}
._2_c00160{width:7.274667pt;}
._6_c00160{width:8.362667pt;}
._e_c00160{width:12.065446pt;}
._9_c00160{width:14.998932pt;}
._d_c00160{width:16.960000pt;}
._c_c00160{width:24.010667pt;}
._b_c00160{width:25.269333pt;}
._a_c00160{width:26.816000pt;}
.fs3_c00160{font-size:34.560000pt;}
.fs1_c00160{font-size:42.240000pt;}
.fs2_c00160{font-size:53.760000pt;}
.fs0_c00160{font-size:64.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y3_c00160{bottom:3.840000pt;}
.y5_c00160{bottom:22.400000pt;}
.y4_c00160{bottom:28.480000pt;}
.y1_c00160{bottom:50.880000pt;}
.y2e_c00160{bottom:117.152000pt;}
.y2d_c00160{bottom:134.746667pt;}
.y2c_c00160{bottom:150.106667pt;}
.y2b_c00160{bottom:156.186667pt;}
.y2a_c00160{bottom:165.466667pt;}
.y29_c00160{bottom:180.826667pt;}
.y28_c00160{bottom:196.186667pt;}
.y27_c00160{bottom:211.586667pt;}
.y26_c00160{bottom:226.946667pt;}
.y25_c00160{bottom:242.306667pt;}
.y24_c00160{bottom:257.666667pt;}
.y23_c00160{bottom:273.026667pt;}
.y22_c00160{bottom:288.386667pt;}
.y21_c00160{bottom:303.426667pt;}
.y20_c00160{bottom:318.813333pt;}
.y1f_c00160{bottom:324.893333pt;}
.y1e_c00160{bottom:334.813333pt;}
.y1c_c00160{bottom:374.173333pt;}
.y1d_c00160{bottom:381.533333pt;}
.y1b_c00160{bottom:401.693333pt;}
.y1a_c00160{bottom:429.253333pt;}
.y19_c00160{bottom:457.093333pt;}
.y18_c00160{bottom:490.693333pt;}
.y17_c00160{bottom:513.413333pt;}
.y16_c00160{bottom:536.480000pt;}
.y15_c00160{bottom:559.520000pt;}
.y14_c00160{bottom:590.560000pt;}
.y13_c00160{bottom:621.600000pt;}
.y12_c00160{bottom:652.666667pt;}
.y11_c00160{bottom:683.706667pt;}
.y10_c00160{bottom:714.746667pt;}
.yf_c00160{bottom:745.466667pt;}
.ye_c00160{bottom:776.546667pt;}
.yd_c00160{bottom:807.586667pt;}
.yc_c00160{bottom:840.546667pt;}
.yb_c00160{bottom:876.413333pt;}
.ya_c00160{bottom:911.933333pt;}
.y9_c00160{bottom:939.453333pt;}
.y7_c00160{bottom:967.013333pt;}
.y8_c00160{bottom:974.373333pt;}
.y6_c00160{bottom:994.853333pt;}
.y2_c00160{bottom:1056.933333pt;}
.h3_c00160{height:18.266667pt;}
.hb_c00160{height:33.918750pt;}
.h4_c00160{height:36.796000pt;}
.h7_c00160{height:41.456250pt;}
.hc_c00160{height:48.195000pt;}
.ha_c00160{height:52.736250pt;}
.h8_c00160{height:52.762500pt;}
.h9_c00160{height:54.180000pt;}
.h2_c00160{height:57.375000pt;}
.h5_c00160{height:62.812500pt;}
.h6_c00160{height:1122.556000pt;}
.h0_c00160{height:1122.560000pt;}
.h1_c00160{height:1122.666667pt;}
.w2_c00160{width:7.386667pt;}
.w3_c00160{width:567.280000pt;}
.w4_c00160{width:793.917333pt;}
.w0_c00160{width:793.920000pt;}
.w1_c00160{width:794.000000pt;}
.x0_c00160{left:0.000000pt;}
.x3_c00160{left:113.324000pt;}
.xa_c00160{left:122.304000pt;}
.x1_c00160{left:137.346667pt;}
.x4_c00160{left:151.106667pt;}
.x9_c00160{left:305.413333pt;}
.x7_c00160{left:529.184000pt;}
.x8_c00160{left:540.066667pt;}
.x5_c00160{left:574.624000pt;}
.x6_c00160{left:585.506667pt;}
.x2_c00160{left:673.213333pt;}
}





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

.ir_c00161:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00161;src:url('chunks/assets/font_b70710b437c69b276449f566.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_5396cacacedb452ba00fb7e6.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_f4f667e7b7b74f9fd8b7d9a7.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;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_c00161;src:url('chunks/assets/font_c4db62cd4ceff54ca31f05c6.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00161;src:url('chunks/assets/font_becb53aa6b6a3273bef87155.woff2')format("woff");}.ff5_c00161{font-family:ff5_c00161;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00161;src:url('chunks/assets/font_3aa58bd323890297f373f9e6.woff2')format("woff");}.ff6_c00161{font-family:ff6_c00161;line-height:1.311035;font-style:normal;font-weight: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_c00161;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff7_c00161{font-family:ff7_c00161;line-height:0.740723;font-style:normal;font-weight: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_c00161;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff8_c00161{font-family:ff8_c00161;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls1c_c00161{letter-spacing:-1.680000px;}
.ls18_c00161{letter-spacing:-1.440000px;}
.ls1a_c00161{letter-spacing:-1.422000px;}
.lse_c00161{letter-spacing:-1.416000px;}
.ls15_c00161{letter-spacing:-1.152000px;}
.ls1d_c00161{letter-spacing:-0.738000px;}
.ls1b_c00161{letter-spacing:-0.532800px;}
.lsd_c00161{letter-spacing:-0.466800px;}
.ls14_c00161{letter-spacing:-0.302400px;}
.lsf_c00161{letter-spacing:-0.241800px;}
.ls17_c00161{letter-spacing:-0.011400px;}
.lsc_c00161{letter-spacing:0.000000px;}
.ls10_c00161{letter-spacing:0.022800px;}
.ls16_c00161{letter-spacing:0.060600px;}
.ls11_c00161{letter-spacing:0.166800px;}
.ls19_c00161{letter-spacing:0.466800px;}
.ls12_c00161{letter-spacing:0.529800px;}
.ls5_c00161{letter-spacing:0.648000px;}
.ls4_c00161{letter-spacing:0.662632px;}
.ls13_c00161{letter-spacing:0.702000px;}
.ls0_c00161{letter-spacing:0.720000px;}
.ls2_c00161{letter-spacing:0.740310px;}
.ls1_c00161{letter-spacing:0.740425px;}
.ls3_c00161{letter-spacing:0.860010px;}
.ls8_c00161{letter-spacing:2.137221px;}
.ls7_c00161{letter-spacing:2.160000px;}
.lsa_c00161{letter-spacing:2.179932px;}
.ls6_c00161{letter-spacing:2.180398px;}
.ls9_c00161{letter-spacing:7.920000px;}
.lsb_c00161{letter-spacing:10.800000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00161{word-spacing:-60.480000px;}
.ws7_c00161{word-spacing:-18.000000px;}
.ws3_c00161{word-spacing:-15.822000px;}
.ws2_c00161{word-spacing:-15.286800px;}
.ws0_c00161{word-spacing:-15.120000px;}
.ws5_c00161{word-spacing:-14.878200px;}
.ws6_c00161{word-spacing:-14.817600px;}
.ws1_c00161{word-spacing:-14.653200px;}
.wsb_c00161{word-spacing:-14.382000px;}
.ws9_c00161{word-spacing:-13.698000px;}
.wsa_c00161{word-spacing:-13.440000px;}
.ws4_c00161{word-spacing:-12.600000px;}
.wsc_c00161{word-spacing:0.000000px;}
._9_c00161{margin-left:-3.024000px;}
._0_c00161{margin-left:-1.728000px;}
._1_c00161{width:1.368000px;}
._b_c00161{width:3.096000px;}
._13_c00161{width:4.638839px;}
._12_c00161{width:6.305161px;}
._10_c00161{width:7.992000px;}
._d_c00161{width:9.720000px;}
._e_c00161{width:11.220000px;}
._f_c00161{width:13.044000px;}
._11_c00161{width:14.256024px;}
._c_c00161{width:16.980000px;}
._7_c00161{width:20.088000px;}
._8_c00161{width:21.096000px;}
._a_c00161{width:22.608000px;}
._14_c00161{width:24.555001px;}
._5_c00161{width:26.640055px;}
._3_c00161{width:70.019994px;}
._4_c00161{width:154.799951px;}
._6_c00161{width:376.160888px;}
._2_c00161{width:607.691190px;}
.fc0_c00161{color:rgb(0,0,0);}
.fs3_c00161{font-size:38.880000px;}
.fs2_c00161{font-size:47.520000px;}
.fs1_c00161{font-size:60.480000px;}
.fs0_c00161{font-size:72.000000px;}
.y0_c00161{bottom:0.000000px;}
.y3_c00161{bottom:4.320000px;}
.y5_c00161{bottom:25.200000px;}
.y4_c00161{bottom:32.040000px;}
.y1_c00161{bottom:57.240000px;}
.y2d_c00161{bottom:151.590000px;}
.y2c_c00161{bottom:158.430000px;}
.y2b_c00161{bottom:168.870000px;}
.y2a_c00161{bottom:186.150000px;}
.y29_c00161{bottom:203.430000px;}
.y28_c00161{bottom:220.710000px;}
.y27_c00161{bottom:238.035000px;}
.y26_c00161{bottom:255.315000px;}
.y25_c00161{bottom:272.595000px;}
.y24_c00161{bottom:289.875000px;}
.y23_c00161{bottom:307.155000px;}
.y22_c00161{bottom:324.435000px;}
.y21_c00161{bottom:341.355000px;}
.y20_c00161{bottom:358.665000px;}
.y1f_c00161{bottom:375.945000px;}
.y1e_c00161{bottom:393.945000px;}
.y1c_c00161{bottom:490.470000px;}
.y1d_c00161{bottom:498.750000px;}
.y1b_c00161{bottom:521.430000px;}
.y1a_c00161{bottom:552.390000px;}
.y19_c00161{bottom:583.350000px;}
.y18_c00161{bottom:614.340000px;}
.y17_c00161{bottom:645.660000px;}
.y16_c00161{bottom:676.620000px;}
.y15_c00161{bottom:707.580000px;}
.y14_c00161{bottom:745.410000px;}
.y13_c00161{bottom:771.330000px;}
.y12_c00161{bottom:797.250000px;}
.y11_c00161{bottom:823.170000px;}
.y10_c00161{bottom:849.135000px;}
.yf_c00161{bottom:874.695000px;}
.ye_c00161{bottom:900.615000px;}
.yd_c00161{bottom:926.535000px;}
.yc_c00161{bottom:952.455000px;}
.yb_c00161{bottom:978.405000px;}
.ya_c00161{bottom:1004.325000px;}
.y9_c00161{bottom:1030.245000px;}
.y8_c00161{bottom:1056.165000px;}
.y7_c00161{bottom:1081.725000px;}
.y6_c00161{bottom:1119.210000px;}
.y2_c00161{bottom:1189.050000px;}
.h3_c00161{height:20.550000px;}
.hc_c00161{height:38.158594px;}
.h4_c00161{height:41.395500px;}
.ha_c00161{height:46.638281px;}
.hb_c00161{height:54.219375px;}
.h6_c00161{height:59.357813px;}
.h7_c00161{height:60.952500px;}
.h2_c00161{height:64.546875px;}
.h5_c00161{height:70.664062px;}
.h8_c00161{height:72.562500px;}
.h9_c00161{height:1262.875500px;}
.h0_c00161{height:1262.880000px;}
.h1_c00161{height:1263.000000px;}
.w2_c00161{width:8.310000px;}
.w3_c00161{width:638.190000px;}
.w4_c00161{width:893.157000px;}
.w0_c00161{width:893.160000px;}
.w1_c00161{width:893.250000px;}
.x0_c00161{left:0.000000px;}
.x3_c00161{left:127.489500px;}
.x8_c00161{left:137.592000px;}
.x1_c00161{left:154.515000px;}
.x4_c00161{left:169.995000px;}
.x5_c00161{left:196.272000px;}
.x6_c00161{left:208.515000px;}
.x2_c00161{left:757.365000px;}
.x7_c00161{left:765.690000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls1c_c00161{letter-spacing:-1.493333pt;}
.ls18_c00161{letter-spacing:-1.280000pt;}
.ls1a_c00161{letter-spacing:-1.264000pt;}
.lse_c00161{letter-spacing:-1.258667pt;}
.ls15_c00161{letter-spacing:-1.024000pt;}
.ls1d_c00161{letter-spacing:-0.656000pt;}
.ls1b_c00161{letter-spacing:-0.473600pt;}
.lsd_c00161{letter-spacing:-0.414933pt;}
.ls14_c00161{letter-spacing:-0.268800pt;}
.lsf_c00161{letter-spacing:-0.214933pt;}
.ls17_c00161{letter-spacing:-0.010133pt;}
.lsc_c00161{letter-spacing:0.000000pt;}
.ls10_c00161{letter-spacing:0.020267pt;}
.ls16_c00161{letter-spacing:0.053867pt;}
.ls11_c00161{letter-spacing:0.148267pt;}
.ls19_c00161{letter-spacing:0.414933pt;}
.ls12_c00161{letter-spacing:0.470933pt;}
.ls5_c00161{letter-spacing:0.576000pt;}
.ls4_c00161{letter-spacing:0.589007pt;}
.ls13_c00161{letter-spacing:0.624000pt;}
.ls0_c00161{letter-spacing:0.640000pt;}
.ls2_c00161{letter-spacing:0.658053pt;}
.ls1_c00161{letter-spacing:0.658156pt;}
.ls3_c00161{letter-spacing:0.764454pt;}
.ls8_c00161{letter-spacing:1.899752pt;}
.ls7_c00161{letter-spacing:1.920000pt;}
.lsa_c00161{letter-spacing:1.937717pt;}
.ls6_c00161{letter-spacing:1.938132pt;}
.ls9_c00161{letter-spacing:7.040000pt;}
.lsb_c00161{letter-spacing:9.600000pt;}
.ws8_c00161{word-spacing:-53.760000pt;}
.ws7_c00161{word-spacing:-16.000000pt;}
.ws3_c00161{word-spacing:-14.064000pt;}
.ws2_c00161{word-spacing:-13.588267pt;}
.ws0_c00161{word-spacing:-13.440000pt;}
.ws5_c00161{word-spacing:-13.225067pt;}
.ws6_c00161{word-spacing:-13.171200pt;}
.ws1_c00161{word-spacing:-13.025067pt;}
.wsb_c00161{word-spacing:-12.784000pt;}
.ws9_c00161{word-spacing:-12.176000pt;}
.wsa_c00161{word-spacing:-11.946667pt;}
.ws4_c00161{word-spacing:-11.200000pt;}
.wsc_c00161{word-spacing:0.000000pt;}
._9_c00161{margin-left:-2.688000pt;}
._0_c00161{margin-left:-1.536000pt;}
._1_c00161{width:1.216000pt;}
._b_c00161{width:2.752000pt;}
._13_c00161{width:4.123412pt;}
._12_c00161{width:5.604588pt;}
._10_c00161{width:7.104000pt;}
._d_c00161{width:8.640000pt;}
._e_c00161{width:9.973333pt;}
._f_c00161{width:11.594667pt;}
._11_c00161{width:12.672021pt;}
._c_c00161{width:15.093333pt;}
._7_c00161{width:17.856000pt;}
._8_c00161{width:18.752000pt;}
._a_c00161{width:20.096000pt;}
._14_c00161{width:21.826668pt;}
._5_c00161{width:23.680049pt;}
._3_c00161{width:62.239995pt;}
._4_c00161{width:137.599956pt;}
._6_c00161{width:334.365233pt;}
._2_c00161{width:540.169946pt;}
.fs3_c00161{font-size:34.560000pt;}
.fs2_c00161{font-size:42.240000pt;}
.fs1_c00161{font-size:53.760000pt;}
.fs0_c00161{font-size:64.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y3_c00161{bottom:3.840000pt;}
.y5_c00161{bottom:22.400000pt;}
.y4_c00161{bottom:28.480000pt;}
.y1_c00161{bottom:50.880000pt;}
.y2d_c00161{bottom:134.746667pt;}
.y2c_c00161{bottom:140.826667pt;}
.y2b_c00161{bottom:150.106667pt;}
.y2a_c00161{bottom:165.466667pt;}
.y29_c00161{bottom:180.826667pt;}
.y28_c00161{bottom:196.186667pt;}
.y27_c00161{bottom:211.586667pt;}
.y26_c00161{bottom:226.946667pt;}
.y25_c00161{bottom:242.306667pt;}
.y24_c00161{bottom:257.666667pt;}
.y23_c00161{bottom:273.026667pt;}
.y22_c00161{bottom:288.386667pt;}
.y21_c00161{bottom:303.426667pt;}
.y20_c00161{bottom:318.813333pt;}
.y1f_c00161{bottom:334.173333pt;}
.y1e_c00161{bottom:350.173333pt;}
.y1c_c00161{bottom:435.973333pt;}
.y1d_c00161{bottom:443.333333pt;}
.y1b_c00161{bottom:463.493333pt;}
.y1a_c00161{bottom:491.013333pt;}
.y19_c00161{bottom:518.533333pt;}
.y18_c00161{bottom:546.080000pt;}
.y17_c00161{bottom:573.920000pt;}
.y16_c00161{bottom:601.440000pt;}
.y15_c00161{bottom:628.960000pt;}
.y14_c00161{bottom:662.586667pt;}
.y13_c00161{bottom:685.626667pt;}
.y12_c00161{bottom:708.666667pt;}
.y11_c00161{bottom:731.706667pt;}
.y10_c00161{bottom:754.786667pt;}
.yf_c00161{bottom:777.506667pt;}
.ye_c00161{bottom:800.546667pt;}
.yd_c00161{bottom:823.586667pt;}
.yc_c00161{bottom:846.626667pt;}
.yb_c00161{bottom:869.693333pt;}
.ya_c00161{bottom:892.733333pt;}
.y9_c00161{bottom:915.773333pt;}
.y8_c00161{bottom:938.813333pt;}
.y7_c00161{bottom:961.533333pt;}
.y6_c00161{bottom:994.853333pt;}
.y2_c00161{bottom:1056.933333pt;}
.h3_c00161{height:18.266667pt;}
.hc_c00161{height:33.918750pt;}
.h4_c00161{height:36.796000pt;}
.ha_c00161{height:41.456250pt;}
.hb_c00161{height:48.195000pt;}
.h6_c00161{height:52.762500pt;}
.h7_c00161{height:54.180000pt;}
.h2_c00161{height:57.375000pt;}
.h5_c00161{height:62.812500pt;}
.h8_c00161{height:64.500000pt;}
.h9_c00161{height:1122.556000pt;}
.h0_c00161{height:1122.560000pt;}
.h1_c00161{height:1122.666667pt;}
.w2_c00161{width:7.386667pt;}
.w3_c00161{width:567.280000pt;}
.w4_c00161{width:793.917333pt;}
.w0_c00161{width:793.920000pt;}
.w1_c00161{width:794.000000pt;}
.x0_c00161{left:0.000000pt;}
.x3_c00161{left:113.324000pt;}
.x8_c00161{left:122.304000pt;}
.x1_c00161{left:137.346667pt;}
.x4_c00161{left:151.106667pt;}
.x5_c00161{left:174.464000pt;}
.x6_c00161{left:185.346667pt;}
.x2_c00161{left:673.213333pt;}
.x7_c00161{left:680.613333pt;}
}





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

.ir_c00162:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00162;src:url('chunks/assets/font_99991339d8df4af775fddef1.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_4131b484ba3eb836370f8c61.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_64ca2f09c485d390fa47e4af.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;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_c00162;src:url('chunks/assets/font_6596951ff6aa6bac7496b220.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00162;src:url('chunks/assets/font_c830e7737223cc8d7fefa4fb.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00162;src:url('chunks/assets/font_bd5b6a18b15ac6ec2467b697.woff2')format("woff");}.ff6_c00162{font-family:ff6_c00162;line-height:1.104004;font-style:normal;font-weight: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_c00162;src:url('chunks/assets/font_097f0bfcfd2ec371aded5c5d.woff2')format("woff");}.ff7_c00162{font-family:ff7_c00162;line-height:1.311035;font-style:normal;font-weight: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_c00162;src:url('chunks/assets/font_afa3b6e727da4d1a7f067916.woff2')format("woff");}.ff8_c00162{font-family:ff8_c00162;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls23_c00162{letter-spacing:-1.680000px;}
.ls1d_c00162{letter-spacing:-1.416000px;}
.ls1f_c00162{letter-spacing:-0.912000px;}
.ls19_c00162{letter-spacing:-0.720000px;}
.ls1e_c00162{letter-spacing:-0.466800px;}
.ls24_c00162{letter-spacing:-0.302400px;}
.ls16_c00162{letter-spacing:-0.288000px;}
.ls22_c00162{letter-spacing:-0.241800px;}
.ls20_c00162{letter-spacing:-0.011400px;}
.ls15_c00162{letter-spacing:0.000000px;}
.ls1c_c00162{letter-spacing:0.022800px;}
.ls1a_c00162{letter-spacing:0.060600px;}
.ls5_c00162{letter-spacing:0.120000px;}
.ls18_c00162{letter-spacing:0.288000px;}
.ls21_c00162{letter-spacing:0.466800px;}
.ls1b_c00162{letter-spacing:0.529800px;}
.ls17_c00162{letter-spacing:0.576000px;}
.ls14_c00162{letter-spacing:0.606720px;}
.ls0_c00162{letter-spacing:0.648000px;}
.ls12_c00162{letter-spacing:0.696959px;}
.ls11_c00162{letter-spacing:0.708349px;}
.ls7_c00162{letter-spacing:0.708738px;}
.ls3_c00162{letter-spacing:0.720000px;}
.ls13_c00162{letter-spacing:0.740290px;}
.ls6_c00162{letter-spacing:0.740444px;}
.ls2_c00162{letter-spacing:1.440000px;}
.ls4_c00162{letter-spacing:1.584000px;}
.ls1_c00162{letter-spacing:2.160000px;}
.lsf_c00162{letter-spacing:6.620309px;}
.ls8_c00162{letter-spacing:7.897057px;}
.lse_c00162{letter-spacing:7.920000px;}
.ls9_c00162{letter-spacing:7.940310px;}
.ls10_c00162{letter-spacing:7.940571px;}
.lsa_c00162{letter-spacing:9.348234px;}
.lsb_c00162{letter-spacing:9.360000px;}
.lsd_c00162{letter-spacing:9.379976px;}
.lsc_c00162{letter-spacing:9.380310px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00162{word-spacing:-60.480000px;}
.ws2_c00162{word-spacing:-18.288000px;}
.ws0_c00162{word-spacing:-18.000000px;}
.ws1_c00162{word-spacing:-17.712000px;}
.ws5_c00162{word-spacing:-15.180600px;}
.wsb_c00162{word-spacing:-15.142800px;}
.ws3_c00162{word-spacing:-15.120000px;}
.ws8_c00162{word-spacing:-15.108600px;}
.wsc_c00162{word-spacing:-14.878200px;}
.wsa_c00162{word-spacing:-14.817600px;}
.ws7_c00162{word-spacing:-14.653200px;}
.ws6_c00162{word-spacing:-13.704000px;}
.ws9_c00162{word-spacing:-13.440000px;}
.wsd_c00162{word-spacing:0.000000px;}
._2_c00162{margin-left:-2.736000px;}
._0_c00162{margin-left:-1.224000px;}
._3_c00162{width:1.368000px;}
._1_c00162{width:2.952000px;}
._5_c00162{width:4.104000px;}
._6_c00162{width:5.688000px;}
._4_c00162{width:7.848000px;}
._9_c00162{width:9.394320px;}
._a_c00162{width:10.961278px;}
._c_c00162{width:12.208199px;}
._d_c00162{width:13.401714px;}
._7_c00162{width:15.120000px;}
._8_c00162{width:16.200000px;}
._b_c00162{width:17.363040px;}
.fc0_c00162{color:rgb(0,0,0);}
.fs3_c00162{font-size:38.880000px;}
.fs1_c00162{font-size:47.520000px;}
.fs2_c00162{font-size:60.480000px;}
.fs0_c00162{font-size:72.000000px;}
.y0_c00162{bottom:0.000000px;}
.y3_c00162{bottom:4.320000px;}
.y5_c00162{bottom:25.200000px;}
.y4_c00162{bottom:32.040000px;}
.y1_c00162{bottom:57.240000px;}
.y39_c00162{bottom:151.590000px;}
.y38_c00162{bottom:168.870000px;}
.y37_c00162{bottom:186.150000px;}
.y36_c00162{bottom:203.430000px;}
.y35_c00162{bottom:220.710000px;}
.y34_c00162{bottom:238.035000px;}
.y33_c00162{bottom:255.315000px;}
.y32_c00162{bottom:272.595000px;}
.y31_c00162{bottom:279.435000px;}
.y30_c00162{bottom:289.875000px;}
.y2f_c00162{bottom:307.155000px;}
.y2e_c00162{bottom:313.995000px;}
.y2d_c00162{bottom:324.435000px;}
.y2c_c00162{bottom:341.355000px;}
.y2b_c00162{bottom:358.665000px;}
.y2a_c00162{bottom:375.945000px;}
.y29_c00162{bottom:393.225000px;}
.y28_c00162{bottom:400.065000px;}
.y27_c00162{bottom:410.505000px;}
.y26_c00162{bottom:417.345000px;}
.y25_c00162{bottom:427.785000px;}
.y24_c00162{bottom:445.065000px;}
.y23_c00162{bottom:462.345000px;}
.y22_c00162{bottom:469.185000px;}
.y21_c00162{bottom:479.670000px;}
.y20_c00162{bottom:496.950000px;}
.y1f_c00162{bottom:503.790000px;}
.y1e_c00162{bottom:514.590000px;}
.y1c_c00162{bottom:544.110000px;}
.y1d_c00162{bottom:550.950000px;}
.y1b_c00162{bottom:579.030000px;}
.y1a_c00162{bottom:613.620000px;}
.y19_c00162{bottom:648.540000px;}
.y18_c00162{bottom:683.460000px;}
.y16_c00162{bottom:718.380000px;}
.y17_c00162{bottom:725.250000px;}
.y15_c00162{bottom:753.330000px;}
.y14_c00162{bottom:790.410000px;}
.y12_c00162{bottom:830.370000px;}
.y13_c00162{bottom:838.650000px;}
.y10_c00162{bottom:861.735000px;}
.y11_c00162{bottom:870.015000px;}
.yf_c00162{bottom:892.695000px;}
.yd_c00162{bottom:923.655000px;}
.ye_c00162{bottom:931.935000px;}
.yc_c00162{bottom:954.615000px;}
.yb_c00162{bottom:985.965000px;}
.ya_c00162{bottom:1016.925000px;}
.y9_c00162{bottom:1056.885000px;}
.y8_c00162{bottom:1087.890000px;}
.y6_c00162{bottom:1119.210000px;}
.y7_c00162{bottom:1127.490000px;}
.y2_c00162{bottom:1189.050000px;}
.h3_c00162{height:20.550000px;}
.hd_c00162{height:34.855313px;}
.hc_c00162{height:38.139609px;}
.he_c00162{height:38.158594px;}
.ha_c00162{height:39.183750px;}
.h4_c00162{height:41.395500px;}
.h7_c00162{height:46.638281px;}
.h9_c00162{height:54.219375px;}
.hb_c00162{height:59.328281px;}
.h8_c00162{height:59.357813px;}
.h2_c00162{height:64.546875px;}
.h5_c00162{height:70.664062px;}
.h6_c00162{height:1262.875500px;}
.h0_c00162{height:1262.880000px;}
.h1_c00162{height:1263.000000px;}
.w2_c00162{width:8.310000px;}
.w3_c00162{width:638.190000px;}
.w4_c00162{width:893.157000px;}
.w0_c00162{width:893.160000px;}
.w1_c00162{width:893.250000px;}
.x0_c00162{left:0.000000px;}
.x3_c00162{left:127.489500px;}
.x12_c00162{left:137.592000px;}
.x13_c00162{left:142.632000px;}
.x1_c00162{left:154.515000px;}
.x6_c00162{left:169.995000px;}
.x7_c00162{left:186.192000px;}
.x8_c00162{left:198.435000px;}
.xf_c00162{left:320.907000px;}
.xd_c00162{left:330.267000px;}
.x10_c00162{left:336.030000px;}
.x11_c00162{left:343.590000px;}
.xe_c00162{left:345.390000px;}
.x9_c00162{left:498.087000px;}
.xa_c00162{left:510.330000px;}
.x4_c00162{left:721.002000px;}
.x5_c00162{left:733.245000px;}
.xb_c00162{left:741.882000px;}
.x2_c00162{left:757.365000px;}
.xc_c00162{left:760.290000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls23_c00162{letter-spacing:-1.493333pt;}
.ls1d_c00162{letter-spacing:-1.258667pt;}
.ls1f_c00162{letter-spacing:-0.810667pt;}
.ls19_c00162{letter-spacing:-0.640000pt;}
.ls1e_c00162{letter-spacing:-0.414933pt;}
.ls24_c00162{letter-spacing:-0.268800pt;}
.ls16_c00162{letter-spacing:-0.256000pt;}
.ls22_c00162{letter-spacing:-0.214933pt;}
.ls20_c00162{letter-spacing:-0.010133pt;}
.ls15_c00162{letter-spacing:0.000000pt;}
.ls1c_c00162{letter-spacing:0.020267pt;}
.ls1a_c00162{letter-spacing:0.053867pt;}
.ls5_c00162{letter-spacing:0.106667pt;}
.ls18_c00162{letter-spacing:0.256000pt;}
.ls21_c00162{letter-spacing:0.414933pt;}
.ls1b_c00162{letter-spacing:0.470933pt;}
.ls17_c00162{letter-spacing:0.512000pt;}
.ls14_c00162{letter-spacing:0.539307pt;}
.ls0_c00162{letter-spacing:0.576000pt;}
.ls12_c00162{letter-spacing:0.619519pt;}
.ls11_c00162{letter-spacing:0.629644pt;}
.ls7_c00162{letter-spacing:0.629990pt;}
.ls3_c00162{letter-spacing:0.640000pt;}
.ls13_c00162{letter-spacing:0.658035pt;}
.ls6_c00162{letter-spacing:0.658173pt;}
.ls2_c00162{letter-spacing:1.280000pt;}
.ls4_c00162{letter-spacing:1.408000pt;}
.ls1_c00162{letter-spacing:1.920000pt;}
.lsf_c00162{letter-spacing:5.884719pt;}
.ls8_c00162{letter-spacing:7.019606pt;}
.lse_c00162{letter-spacing:7.040000pt;}
.ls9_c00162{letter-spacing:7.058053pt;}
.ls10_c00162{letter-spacing:7.058285pt;}
.lsa_c00162{letter-spacing:8.309542pt;}
.lsb_c00162{letter-spacing:8.320000pt;}
.lsd_c00162{letter-spacing:8.337756pt;}
.lsc_c00162{letter-spacing:8.338053pt;}
.ws4_c00162{word-spacing:-53.760000pt;}
.ws2_c00162{word-spacing:-16.256000pt;}
.ws0_c00162{word-spacing:-16.000000pt;}
.ws1_c00162{word-spacing:-15.744000pt;}
.ws5_c00162{word-spacing:-13.493867pt;}
.wsb_c00162{word-spacing:-13.460267pt;}
.ws3_c00162{word-spacing:-13.440000pt;}
.ws8_c00162{word-spacing:-13.429867pt;}
.wsc_c00162{word-spacing:-13.225067pt;}
.wsa_c00162{word-spacing:-13.171200pt;}
.ws7_c00162{word-spacing:-13.025067pt;}
.ws6_c00162{word-spacing:-12.181333pt;}
.ws9_c00162{word-spacing:-11.946667pt;}
.wsd_c00162{word-spacing:0.000000pt;}
._2_c00162{margin-left:-2.432000pt;}
._0_c00162{margin-left:-1.088000pt;}
._3_c00162{width:1.216000pt;}
._1_c00162{width:2.624000pt;}
._5_c00162{width:3.648000pt;}
._6_c00162{width:5.056000pt;}
._4_c00162{width:6.976000pt;}
._9_c00162{width:8.350507pt;}
._a_c00162{width:9.743358pt;}
._c_c00162{width:10.851732pt;}
._d_c00162{width:11.912635pt;}
._7_c00162{width:13.440000pt;}
._8_c00162{width:14.400000pt;}
._b_c00162{width:15.433813pt;}
.fs3_c00162{font-size:34.560000pt;}
.fs1_c00162{font-size:42.240000pt;}
.fs2_c00162{font-size:53.760000pt;}
.fs0_c00162{font-size:64.000000pt;}
.y0_c00162{bottom:0.000000pt;}
.y3_c00162{bottom:3.840000pt;}
.y5_c00162{bottom:22.400000pt;}
.y4_c00162{bottom:28.480000pt;}
.y1_c00162{bottom:50.880000pt;}
.y39_c00162{bottom:134.746667pt;}
.y38_c00162{bottom:150.106667pt;}
.y37_c00162{bottom:165.466667pt;}
.y36_c00162{bottom:180.826667pt;}
.y35_c00162{bottom:196.186667pt;}
.y34_c00162{bottom:211.586667pt;}
.y33_c00162{bottom:226.946667pt;}
.y32_c00162{bottom:242.306667pt;}
.y31_c00162{bottom:248.386667pt;}
.y30_c00162{bottom:257.666667pt;}
.y2f_c00162{bottom:273.026667pt;}
.y2e_c00162{bottom:279.106667pt;}
.y2d_c00162{bottom:288.386667pt;}
.y2c_c00162{bottom:303.426667pt;}
.y2b_c00162{bottom:318.813333pt;}
.y2a_c00162{bottom:334.173333pt;}
.y29_c00162{bottom:349.533333pt;}
.y28_c00162{bottom:355.613333pt;}
.y27_c00162{bottom:364.893333pt;}
.y26_c00162{bottom:370.973333pt;}
.y25_c00162{bottom:380.253333pt;}
.y24_c00162{bottom:395.613333pt;}
.y23_c00162{bottom:410.973333pt;}
.y22_c00162{bottom:417.053333pt;}
.y21_c00162{bottom:426.373333pt;}
.y20_c00162{bottom:441.733333pt;}
.y1f_c00162{bottom:447.813333pt;}
.y1e_c00162{bottom:457.413333pt;}
.y1c_c00162{bottom:483.653333pt;}
.y1d_c00162{bottom:489.733333pt;}
.y1b_c00162{bottom:514.693333pt;}
.y1a_c00162{bottom:545.440000pt;}
.y19_c00162{bottom:576.480000pt;}
.y18_c00162{bottom:607.520000pt;}
.y16_c00162{bottom:638.560000pt;}
.y17_c00162{bottom:644.666667pt;}
.y15_c00162{bottom:669.626667pt;}
.y14_c00162{bottom:702.586667pt;}
.y12_c00162{bottom:738.106667pt;}
.y13_c00162{bottom:745.466667pt;}
.y10_c00162{bottom:765.986667pt;}
.y11_c00162{bottom:773.346667pt;}
.yf_c00162{bottom:793.506667pt;}
.yd_c00162{bottom:821.026667pt;}
.ye_c00162{bottom:828.386667pt;}
.yc_c00162{bottom:848.546667pt;}
.yb_c00162{bottom:876.413333pt;}
.ya_c00162{bottom:903.933333pt;}
.y9_c00162{bottom:939.453333pt;}
.y8_c00162{bottom:967.013333pt;}
.y6_c00162{bottom:994.853333pt;}
.y7_c00162{bottom:1002.213333pt;}
.y2_c00162{bottom:1056.933333pt;}
.h3_c00162{height:18.266667pt;}
.hd_c00162{height:30.982500pt;}
.hc_c00162{height:33.901875pt;}
.he_c00162{height:33.918750pt;}
.ha_c00162{height:34.830000pt;}
.h4_c00162{height:36.796000pt;}
.h7_c00162{height:41.456250pt;}
.h9_c00162{height:48.195000pt;}
.hb_c00162{height:52.736250pt;}
.h8_c00162{height:52.762500pt;}
.h2_c00162{height:57.375000pt;}
.h5_c00162{height:62.812500pt;}
.h6_c00162{height:1122.556000pt;}
.h0_c00162{height:1122.560000pt;}
.h1_c00162{height:1122.666667pt;}
.w2_c00162{width:7.386667pt;}
.w3_c00162{width:567.280000pt;}
.w4_c00162{width:793.917333pt;}
.w0_c00162{width:793.920000pt;}
.w1_c00162{width:794.000000pt;}
.x0_c00162{left:0.000000pt;}
.x3_c00162{left:113.324000pt;}
.x12_c00162{left:122.304000pt;}
.x13_c00162{left:126.784000pt;}
.x1_c00162{left:137.346667pt;}
.x6_c00162{left:151.106667pt;}
.x7_c00162{left:165.504000pt;}
.x8_c00162{left:176.386667pt;}
.xf_c00162{left:285.250667pt;}
.xd_c00162{left:293.570667pt;}
.x10_c00162{left:298.693333pt;}
.x11_c00162{left:305.413333pt;}
.xe_c00162{left:307.013333pt;}
.x9_c00162{left:442.744000pt;}
.xa_c00162{left:453.626667pt;}
.x4_c00162{left:640.890667pt;}
.x5_c00162{left:651.773333pt;}
.xb_c00162{left:659.450667pt;}
.x2_c00162{left:673.213333pt;}
.xc_c00162{left:675.813333pt;}
}





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

.ir_c00163:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00163;src:url('chunks/assets/font_5e9acd5e3a8929289581246b.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_c15adbd745bf3d192213018f.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_39b040c8af8e936016326101.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_b2b11319ad004ca88d5dffa2.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00163;src:url('chunks/assets/font_1c38e806d98e1268c0d5fad8.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.lsa_c00163{letter-spacing:-1.416000px;}
.lsb_c00163{letter-spacing:-0.507000px;}
.ls6_c00163{letter-spacing:-0.288000px;}
.ls5_c00163{letter-spacing:0.000000px;}
.ls8_c00163{letter-spacing:0.072000px;}
.ls0_c00163{letter-spacing:0.144000px;}
.ls9_c00163{letter-spacing:0.486600px;}
.ls2_c00163{letter-spacing:0.529800px;}
.ls7_c00163{letter-spacing:0.576000px;}
.ls1_c00163{letter-spacing:0.720000px;}
.ls3_c00163{letter-spacing:6.480000px;}
.ls4_c00163{letter-spacing:6.620160px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00163{word-spacing:-18.072000px;}
.ws0_c00163{word-spacing:-18.000000px;}
.ws1_c00163{word-spacing:-17.712000px;}
.ws3_c00163{word-spacing:-15.606600px;}
.ws5_c00163{word-spacing:-15.120000px;}
.ws6_c00163{word-spacing:-14.613000px;}
.ws4_c00163{word-spacing:-13.704000px;}
.ws7_c00163{word-spacing:0.000000px;}
._9_c00163{margin-left:-3.430829px;}
._1_c00163{margin-left:-1.935602px;}
._2_c00163{width:1.270806px;}
._3_c00163{width:2.964004px;}
._0_c00163{width:4.899001px;}
._b_c00163{width:5.903911px;}
._e_c00163{width:7.090760px;}
._14_c00163{width:8.499784px;}
._5_c00163{width:10.523399px;}
._4_c00163{width:12.096000px;}
._c_c00163{width:13.112398px;}
._a_c00163{width:14.129443px;}
._d_c00163{width:15.629947px;}
._f_c00163{width:16.843185px;}
._16_c00163{width:18.868792px;}
._10_c00163{width:20.155185px;}
._12_c00163{width:21.310668px;}
._11_c00163{width:22.840819px;}
._15_c00163{width:24.286821px;}
._6_c00163{width:25.848000px;}
._8_c00163{width:27.844796px;}
._7_c00163{width:28.881592px;}
._13_c00163{width:30.060023px;}
.fc0_c00163{color:rgb(0,0,0);}
.fs3_c00163{font-size:38.880000px;}
.fs2_c00163{font-size:47.520000px;}
.fs1_c00163{font-size:60.480000px;}
.fs0_c00163{font-size:72.000000px;}
.y0_c00163{bottom:0.000000px;}
.y3_c00163{bottom:4.320000px;}
.y5_c00163{bottom:25.200000px;}
.y4_c00163{bottom:32.040000px;}
.y1_c00163{bottom:57.240000px;}
.y31_c00163{bottom:151.590000px;}
.y30_c00163{bottom:168.870000px;}
.y2f_c00163{bottom:186.150000px;}
.y2e_c00163{bottom:203.430000px;}
.y2d_c00163{bottom:210.270000px;}
.y2c_c00163{bottom:220.710000px;}
.y2b_c00163{bottom:238.035000px;}
.y2a_c00163{bottom:255.315000px;}
.y29_c00163{bottom:272.595000px;}
.y28_c00163{bottom:279.435000px;}
.y27_c00163{bottom:289.875000px;}
.y26_c00163{bottom:307.155000px;}
.y25_c00163{bottom:324.435000px;}
.y24_c00163{bottom:341.355000px;}
.y23_c00163{bottom:358.665000px;}
.y22_c00163{bottom:375.945000px;}
.y21_c00163{bottom:382.785000px;}
.y20_c00163{bottom:393.945000px;}
.y1f_c00163{bottom:433.185000px;}
.y1e_c00163{bottom:464.505000px;}
.y1d_c00163{bottom:495.510000px;}
.y1c_c00163{bottom:526.470000px;}
.y1b_c00163{bottom:557.430000px;}
.y1a_c00163{bottom:588.750000px;}
.y18_c00163{bottom:619.740000px;}
.y19_c00163{bottom:628.020000px;}
.y16_c00163{bottom:650.700000px;}
.y17_c00163{bottom:658.980000px;}
.y15_c00163{bottom:681.660000px;}
.y14_c00163{bottom:712.980000px;}
.y13_c00163{bottom:743.970000px;}
.y12_c00163{bottom:783.930000px;}
.y11_c00163{bottom:814.890000px;}
.y10_c00163{bottom:846.255000px;}
.yf_c00163{bottom:877.215000px;}
.yd_c00163{bottom:908.175000px;}
.ye_c00163{bottom:916.455000px;}
.yc_c00163{bottom:939.135000px;}
.yb_c00163{bottom:970.485000px;}
.ya_c00163{bottom:1001.445000px;}
.y9_c00163{bottom:1032.405000px;}
.y8_c00163{bottom:1070.205000px;}
.y7_c00163{bottom:1096.170000px;}
.y6_c00163{bottom:1122.090000px;}
.y2_c00163{bottom:1189.050000px;}
.h3_c00163{height:20.550000px;}
.ha_c00163{height:38.158594px;}
.h4_c00163{height:41.395500px;}
.h9_c00163{height:46.615078px;}
.h8_c00163{height:46.638281px;}
.h5_c00163{height:59.328281px;}
.hb_c00163{height:59.357813px;}
.h2_c00163{height:64.546875px;}
.h6_c00163{height:70.664062px;}
.h7_c00163{height:1262.875500px;}
.h0_c00163{height:1262.880000px;}
.h1_c00163{height:1263.000000px;}
.w2_c00163{width:8.310000px;}
.w3_c00163{width:638.190000px;}
.w4_c00163{width:893.157000px;}
.w0_c00163{width:893.160000px;}
.w1_c00163{width:893.250000px;}
.x0_c00163{left:0.000000px;}
.x3_c00163{left:127.489500px;}
.xb_c00163{left:142.632000px;}
.x5_c00163{left:151.992000px;}
.x1_c00163{left:154.515000px;}
.x4_c00163{left:169.995000px;}
.x6_c00163{left:228.342000px;}
.x7_c00163{left:246.705000px;}
.x8_c00163{left:314.787000px;}
.x9_c00163{left:333.150000px;}
.xa_c00163{left:343.590000px;}
.x2_c00163{left:757.365000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.lsa_c00163{letter-spacing:-1.258667pt;}
.lsb_c00163{letter-spacing:-0.450667pt;}
.ls6_c00163{letter-spacing:-0.256000pt;}
.ls5_c00163{letter-spacing:0.000000pt;}
.ls8_c00163{letter-spacing:0.064000pt;}
.ls0_c00163{letter-spacing:0.128000pt;}
.ls9_c00163{letter-spacing:0.432533pt;}
.ls2_c00163{letter-spacing:0.470933pt;}
.ls7_c00163{letter-spacing:0.512000pt;}
.ls1_c00163{letter-spacing:0.640000pt;}
.ls3_c00163{letter-spacing:5.760000pt;}
.ls4_c00163{letter-spacing:5.884587pt;}
.ws2_c00163{word-spacing:-16.064000pt;}
.ws0_c00163{word-spacing:-16.000000pt;}
.ws1_c00163{word-spacing:-15.744000pt;}
.ws3_c00163{word-spacing:-13.872533pt;}
.ws5_c00163{word-spacing:-13.440000pt;}
.ws6_c00163{word-spacing:-12.989333pt;}
.ws4_c00163{word-spacing:-12.181333pt;}
.ws7_c00163{word-spacing:0.000000pt;}
._9_c00163{margin-left:-3.049626pt;}
._1_c00163{margin-left:-1.720535pt;}
._2_c00163{width:1.129605pt;}
._3_c00163{width:2.634670pt;}
._0_c00163{width:4.354668pt;}
._b_c00163{width:5.247921pt;}
._e_c00163{width:6.302897pt;}
._14_c00163{width:7.555364pt;}
._5_c00163{width:9.354132pt;}
._4_c00163{width:10.752000pt;}
._c_c00163{width:11.655465pt;}
._a_c00163{width:12.559505pt;}
._d_c00163{width:13.893286pt;}
._f_c00163{width:14.971720pt;}
._16_c00163{width:16.772260pt;}
._10_c00163{width:17.915720pt;}
._12_c00163{width:18.942816pt;}
._11_c00163{width:20.302950pt;}
._15_c00163{width:21.588285pt;}
._6_c00163{width:22.976000pt;}
._8_c00163{width:24.750930pt;}
._7_c00163{width:25.672527pt;}
._13_c00163{width:26.720020pt;}
.fs3_c00163{font-size:34.560000pt;}
.fs2_c00163{font-size:42.240000pt;}
.fs1_c00163{font-size:53.760000pt;}
.fs0_c00163{font-size:64.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y3_c00163{bottom:3.840000pt;}
.y5_c00163{bottom:22.400000pt;}
.y4_c00163{bottom:28.480000pt;}
.y1_c00163{bottom:50.880000pt;}
.y31_c00163{bottom:134.746667pt;}
.y30_c00163{bottom:150.106667pt;}
.y2f_c00163{bottom:165.466667pt;}
.y2e_c00163{bottom:180.826667pt;}
.y2d_c00163{bottom:186.906667pt;}
.y2c_c00163{bottom:196.186667pt;}
.y2b_c00163{bottom:211.586667pt;}
.y2a_c00163{bottom:226.946667pt;}
.y29_c00163{bottom:242.306667pt;}
.y28_c00163{bottom:248.386667pt;}
.y27_c00163{bottom:257.666667pt;}
.y26_c00163{bottom:273.026667pt;}
.y25_c00163{bottom:288.386667pt;}
.y24_c00163{bottom:303.426667pt;}
.y23_c00163{bottom:318.813333pt;}
.y22_c00163{bottom:334.173333pt;}
.y21_c00163{bottom:340.253333pt;}
.y20_c00163{bottom:350.173333pt;}
.y1f_c00163{bottom:385.053333pt;}
.y1e_c00163{bottom:412.893333pt;}
.y1d_c00163{bottom:440.453333pt;}
.y1c_c00163{bottom:467.973333pt;}
.y1b_c00163{bottom:495.493333pt;}
.y1a_c00163{bottom:523.333333pt;}
.y18_c00163{bottom:550.880000pt;}
.y19_c00163{bottom:558.240000pt;}
.y16_c00163{bottom:578.400000pt;}
.y17_c00163{bottom:585.760000pt;}
.y15_c00163{bottom:605.920000pt;}
.y14_c00163{bottom:633.760000pt;}
.y13_c00163{bottom:661.306667pt;}
.y12_c00163{bottom:696.826667pt;}
.y11_c00163{bottom:724.346667pt;}
.y10_c00163{bottom:752.226667pt;}
.yf_c00163{bottom:779.746667pt;}
.yd_c00163{bottom:807.266667pt;}
.ye_c00163{bottom:814.626667pt;}
.yc_c00163{bottom:834.786667pt;}
.yb_c00163{bottom:862.653333pt;}
.ya_c00163{bottom:890.173333pt;}
.y9_c00163{bottom:917.693333pt;}
.y8_c00163{bottom:951.293333pt;}
.y7_c00163{bottom:974.373333pt;}
.y6_c00163{bottom:997.413333pt;}
.y2_c00163{bottom:1056.933333pt;}
.h3_c00163{height:18.266667pt;}
.ha_c00163{height:33.918750pt;}
.h4_c00163{height:36.796000pt;}
.h9_c00163{height:41.435625pt;}
.h8_c00163{height:41.456250pt;}
.h5_c00163{height:52.736250pt;}
.hb_c00163{height:52.762500pt;}
.h2_c00163{height:57.375000pt;}
.h6_c00163{height:62.812500pt;}
.h7_c00163{height:1122.556000pt;}
.h0_c00163{height:1122.560000pt;}
.h1_c00163{height:1122.666667pt;}
.w2_c00163{width:7.386667pt;}
.w3_c00163{width:567.280000pt;}
.w4_c00163{width:793.917333pt;}
.w0_c00163{width:793.920000pt;}
.w1_c00163{width:794.000000pt;}
.x0_c00163{left:0.000000pt;}
.x3_c00163{left:113.324000pt;}
.xb_c00163{left:126.784000pt;}
.x5_c00163{left:135.104000pt;}
.x1_c00163{left:137.346667pt;}
.x4_c00163{left:151.106667pt;}
.x6_c00163{left:202.970667pt;}
.x7_c00163{left:219.293333pt;}
.x8_c00163{left:279.810667pt;}
.x9_c00163{left:296.133333pt;}
.xa_c00163{left:305.413333pt;}
.x2_c00163{left:673.213333pt;}
}





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

.ir_c00164:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00164;src:url('chunks/assets/font_e20c16f485dbac0120bee3cb.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_5efe2d8285fa40661274a209.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_d8436efad8066ba8091646b7.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;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_c00164;src:url('chunks/assets/font_52569fda29abf6169ddd5caf.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00164;src:url('chunks/assets/font_2dba9029c959f54b53558639.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00164;src:url('chunks/assets/font_54c597691dc2fd9529a8c00f.woff2')format("woff");}.ff6_c00164{font-family:ff6_c00164;line-height:1.104004;font-style:normal;font-weight: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_c00164;src:url('chunks/assets/font_de01964e0bffe765272a6ed2.woff2')format("woff");}.ff7_c00164{font-family:ff7_c00164;line-height:1.311035;font-style:normal;font-weight: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_c00164;src:url('chunks/assets/font_fcd2d934dd8ea354eeb0f17f.woff2')format("woff");}.ff8_c00164{font-family:ff8_c00164;line-height:1.117188;font-style:normal;font-weight: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_c00164;src:url('chunks/assets/font_896af646b80af3a2dfb27ace.woff2')format("woff");}.ff9_c00164{font-family:ff9_c00164;line-height:1.117188;font-style:normal;font-weight: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_c00164;src:url('chunks/assets/font_40a60d2d6f01a7d9ead8ea22.woff2')format("woff");}.ffa_c00164{font-family:ffa_c00164;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls18_c00164{letter-spacing:-1.416000px;}
.ls14_c00164{letter-spacing:-0.720000px;}
.ls13_c00164{letter-spacing:-0.360000px;}
.ls19_c00164{letter-spacing:-0.302400px;}
.ls12_c00164{letter-spacing:-0.288000px;}
.ls16_c00164{letter-spacing:-0.169800px;}
.lsd_c00164{letter-spacing:0.000000px;}
.ls17_c00164{letter-spacing:0.020400px;}
.lsf_c00164{letter-spacing:0.022800px;}
.ls5_c00164{letter-spacing:0.120000px;}
.ls15_c00164{letter-spacing:0.288000px;}
.lse_c00164{letter-spacing:0.486600px;}
.ls11_c00164{letter-spacing:0.504000px;}
.lsc_c00164{letter-spacing:0.506880px;}
.ls1a_c00164{letter-spacing:0.521400px;}
.ls10_c00164{letter-spacing:0.702000px;}
.ls1_c00164{letter-spacing:0.720000px;}
.ls0_c00164{letter-spacing:0.728797px;}
.ls2_c00164{letter-spacing:0.740160px;}
.ls3_c00164{letter-spacing:0.740407px;}
.ls6_c00164{letter-spacing:2.160000px;}
.ls7_c00164{letter-spacing:3.600000px;}
.lsb_c00164{letter-spacing:5.040000px;}
.ls4_c00164{letter-spacing:8.100000px;}
.ls8_c00164{letter-spacing:13.680000px;}
.ls9_c00164{letter-spacing:16.560000px;}
.lsa_c00164{letter-spacing:16.740000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00164{word-spacing:-60.480000px;}
.ws5_c00164{word-spacing:-18.504000px;}
.ws8_c00164{word-spacing:-18.288000px;}
.ws0_c00164{word-spacing:-18.000000px;}
.ws6_c00164{word-spacing:-17.712000px;}
.ws7_c00164{word-spacing:-17.640000px;}
.ws4_c00164{word-spacing:-15.822000px;}
.wsb_c00164{word-spacing:-15.641400px;}
.ws1_c00164{word-spacing:-15.606600px;}
.ws9_c00164{word-spacing:-15.140400px;}
.ws2_c00164{word-spacing:-15.120000px;}
.wsa_c00164{word-spacing:-14.817600px;}
.wsc_c00164{word-spacing:0.000000px;}
._13_c00164{margin-left:-3.451185px;}
._2_c00164{margin-left:-2.376000px;}
._0_c00164{margin-left:-1.296000px;}
._1_c00164{width:1.368000px;}
._4_c00164{width:3.032398px;}
._8_c00164{width:4.146010px;}
._14_c00164{width:5.330350px;}
._7_c00164{width:6.855602px;}
._6_c00164{width:8.184000px;}
._5_c00164{width:9.504000px;}
._a_c00164{width:11.880000px;}
._9_c00164{width:13.968000px;}
._d_c00164{width:15.195602px;}
._e_c00164{width:16.776000px;}
._f_c00164{width:20.028000px;}
._12_c00164{width:26.136000px;}
._10_c00164{width:27.144000px;}
._11_c00164{width:28.215602px;}
._c_c00164{width:40.703976px;}
._b_c00164{width:41.808024px;}
._3_c00164{width:181.764048px;}
.fc0_c00164{color:rgb(0,0,0);}
.fs2_c00164{font-size:38.880000px;}
.fs1_c00164{font-size:60.480000px;}
.fs0_c00164{font-size:72.000000px;}
.y0_c00164{bottom:0.000000px;}
.y3_c00164{bottom:4.320000px;}
.y5_c00164{bottom:25.200000px;}
.y4_c00164{bottom:32.040000px;}
.y1_c00164{bottom:57.240000px;}
.y28_c00164{bottom:151.590000px;}
.y27_c00164{bottom:168.870000px;}
.y26_c00164{bottom:186.150000px;}
.y25_c00164{bottom:203.430000px;}
.y24_c00164{bottom:220.710000px;}
.y23_c00164{bottom:238.035000px;}
.y22_c00164{bottom:244.875000px;}
.y21_c00164{bottom:256.035000px;}
.y20_c00164{bottom:288.795000px;}
.y1f_c00164{bottom:328.755000px;}
.y1e_c00164{bottom:360.105000px;}
.y1d_c00164{bottom:391.065000px;}
.y1c_c00164{bottom:422.025000px;}
.y1b_c00164{bottom:452.985000px;}
.y1a_c00164{bottom:484.350000px;}
.y19_c00164{bottom:515.310000px;}
.y18_c00164{bottom:546.270000px;}
.y17_c00164{bottom:577.230000px;}
.y16_c00164{bottom:608.580000px;}
.y15_c00164{bottom:648.540000px;}
.y14_c00164{bottom:679.500000px;}
.y13_c00164{bottom:710.460000px;}
.y12_c00164{bottom:741.810000px;}
.y11_c00164{bottom:772.770000px;}
.y10_c00164{bottom:803.730000px;}
.yf_c00164{bottom:841.575000px;}
.ye_c00164{bottom:867.495000px;}
.yd_c00164{bottom:902.415000px;}
.yb_c00164{bottom:937.335000px;}
.yc_c00164{bottom:944.175000px;}
.ya_c00164{bottom:971.925000px;}
.y9_c00164{bottom:1006.845000px;}
.y8_c00164{bottom:1041.765000px;}
.y7_c00164{bottom:1078.845000px;}
.y6_c00164{bottom:1119.210000px;}
.y2_c00164{bottom:1189.050000px;}
.h3_c00164{height:20.550000px;}
.hb_c00164{height:34.855313px;}
.h8_c00164{height:39.183750px;}
.h4_c00164{height:41.395500px;}
.hc_c00164{height:54.219375px;}
.hd_c00164{height:54.514688px;}
.ha_c00164{height:59.328281px;}
.h6_c00164{height:59.357813px;}
.h9_c00164{height:60.952500px;}
.h2_c00164{height:64.546875px;}
.h5_c00164{height:70.664062px;}
.h7_c00164{height:1262.875500px;}
.h0_c00164{height:1262.880000px;}
.h1_c00164{height:1263.000000px;}
.w2_c00164{width:8.310000px;}
.w3_c00164{width:638.190000px;}
.w4_c00164{width:893.157000px;}
.w0_c00164{width:893.160000px;}
.w1_c00164{width:893.250000px;}
.x0_c00164{left:0.000000px;}
.x3_c00164{left:127.489500px;}
.x8_c00164{left:142.632000px;}
.x1_c00164{left:154.515000px;}
.x4_c00164{left:169.995000px;}
.x5_c00164{left:302.142000px;}
.x6_c00164{left:317.310000px;}
.x7_c00164{left:343.590000px;}
.x2_c00164{left:757.365000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls18_c00164{letter-spacing:-1.258667pt;}
.ls14_c00164{letter-spacing:-0.640000pt;}
.ls13_c00164{letter-spacing:-0.320000pt;}
.ls19_c00164{letter-spacing:-0.268800pt;}
.ls12_c00164{letter-spacing:-0.256000pt;}
.ls16_c00164{letter-spacing:-0.150933pt;}
.lsd_c00164{letter-spacing:0.000000pt;}
.ls17_c00164{letter-spacing:0.018133pt;}
.lsf_c00164{letter-spacing:0.020267pt;}
.ls5_c00164{letter-spacing:0.106667pt;}
.ls15_c00164{letter-spacing:0.256000pt;}
.lse_c00164{letter-spacing:0.432533pt;}
.ls11_c00164{letter-spacing:0.448000pt;}
.lsc_c00164{letter-spacing:0.450560pt;}
.ls1a_c00164{letter-spacing:0.463467pt;}
.ls10_c00164{letter-spacing:0.624000pt;}
.ls1_c00164{letter-spacing:0.640000pt;}
.ls0_c00164{letter-spacing:0.647820pt;}
.ls2_c00164{letter-spacing:0.657920pt;}
.ls3_c00164{letter-spacing:0.658139pt;}
.ls6_c00164{letter-spacing:1.920000pt;}
.ls7_c00164{letter-spacing:3.200000pt;}
.lsb_c00164{letter-spacing:4.480000pt;}
.ls4_c00164{letter-spacing:7.200000pt;}
.ls8_c00164{letter-spacing:12.160000pt;}
.ls9_c00164{letter-spacing:14.720000pt;}
.lsa_c00164{letter-spacing:14.880000pt;}
.ws3_c00164{word-spacing:-53.760000pt;}
.ws5_c00164{word-spacing:-16.448000pt;}
.ws8_c00164{word-spacing:-16.256000pt;}
.ws0_c00164{word-spacing:-16.000000pt;}
.ws6_c00164{word-spacing:-15.744000pt;}
.ws7_c00164{word-spacing:-15.680000pt;}
.ws4_c00164{word-spacing:-14.064000pt;}
.wsb_c00164{word-spacing:-13.903467pt;}
.ws1_c00164{word-spacing:-13.872533pt;}
.ws9_c00164{word-spacing:-13.458133pt;}
.ws2_c00164{word-spacing:-13.440000pt;}
.wsa_c00164{word-spacing:-13.171200pt;}
.wsc_c00164{word-spacing:0.000000pt;}
._13_c00164{margin-left:-3.067720pt;}
._2_c00164{margin-left:-2.112000pt;}
._0_c00164{margin-left:-1.152000pt;}
._1_c00164{width:1.216000pt;}
._4_c00164{width:2.695465pt;}
._8_c00164{width:3.685342pt;}
._14_c00164{width:4.738089pt;}
._7_c00164{width:6.093868pt;}
._6_c00164{width:7.274667pt;}
._5_c00164{width:8.448000pt;}
._a_c00164{width:10.560000pt;}
._9_c00164{width:12.416000pt;}
._d_c00164{width:13.507202pt;}
._e_c00164{width:14.912000pt;}
._f_c00164{width:17.802667pt;}
._12_c00164{width:23.232000pt;}
._10_c00164{width:24.128000pt;}
._11_c00164{width:25.080535pt;}
._c_c00164{width:36.181312pt;}
._b_c00164{width:37.162688pt;}
._3_c00164{width:161.568043pt;}
.fs2_c00164{font-size:34.560000pt;}
.fs1_c00164{font-size:53.760000pt;}
.fs0_c00164{font-size:64.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y3_c00164{bottom:3.840000pt;}
.y5_c00164{bottom:22.400000pt;}
.y4_c00164{bottom:28.480000pt;}
.y1_c00164{bottom:50.880000pt;}
.y28_c00164{bottom:134.746667pt;}
.y27_c00164{bottom:150.106667pt;}
.y26_c00164{bottom:165.466667pt;}
.y25_c00164{bottom:180.826667pt;}
.y24_c00164{bottom:196.186667pt;}
.y23_c00164{bottom:211.586667pt;}
.y22_c00164{bottom:217.666667pt;}
.y21_c00164{bottom:227.586667pt;}
.y20_c00164{bottom:256.706667pt;}
.y1f_c00164{bottom:292.226667pt;}
.y1e_c00164{bottom:320.093333pt;}
.y1d_c00164{bottom:347.613333pt;}
.y1c_c00164{bottom:375.133333pt;}
.y1b_c00164{bottom:402.653333pt;}
.y1a_c00164{bottom:430.533333pt;}
.y19_c00164{bottom:458.053333pt;}
.y18_c00164{bottom:485.573333pt;}
.y17_c00164{bottom:513.093333pt;}
.y16_c00164{bottom:540.960000pt;}
.y15_c00164{bottom:576.480000pt;}
.y14_c00164{bottom:604.000000pt;}
.y13_c00164{bottom:631.520000pt;}
.y12_c00164{bottom:659.386667pt;}
.y11_c00164{bottom:686.906667pt;}
.y10_c00164{bottom:714.426667pt;}
.yf_c00164{bottom:748.066667pt;}
.ye_c00164{bottom:771.106667pt;}
.yd_c00164{bottom:802.146667pt;}
.yb_c00164{bottom:833.186667pt;}
.yc_c00164{bottom:839.266667pt;}
.ya_c00164{bottom:863.933333pt;}
.y9_c00164{bottom:894.973333pt;}
.y8_c00164{bottom:926.013333pt;}
.y7_c00164{bottom:958.973333pt;}
.y6_c00164{bottom:994.853333pt;}
.y2_c00164{bottom:1056.933333pt;}
.h3_c00164{height:18.266667pt;}
.hb_c00164{height:30.982500pt;}
.h8_c00164{height:34.830000pt;}
.h4_c00164{height:36.796000pt;}
.hc_c00164{height:48.195000pt;}
.hd_c00164{height:48.457500pt;}
.ha_c00164{height:52.736250pt;}
.h6_c00164{height:52.762500pt;}
.h9_c00164{height:54.180000pt;}
.h2_c00164{height:57.375000pt;}
.h5_c00164{height:62.812500pt;}
.h7_c00164{height:1122.556000pt;}
.h0_c00164{height:1122.560000pt;}
.h1_c00164{height:1122.666667pt;}
.w2_c00164{width:7.386667pt;}
.w3_c00164{width:567.280000pt;}
.w4_c00164{width:793.917333pt;}
.w0_c00164{width:793.920000pt;}
.w1_c00164{width:794.000000pt;}
.x0_c00164{left:0.000000pt;}
.x3_c00164{left:113.324000pt;}
.x8_c00164{left:126.784000pt;}
.x1_c00164{left:137.346667pt;}
.x4_c00164{left:151.106667pt;}
.x5_c00164{left:268.570667pt;}
.x6_c00164{left:282.053333pt;}
.x7_c00164{left:305.413333pt;}
.x2_c00164{left:673.213333pt;}
}





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

.ir_c00165:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00165;src:url('chunks/assets/font_df548fb5ad370c73d366a622.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_6386ae5248f4320e70611f10.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_0dd6a072202aac25268e4ac4.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_8d4a477f14ba9175f4b74bd6.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;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_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls15_c00165{letter-spacing:-1.800000px;}
.ls19_c00165{letter-spacing:-1.440000px;}
.ls13_c00165{letter-spacing:-1.152000px;}
.ls1a_c00165{letter-spacing:-0.486600px;}
.ls1d_c00165{letter-spacing:-0.241800px;}
.ls12_c00165{letter-spacing:-0.144000px;}
.ls11_c00165{letter-spacing:0.000000px;}
.ls1c_c00165{letter-spacing:0.020400px;}
.ls10_c00165{letter-spacing:0.022800px;}
.lsd_c00165{letter-spacing:0.048960px;}
.ls14_c00165{letter-spacing:0.072000px;}
.ls17_c00165{letter-spacing:0.144000px;}
.lsc_c00165{letter-spacing:0.164160px;}
.ls1b_c00165{letter-spacing:0.313800px;}
.ls1e_c00165{letter-spacing:0.518400px;}
.ls16_c00165{letter-spacing:0.576000px;}
.lsf_c00165{letter-spacing:0.593280px;}
.ls18_c00165{letter-spacing:0.702000px;}
.ls6_c00165{letter-spacing:0.720000px;}
.ls8_c00165{letter-spacing:0.740160px;}
.ls9_c00165{letter-spacing:1.440000px;}
.ls5_c00165{letter-spacing:1.584000px;}
.ls4_c00165{letter-spacing:2.016000px;}
.lsa_c00165{letter-spacing:2.160000px;}
.lsb_c00165{letter-spacing:2.280000px;}
.ls0_c00165{letter-spacing:3.600000px;}
.ls7_c00165{letter-spacing:5.040000px;}
.ls3_c00165{letter-spacing:6.480000px;}
.ls1_c00165{letter-spacing:12.240000px;}
.lse_c00165{letter-spacing:16.560000px;}
.ls2_c00165{letter-spacing:25.200000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00165{word-spacing:-18.072000px;}
.ws2_c00165{word-spacing:-18.000000px;}
.ws0_c00165{word-spacing:-17.856000px;}
.ws1_c00165{word-spacing:-16.848000px;}
.ws3_c00165{word-spacing:-16.200000px;}
.ws5_c00165{word-spacing:-15.822000px;}
.wsa_c00165{word-spacing:-15.638400px;}
.ws9_c00165{word-spacing:-15.433800px;}
.ws6_c00165{word-spacing:-15.120000px;}
.ws8_c00165{word-spacing:-14.633400px;}
.ws7_c00165{word-spacing:-13.680000px;}
.wsb_c00165{word-spacing:0.000000px;}
._4_c00165{margin-left:-2.880000px;}
._1_c00165{margin-left:-1.728000px;}
._2_c00165{width:1.512000px;}
._5_c00165{width:2.592000px;}
._0_c00165{width:3.684024px;}
._3_c00165{width:5.112000px;}
._a_c00165{width:6.887928px;}
._f_c00165{width:7.992216px;}
._10_c00165{width:10.949038px;}
._8_c00165{width:12.672000px;}
._9_c00165{width:14.184000px;}
._6_c00165{width:16.560000px;}
._7_c00165{width:19.932000px;}
._e_c00165{width:21.540000px;}
._d_c00165{width:22.824000px;}
._c_c00165{width:24.624000px;}
._b_c00165{width:25.776000px;}
.fc1_c00165{color:rgb(255,0,0);}
.fc0_c00165{color:rgb(0,0,0);}
.fs2_c00165{font-size:38.880000px;}
.fs1_c00165{font-size:47.520000px;}
.fs3_c00165{font-size:60.480000px;}
.fs0_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y3_c00165{bottom:4.320000px;}
.y5_c00165{bottom:25.200000px;}
.y4_c00165{bottom:32.040000px;}
.y1_c00165{bottom:57.240000px;}
.y2d_c00165{bottom:151.590000px;}
.y2c_c00165{bottom:168.870000px;}
.y2b_c00165{bottom:186.150000px;}
.y2a_c00165{bottom:203.430000px;}
.y29_c00165{bottom:220.710000px;}
.y28_c00165{bottom:238.035000px;}
.y27_c00165{bottom:255.315000px;}
.y26_c00165{bottom:272.595000px;}
.y25_c00165{bottom:279.435000px;}
.y24_c00165{bottom:289.875000px;}
.y23_c00165{bottom:307.155000px;}
.y22_c00165{bottom:324.435000px;}
.y21_c00165{bottom:341.355000px;}
.y20_c00165{bottom:348.195000px;}
.y1f_c00165{bottom:359.385000px;}
.y1e_c00165{bottom:417.705000px;}
.y1d_c00165{bottom:449.025000px;}
.y1c_c00165{bottom:480.030000px;}
.y1b_c00165{bottom:510.990000px;}
.y1a_c00165{bottom:541.950000px;}
.y19_c00165{bottom:572.910000px;}
.y18_c00165{bottom:604.260000px;}
.y17_c00165{bottom:635.220000px;}
.y16_c00165{bottom:666.180000px;}
.y14_c00165{bottom:706.140000px;}
.y15_c00165{bottom:714.420000px;}
.y13_c00165{bottom:737.490000px;}
.y12_c00165{bottom:768.450000px;}
.y11_c00165{bottom:799.410000px;}
.yf_c00165{bottom:830.370000px;}
.y10_c00165{bottom:838.650000px;}
.ye_c00165{bottom:861.735000px;}
.yd_c00165{bottom:892.695000px;}
.yc_c00165{bottom:932.655000px;}
.yb_c00165{bottom:963.645000px;}
.ya_c00165{bottom:994.965000px;}
.y9_c00165{bottom:1025.925000px;}
.y8_c00165{bottom:1056.885000px;}
.y7_c00165{bottom:1087.890000px;}
.y6_c00165{bottom:1119.210000px;}
.y2_c00165{bottom:1189.050000px;}
.h3_c00165{height:20.550000px;}
.h8_c00165{height:38.158594px;}
.h4_c00165{height:41.395500px;}
.h7_c00165{height:46.638281px;}
.h9_c00165{height:59.357813px;}
.h2_c00165{height:64.546875px;}
.h5_c00165{height:70.664062px;}
.h6_c00165{height:1262.875500px;}
.h0_c00165{height:1262.880000px;}
.h1_c00165{height:1263.000000px;}
.w2_c00165{width:8.310000px;}
.w3_c00165{width:638.190000px;}
.w4_c00165{width:893.157000px;}
.w0_c00165{width:893.160000px;}
.w1_c00165{width:893.250000px;}
.x0_c00165{left:0.000000px;}
.x3_c00165{left:127.489500px;}
.xa_c00165{left:142.632000px;}
.x1_c00165{left:154.515000px;}
.x4_c00165{left:169.995000px;}
.x7_c00165{left:195.552000px;}
.x8_c00165{left:213.915000px;}
.x9_c00165{left:343.590000px;}
.x5_c00165{left:423.537000px;}
.x6_c00165{left:441.900000px;}
.x2_c00165{left:757.365000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls15_c00165{letter-spacing:-1.600000pt;}
.ls19_c00165{letter-spacing:-1.280000pt;}
.ls13_c00165{letter-spacing:-1.024000pt;}
.ls1a_c00165{letter-spacing:-0.432533pt;}
.ls1d_c00165{letter-spacing:-0.214933pt;}
.ls12_c00165{letter-spacing:-0.128000pt;}
.ls11_c00165{letter-spacing:0.000000pt;}
.ls1c_c00165{letter-spacing:0.018133pt;}
.ls10_c00165{letter-spacing:0.020267pt;}
.lsd_c00165{letter-spacing:0.043520pt;}
.ls14_c00165{letter-spacing:0.064000pt;}
.ls17_c00165{letter-spacing:0.128000pt;}
.lsc_c00165{letter-spacing:0.145920pt;}
.ls1b_c00165{letter-spacing:0.278933pt;}
.ls1e_c00165{letter-spacing:0.460800pt;}
.ls16_c00165{letter-spacing:0.512000pt;}
.lsf_c00165{letter-spacing:0.527360pt;}
.ls18_c00165{letter-spacing:0.624000pt;}
.ls6_c00165{letter-spacing:0.640000pt;}
.ls8_c00165{letter-spacing:0.657920pt;}
.ls9_c00165{letter-spacing:1.280000pt;}
.ls5_c00165{letter-spacing:1.408000pt;}
.ls4_c00165{letter-spacing:1.792000pt;}
.lsa_c00165{letter-spacing:1.920000pt;}
.lsb_c00165{letter-spacing:2.026667pt;}
.ls0_c00165{letter-spacing:3.200000pt;}
.ls7_c00165{letter-spacing:4.480000pt;}
.ls3_c00165{letter-spacing:5.760000pt;}
.ls1_c00165{letter-spacing:10.880000pt;}
.lse_c00165{letter-spacing:14.720000pt;}
.ls2_c00165{letter-spacing:22.400000pt;}
.ws4_c00165{word-spacing:-16.064000pt;}
.ws2_c00165{word-spacing:-16.000000pt;}
.ws0_c00165{word-spacing:-15.872000pt;}
.ws1_c00165{word-spacing:-14.976000pt;}
.ws3_c00165{word-spacing:-14.400000pt;}
.ws5_c00165{word-spacing:-14.064000pt;}
.wsa_c00165{word-spacing:-13.900800pt;}
.ws9_c00165{word-spacing:-13.718933pt;}
.ws6_c00165{word-spacing:-13.440000pt;}
.ws8_c00165{word-spacing:-13.007467pt;}
.ws7_c00165{word-spacing:-12.160000pt;}
.wsb_c00165{word-spacing:0.000000pt;}
._4_c00165{margin-left:-2.560000pt;}
._1_c00165{margin-left:-1.536000pt;}
._2_c00165{width:1.344000pt;}
._5_c00165{width:2.304000pt;}
._0_c00165{width:3.274688pt;}
._3_c00165{width:4.544000pt;}
._a_c00165{width:6.122603pt;}
._f_c00165{width:7.104192pt;}
._10_c00165{width:9.732478pt;}
._8_c00165{width:11.264000pt;}
._9_c00165{width:12.608000pt;}
._6_c00165{width:14.720000pt;}
._7_c00165{width:17.717333pt;}
._e_c00165{width:19.146667pt;}
._d_c00165{width:20.288000pt;}
._c_c00165{width:21.888000pt;}
._b_c00165{width:22.912000pt;}
.fs2_c00165{font-size:34.560000pt;}
.fs1_c00165{font-size:42.240000pt;}
.fs3_c00165{font-size:53.760000pt;}
.fs0_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y3_c00165{bottom:3.840000pt;}
.y5_c00165{bottom:22.400000pt;}
.y4_c00165{bottom:28.480000pt;}
.y1_c00165{bottom:50.880000pt;}
.y2d_c00165{bottom:134.746667pt;}
.y2c_c00165{bottom:150.106667pt;}
.y2b_c00165{bottom:165.466667pt;}
.y2a_c00165{bottom:180.826667pt;}
.y29_c00165{bottom:196.186667pt;}
.y28_c00165{bottom:211.586667pt;}
.y27_c00165{bottom:226.946667pt;}
.y26_c00165{bottom:242.306667pt;}
.y25_c00165{bottom:248.386667pt;}
.y24_c00165{bottom:257.666667pt;}
.y23_c00165{bottom:273.026667pt;}
.y22_c00165{bottom:288.386667pt;}
.y21_c00165{bottom:303.426667pt;}
.y20_c00165{bottom:309.506667pt;}
.y1f_c00165{bottom:319.453333pt;}
.y1e_c00165{bottom:371.293333pt;}
.y1d_c00165{bottom:399.133333pt;}
.y1c_c00165{bottom:426.693333pt;}
.y1b_c00165{bottom:454.213333pt;}
.y1a_c00165{bottom:481.733333pt;}
.y19_c00165{bottom:509.253333pt;}
.y18_c00165{bottom:537.120000pt;}
.y17_c00165{bottom:564.640000pt;}
.y16_c00165{bottom:592.160000pt;}
.y14_c00165{bottom:627.680000pt;}
.y15_c00165{bottom:635.040000pt;}
.y13_c00165{bottom:655.546667pt;}
.y12_c00165{bottom:683.066667pt;}
.y11_c00165{bottom:710.586667pt;}
.yf_c00165{bottom:738.106667pt;}
.y10_c00165{bottom:745.466667pt;}
.ye_c00165{bottom:765.986667pt;}
.yd_c00165{bottom:793.506667pt;}
.yc_c00165{bottom:829.026667pt;}
.yb_c00165{bottom:856.573333pt;}
.ya_c00165{bottom:884.413333pt;}
.y9_c00165{bottom:911.933333pt;}
.y8_c00165{bottom:939.453333pt;}
.y7_c00165{bottom:967.013333pt;}
.y6_c00165{bottom:994.853333pt;}
.y2_c00165{bottom:1056.933333pt;}
.h3_c00165{height:18.266667pt;}
.h8_c00165{height:33.918750pt;}
.h4_c00165{height:36.796000pt;}
.h7_c00165{height:41.456250pt;}
.h9_c00165{height:52.762500pt;}
.h2_c00165{height:57.375000pt;}
.h5_c00165{height:62.812500pt;}
.h6_c00165{height:1122.556000pt;}
.h0_c00165{height:1122.560000pt;}
.h1_c00165{height:1122.666667pt;}
.w2_c00165{width:7.386667pt;}
.w3_c00165{width:567.280000pt;}
.w4_c00165{width:793.917333pt;}
.w0_c00165{width:793.920000pt;}
.w1_c00165{width:794.000000pt;}
.x0_c00165{left:0.000000pt;}
.x3_c00165{left:113.324000pt;}
.xa_c00165{left:126.784000pt;}
.x1_c00165{left:137.346667pt;}
.x4_c00165{left:151.106667pt;}
.x7_c00165{left:173.824000pt;}
.x8_c00165{left:190.146667pt;}
.x9_c00165{left:305.413333pt;}
.x5_c00165{left:376.477333pt;}
.x6_c00165{left:392.800000pt;}
.x2_c00165{left:673.213333pt;}
}





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

.ir_c00166:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00166;src:url('chunks/assets/font_b70710b437c69b276449f566.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_9970b4767547637fa15d5a24.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_cab8333e4996006ed66afd56.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_aae3cbe2436d65c65c25d458.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;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_c00166;src:url('chunks/assets/font_f3565c9b7ce796e0c93a2f23.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00166;src:url('chunks/assets/font_312bd93090e0faafcd3f874c.woff2')format("woff");}.ff6_c00166{font-family:ff6_c00166;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls7_c00166{letter-spacing:-0.720000px;}
.ls5_c00166{letter-spacing:0.000000px;}
.ls9_c00166{letter-spacing:0.020400px;}
.ls6_c00166{letter-spacing:0.072000px;}
.ls2_c00166{letter-spacing:0.164160px;}
.ls3_c00166{letter-spacing:0.507000px;}
.ls8_c00166{letter-spacing:0.521400px;}
.ls1_c00166{letter-spacing:0.720000px;}
.ls4_c00166{letter-spacing:3.600000px;}
.ls0_c00166{letter-spacing:6.480000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00166{word-spacing:-72.000000px;}
.ws4_c00166{word-spacing:-60.480000px;}
.ws0_c00166{word-spacing:-18.072000px;}
.ws1_c00166{word-spacing:-18.000000px;}
.ws5_c00166{word-spacing:-15.641400px;}
.ws6_c00166{word-spacing:-15.140400px;}
.ws3_c00166{word-spacing:-15.120000px;}
.ws7_c00166{word-spacing:0.000000px;}
._11_c00166{margin-left:-4.388398px;}
._3_c00166{margin-left:-2.952000px;}
._1_c00166{margin-left:-1.440000px;}
._0_c00166{width:1.224000px;}
._2_c00166{width:2.520000px;}
._4_c00166{width:4.104000px;}
._a_c00166{width:5.544000px;}
._c_c00166{width:6.552000px;}
._b_c00166{width:7.560000px;}
._12_c00166{width:9.531840px;}
._10_c00166{width:10.584000px;}
._5_c00166{width:12.096000px;}
._6_c00166{width:13.104000px;}
._7_c00166{width:22.824000px;}
._8_c00166{width:24.480000px;}
._9_c00166{width:25.776000px;}
._e_c00166{width:28.584000px;}
._d_c00166{width:29.880000px;}
._f_c00166{width:32.376024px;}
.fc0_c00166{color:rgb(0,0,0);}
.fs3_c00166{font-size:38.880000px;}
.fs1_c00166{font-size:47.520000px;}
.fs2_c00166{font-size:60.480000px;}
.fs0_c00166{font-size:72.000000px;}
.y0_c00166{bottom:0.000000px;}
.y3_c00166{bottom:4.320000px;}
.y5_c00166{bottom:25.200000px;}
.y4_c00166{bottom:32.040000px;}
.y1_c00166{bottom:57.240000px;}
.y2a_c00166{bottom:151.590000px;}
.y29_c00166{bottom:168.870000px;}
.y28_c00166{bottom:186.150000px;}
.y27_c00166{bottom:192.990000px;}
.y26_c00166{bottom:203.430000px;}
.y25_c00166{bottom:220.710000px;}
.y24_c00166{bottom:238.035000px;}
.y23_c00166{bottom:244.875000px;}
.y22_c00166{bottom:256.035000px;}
.y21_c00166{bottom:291.675000px;}
.y20_c00166{bottom:326.595000px;}
.y1f_c00166{bottom:361.545000px;}
.y1e_c00166{bottom:396.465000px;}
.y1d_c00166{bottom:431.385000px;}
.y1c_c00166{bottom:466.305000px;}
.y1b_c00166{bottom:500.910000px;}
.y1a_c00166{bottom:535.830000px;}
.y19_c00166{bottom:572.910000px;}
.y18_c00166{bottom:613.260000px;}
.y17_c00166{bottom:644.220000px;}
.y16_c00166{bottom:675.180000px;}
.y15_c00166{bottom:706.140000px;}
.y14_c00166{bottom:737.490000px;}
.y13_c00166{bottom:768.450000px;}
.y12_c00166{bottom:799.410000px;}
.y10_c00166{bottom:830.370000px;}
.y11_c00166{bottom:838.650000px;}
.yf_c00166{bottom:861.735000px;}
.ye_c00166{bottom:892.695000px;}
.yd_c00166{bottom:923.655000px;}
.yb_c00166{bottom:963.645000px;}
.yc_c00166{bottom:971.925000px;}
.ya_c00166{bottom:994.965000px;}
.y9_c00166{bottom:1025.925000px;}
.y8_c00166{bottom:1056.885000px;}
.y7_c00166{bottom:1087.890000px;}
.y6_c00166{bottom:1119.210000px;}
.y2_c00166{bottom:1189.050000px;}
.h3_c00166{height:20.550000px;}
.h9_c00166{height:38.158594px;}
.h4_c00166{height:41.395500px;}
.h7_c00166{height:46.638281px;}
.h8_c00166{height:59.357813px;}
.h2_c00166{height:64.546875px;}
.h5_c00166{height:70.664062px;}
.h6_c00166{height:1262.875500px;}
.h0_c00166{height:1262.880000px;}
.h1_c00166{height:1263.000000px;}
.w2_c00166{width:8.310000px;}
.w3_c00166{width:638.190000px;}
.w4_c00166{width:893.157000px;}
.w0_c00166{width:893.160000px;}
.w1_c00166{width:893.250000px;}
.x0_c00166{left:0.000000px;}
.x3_c00166{left:127.489500px;}
.xa_c00166{left:142.632000px;}
.x1_c00166{left:154.515000px;}
.x4_c00166{left:169.995000px;}
.x9_c00166{left:343.590000px;}
.x5_c00166{left:606.852000px;}
.x6_c00166{left:625.215000px;}
.x7_c00166{left:742.962000px;}
.x2_c00166{left:757.365000px;}
.x8_c00166{left:761.370000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls7_c00166{letter-spacing:-0.640000pt;}
.ls5_c00166{letter-spacing:0.000000pt;}
.ls9_c00166{letter-spacing:0.018133pt;}
.ls6_c00166{letter-spacing:0.064000pt;}
.ls2_c00166{letter-spacing:0.145920pt;}
.ls3_c00166{letter-spacing:0.450667pt;}
.ls8_c00166{letter-spacing:0.463467pt;}
.ls1_c00166{letter-spacing:0.640000pt;}
.ls4_c00166{letter-spacing:3.200000pt;}
.ls0_c00166{letter-spacing:5.760000pt;}
.ws2_c00166{word-spacing:-64.000000pt;}
.ws4_c00166{word-spacing:-53.760000pt;}
.ws0_c00166{word-spacing:-16.064000pt;}
.ws1_c00166{word-spacing:-16.000000pt;}
.ws5_c00166{word-spacing:-13.903467pt;}
.ws6_c00166{word-spacing:-13.458133pt;}
.ws3_c00166{word-spacing:-13.440000pt;}
.ws7_c00166{word-spacing:0.000000pt;}
._11_c00166{margin-left:-3.900798pt;}
._3_c00166{margin-left:-2.624000pt;}
._1_c00166{margin-left:-1.280000pt;}
._0_c00166{width:1.088000pt;}
._2_c00166{width:2.240000pt;}
._4_c00166{width:3.648000pt;}
._a_c00166{width:4.928000pt;}
._c_c00166{width:5.824000pt;}
._b_c00166{width:6.720000pt;}
._12_c00166{width:8.472747pt;}
._10_c00166{width:9.408000pt;}
._5_c00166{width:10.752000pt;}
._6_c00166{width:11.648000pt;}
._7_c00166{width:20.288000pt;}
._8_c00166{width:21.760000pt;}
._9_c00166{width:22.912000pt;}
._e_c00166{width:25.408000pt;}
._d_c00166{width:26.560000pt;}
._f_c00166{width:28.778688pt;}
.fs3_c00166{font-size:34.560000pt;}
.fs1_c00166{font-size:42.240000pt;}
.fs2_c00166{font-size:53.760000pt;}
.fs0_c00166{font-size:64.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y3_c00166{bottom:3.840000pt;}
.y5_c00166{bottom:22.400000pt;}
.y4_c00166{bottom:28.480000pt;}
.y1_c00166{bottom:50.880000pt;}
.y2a_c00166{bottom:134.746667pt;}
.y29_c00166{bottom:150.106667pt;}
.y28_c00166{bottom:165.466667pt;}
.y27_c00166{bottom:171.546667pt;}
.y26_c00166{bottom:180.826667pt;}
.y25_c00166{bottom:196.186667pt;}
.y24_c00166{bottom:211.586667pt;}
.y23_c00166{bottom:217.666667pt;}
.y22_c00166{bottom:227.586667pt;}
.y21_c00166{bottom:259.266667pt;}
.y20_c00166{bottom:290.306667pt;}
.y1f_c00166{bottom:321.373333pt;}
.y1e_c00166{bottom:352.413333pt;}
.y1d_c00166{bottom:383.453333pt;}
.y1c_c00166{bottom:414.493333pt;}
.y1b_c00166{bottom:445.253333pt;}
.y1a_c00166{bottom:476.293333pt;}
.y19_c00166{bottom:509.253333pt;}
.y18_c00166{bottom:545.120000pt;}
.y17_c00166{bottom:572.640000pt;}
.y16_c00166{bottom:600.160000pt;}
.y15_c00166{bottom:627.680000pt;}
.y14_c00166{bottom:655.546667pt;}
.y13_c00166{bottom:683.066667pt;}
.y12_c00166{bottom:710.586667pt;}
.y10_c00166{bottom:738.106667pt;}
.y11_c00166{bottom:745.466667pt;}
.yf_c00166{bottom:765.986667pt;}
.ye_c00166{bottom:793.506667pt;}
.yd_c00166{bottom:821.026667pt;}
.yb_c00166{bottom:856.573333pt;}
.yc_c00166{bottom:863.933333pt;}
.ya_c00166{bottom:884.413333pt;}
.y9_c00166{bottom:911.933333pt;}
.y8_c00166{bottom:939.453333pt;}
.y7_c00166{bottom:967.013333pt;}
.y6_c00166{bottom:994.853333pt;}
.y2_c00166{bottom:1056.933333pt;}
.h3_c00166{height:18.266667pt;}
.h9_c00166{height:33.918750pt;}
.h4_c00166{height:36.796000pt;}
.h7_c00166{height:41.456250pt;}
.h8_c00166{height:52.762500pt;}
.h2_c00166{height:57.375000pt;}
.h5_c00166{height:62.812500pt;}
.h6_c00166{height:1122.556000pt;}
.h0_c00166{height:1122.560000pt;}
.h1_c00166{height:1122.666667pt;}
.w2_c00166{width:7.386667pt;}
.w3_c00166{width:567.280000pt;}
.w4_c00166{width:793.917333pt;}
.w0_c00166{width:793.920000pt;}
.w1_c00166{width:794.000000pt;}
.x0_c00166{left:0.000000pt;}
.x3_c00166{left:113.324000pt;}
.xa_c00166{left:126.784000pt;}
.x1_c00166{left:137.346667pt;}
.x4_c00166{left:151.106667pt;}
.x9_c00166{left:305.413333pt;}
.x5_c00166{left:539.424000pt;}
.x6_c00166{left:555.746667pt;}
.x7_c00166{left:660.410667pt;}
.x2_c00166{left:673.213333pt;}
.x8_c00166{left:676.773333pt;}
}





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

.ir_c00167:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00167;src:url('chunks/assets/font_fa92f73af1369d9cf57b063c.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00167;src:url('chunks/assets/font_936d622d8fa7ecc3e16b916f.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_ce10a0177c658a389f19832e.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_fab99e01a751eb337eae2a99.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;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_c00167;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff5_c00167{font-family:ff5_c00167;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls9_c00167{letter-spacing:-2.880000px;}
.ls7_c00167{letter-spacing:-1.152000px;}
.ls6_c00167{letter-spacing:-0.288000px;}
.ls5_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:0.144000px;}
.ls4_c00167{letter-spacing:0.164160px;}
.ls8_c00167{letter-spacing:0.466800px;}
.ls3_c00167{letter-spacing:0.506880px;}
.ls2_c00167{letter-spacing:0.720000px;}
.ls1_c00167{letter-spacing:10.800000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00167{word-spacing:-72.000000px;}
.ws0_c00167{word-spacing:-18.000000px;}
.ws2_c00167{word-spacing:-15.120000px;}
.ws3_c00167{word-spacing:0.000000px;}
._6_c00167{margin-left:-2.837425px;}
._0_c00167{margin-left:-1.390798px;}
._1_c00167{width:1.390798px;}
._5_c00167{width:2.808000px;}
._4_c00167{width:4.294201px;}
._3_c00167{width:5.866802px;}
._2_c00167{width:7.741198px;}
._10_c00167{width:8.746484px;}
._a_c00167{width:9.847829px;}
._b_c00167{width:11.581079px;}
._f_c00167{width:12.648655px;}
._11_c00167{width:14.178720px;}
._d_c00167{width:16.572004px;}
._e_c00167{width:19.208263px;}
._c_c00167{width:21.049819px;}
._8_c00167{width:22.824000px;}
._7_c00167{width:24.336000px;}
._9_c00167{width:25.733425px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs3_c00167{font-size:38.880000px;}
.fs2_c00167{font-size:47.520000px;}
.fs1_c00167{font-size:60.480000px;}
.fs0_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y3_c00167{bottom:4.320000px;}
.y5_c00167{bottom:25.200000px;}
.y4_c00167{bottom:32.040000px;}
.y1_c00167{bottom:57.240000px;}
.y2b_c00167{bottom:151.590000px;}
.y2a_c00167{bottom:168.870000px;}
.y29_c00167{bottom:186.150000px;}
.y28_c00167{bottom:203.430000px;}
.y27_c00167{bottom:220.710000px;}
.y26_c00167{bottom:238.035000px;}
.y25_c00167{bottom:244.875000px;}
.y24_c00167{bottom:255.315000px;}
.y23_c00167{bottom:272.595000px;}
.y22_c00167{bottom:279.435000px;}
.y21_c00167{bottom:290.235000px;}
.y20_c00167{bottom:328.755000px;}
.y1f_c00167{bottom:360.105000px;}
.y1d_c00167{bottom:391.065000px;}
.y1e_c00167{bottom:399.345000px;}
.y1c_c00167{bottom:422.025000px;}
.y1b_c00167{bottom:452.985000px;}
.y1a_c00167{bottom:493.350000px;}
.y19_c00167{bottom:524.310000px;}
.y18_c00167{bottom:555.270000px;}
.y17_c00167{bottom:586.230000px;}
.y16_c00167{bottom:617.580000px;}
.y15_c00167{bottom:657.540000px;}
.y14_c00167{bottom:688.500000px;}
.y13_c00167{bottom:728.490000px;}
.y12_c00167{bottom:768.810000px;}
.y11_c00167{bottom:799.770000px;}
.y10_c00167{bottom:839.730000px;}
.yf_c00167{bottom:870.735000px;}
.yd_c00167{bottom:902.055000px;}
.ye_c00167{bottom:910.335000px;}
.yc_c00167{bottom:939.495000px;}
.yb_c00167{bottom:965.445000px;}
.ya_c00167{bottom:991.365000px;}
.y9_c00167{bottom:1017.285000px;}
.y8_c00167{bottom:1052.205000px;}
.y7_c00167{bottom:1087.170000px;}
.y6_c00167{bottom:1122.090000px;}
.y2_c00167{bottom:1189.050000px;}
.h3_c00167{height:20.550000px;}
.ha_c00167{height:38.158594px;}
.h4_c00167{height:41.395500px;}
.h9_c00167{height:46.638281px;}
.h6_c00167{height:59.328281px;}
.h5_c00167{height:59.357813px;}
.h2_c00167{height:64.546875px;}
.h7_c00167{height:70.664062px;}
.h8_c00167{height:1262.875500px;}
.h0_c00167{height:1262.880000px;}
.h1_c00167{height:1263.000000px;}
.w2_c00167{width:8.310000px;}
.w3_c00167{width:638.190000px;}
.w4_c00167{width:893.157000px;}
.w0_c00167{width:893.160000px;}
.w1_c00167{width:893.250000px;}
.x0_c00167{left:0.000000px;}
.x3_c00167{left:127.489500px;}
.xa_c00167{left:142.632000px;}
.x1_c00167{left:154.515000px;}
.x4_c00167{left:169.995000px;}
.x7_c00167{left:178.635000px;}
.x9_c00167{left:343.590000px;}
.x5_c00167{left:519.687000px;}
.x6_c00167{left:538.050000px;}
.x8_c00167{left:557.130000px;}
.x2_c00167{left:757.365000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls9_c00167{letter-spacing:-2.560000pt;}
.ls7_c00167{letter-spacing:-1.024000pt;}
.ls6_c00167{letter-spacing:-0.256000pt;}
.ls5_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:0.128000pt;}
.ls4_c00167{letter-spacing:0.145920pt;}
.ls8_c00167{letter-spacing:0.414933pt;}
.ls3_c00167{letter-spacing:0.450560pt;}
.ls2_c00167{letter-spacing:0.640000pt;}
.ls1_c00167{letter-spacing:9.600000pt;}
.ws1_c00167{word-spacing:-64.000000pt;}
.ws0_c00167{word-spacing:-16.000000pt;}
.ws2_c00167{word-spacing:-13.440000pt;}
.ws3_c00167{word-spacing:0.000000pt;}
._6_c00167{margin-left:-2.522156pt;}
._0_c00167{margin-left:-1.236265pt;}
._1_c00167{width:1.236265pt;}
._5_c00167{width:2.496000pt;}
._4_c00167{width:3.817068pt;}
._3_c00167{width:5.214935pt;}
._2_c00167{width:6.881065pt;}
._10_c00167{width:7.774653pt;}
._a_c00167{width:8.753626pt;}
._b_c00167{width:10.294292pt;}
._f_c00167{width:11.243249pt;}
._11_c00167{width:12.603307pt;}
._d_c00167{width:14.730670pt;}
._e_c00167{width:17.074011pt;}
._c_c00167{width:18.710950pt;}
._8_c00167{width:20.288000pt;}
._7_c00167{width:21.632000pt;}
._9_c00167{width:22.874156pt;}
.fs3_c00167{font-size:34.560000pt;}
.fs2_c00167{font-size:42.240000pt;}
.fs1_c00167{font-size:53.760000pt;}
.fs0_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y3_c00167{bottom:3.840000pt;}
.y5_c00167{bottom:22.400000pt;}
.y4_c00167{bottom:28.480000pt;}
.y1_c00167{bottom:50.880000pt;}
.y2b_c00167{bottom:134.746667pt;}
.y2a_c00167{bottom:150.106667pt;}
.y29_c00167{bottom:165.466667pt;}
.y28_c00167{bottom:180.826667pt;}
.y27_c00167{bottom:196.186667pt;}
.y26_c00167{bottom:211.586667pt;}
.y25_c00167{bottom:217.666667pt;}
.y24_c00167{bottom:226.946667pt;}
.y23_c00167{bottom:242.306667pt;}
.y22_c00167{bottom:248.386667pt;}
.y21_c00167{bottom:257.986667pt;}
.y20_c00167{bottom:292.226667pt;}
.y1f_c00167{bottom:320.093333pt;}
.y1d_c00167{bottom:347.613333pt;}
.y1e_c00167{bottom:354.973333pt;}
.y1c_c00167{bottom:375.133333pt;}
.y1b_c00167{bottom:402.653333pt;}
.y1a_c00167{bottom:438.533333pt;}
.y19_c00167{bottom:466.053333pt;}
.y18_c00167{bottom:493.573333pt;}
.y17_c00167{bottom:521.093333pt;}
.y16_c00167{bottom:548.960000pt;}
.y15_c00167{bottom:584.480000pt;}
.y14_c00167{bottom:612.000000pt;}
.y13_c00167{bottom:647.546667pt;}
.y12_c00167{bottom:683.386667pt;}
.y11_c00167{bottom:710.906667pt;}
.y10_c00167{bottom:746.426667pt;}
.yf_c00167{bottom:773.986667pt;}
.yd_c00167{bottom:801.826667pt;}
.ye_c00167{bottom:809.186667pt;}
.yc_c00167{bottom:835.106667pt;}
.yb_c00167{bottom:858.173333pt;}
.ya_c00167{bottom:881.213333pt;}
.y9_c00167{bottom:904.253333pt;}
.y8_c00167{bottom:935.293333pt;}
.y7_c00167{bottom:966.373333pt;}
.y6_c00167{bottom:997.413333pt;}
.y2_c00167{bottom:1056.933333pt;}
.h3_c00167{height:18.266667pt;}
.ha_c00167{height:33.918750pt;}
.h4_c00167{height:36.796000pt;}
.h9_c00167{height:41.456250pt;}
.h6_c00167{height:52.736250pt;}
.h5_c00167{height:52.762500pt;}
.h2_c00167{height:57.375000pt;}
.h7_c00167{height:62.812500pt;}
.h8_c00167{height:1122.556000pt;}
.h0_c00167{height:1122.560000pt;}
.h1_c00167{height:1122.666667pt;}
.w2_c00167{width:7.386667pt;}
.w3_c00167{width:567.280000pt;}
.w4_c00167{width:793.917333pt;}
.w0_c00167{width:793.920000pt;}
.w1_c00167{width:794.000000pt;}
.x0_c00167{left:0.000000pt;}
.x3_c00167{left:113.324000pt;}
.xa_c00167{left:126.784000pt;}
.x1_c00167{left:137.346667pt;}
.x4_c00167{left:151.106667pt;}
.x7_c00167{left:158.786667pt;}
.x9_c00167{left:305.413333pt;}
.x5_c00167{left:461.944000pt;}
.x6_c00167{left:478.266667pt;}
.x8_c00167{left:495.226667pt;}
.x2_c00167{left:673.213333pt;}
}





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

.ir_c00168:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00168;src:url('chunks/assets/font_b56d2c55cac416b69bc00efd.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_2c83188c05f45f57cd1593d2.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_cfb0c7752751b83a74eef315.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_001b03e25abb678a3433153f.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_faa2acef0623b86442447482.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.lsc_c00168{letter-spacing:-1.440000px;}
.ls11_c00168{letter-spacing:-1.416000px;}
.ls16_c00168{letter-spacing:-0.912000px;}
.lsb_c00168{letter-spacing:-0.792000px;}
.ls10_c00168{letter-spacing:-0.720000px;}
.ls13_c00168{letter-spacing:-0.690000px;}
.ls15_c00168{letter-spacing:-0.241800px;}
.lsf_c00168{letter-spacing:-0.169800px;}
.lsa_c00168{letter-spacing:0.000000px;}
.ls12_c00168{letter-spacing:0.022800px;}
.ls8_c00168{letter-spacing:0.048960px;}
.ls5_c00168{letter-spacing:0.168960px;}
.ls14_c00168{letter-spacing:0.313800px;}
.ls9_c00168{letter-spacing:0.506880px;}
.ls6_c00168{letter-spacing:0.524160px;}
.lsd_c00168{letter-spacing:0.576000px;}
.ls4_c00168{letter-spacing:0.720000px;}
.ls7_c00168{letter-spacing:0.740215px;}
.ls1_c00168{letter-spacing:1.440000px;}
.lse_c00168{letter-spacing:2.160000px;}
.ls2_c00168{letter-spacing:3.600000px;}
.ls0_c00168{letter-spacing:10.800000px;}
.ls3_c00168{letter-spacing:13.680000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:-18.000000px;}
.ws4_c00168{word-spacing:-15.433800px;}
.ws1_c00168{word-spacing:-15.120000px;}
.ws2_c00168{word-spacing:-14.950200px;}
.ws5_c00168{word-spacing:-14.878200px;}
.ws3_c00168{word-spacing:-14.430000px;}
.ws6_c00168{word-spacing:-13.704000px;}
.ws7_c00168{word-spacing:0.000000px;}
._12_c00168{margin-left:-3.467976px;}
._3_c00168{margin-left:-2.376000px;}
._0_c00168{margin-left:-1.152000px;}
._2_c00168{width:1.368000px;}
._5_c00168{width:2.940000px;}
._7_c00168{width:4.536000px;}
._9_c00168{width:5.904000px;}
._8_c00168{width:7.356000px;}
._f_c00168{width:8.988000px;}
._e_c00168{width:10.596000px;}
._10_c00168{width:11.952000px;}
._d_c00168{width:13.187976px;}
._4_c00168{width:14.232000px;}
._1_c00168{width:15.564000px;}
._6_c00168{width:16.824000px;}
._a_c00168{width:19.344000px;}
._11_c00168{width:21.240000px;}
._b_c00168{width:23.904000px;}
._c_c00168{width:25.344000px;}
._13_c00168{width:109.464633px;}
.fc0_c00168{color:rgb(0,0,0);}
.fs3_c00168{font-size:38.880000px;}
.fs1_c00168{font-size:47.520000px;}
.fs2_c00168{font-size:60.480000px;}
.fs0_c00168{font-size:72.000000px;}
.y0_c00168{bottom:0.000000px;}
.y3_c00168{bottom:4.320000px;}
.y5_c00168{bottom:25.200000px;}
.y4_c00168{bottom:32.040000px;}
.y1_c00168{bottom:57.240000px;}
.y27_c00168{bottom:151.590000px;}
.y26_c00168{bottom:168.870000px;}
.y25_c00168{bottom:175.710000px;}
.y24_c00168{bottom:186.870000px;}
.y23_c00168{bottom:213.870000px;}
.y22_c00168{bottom:248.835000px;}
.y21_c00168{bottom:283.755000px;}
.y20_c00168{bottom:318.675000px;}
.y1f_c00168{bottom:355.785000px;}
.y1e_c00168{bottom:386.745000px;}
.y1d_c00168{bottom:417.705000px;}
.y1c_c00168{bottom:449.025000px;}
.y1b_c00168{bottom:480.030000px;}
.y1a_c00168{bottom:510.990000px;}
.y19_c00168{bottom:550.950000px;}
.y18_c00168{bottom:581.910000px;}
.y17_c00168{bottom:613.260000px;}
.y16_c00168{bottom:644.220000px;}
.y15_c00168{bottom:675.180000px;}
.y14_c00168{bottom:706.140000px;}
.y13_c00168{bottom:737.490000px;}
.y12_c00168{bottom:768.450000px;}
.y11_c00168{bottom:799.410000px;}
.y10_c00168{bottom:830.370000px;}
.yf_c00168{bottom:861.735000px;}
.ye_c00168{bottom:892.695000px;}
.yd_c00168{bottom:923.655000px;}
.yb_c00168{bottom:963.645000px;}
.yc_c00168{bottom:971.925000px;}
.ya_c00168{bottom:994.965000px;}
.y9_c00168{bottom:1025.925000px;}
.y8_c00168{bottom:1056.885000px;}
.y7_c00168{bottom:1087.890000px;}
.y6_c00168{bottom:1119.210000px;}
.y2_c00168{bottom:1189.050000px;}
.h3_c00168{height:20.550000px;}
.h9_c00168{height:38.158594px;}
.h4_c00168{height:41.395500px;}
.h7_c00168{height:46.638281px;}
.h8_c00168{height:59.357813px;}
.h2_c00168{height:64.546875px;}
.h5_c00168{height:70.664062px;}
.h6_c00168{height:1262.875500px;}
.h0_c00168{height:1262.880000px;}
.h1_c00168{height:1263.000000px;}
.w2_c00168{width:8.310000px;}
.w3_c00168{width:638.190000px;}
.w4_c00168{width:893.157000px;}
.w0_c00168{width:893.160000px;}
.w1_c00168{width:893.250000px;}
.x0_c00168{left:0.000000px;}
.x3_c00168{left:127.489500px;}
.x9_c00168{left:142.632000px;}
.x1_c00168{left:154.515000px;}
.x7_c00168{left:169.995000px;}
.x6_c00168{left:178.635000px;}
.x4_c00168{left:202.392000px;}
.x5_c00168{left:220.755000px;}
.x8_c00168{left:343.590000px;}
.x2_c00168{left:757.365000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.lsc_c00168{letter-spacing:-1.280000pt;}
.ls11_c00168{letter-spacing:-1.258667pt;}
.ls16_c00168{letter-spacing:-0.810667pt;}
.lsb_c00168{letter-spacing:-0.704000pt;}
.ls10_c00168{letter-spacing:-0.640000pt;}
.ls13_c00168{letter-spacing:-0.613333pt;}
.ls15_c00168{letter-spacing:-0.214933pt;}
.lsf_c00168{letter-spacing:-0.150933pt;}
.lsa_c00168{letter-spacing:0.000000pt;}
.ls12_c00168{letter-spacing:0.020267pt;}
.ls8_c00168{letter-spacing:0.043520pt;}
.ls5_c00168{letter-spacing:0.150187pt;}
.ls14_c00168{letter-spacing:0.278933pt;}
.ls9_c00168{letter-spacing:0.450560pt;}
.ls6_c00168{letter-spacing:0.465920pt;}
.lsd_c00168{letter-spacing:0.512000pt;}
.ls4_c00168{letter-spacing:0.640000pt;}
.ls7_c00168{letter-spacing:0.657969pt;}
.ls1_c00168{letter-spacing:1.280000pt;}
.lse_c00168{letter-spacing:1.920000pt;}
.ls2_c00168{letter-spacing:3.200000pt;}
.ls0_c00168{letter-spacing:9.600000pt;}
.ls3_c00168{letter-spacing:12.160000pt;}
.ws0_c00168{word-spacing:-16.000000pt;}
.ws4_c00168{word-spacing:-13.718933pt;}
.ws1_c00168{word-spacing:-13.440000pt;}
.ws2_c00168{word-spacing:-13.289067pt;}
.ws5_c00168{word-spacing:-13.225067pt;}
.ws3_c00168{word-spacing:-12.826667pt;}
.ws6_c00168{word-spacing:-12.181333pt;}
.ws7_c00168{word-spacing:0.000000pt;}
._12_c00168{margin-left:-3.082645pt;}
._3_c00168{margin-left:-2.112000pt;}
._0_c00168{margin-left:-1.024000pt;}
._2_c00168{width:1.216000pt;}
._5_c00168{width:2.613333pt;}
._7_c00168{width:4.032000pt;}
._9_c00168{width:5.248000pt;}
._8_c00168{width:6.538667pt;}
._f_c00168{width:7.989333pt;}
._e_c00168{width:9.418667pt;}
._10_c00168{width:10.624000pt;}
._d_c00168{width:11.722645pt;}
._4_c00168{width:12.650667pt;}
._1_c00168{width:13.834667pt;}
._6_c00168{width:14.954667pt;}
._a_c00168{width:17.194667pt;}
._11_c00168{width:18.880000pt;}
._b_c00168{width:21.248000pt;}
._c_c00168{width:22.528000pt;}
._13_c00168{width:97.301896pt;}
.fs3_c00168{font-size:34.560000pt;}
.fs1_c00168{font-size:42.240000pt;}
.fs2_c00168{font-size:53.760000pt;}
.fs0_c00168{font-size:64.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y3_c00168{bottom:3.840000pt;}
.y5_c00168{bottom:22.400000pt;}
.y4_c00168{bottom:28.480000pt;}
.y1_c00168{bottom:50.880000pt;}
.y27_c00168{bottom:134.746667pt;}
.y26_c00168{bottom:150.106667pt;}
.y25_c00168{bottom:156.186667pt;}
.y24_c00168{bottom:166.106667pt;}
.y23_c00168{bottom:190.106667pt;}
.y22_c00168{bottom:221.186667pt;}
.y21_c00168{bottom:252.226667pt;}
.y20_c00168{bottom:283.266667pt;}
.y1f_c00168{bottom:316.253333pt;}
.y1e_c00168{bottom:343.773333pt;}
.y1d_c00168{bottom:371.293333pt;}
.y1c_c00168{bottom:399.133333pt;}
.y1b_c00168{bottom:426.693333pt;}
.y1a_c00168{bottom:454.213333pt;}
.y19_c00168{bottom:489.733333pt;}
.y18_c00168{bottom:517.253333pt;}
.y17_c00168{bottom:545.120000pt;}
.y16_c00168{bottom:572.640000pt;}
.y15_c00168{bottom:600.160000pt;}
.y14_c00168{bottom:627.680000pt;}
.y13_c00168{bottom:655.546667pt;}
.y12_c00168{bottom:683.066667pt;}
.y11_c00168{bottom:710.586667pt;}
.y10_c00168{bottom:738.106667pt;}
.yf_c00168{bottom:765.986667pt;}
.ye_c00168{bottom:793.506667pt;}
.yd_c00168{bottom:821.026667pt;}
.yb_c00168{bottom:856.573333pt;}
.yc_c00168{bottom:863.933333pt;}
.ya_c00168{bottom:884.413333pt;}
.y9_c00168{bottom:911.933333pt;}
.y8_c00168{bottom:939.453333pt;}
.y7_c00168{bottom:967.013333pt;}
.y6_c00168{bottom:994.853333pt;}
.y2_c00168{bottom:1056.933333pt;}
.h3_c00168{height:18.266667pt;}
.h9_c00168{height:33.918750pt;}
.h4_c00168{height:36.796000pt;}
.h7_c00168{height:41.456250pt;}
.h8_c00168{height:52.762500pt;}
.h2_c00168{height:57.375000pt;}
.h5_c00168{height:62.812500pt;}
.h6_c00168{height:1122.556000pt;}
.h0_c00168{height:1122.560000pt;}
.h1_c00168{height:1122.666667pt;}
.w2_c00168{width:7.386667pt;}
.w3_c00168{width:567.280000pt;}
.w4_c00168{width:793.917333pt;}
.w0_c00168{width:793.920000pt;}
.w1_c00168{width:794.000000pt;}
.x0_c00168{left:0.000000pt;}
.x3_c00168{left:113.324000pt;}
.x9_c00168{left:126.784000pt;}
.x1_c00168{left:137.346667pt;}
.x7_c00168{left:151.106667pt;}
.x6_c00168{left:158.786667pt;}
.x4_c00168{left:179.904000pt;}
.x5_c00168{left:196.226667pt;}
.x8_c00168{left:305.413333pt;}
.x2_c00168{left:673.213333pt;}
}





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

.ir_c00169:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00169;src:url('chunks/assets/font_941054deeec226b2031282ff.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_f36b911ab0c2150afbf57fd9.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_37638beab058c26dc5677c51.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_31e32320b2c29de59348998f.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00169;src:url('chunks/assets/font_f48679551c0c10c30bf4e9e7.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00169;src:url('chunks/assets/font_7f86b8235816261cf54889f5.woff2')format("woff");}.ff6_c00169{font-family:ff6_c00169;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_c00169;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00169{font-family:ff7_c00169;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls6_c00169{letter-spacing:-1.416000px;}
.ls5_c00169{letter-spacing:-0.720000px;}
.ls4_c00169{letter-spacing:-0.169800px;}
.ls3_c00169{letter-spacing:0.000000px;}
.ls9_c00169{letter-spacing:0.060600px;}
.ls1_c00169{letter-spacing:0.120000px;}
.ls8_c00169{letter-spacing:0.166800px;}
.ls7_c00169{letter-spacing:0.313800px;}
.lsb_c00169{letter-spacing:0.397200px;}
.ls0_c00169{letter-spacing:0.720000px;}
.lsa_c00169{letter-spacing:1.440000px;}
.ls2_c00169{letter-spacing:7.920000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00169{word-spacing:-18.000000px;}
.ws2_c00169{word-spacing:-15.433800px;}
.ws3_c00169{word-spacing:-15.286800px;}
.ws4_c00169{word-spacing:-15.180600px;}
.ws0_c00169{word-spacing:-15.120000px;}
.ws1_c00169{word-spacing:-14.950200px;}
.ws6_c00169{word-spacing:0.000000px;}
._2_c00169{margin-left:-2.774908px;}
._1_c00169{margin-left:-1.750915px;}
._0_c00169{width:1.863120px;}
._6_c00169{width:2.967969px;}
._7_c00169{width:4.271576px;}
._3_c00169{width:5.617684px;}
._4_c00169{width:7.423583px;}
._5_c00169{width:9.089290px;}
._b_c00169{width:10.799974px;}
._a_c00169{width:14.405816px;}
._9_c00169{width:16.200000px;}
._8_c00169{width:167.416490px;}
.fc0_c00169{color:rgb(0,0,0);}
.fs3_c00169{font-size:38.880000px;}
.fs2_c00169{font-size:47.520000px;}
.fs1_c00169{font-size:60.480000px;}
.fs0_c00169{font-size:72.000000px;}
.y0_c00169{bottom:0.000000px;}
.y3_c00169{bottom:4.320000px;}
.y5_c00169{bottom:25.200000px;}
.y4_c00169{bottom:32.040000px;}
.y1_c00169{bottom:57.240000px;}
.y27_c00169{bottom:151.590000px;}
.y26_c00169{bottom:168.870000px;}
.y25_c00169{bottom:186.150000px;}
.y24_c00169{bottom:203.430000px;}
.y23_c00169{bottom:220.710000px;}
.y22_c00169{bottom:238.035000px;}
.y21_c00169{bottom:244.875000px;}
.y20_c00169{bottom:256.035000px;}
.y1f_c00169{bottom:311.115000px;}
.y1e_c00169{bottom:342.075000px;}
.y1c_c00169{bottom:373.425000px;}
.y1d_c00169{bottom:381.705000px;}
.y1b_c00169{bottom:410.865000px;}
.y1a_c00169{bottom:436.785000px;}
.y19_c00169{bottom:471.705000px;}
.y18_c00169{bottom:506.670000px;}
.y17_c00169{bottom:541.590000px;}
.y16_c00169{bottom:576.510000px;}
.y15_c00169{bottom:613.620000px;}
.y14_c00169{bottom:653.580000px;}
.y13_c00169{bottom:684.540000px;}
.y12_c00169{bottom:715.860000px;}
.y11_c00169{bottom:746.850000px;}
.y10_c00169{bottom:777.810000px;}
.yf_c00169{bottom:808.770000px;}
.ye_c00169{bottom:840.090000px;}
.yd_c00169{bottom:877.935000px;}
.yc_c00169{bottom:912.495000px;}
.yb_c00169{bottom:947.415000px;}
.ya_c00169{bottom:982.365000px;}
.y9_c00169{bottom:1017.285000px;}
.y8_c00169{bottom:1052.205000px;}
.y7_c00169{bottom:1087.170000px;}
.y6_c00169{bottom:1122.090000px;}
.y2_c00169{bottom:1189.050000px;}
.h3_c00169{height:20.550000px;}
.hb_c00169{height:38.158594px;}
.h4_c00169{height:41.395500px;}
.ha_c00169{height:46.638281px;}
.hc_c00169{height:54.219375px;}
.h6_c00169{height:59.328281px;}
.h5_c00169{height:59.357813px;}
.h8_c00169{height:60.952500px;}
.h2_c00169{height:64.546875px;}
.h7_c00169{height:70.664062px;}
.h9_c00169{height:1262.875500px;}
.h0_c00169{height:1262.880000px;}
.h1_c00169{height:1263.000000px;}
.w2_c00169{width:8.310000px;}
.w3_c00169{width:638.190000px;}
.w4_c00169{width:893.157000px;}
.w0_c00169{width:893.160000px;}
.w1_c00169{width:893.250000px;}
.x0_c00169{left:0.000000px;}
.x3_c00169{left:127.489500px;}
.x8_c00169{left:142.632000px;}
.x1_c00169{left:154.515000px;}
.x4_c00169{left:169.995000px;}
.x5_c00169{left:305.382000px;}
.x6_c00169{left:323.790000px;}
.x7_c00169{left:343.590000px;}
.x2_c00169{left:757.365000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls6_c00169{letter-spacing:-1.258667pt;}
.ls5_c00169{letter-spacing:-0.640000pt;}
.ls4_c00169{letter-spacing:-0.150933pt;}
.ls3_c00169{letter-spacing:0.000000pt;}
.ls9_c00169{letter-spacing:0.053867pt;}
.ls1_c00169{letter-spacing:0.106667pt;}
.ls8_c00169{letter-spacing:0.148267pt;}
.ls7_c00169{letter-spacing:0.278933pt;}
.lsb_c00169{letter-spacing:0.353067pt;}
.ls0_c00169{letter-spacing:0.640000pt;}
.lsa_c00169{letter-spacing:1.280000pt;}
.ls2_c00169{letter-spacing:7.040000pt;}
.ws5_c00169{word-spacing:-16.000000pt;}
.ws2_c00169{word-spacing:-13.718933pt;}
.ws3_c00169{word-spacing:-13.588267pt;}
.ws4_c00169{word-spacing:-13.493867pt;}
.ws0_c00169{word-spacing:-13.440000pt;}
.ws1_c00169{word-spacing:-13.289067pt;}
.ws6_c00169{word-spacing:0.000000pt;}
._2_c00169{margin-left:-2.466585pt;}
._1_c00169{margin-left:-1.556369pt;}
._0_c00169{width:1.656107pt;}
._6_c00169{width:2.638194pt;}
._7_c00169{width:3.796956pt;}
._3_c00169{width:4.993497pt;}
._4_c00169{width:6.598740pt;}
._5_c00169{width:8.079369pt;}
._b_c00169{width:9.599977pt;}
._a_c00169{width:12.805169pt;}
._9_c00169{width:14.400000pt;}
._8_c00169{width:148.814658pt;}
.fs3_c00169{font-size:34.560000pt;}
.fs2_c00169{font-size:42.240000pt;}
.fs1_c00169{font-size:53.760000pt;}
.fs0_c00169{font-size:64.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y3_c00169{bottom:3.840000pt;}
.y5_c00169{bottom:22.400000pt;}
.y4_c00169{bottom:28.480000pt;}
.y1_c00169{bottom:50.880000pt;}
.y27_c00169{bottom:134.746667pt;}
.y26_c00169{bottom:150.106667pt;}
.y25_c00169{bottom:165.466667pt;}
.y24_c00169{bottom:180.826667pt;}
.y23_c00169{bottom:196.186667pt;}
.y22_c00169{bottom:211.586667pt;}
.y21_c00169{bottom:217.666667pt;}
.y20_c00169{bottom:227.586667pt;}
.y1f_c00169{bottom:276.546667pt;}
.y1e_c00169{bottom:304.066667pt;}
.y1c_c00169{bottom:331.933333pt;}
.y1d_c00169{bottom:339.293333pt;}
.y1b_c00169{bottom:365.213333pt;}
.y1a_c00169{bottom:388.253333pt;}
.y19_c00169{bottom:419.293333pt;}
.y18_c00169{bottom:450.373333pt;}
.y17_c00169{bottom:481.413333pt;}
.y16_c00169{bottom:512.453333pt;}
.y15_c00169{bottom:545.440000pt;}
.y14_c00169{bottom:580.960000pt;}
.y13_c00169{bottom:608.480000pt;}
.y12_c00169{bottom:636.320000pt;}
.y11_c00169{bottom:663.866667pt;}
.y10_c00169{bottom:691.386667pt;}
.yf_c00169{bottom:718.906667pt;}
.ye_c00169{bottom:746.746667pt;}
.yd_c00169{bottom:780.386667pt;}
.yc_c00169{bottom:811.106667pt;}
.yb_c00169{bottom:842.146667pt;}
.ya_c00169{bottom:873.213333pt;}
.y9_c00169{bottom:904.253333pt;}
.y8_c00169{bottom:935.293333pt;}
.y7_c00169{bottom:966.373333pt;}
.y6_c00169{bottom:997.413333pt;}
.y2_c00169{bottom:1056.933333pt;}
.h3_c00169{height:18.266667pt;}
.hb_c00169{height:33.918750pt;}
.h4_c00169{height:36.796000pt;}
.ha_c00169{height:41.456250pt;}
.hc_c00169{height:48.195000pt;}
.h6_c00169{height:52.736250pt;}
.h5_c00169{height:52.762500pt;}
.h8_c00169{height:54.180000pt;}
.h2_c00169{height:57.375000pt;}
.h7_c00169{height:62.812500pt;}
.h9_c00169{height:1122.556000pt;}
.h0_c00169{height:1122.560000pt;}
.h1_c00169{height:1122.666667pt;}
.w2_c00169{width:7.386667pt;}
.w3_c00169{width:567.280000pt;}
.w4_c00169{width:793.917333pt;}
.w0_c00169{width:793.920000pt;}
.w1_c00169{width:794.000000pt;}
.x0_c00169{left:0.000000pt;}
.x3_c00169{left:113.324000pt;}
.x8_c00169{left:126.784000pt;}
.x1_c00169{left:137.346667pt;}
.x4_c00169{left:151.106667pt;}
.x5_c00169{left:271.450667pt;}
.x6_c00169{left:287.813333pt;}
.x7_c00169{left:305.413333pt;}
.x2_c00169{left:673.213333pt;}
}





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

.ir_c00170:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00170;src:url('chunks/assets/font_7c5d306bd9e637a294da0ea6.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_0091d9ea553eab0c8f435073.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_05b8cb5abac252fa85185320.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;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_c00170;src:url('chunks/assets/font_91b556633f14d3272c77972d.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_8aeb8f2ba603b22f360e2dba.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls6_c00170{letter-spacing:0.000000px;}
.ls8_c00170{letter-spacing:0.166800px;}
.ls2_c00170{letter-spacing:0.180000px;}
.ls0_c00170{letter-spacing:0.504000px;}
.ls7_c00170{letter-spacing:0.507000px;}
.ls3_c00170{letter-spacing:0.720000px;}
.ls1_c00170{letter-spacing:1.620000px;}
.ls4_c00170{letter-spacing:7.920000px;}
.ls5_c00170{letter-spacing:9.360000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00170{word-spacing:-72.000000px;}
.ws0_c00170{word-spacing:-18.000000px;}
.ws3_c00170{word-spacing:-15.286800px;}
.ws2_c00170{word-spacing:-15.120000px;}
.ws4_c00170{word-spacing:0.000000px;}
._d_c00170{margin-left:-3.420192px;}
._3_c00170{margin-left:-2.376000px;}
._0_c00170{margin-left:-1.296000px;}
._1_c00170{width:1.080000px;}
._7_c00170{width:2.448000px;}
._6_c00170{width:4.368024px;}
._b_c00170{width:5.759928px;}
._c_c00170{width:6.984072px;}
._4_c00170{width:8.352000px;}
._2_c00170{width:9.936000px;}
._5_c00170{width:11.016000px;}
._a_c00170{width:12.744000px;}
._e_c00170{width:13.824000px;}
._f_c00170{width:19.392360px;}
._10_c00170{width:20.604216px;}
._9_c00170{width:31.248000px;}
._8_c00170{width:32.832000px;}
.fc1_c00170{color:rgb(32,31,25);}
.fc0_c00170{color:rgb(0,0,0);}
.fs2_c00170{font-size:38.880000px;}
.fs1_c00170{font-size:47.520000px;}
.fs3_c00170{font-size:60.480000px;}
.fs0_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y3_c00170{bottom:4.320000px;}
.y5_c00170{bottom:25.200000px;}
.y4_c00170{bottom:32.040000px;}
.y1_c00170{bottom:57.240000px;}
.y29_c00170{bottom:151.590000px;}
.y28_c00170{bottom:168.870000px;}
.y27_c00170{bottom:186.150000px;}
.y26_c00170{bottom:203.430000px;}
.y25_c00170{bottom:220.710000px;}
.y24_c00170{bottom:238.035000px;}
.y23_c00170{bottom:255.315000px;}
.y22_c00170{bottom:272.595000px;}
.y21_c00170{bottom:279.435000px;}
.y20_c00170{bottom:290.235000px;}
.y1f_c00170{bottom:328.755000px;}
.y1e_c00170{bottom:368.745000px;}
.y1d_c00170{bottom:408.705000px;}
.y1c_c00170{bottom:440.025000px;}
.y1b_c00170{bottom:470.985000px;}
.y1a_c00170{bottom:501.990000px;}
.y19_c00170{bottom:532.950000px;}
.y18_c00170{bottom:563.910000px;}
.y17_c00170{bottom:595.230000px;}
.y16_c00170{bottom:626.220000px;}
.y15_c00170{bottom:657.180000px;}
.y14_c00170{bottom:688.140000px;}
.y13_c00170{bottom:719.490000px;}
.y12_c00170{bottom:750.450000px;}
.y11_c00170{bottom:781.410000px;}
.y10_c00170{bottom:812.370000px;}
.yf_c00170{bottom:843.735000px;}
.ye_c00170{bottom:874.695000px;}
.yd_c00170{bottom:914.655000px;}
.yc_c00170{bottom:945.615000px;}
.yb_c00170{bottom:985.965000px;}
.ya_c00170{bottom:1025.925000px;}
.y9_c00170{bottom:1056.885000px;}
.y8_c00170{bottom:1087.890000px;}
.y6_c00170{bottom:1119.210000px;}
.y7_c00170{bottom:1127.490000px;}
.y2_c00170{bottom:1189.050000px;}
.h3_c00170{height:20.550000px;}
.h9_c00170{height:38.158594px;}
.h4_c00170{height:41.395500px;}
.h7_c00170{height:46.638281px;}
.ha_c00170{height:59.357813px;}
.h2_c00170{height:64.546875px;}
.h8_c00170{height:70.628906px;}
.h5_c00170{height:70.664062px;}
.h6_c00170{height:1262.875500px;}
.h0_c00170{height:1262.880000px;}
.h1_c00170{height:1263.000000px;}
.w2_c00170{width:8.310000px;}
.w3_c00170{width:638.190000px;}
.w4_c00170{width:893.157000px;}
.w0_c00170{width:893.160000px;}
.w1_c00170{width:893.250000px;}
.x0_c00170{left:0.000000px;}
.x3_c00170{left:127.489500px;}
.x8_c00170{left:142.632000px;}
.x1_c00170{left:154.515000px;}
.x4_c00170{left:176.472000px;}
.x6_c00170{left:178.635000px;}
.x5_c00170{left:194.835000px;}
.x7_c00170{left:343.590000px;}
.x2_c00170{left:757.365000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls6_c00170{letter-spacing:0.000000pt;}
.ls8_c00170{letter-spacing:0.148267pt;}
.ls2_c00170{letter-spacing:0.160000pt;}
.ls0_c00170{letter-spacing:0.448000pt;}
.ls7_c00170{letter-spacing:0.450667pt;}
.ls3_c00170{letter-spacing:0.640000pt;}
.ls1_c00170{letter-spacing:1.440000pt;}
.ls4_c00170{letter-spacing:7.040000pt;}
.ls5_c00170{letter-spacing:8.320000pt;}
.ws1_c00170{word-spacing:-64.000000pt;}
.ws0_c00170{word-spacing:-16.000000pt;}
.ws3_c00170{word-spacing:-13.588267pt;}
.ws2_c00170{word-spacing:-13.440000pt;}
.ws4_c00170{word-spacing:0.000000pt;}
._d_c00170{margin-left:-3.040171pt;}
._3_c00170{margin-left:-2.112000pt;}
._0_c00170{margin-left:-1.152000pt;}
._1_c00170{width:0.960000pt;}
._7_c00170{width:2.176000pt;}
._6_c00170{width:3.882688pt;}
._b_c00170{width:5.119936pt;}
._c_c00170{width:6.208064pt;}
._4_c00170{width:7.424000pt;}
._2_c00170{width:8.832000pt;}
._5_c00170{width:9.792000pt;}
._a_c00170{width:11.328000pt;}
._e_c00170{width:12.288000pt;}
._f_c00170{width:17.237653pt;}
._10_c00170{width:18.314859pt;}
._9_c00170{width:27.776000pt;}
._8_c00170{width:29.184000pt;}
.fs2_c00170{font-size:34.560000pt;}
.fs1_c00170{font-size:42.240000pt;}
.fs3_c00170{font-size:53.760000pt;}
.fs0_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y3_c00170{bottom:3.840000pt;}
.y5_c00170{bottom:22.400000pt;}
.y4_c00170{bottom:28.480000pt;}
.y1_c00170{bottom:50.880000pt;}
.y29_c00170{bottom:134.746667pt;}
.y28_c00170{bottom:150.106667pt;}
.y27_c00170{bottom:165.466667pt;}
.y26_c00170{bottom:180.826667pt;}
.y25_c00170{bottom:196.186667pt;}
.y24_c00170{bottom:211.586667pt;}
.y23_c00170{bottom:226.946667pt;}
.y22_c00170{bottom:242.306667pt;}
.y21_c00170{bottom:248.386667pt;}
.y20_c00170{bottom:257.986667pt;}
.y1f_c00170{bottom:292.226667pt;}
.y1e_c00170{bottom:327.773333pt;}
.y1d_c00170{bottom:363.293333pt;}
.y1c_c00170{bottom:391.133333pt;}
.y1b_c00170{bottom:418.653333pt;}
.y1a_c00170{bottom:446.213333pt;}
.y19_c00170{bottom:473.733333pt;}
.y18_c00170{bottom:501.253333pt;}
.y17_c00170{bottom:529.093333pt;}
.y16_c00170{bottom:556.640000pt;}
.y15_c00170{bottom:584.160000pt;}
.y14_c00170{bottom:611.680000pt;}
.y13_c00170{bottom:639.546667pt;}
.y12_c00170{bottom:667.066667pt;}
.y11_c00170{bottom:694.586667pt;}
.y10_c00170{bottom:722.106667pt;}
.yf_c00170{bottom:749.986667pt;}
.ye_c00170{bottom:777.506667pt;}
.yd_c00170{bottom:813.026667pt;}
.yc_c00170{bottom:840.546667pt;}
.yb_c00170{bottom:876.413333pt;}
.ya_c00170{bottom:911.933333pt;}
.y9_c00170{bottom:939.453333pt;}
.y8_c00170{bottom:967.013333pt;}
.y6_c00170{bottom:994.853333pt;}
.y7_c00170{bottom:1002.213333pt;}
.y2_c00170{bottom:1056.933333pt;}
.h3_c00170{height:18.266667pt;}
.h9_c00170{height:33.918750pt;}
.h4_c00170{height:36.796000pt;}
.h7_c00170{height:41.456250pt;}
.ha_c00170{height:52.762500pt;}
.h2_c00170{height:57.375000pt;}
.h8_c00170{height:62.781250pt;}
.h5_c00170{height:62.812500pt;}
.h6_c00170{height:1122.556000pt;}
.h0_c00170{height:1122.560000pt;}
.h1_c00170{height:1122.666667pt;}
.w2_c00170{width:7.386667pt;}
.w3_c00170{width:567.280000pt;}
.w4_c00170{width:793.917333pt;}
.w0_c00170{width:793.920000pt;}
.w1_c00170{width:794.000000pt;}
.x0_c00170{left:0.000000pt;}
.x3_c00170{left:113.324000pt;}
.x8_c00170{left:126.784000pt;}
.x1_c00170{left:137.346667pt;}
.x4_c00170{left:156.864000pt;}
.x6_c00170{left:158.786667pt;}
.x5_c00170{left:173.186667pt;}
.x7_c00170{left:305.413333pt;}
.x2_c00170{left:673.213333pt;}
}





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

.ir_c00171:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00171;src:url('chunks/assets/font_889a5c9f6fcf23e49b8e4b21.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00171;src:url('chunks/assets/font_b000d1e7dd1e3d42a11dd4c3.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_1479e9d56b0cdf5d4d25c8cc.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;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_c00171;src:url('chunks/assets/font_7381ca77393fad76df35ee02.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00171;src:url('chunks/assets/font_32f780572351c1f3b6d71bf1.woff2')format("woff");}.ff5_c00171{font-family:ff5_c00171;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00171;src:url('chunks/assets/font_6ad16122e11fff11767ac658.woff2')format("woff");}.ff6_c00171{font-family:ff6_c00171;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls6_c00171{letter-spacing:-2.880000px;}
.lsa_c00171{letter-spacing:-1.422000px;}
.lsc_c00171{letter-spacing:-1.416000px;}
.ls7_c00171{letter-spacing:-0.912000px;}
.lsd_c00171{letter-spacing:-0.288000px;}
.ls9_c00171{letter-spacing:-0.075000px;}
.ls5_c00171{letter-spacing:0.000000px;}
.ls1_c00171{letter-spacing:0.120000px;}
.lsb_c00171{letter-spacing:0.521400px;}
.ls8_c00171{letter-spacing:0.529800px;}
.ls2_c00171{letter-spacing:0.720000px;}
.ls3_c00171{letter-spacing:0.740450px;}
.ls0_c00171{letter-spacing:1.620000px;}
.ls4_c00171{letter-spacing:1.728000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00171{word-spacing:-60.480000px;}
.ws0_c00171{word-spacing:-18.000000px;}
.ws4_c00171{word-spacing:-17.712000px;}
.ws3_c00171{word-spacing:-15.641400px;}
.ws1_c00171{word-spacing:-15.120000px;}
.ws5_c00171{word-spacing:0.000000px;}
._13_c00171{margin-left:-3.528000px;}
._0_c00171{margin-left:-2.160000px;}
._3_c00171{margin-left:-1.080000px;}
._2_c00171{width:1.080000px;}
._5_c00171{width:2.232000px;}
._6_c00171{width:3.240000px;}
._b_c00171{width:4.248000px;}
._c_c00171{width:5.688000px;}
._d_c00171{width:7.272000px;}
._e_c00171{width:8.568000px;}
._f_c00171{width:9.707976px;}
._10_c00171{width:10.728000px;}
._7_c00171{width:11.880000px;}
._8_c00171{width:13.091976px;}
._12_c00171{width:15.755976px;}
._11_c00171{width:16.932024px;}
._17_c00171{width:19.368000px;}
._9_c00171{width:20.376000px;}
._a_c00171{width:21.888000px;}
._16_c00171{width:24.408000px;}
._14_c00171{width:25.488000px;}
._15_c00171{width:27.072000px;}
._4_c00171{width:39.960000px;}
._1_c00171{width:40.968000px;}
.fc0_c00171{color:rgb(0,0,0);}
.fs1_c00171{font-size:60.480000px;}
.fs0_c00171{font-size:72.000000px;}
.y0_c00171{bottom:0.000000px;}
.y3_c00171{bottom:4.320000px;}
.y5_c00171{bottom:25.200000px;}
.y4_c00171{bottom:32.040000px;}
.y1_c00171{bottom:57.240000px;}
.y23_c00171{bottom:178.950000px;}
.y22_c00171{bottom:209.910000px;}
.y21_c00171{bottom:240.915000px;}
.y20_c00171{bottom:271.875000px;}
.y1f_c00171{bottom:303.195000px;}
.y1e_c00171{bottom:340.635000px;}
.y1d_c00171{bottom:366.585000px;}
.y1c_c00171{bottom:392.505000px;}
.y1b_c00171{bottom:427.425000px;}
.y1a_c00171{bottom:462.345000px;}
.y19_c00171{bottom:497.310000px;}
.y18_c00171{bottom:532.230000px;}
.y17_c00171{bottom:566.790000px;}
.y16_c00171{bottom:604.260000px;}
.y15_c00171{bottom:644.220000px;}
.y14_c00171{bottom:684.180000px;}
.y13_c00171{bottom:715.140000px;}
.y12_c00171{bottom:746.490000px;}
.y11_c00171{bottom:777.450000px;}
.y10_c00171{bottom:808.410000px;}
.yf_c00171{bottom:839.370000px;}
.ye_c00171{bottom:870.735000px;}
.yd_c00171{bottom:901.695000px;}
.yc_c00171{bottom:932.655000px;}
.yb_c00171{bottom:963.645000px;}
.ya_c00171{bottom:994.965000px;}
.y9_c00171{bottom:1025.925000px;}
.y8_c00171{bottom:1056.885000px;}
.y7_c00171{bottom:1087.890000px;}
.y6_c00171{bottom:1119.210000px;}
.y2_c00171{bottom:1189.050000px;}
.h3_c00171{height:20.550000px;}
.h4_c00171{height:41.395500px;}
.h8_c00171{height:59.328281px;}
.h7_c00171{height:59.357813px;}
.h2_c00171{height:64.546875px;}
.h6_c00171{height:70.628906px;}
.h5_c00171{height:70.664062px;}
.h0_c00171{height:1262.880000px;}
.h1_c00171{height:1263.000000px;}
.w2_c00171{width:8.310000px;}
.w3_c00171{width:638.190000px;}
.w0_c00171{width:893.160000px;}
.w1_c00171{width:893.250000px;}
.x0_c00171{left:0.000000px;}
.x3_c00171{left:127.489500px;}
.x1_c00171{left:154.515000px;}
.x6_c00171{left:169.995000px;}
.x4_c00171{left:178.635000px;}
.x5_c00171{left:180.795000px;}
.x2_c00171{left:757.365000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls6_c00171{letter-spacing:-2.560000pt;}
.lsa_c00171{letter-spacing:-1.264000pt;}
.lsc_c00171{letter-spacing:-1.258667pt;}
.ls7_c00171{letter-spacing:-0.810667pt;}
.lsd_c00171{letter-spacing:-0.256000pt;}
.ls9_c00171{letter-spacing:-0.066667pt;}
.ls5_c00171{letter-spacing:0.000000pt;}
.ls1_c00171{letter-spacing:0.106667pt;}
.lsb_c00171{letter-spacing:0.463467pt;}
.ls8_c00171{letter-spacing:0.470933pt;}
.ls2_c00171{letter-spacing:0.640000pt;}
.ls3_c00171{letter-spacing:0.658178pt;}
.ls0_c00171{letter-spacing:1.440000pt;}
.ls4_c00171{letter-spacing:1.536000pt;}
.ws2_c00171{word-spacing:-53.760000pt;}
.ws0_c00171{word-spacing:-16.000000pt;}
.ws4_c00171{word-spacing:-15.744000pt;}
.ws3_c00171{word-spacing:-13.903467pt;}
.ws1_c00171{word-spacing:-13.440000pt;}
.ws5_c00171{word-spacing:0.000000pt;}
._13_c00171{margin-left:-3.136000pt;}
._0_c00171{margin-left:-1.920000pt;}
._3_c00171{margin-left:-0.960000pt;}
._2_c00171{width:0.960000pt;}
._5_c00171{width:1.984000pt;}
._6_c00171{width:2.880000pt;}
._b_c00171{width:3.776000pt;}
._c_c00171{width:5.056000pt;}
._d_c00171{width:6.464000pt;}
._e_c00171{width:7.616000pt;}
._f_c00171{width:8.629312pt;}
._10_c00171{width:9.536000pt;}
._7_c00171{width:10.560000pt;}
._8_c00171{width:11.637312pt;}
._12_c00171{width:14.005312pt;}
._11_c00171{width:15.050688pt;}
._17_c00171{width:17.216000pt;}
._9_c00171{width:18.112000pt;}
._a_c00171{width:19.456000pt;}
._16_c00171{width:21.696000pt;}
._14_c00171{width:22.656000pt;}
._15_c00171{width:24.064000pt;}
._4_c00171{width:35.520000pt;}
._1_c00171{width:36.416000pt;}
.fs1_c00171{font-size:53.760000pt;}
.fs0_c00171{font-size:64.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y3_c00171{bottom:3.840000pt;}
.y5_c00171{bottom:22.400000pt;}
.y4_c00171{bottom:28.480000pt;}
.y1_c00171{bottom:50.880000pt;}
.y23_c00171{bottom:159.066667pt;}
.y22_c00171{bottom:186.586667pt;}
.y21_c00171{bottom:214.146667pt;}
.y20_c00171{bottom:241.666667pt;}
.y1f_c00171{bottom:269.506667pt;}
.y1e_c00171{bottom:302.786667pt;}
.y1d_c00171{bottom:325.853333pt;}
.y1c_c00171{bottom:348.893333pt;}
.y1b_c00171{bottom:379.933333pt;}
.y1a_c00171{bottom:410.973333pt;}
.y19_c00171{bottom:442.053333pt;}
.y18_c00171{bottom:473.093333pt;}
.y17_c00171{bottom:503.813333pt;}
.y16_c00171{bottom:537.120000pt;}
.y15_c00171{bottom:572.640000pt;}
.y14_c00171{bottom:608.160000pt;}
.y13_c00171{bottom:635.680000pt;}
.y12_c00171{bottom:663.546667pt;}
.y11_c00171{bottom:691.066667pt;}
.y10_c00171{bottom:718.586667pt;}
.yf_c00171{bottom:746.106667pt;}
.ye_c00171{bottom:773.986667pt;}
.yd_c00171{bottom:801.506667pt;}
.yc_c00171{bottom:829.026667pt;}
.yb_c00171{bottom:856.573333pt;}
.ya_c00171{bottom:884.413333pt;}
.y9_c00171{bottom:911.933333pt;}
.y8_c00171{bottom:939.453333pt;}
.y7_c00171{bottom:967.013333pt;}
.y6_c00171{bottom:994.853333pt;}
.y2_c00171{bottom:1056.933333pt;}
.h3_c00171{height:18.266667pt;}
.h4_c00171{height:36.796000pt;}
.h8_c00171{height:52.736250pt;}
.h7_c00171{height:52.762500pt;}
.h2_c00171{height:57.375000pt;}
.h6_c00171{height:62.781250pt;}
.h5_c00171{height:62.812500pt;}
.h0_c00171{height:1122.560000pt;}
.h1_c00171{height:1122.666667pt;}
.w2_c00171{width:7.386667pt;}
.w3_c00171{width:567.280000pt;}
.w0_c00171{width:793.920000pt;}
.w1_c00171{width:794.000000pt;}
.x0_c00171{left:0.000000pt;}
.x3_c00171{left:113.324000pt;}
.x1_c00171{left:137.346667pt;}
.x6_c00171{left:151.106667pt;}
.x4_c00171{left:158.786667pt;}
.x5_c00171{left:160.706667pt;}
.x2_c00171{left:673.213333pt;}
}





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

.ir_c00172:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00172;src:url('chunks/assets/font_b9e0fb65d467ff93af38986d.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_26b15d6f51c1885639ed3b3d.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_b184dea583d56be1042cc303.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_71bda8622951ec30cb50186f.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;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_c00172;src:url('chunks/assets/font_38feb0426629768441855ff8.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00172;src:url('chunks/assets/font_87021b5e6cede3843c7576b9.woff2')format("woff");}.ff6_c00172{font-family:ff6_c00172;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.v1_c00172{vertical-align:33.120000px;}
.ls13_c00172{letter-spacing:-2.880000px;}
.ls16_c00172{letter-spacing:-0.936000px;}
.lsd_c00172{letter-spacing:-0.912000px;}
.lse_c00172{letter-spacing:-0.532800px;}
.ls14_c00172{letter-spacing:-0.466800px;}
.lsc_c00172{letter-spacing:-0.288000px;}
.ls11_c00172{letter-spacing:-0.241800px;}
.lsa_c00172{letter-spacing:0.000000px;}
.ls15_c00172{letter-spacing:0.020400px;}
.lsf_c00172{letter-spacing:0.022800px;}
.ls1_c00172{letter-spacing:0.144000px;}
.lsb_c00172{letter-spacing:0.288000px;}
.ls17_c00172{letter-spacing:0.466800px;}
.ls2_c00172{letter-spacing:0.504000px;}
.ls10_c00172{letter-spacing:0.507000px;}
.ls5_c00172{letter-spacing:0.720000px;}
.ls9_c00172{letter-spacing:0.732000px;}
.ls7_c00172{letter-spacing:0.743158px;}
.ls12_c00172{letter-spacing:1.140000px;}
.ls4_c00172{letter-spacing:1.440000px;}
.ls6_c00172{letter-spacing:2.160000px;}
.ls3_c00172{letter-spacing:16.560000px;}
.ls0_c00172{letter-spacing:18.000000px;}
.ls8_c00172{letter-spacing:33.840000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00172{word-spacing:-61.620000px;}
.ws6_c00172{word-spacing:-60.480000px;}
.ws0_c00172{word-spacing:-18.000000px;}
.ws1_c00172{word-spacing:-17.712000px;}
.wsa_c00172{word-spacing:-15.586800px;}
.ws4_c00172{word-spacing:-15.142800px;}
.ws8_c00172{word-spacing:-15.140400px;}
.ws2_c00172{word-spacing:-15.120000px;}
.ws7_c00172{word-spacing:-14.653200px;}
.ws3_c00172{word-spacing:-14.587200px;}
.ws9_c00172{word-spacing:-14.184000px;}
.wsb_c00172{word-spacing:0.000000px;}
._5_c00172{margin-left:-2.736000px;}
._0_c00172{margin-left:-1.440000px;}
._3_c00172{width:1.080000px;}
._6_c00172{width:2.808000px;}
._d_c00172{width:4.392000px;}
._9_c00172{width:5.616000px;}
._7_c00172{width:6.840000px;}
._4_c00172{width:8.712000px;}
._2_c00172{width:10.008000px;}
._1_c00172{width:11.232000px;}
._a_c00172{width:12.672000px;}
._b_c00172{width:14.040000px;}
._c_c00172{width:15.780000px;}
._8_c00172{width:17.208000px;}
._11_c00172{width:19.126919px;}
._12_c00172{width:20.247965px;}
._e_c00172{width:33.918002px;}
._f_c00172{width:35.440316px;}
._10_c00172{width:39.052198px;}
.fc0_c00172{color:rgb(0,0,0);}
.fs3_c00172{font-size:38.880000px;}
.fs1_c00172{font-size:47.520000px;}
.fs2_c00172{font-size:60.480000px;}
.fs0_c00172{font-size:72.000000px;}
.y0_c00172{bottom:0.000000px;}
.y3_c00172{bottom:4.320000px;}
.y5_c00172{bottom:25.200000px;}
.y4_c00172{bottom:32.040000px;}
.y1_c00172{bottom:57.240000px;}
.y2f_c00172{bottom:151.590000px;}
.y2e_c00172{bottom:168.870000px;}
.y2d_c00172{bottom:186.150000px;}
.y2c_c00172{bottom:203.430000px;}
.y2b_c00172{bottom:220.710000px;}
.y2a_c00172{bottom:238.035000px;}
.y29_c00172{bottom:255.315000px;}
.y28_c00172{bottom:262.155000px;}
.y27_c00172{bottom:272.595000px;}
.y26_c00172{bottom:289.875000px;}
.y25_c00172{bottom:307.155000px;}
.y24_c00172{bottom:324.435000px;}
.y23_c00172{bottom:341.355000px;}
.y22_c00172{bottom:358.665000px;}
.y21_c00172{bottom:375.945000px;}
.y20_c00172{bottom:393.225000px;}
.y1f_c00172{bottom:410.505000px;}
.y1e_c00172{bottom:417.345000px;}
.y1d_c00172{bottom:428.505000px;}
.y1c_c00172{bottom:464.865000px;}
.y1b_c00172{bottom:490.830000px;}
.y1a_c00172{bottom:516.750000px;}
.y19_c00172{bottom:551.670000px;}
.y18_c00172{bottom:586.590000px;}
.y17_c00172{bottom:621.540000px;}
.y16_c00172{bottom:656.460000px;}
.y15_c00172{bottom:691.020000px;}
.y14_c00172{bottom:728.490000px;}
.y12_c00172{bottom:768.450000px;}
.y13_c00172{bottom:776.730000px;}
.y11_c00172{bottom:799.410000px;}
.y10_c00172{bottom:830.370000px;}
.yf_c00172{bottom:861.735000px;}
.ye_c00172{bottom:892.695000px;}
.yd_c00172{bottom:923.655000px;}
.yc_c00172{bottom:954.615000px;}
.yb_c00172{bottom:985.965000px;}
.ya_c00172{bottom:1025.925000px;}
.y9_c00172{bottom:1056.885000px;}
.y8_c00172{bottom:1087.890000px;}
.y6_c00172{bottom:1119.210000px;}
.y7_c00172{bottom:1127.490000px;}
.y2_c00172{bottom:1189.050000px;}
.h3_c00172{height:20.550000px;}
.hb_c00172{height:38.158594px;}
.h4_c00172{height:41.395500px;}
.h7_c00172{height:46.638281px;}
.hc_c00172{height:54.219375px;}
.ha_c00172{height:59.328281px;}
.h9_c00172{height:59.357813px;}
.h2_c00172{height:64.546875px;}
.h5_c00172{height:70.664062px;}
.h8_c00172{height:79.758281px;}
.h6_c00172{height:1262.875500px;}
.h0_c00172{height:1262.880000px;}
.h1_c00172{height:1263.000000px;}
.w2_c00172{width:8.310000px;}
.w3_c00172{width:638.190000px;}
.w4_c00172{width:893.157000px;}
.w0_c00172{width:893.160000px;}
.w1_c00172{width:893.250000px;}
.x0_c00172{left:0.000000px;}
.x3_c00172{left:127.489500px;}
.xa_c00172{left:142.632000px;}
.x1_c00172{left:154.515000px;}
.x6_c00172{left:169.995000px;}
.x7_c00172{left:239.862000px;}
.x8_c00172{left:258.225000px;}
.x9_c00172{left:343.590000px;}
.x4_c00172{left:450.537000px;}
.x5_c00172{left:468.900000px;}
.x2_c00172{left:757.365000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.v1_c00172{vertical-align:29.440000pt;}
.ls13_c00172{letter-spacing:-2.560000pt;}
.ls16_c00172{letter-spacing:-0.832000pt;}
.lsd_c00172{letter-spacing:-0.810667pt;}
.lse_c00172{letter-spacing:-0.473600pt;}
.ls14_c00172{letter-spacing:-0.414933pt;}
.lsc_c00172{letter-spacing:-0.256000pt;}
.ls11_c00172{letter-spacing:-0.214933pt;}
.lsa_c00172{letter-spacing:0.000000pt;}
.ls15_c00172{letter-spacing:0.018133pt;}
.lsf_c00172{letter-spacing:0.020267pt;}
.ls1_c00172{letter-spacing:0.128000pt;}
.lsb_c00172{letter-spacing:0.256000pt;}
.ls17_c00172{letter-spacing:0.414933pt;}
.ls2_c00172{letter-spacing:0.448000pt;}
.ls10_c00172{letter-spacing:0.450667pt;}
.ls5_c00172{letter-spacing:0.640000pt;}
.ls9_c00172{letter-spacing:0.650667pt;}
.ls7_c00172{letter-spacing:0.660585pt;}
.ls12_c00172{letter-spacing:1.013333pt;}
.ls4_c00172{letter-spacing:1.280000pt;}
.ls6_c00172{letter-spacing:1.920000pt;}
.ls3_c00172{letter-spacing:14.720000pt;}
.ls0_c00172{letter-spacing:16.000000pt;}
.ls8_c00172{letter-spacing:30.080000pt;}
.ws5_c00172{word-spacing:-54.773333pt;}
.ws6_c00172{word-spacing:-53.760000pt;}
.ws0_c00172{word-spacing:-16.000000pt;}
.ws1_c00172{word-spacing:-15.744000pt;}
.wsa_c00172{word-spacing:-13.854933pt;}
.ws4_c00172{word-spacing:-13.460267pt;}
.ws8_c00172{word-spacing:-13.458133pt;}
.ws2_c00172{word-spacing:-13.440000pt;}
.ws7_c00172{word-spacing:-13.025067pt;}
.ws3_c00172{word-spacing:-12.966400pt;}
.ws9_c00172{word-spacing:-12.608000pt;}
.wsb_c00172{word-spacing:0.000000pt;}
._5_c00172{margin-left:-2.432000pt;}
._0_c00172{margin-left:-1.280000pt;}
._3_c00172{width:0.960000pt;}
._6_c00172{width:2.496000pt;}
._d_c00172{width:3.904000pt;}
._9_c00172{width:4.992000pt;}
._7_c00172{width:6.080000pt;}
._4_c00172{width:7.744000pt;}
._2_c00172{width:8.896000pt;}
._1_c00172{width:9.984000pt;}
._a_c00172{width:11.264000pt;}
._b_c00172{width:12.480000pt;}
._c_c00172{width:14.026667pt;}
._8_c00172{width:15.296000pt;}
._11_c00172{width:17.001706pt;}
._12_c00172{width:17.998191pt;}
._e_c00172{width:30.149335pt;}
._f_c00172{width:31.502503pt;}
._10_c00172{width:34.713065pt;}
.fs3_c00172{font-size:34.560000pt;}
.fs1_c00172{font-size:42.240000pt;}
.fs2_c00172{font-size:53.760000pt;}
.fs0_c00172{font-size:64.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y3_c00172{bottom:3.840000pt;}
.y5_c00172{bottom:22.400000pt;}
.y4_c00172{bottom:28.480000pt;}
.y1_c00172{bottom:50.880000pt;}
.y2f_c00172{bottom:134.746667pt;}
.y2e_c00172{bottom:150.106667pt;}
.y2d_c00172{bottom:165.466667pt;}
.y2c_c00172{bottom:180.826667pt;}
.y2b_c00172{bottom:196.186667pt;}
.y2a_c00172{bottom:211.586667pt;}
.y29_c00172{bottom:226.946667pt;}
.y28_c00172{bottom:233.026667pt;}
.y27_c00172{bottom:242.306667pt;}
.y26_c00172{bottom:257.666667pt;}
.y25_c00172{bottom:273.026667pt;}
.y24_c00172{bottom:288.386667pt;}
.y23_c00172{bottom:303.426667pt;}
.y22_c00172{bottom:318.813333pt;}
.y21_c00172{bottom:334.173333pt;}
.y20_c00172{bottom:349.533333pt;}
.y1f_c00172{bottom:364.893333pt;}
.y1e_c00172{bottom:370.973333pt;}
.y1d_c00172{bottom:380.893333pt;}
.y1c_c00172{bottom:413.213333pt;}
.y1b_c00172{bottom:436.293333pt;}
.y1a_c00172{bottom:459.333333pt;}
.y19_c00172{bottom:490.373333pt;}
.y18_c00172{bottom:521.413333pt;}
.y17_c00172{bottom:552.480000pt;}
.y16_c00172{bottom:583.520000pt;}
.y15_c00172{bottom:614.240000pt;}
.y14_c00172{bottom:647.546667pt;}
.y12_c00172{bottom:683.066667pt;}
.y13_c00172{bottom:690.426667pt;}
.y11_c00172{bottom:710.586667pt;}
.y10_c00172{bottom:738.106667pt;}
.yf_c00172{bottom:765.986667pt;}
.ye_c00172{bottom:793.506667pt;}
.yd_c00172{bottom:821.026667pt;}
.yc_c00172{bottom:848.546667pt;}
.yb_c00172{bottom:876.413333pt;}
.ya_c00172{bottom:911.933333pt;}
.y9_c00172{bottom:939.453333pt;}
.y8_c00172{bottom:967.013333pt;}
.y6_c00172{bottom:994.853333pt;}
.y7_c00172{bottom:1002.213333pt;}
.y2_c00172{bottom:1056.933333pt;}
.h3_c00172{height:18.266667pt;}
.hb_c00172{height:33.918750pt;}
.h4_c00172{height:36.796000pt;}
.h7_c00172{height:41.456250pt;}
.hc_c00172{height:48.195000pt;}
.ha_c00172{height:52.736250pt;}
.h9_c00172{height:52.762500pt;}
.h2_c00172{height:57.375000pt;}
.h5_c00172{height:62.812500pt;}
.h8_c00172{height:70.896250pt;}
.h6_c00172{height:1122.556000pt;}
.h0_c00172{height:1122.560000pt;}
.h1_c00172{height:1122.666667pt;}
.w2_c00172{width:7.386667pt;}
.w3_c00172{width:567.280000pt;}
.w4_c00172{width:793.917333pt;}
.w0_c00172{width:793.920000pt;}
.w1_c00172{width:794.000000pt;}
.x0_c00172{left:0.000000pt;}
.x3_c00172{left:113.324000pt;}
.xa_c00172{left:126.784000pt;}
.x1_c00172{left:137.346667pt;}
.x6_c00172{left:151.106667pt;}
.x7_c00172{left:213.210667pt;}
.x8_c00172{left:229.533333pt;}
.x9_c00172{left:305.413333pt;}
.x4_c00172{left:400.477333pt;}
.x5_c00172{left:416.800000pt;}
.x2_c00172{left:673.213333pt;}
}





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

.ir_c00173:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00173;src:url('chunks/assets/font_d329ce74c6bee90520d0de18.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_a5000dc6f45c9bfaff4df7ad.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_5cce6b673c0223e7dd0757ec.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;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_c00173;src:url('chunks/assets/font_1c5ad3540849d0863c78f530.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00173;src:url('chunks/assets/font_2db52cbf50151f6840bcab31.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00173;src:url('chunks/assets/font_d8cdd681b8f7ef2b5628bef3.woff2')format("woff");}.ff6_c00173{font-family:ff6_c00173;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls6_c00173{letter-spacing:-0.912000px;}
.ls7_c00173{letter-spacing:-0.532800px;}
.ls8_c00173{letter-spacing:-0.241800px;}
.ls4_c00173{letter-spacing:0.000000px;}
.lsa_c00173{letter-spacing:0.060600px;}
.ls1_c00173{letter-spacing:0.486720px;}
.ls9_c00173{letter-spacing:0.518400px;}
.ls5_c00173{letter-spacing:0.576000px;}
.ls0_c00173{letter-spacing:0.720000px;}
.ls2_c00173{letter-spacing:0.739924px;}
.ls3_c00173{letter-spacing:30.960000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00173{word-spacing:-60.480000px;}
.ws0_c00173{word-spacing:-18.000000px;}
.ws5_c00173{word-spacing:-15.638400px;}
.ws1_c00173{word-spacing:-15.120000px;}
.ws4_c00173{word-spacing:-14.878200px;}
.ws2_c00173{word-spacing:-14.587200px;}
.ws6_c00173{word-spacing:0.000000px;}
._e_c00173{margin-left:-3.264000px;}
._0_c00173{margin-left:-2.160000px;}
._4_c00173{margin-left:-1.092000px;}
._1_c00173{width:1.368000px;}
._8_c00173{width:2.892000px;}
._5_c00173{width:4.248000px;}
._2_c00173{width:5.544000px;}
._3_c00173{width:6.636000px;}
._6_c00173{width:8.352000px;}
._7_c00173{width:9.504000px;}
._9_c00173{width:10.740000px;}
._d_c00173{width:12.744000px;}
._a_c00173{width:13.908024px;}
._f_c00173{width:19.140000px;}
._b_c00173{width:21.384000px;}
._c_c00173{width:23.400000px;}
._11_c00173{width:30.252000px;}
._10_c00173{width:31.812000px;}
._12_c00173{width:32.916000px;}
._13_c00173{width:34.356000px;}
.fc0_c00173{color:rgb(0,0,0);}
.fs1_c00173{font-size:60.480000px;}
.fs0_c00173{font-size:72.000000px;}
.y0_c00173{bottom:0.000000px;}
.y3_c00173{bottom:4.320000px;}
.y5_c00173{bottom:25.200000px;}
.y4_c00173{bottom:32.040000px;}
.y1_c00173{bottom:57.240000px;}
.y24_c00173{bottom:159.510000px;}
.y23_c00173{bottom:190.470000px;}
.y22_c00173{bottom:221.430000px;}
.y21_c00173{bottom:252.795000px;}
.y20_c00173{bottom:283.755000px;}
.y1f_c00173{bottom:314.715000px;}
.y1e_c00173{bottom:345.675000px;}
.y1d_c00173{bottom:377.025000px;}
.y1c_c00173{bottom:407.985000px;}
.y1b_c00173{bottom:438.945000px;}
.y1a_c00173{bottom:469.905000px;}
.y19_c00173{bottom:507.750000px;}
.y18_c00173{bottom:533.670000px;}
.y17_c00173{bottom:559.590000px;}
.y16_c00173{bottom:585.510000px;}
.y15_c00173{bottom:620.460000px;}
.y14_c00173{bottom:655.020000px;}
.y13_c00173{bottom:680.940000px;}
.y12_c00173{bottom:715.860000px;}
.y11_c00173{bottom:750.810000px;}
.y10_c00173{bottom:785.730000px;}
.yf_c00173{bottom:820.650000px;}
.ye_c00173{bottom:855.615000px;}
.yd_c00173{bottom:892.695000px;}
.yc_c00173{bottom:932.655000px;}
.yb_c00173{bottom:963.645000px;}
.ya_c00173{bottom:994.965000px;}
.y9_c00173{bottom:1025.925000px;}
.y8_c00173{bottom:1056.885000px;}
.y7_c00173{bottom:1087.890000px;}
.y6_c00173{bottom:1119.210000px;}
.y2_c00173{bottom:1189.050000px;}
.h3_c00173{height:20.550000px;}
.h4_c00173{height:41.395500px;}
.h7_c00173{height:59.328281px;}
.h6_c00173{height:59.357813px;}
.h2_c00173{height:64.546875px;}
.h5_c00173{height:70.664062px;}
.h0_c00173{height:1262.880000px;}
.h1_c00173{height:1263.000000px;}
.w2_c00173{width:8.310000px;}
.w3_c00173{width:638.190000px;}
.w0_c00173{width:893.160000px;}
.w1_c00173{width:893.250000px;}
.x0_c00173{left:0.000000px;}
.x3_c00173{left:127.489500px;}
.x1_c00173{left:154.515000px;}
.x4_c00173{left:169.995000px;}
.x2_c00173{left:757.365000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls6_c00173{letter-spacing:-0.810667pt;}
.ls7_c00173{letter-spacing:-0.473600pt;}
.ls8_c00173{letter-spacing:-0.214933pt;}
.ls4_c00173{letter-spacing:0.000000pt;}
.lsa_c00173{letter-spacing:0.053867pt;}
.ls1_c00173{letter-spacing:0.432640pt;}
.ls9_c00173{letter-spacing:0.460800pt;}
.ls5_c00173{letter-spacing:0.512000pt;}
.ls0_c00173{letter-spacing:0.640000pt;}
.ls2_c00173{letter-spacing:0.657710pt;}
.ls3_c00173{letter-spacing:27.520000pt;}
.ws3_c00173{word-spacing:-53.760000pt;}
.ws0_c00173{word-spacing:-16.000000pt;}
.ws5_c00173{word-spacing:-13.900800pt;}
.ws1_c00173{word-spacing:-13.440000pt;}
.ws4_c00173{word-spacing:-13.225067pt;}
.ws2_c00173{word-spacing:-12.966400pt;}
.ws6_c00173{word-spacing:0.000000pt;}
._e_c00173{margin-left:-2.901333pt;}
._0_c00173{margin-left:-1.920000pt;}
._4_c00173{margin-left:-0.970667pt;}
._1_c00173{width:1.216000pt;}
._8_c00173{width:2.570667pt;}
._5_c00173{width:3.776000pt;}
._2_c00173{width:4.928000pt;}
._3_c00173{width:5.898667pt;}
._6_c00173{width:7.424000pt;}
._7_c00173{width:8.448000pt;}
._9_c00173{width:9.546667pt;}
._d_c00173{width:11.328000pt;}
._a_c00173{width:12.362688pt;}
._f_c00173{width:17.013333pt;}
._b_c00173{width:19.008000pt;}
._c_c00173{width:20.800000pt;}
._11_c00173{width:26.890667pt;}
._10_c00173{width:28.277333pt;}
._12_c00173{width:29.258667pt;}
._13_c00173{width:30.538667pt;}
.fs1_c00173{font-size:53.760000pt;}
.fs0_c00173{font-size:64.000000pt;}
.y0_c00173{bottom:0.000000pt;}
.y3_c00173{bottom:3.840000pt;}
.y5_c00173{bottom:22.400000pt;}
.y4_c00173{bottom:28.480000pt;}
.y1_c00173{bottom:50.880000pt;}
.y24_c00173{bottom:141.786667pt;}
.y23_c00173{bottom:169.306667pt;}
.y22_c00173{bottom:196.826667pt;}
.y21_c00173{bottom:224.706667pt;}
.y20_c00173{bottom:252.226667pt;}
.y1f_c00173{bottom:279.746667pt;}
.y1e_c00173{bottom:307.266667pt;}
.y1d_c00173{bottom:335.133333pt;}
.y1c_c00173{bottom:362.653333pt;}
.y1b_c00173{bottom:390.173333pt;}
.y1a_c00173{bottom:417.693333pt;}
.y19_c00173{bottom:451.333333pt;}
.y18_c00173{bottom:474.373333pt;}
.y17_c00173{bottom:497.413333pt;}
.y16_c00173{bottom:520.453333pt;}
.y15_c00173{bottom:551.520000pt;}
.y14_c00173{bottom:582.240000pt;}
.y13_c00173{bottom:605.280000pt;}
.y12_c00173{bottom:636.320000pt;}
.y11_c00173{bottom:667.386667pt;}
.y10_c00173{bottom:698.426667pt;}
.yf_c00173{bottom:729.466667pt;}
.ye_c00173{bottom:760.546667pt;}
.yd_c00173{bottom:793.506667pt;}
.yc_c00173{bottom:829.026667pt;}
.yb_c00173{bottom:856.573333pt;}
.ya_c00173{bottom:884.413333pt;}
.y9_c00173{bottom:911.933333pt;}
.y8_c00173{bottom:939.453333pt;}
.y7_c00173{bottom:967.013333pt;}
.y6_c00173{bottom:994.853333pt;}
.y2_c00173{bottom:1056.933333pt;}
.h3_c00173{height:18.266667pt;}
.h4_c00173{height:36.796000pt;}
.h7_c00173{height:52.736250pt;}
.h6_c00173{height:52.762500pt;}
.h2_c00173{height:57.375000pt;}
.h5_c00173{height:62.812500pt;}
.h0_c00173{height:1122.560000pt;}
.h1_c00173{height:1122.666667pt;}
.w2_c00173{width:7.386667pt;}
.w3_c00173{width:567.280000pt;}
.w0_c00173{width:793.920000pt;}
.w1_c00173{width:794.000000pt;}
.x0_c00173{left:0.000000pt;}
.x3_c00173{left:113.324000pt;}
.x1_c00173{left:137.346667pt;}
.x4_c00173{left:151.106667pt;}
.x2_c00173{left:673.213333pt;}
}





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

.ir_c00174:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00174;src:url('chunks/assets/font_049d4d9c3f7044c466a8ec11.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_1a773142226a3bce01014ec6.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_4f2c024d160f7fe6e2eb3318.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_e35969dece1359203765f44f.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;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_c00174;src:url('chunks/assets/font_868370f701e0e9fe422c92eb.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00174;src:url('chunks/assets/font_d2d9f11955350bcab2beb861.woff2')format("woff");}.ff6_c00174{font-family:ff6_c00174;line-height:1.311035;font-style:normal;font-weight: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_c00174;src:url('chunks/assets/font_a90cde14dc9dee331541ff40.woff2')format("woff");}.ff7_c00174{font-family:ff7_c00174;line-height:1.117188;font-style:normal;font-weight: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_c00174;src:url('chunks/assets/font_e4e4497f0ad46aa27537f65e.woff2')format("woff");}.ff8_c00174{font-family:ff8_c00174;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.lsb_c00174{letter-spacing:-1.740000px;}
.lsd_c00174{letter-spacing:-0.936000px;}
.lse_c00174{letter-spacing:-0.912000px;}
.ls8_c00174{letter-spacing:-0.532800px;}
.lsa_c00174{letter-spacing:-0.241800px;}
.ls6_c00174{letter-spacing:0.000000px;}
.lsc_c00174{letter-spacing:0.022800px;}
.ls1_c00174{letter-spacing:0.120000px;}
.ls5_c00174{letter-spacing:0.518400px;}
.ls10_c00174{letter-spacing:0.521400px;}
.ls4_c00174{letter-spacing:0.524160px;}
.lsf_c00174{letter-spacing:0.529800px;}
.ls7_c00174{letter-spacing:0.576000px;}
.ls9_c00174{letter-spacing:0.702000px;}
.ls3_c00174{letter-spacing:0.720000px;}
.ls2_c00174{letter-spacing:0.728640px;}
.ls0_c00174{letter-spacing:6.480000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00174{word-spacing:-60.480000px;}
.ws0_c00174{word-spacing:-18.000000px;}
.ws2_c00174{word-spacing:-15.822000px;}
.ws8_c00174{word-spacing:-15.641400px;}
.ws1_c00174{word-spacing:-15.120000px;}
.ws3_c00174{word-spacing:-14.878200px;}
.ws6_c00174{word-spacing:-14.184000px;}
.ws5_c00174{word-spacing:-13.380000px;}
.ws7_c00174{word-spacing:-12.600000px;}
.ws9_c00174{word-spacing:0.000000px;}
._9_c00174{margin-left:-3.168000px;}
._0_c00174{margin-left:-1.800000px;}
._2_c00174{width:1.080000px;}
._4_c00174{width:2.088000px;}
._5_c00174{width:3.144024px;}
._e_c00174{width:4.164000px;}
._6_c00174{width:5.219976px;}
._1_c00174{width:6.552000px;}
._3_c00174{width:8.352000px;}
._8_c00174{width:9.720000px;}
._7_c00174{width:11.232000px;}
._d_c00174{width:13.104000px;}
._c_c00174{width:14.400000px;}
._a_c00174{width:22.320000px;}
._b_c00174{width:24.408000px;}
._f_c00174{width:26.280000px;}
._10_c00174{width:27.288000px;}
._12_c00174{width:69.840000px;}
._11_c00174{width:363.107520px;}
.fc0_c00174{color:rgb(0,0,0);}
.fs2_c00174{font-size:38.880000px;}
.fs3_c00174{font-size:47.520000px;}
.fs1_c00174{font-size:60.480000px;}
.fs0_c00174{font-size:72.000000px;}
.y0_c00174{bottom:0.000000px;}
.y3_c00174{bottom:4.320000px;}
.y5_c00174{bottom:25.200000px;}
.y4_c00174{bottom:32.040000px;}
.y1_c00174{bottom:57.240000px;}
.y2a_c00174{bottom:151.590000px;}
.y29_c00174{bottom:168.870000px;}
.y28_c00174{bottom:186.150000px;}
.y27_c00174{bottom:203.430000px;}
.y26_c00174{bottom:220.710000px;}
.y25_c00174{bottom:227.550000px;}
.y24_c00174{bottom:238.035000px;}
.y23_c00174{bottom:244.875000px;}
.y22_c00174{bottom:256.035000px;}
.y21_c00174{bottom:288.075000px;}
.y20_c00174{bottom:322.635000px;}
.y1f_c00174{bottom:357.585000px;}
.y1e_c00174{bottom:392.505000px;}
.y1d_c00174{bottom:427.425000px;}
.y1c_c00174{bottom:462.345000px;}
.y1b_c00174{bottom:499.470000px;}
.y1a_c00174{bottom:539.430000px;}
.y18_c00174{bottom:570.750000px;}
.y19_c00174{bottom:579.030000px;}
.y17_c00174{bottom:601.740000px;}
.y16_c00174{bottom:632.700000px;}
.y15_c00174{bottom:663.660000px;}
.y14_c00174{bottom:694.980000px;}
.y13_c00174{bottom:725.970000px;}
.y12_c00174{bottom:756.930000px;}
.y11_c00174{bottom:787.890000px;}
.y10_c00174{bottom:819.210000px;}
.yf_c00174{bottom:856.695000px;}
.yd_c00174{bottom:891.615000px;}
.ye_c00174{bottom:898.455000px;}
.yc_c00174{bottom:917.535000px;}
.yb_c00174{bottom:954.615000px;}
.ya_c00174{bottom:994.965000px;}
.y9_c00174{bottom:1025.925000px;}
.y8_c00174{bottom:1056.885000px;}
.y7_c00174{bottom:1087.890000px;}
.y6_c00174{bottom:1119.210000px;}
.y2_c00174{bottom:1189.050000px;}
.h3_c00174{height:20.550000px;}
.hb_c00174{height:34.855313px;}
.h8_c00174{height:39.183750px;}
.h4_c00174{height:41.395500px;}
.ha_c00174{height:46.638281px;}
.hd_c00174{height:54.219375px;}
.hc_c00174{height:54.514688px;}
.h9_c00174{height:59.328281px;}
.h6_c00174{height:59.357813px;}
.h2_c00174{height:64.546875px;}
.h5_c00174{height:70.664062px;}
.h7_c00174{height:1262.875500px;}
.h0_c00174{height:1262.880000px;}
.h1_c00174{height:1263.000000px;}
.w2_c00174{width:8.310000px;}
.w3_c00174{width:638.190000px;}
.w4_c00174{width:893.157000px;}
.w0_c00174{width:893.160000px;}
.w1_c00174{width:893.250000px;}
.x0_c00174{left:0.000000px;}
.x3_c00174{left:127.489500px;}
.xb_c00174{left:142.632000px;}
.x1_c00174{left:154.515000px;}
.x9_c00174{left:168.195000px;}
.x4_c00174{left:169.995000px;}
.xa_c00174{left:343.590000px;}
.x5_c00174{left:353.667000px;}
.x6_c00174{left:368.790000px;}
.x7_c00174{left:466.017000px;}
.x8_c00174{left:484.380000px;}
.x2_c00174{left:757.365000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.lsb_c00174{letter-spacing:-1.546667pt;}
.lsd_c00174{letter-spacing:-0.832000pt;}
.lse_c00174{letter-spacing:-0.810667pt;}
.ls8_c00174{letter-spacing:-0.473600pt;}
.lsa_c00174{letter-spacing:-0.214933pt;}
.ls6_c00174{letter-spacing:0.000000pt;}
.lsc_c00174{letter-spacing:0.020267pt;}
.ls1_c00174{letter-spacing:0.106667pt;}
.ls5_c00174{letter-spacing:0.460800pt;}
.ls10_c00174{letter-spacing:0.463467pt;}
.ls4_c00174{letter-spacing:0.465920pt;}
.lsf_c00174{letter-spacing:0.470933pt;}
.ls7_c00174{letter-spacing:0.512000pt;}
.ls9_c00174{letter-spacing:0.624000pt;}
.ls3_c00174{letter-spacing:0.640000pt;}
.ls2_c00174{letter-spacing:0.647680pt;}
.ls0_c00174{letter-spacing:5.760000pt;}
.ws4_c00174{word-spacing:-53.760000pt;}
.ws0_c00174{word-spacing:-16.000000pt;}
.ws2_c00174{word-spacing:-14.064000pt;}
.ws8_c00174{word-spacing:-13.903467pt;}
.ws1_c00174{word-spacing:-13.440000pt;}
.ws3_c00174{word-spacing:-13.225067pt;}
.ws6_c00174{word-spacing:-12.608000pt;}
.ws5_c00174{word-spacing:-11.893333pt;}
.ws7_c00174{word-spacing:-11.200000pt;}
.ws9_c00174{word-spacing:0.000000pt;}
._9_c00174{margin-left:-2.816000pt;}
._0_c00174{margin-left:-1.600000pt;}
._2_c00174{width:0.960000pt;}
._4_c00174{width:1.856000pt;}
._5_c00174{width:2.794688pt;}
._e_c00174{width:3.701333pt;}
._6_c00174{width:4.639979pt;}
._1_c00174{width:5.824000pt;}
._3_c00174{width:7.424000pt;}
._8_c00174{width:8.640000pt;}
._7_c00174{width:9.984000pt;}
._d_c00174{width:11.648000pt;}
._c_c00174{width:12.800000pt;}
._a_c00174{width:19.840000pt;}
._b_c00174{width:21.696000pt;}
._f_c00174{width:23.360000pt;}
._10_c00174{width:24.256000pt;}
._12_c00174{width:62.080000pt;}
._11_c00174{width:322.762240pt;}
.fs2_c00174{font-size:34.560000pt;}
.fs3_c00174{font-size:42.240000pt;}
.fs1_c00174{font-size:53.760000pt;}
.fs0_c00174{font-size:64.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y3_c00174{bottom:3.840000pt;}
.y5_c00174{bottom:22.400000pt;}
.y4_c00174{bottom:28.480000pt;}
.y1_c00174{bottom:50.880000pt;}
.y2a_c00174{bottom:134.746667pt;}
.y29_c00174{bottom:150.106667pt;}
.y28_c00174{bottom:165.466667pt;}
.y27_c00174{bottom:180.826667pt;}
.y26_c00174{bottom:196.186667pt;}
.y25_c00174{bottom:202.266667pt;}
.y24_c00174{bottom:211.586667pt;}
.y23_c00174{bottom:217.666667pt;}
.y22_c00174{bottom:227.586667pt;}
.y21_c00174{bottom:256.066667pt;}
.y20_c00174{bottom:286.786667pt;}
.y1f_c00174{bottom:317.853333pt;}
.y1e_c00174{bottom:348.893333pt;}
.y1d_c00174{bottom:379.933333pt;}
.y1c_c00174{bottom:410.973333pt;}
.y1b_c00174{bottom:443.973333pt;}
.y1a_c00174{bottom:479.493333pt;}
.y18_c00174{bottom:507.333333pt;}
.y19_c00174{bottom:514.693333pt;}
.y17_c00174{bottom:534.880000pt;}
.y16_c00174{bottom:562.400000pt;}
.y15_c00174{bottom:589.920000pt;}
.y14_c00174{bottom:617.760000pt;}
.y13_c00174{bottom:645.306667pt;}
.y12_c00174{bottom:672.826667pt;}
.y11_c00174{bottom:700.346667pt;}
.y10_c00174{bottom:728.186667pt;}
.yf_c00174{bottom:761.506667pt;}
.yd_c00174{bottom:792.546667pt;}
.ye_c00174{bottom:798.626667pt;}
.yc_c00174{bottom:815.586667pt;}
.yb_c00174{bottom:848.546667pt;}
.ya_c00174{bottom:884.413333pt;}
.y9_c00174{bottom:911.933333pt;}
.y8_c00174{bottom:939.453333pt;}
.y7_c00174{bottom:967.013333pt;}
.y6_c00174{bottom:994.853333pt;}
.y2_c00174{bottom:1056.933333pt;}
.h3_c00174{height:18.266667pt;}
.hb_c00174{height:30.982500pt;}
.h8_c00174{height:34.830000pt;}
.h4_c00174{height:36.796000pt;}
.ha_c00174{height:41.456250pt;}
.hd_c00174{height:48.195000pt;}
.hc_c00174{height:48.457500pt;}
.h9_c00174{height:52.736250pt;}
.h6_c00174{height:52.762500pt;}
.h2_c00174{height:57.375000pt;}
.h5_c00174{height:62.812500pt;}
.h7_c00174{height:1122.556000pt;}
.h0_c00174{height:1122.560000pt;}
.h1_c00174{height:1122.666667pt;}
.w2_c00174{width:7.386667pt;}
.w3_c00174{width:567.280000pt;}
.w4_c00174{width:793.917333pt;}
.w0_c00174{width:793.920000pt;}
.w1_c00174{width:794.000000pt;}
.x0_c00174{left:0.000000pt;}
.x3_c00174{left:113.324000pt;}
.xb_c00174{left:126.784000pt;}
.x1_c00174{left:137.346667pt;}
.x9_c00174{left:149.506667pt;}
.x4_c00174{left:151.106667pt;}
.xa_c00174{left:305.413333pt;}
.x5_c00174{left:314.370667pt;}
.x6_c00174{left:327.813333pt;}
.x7_c00174{left:414.237333pt;}
.x8_c00174{left:430.560000pt;}
.x2_c00174{left:673.213333pt;}
}





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

.ir_c00175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00175;src:url('chunks/assets/font_953497a319dbcd2d105c00b7.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_2153fe1845780171f15a57d9.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_11d16fcd454aff9714c6803a.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_a1f3f3f24f29e612e04c9efe.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00175;src:url('chunks/assets/font_07b81d879f95125d166f155b.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;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_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.lsb_c00175{letter-spacing:-1.416000px;}
.lsa_c00175{letter-spacing:-0.532800px;}
.lsf_c00175{letter-spacing:-0.360000px;}
.lsd_c00175{letter-spacing:-0.288000px;}
.ls9_c00175{letter-spacing:0.000000px;}
.lsc_c00175{letter-spacing:0.022800px;}
.ls2_c00175{letter-spacing:0.048960px;}
.lse_c00175{letter-spacing:0.072000px;}
.ls7_c00175{letter-spacing:0.504000px;}
.ls3_c00175{letter-spacing:0.518400px;}
.ls10_c00175{letter-spacing:0.576000px;}
.ls0_c00175{letter-spacing:0.720000px;}
.ls1_c00175{letter-spacing:0.728640px;}
.ls4_c00175{letter-spacing:6.480000px;}
.ls5_c00175{letter-spacing:9.360000px;}
.ls6_c00175{letter-spacing:18.000000px;}
.ls8_c00175{letter-spacing:18.012000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00175{word-spacing:-60.480000px;}
.ws5_c00175{word-spacing:-18.072000px;}
.ws3_c00175{word-spacing:-18.000000px;}
.ws4_c00175{word-spacing:-17.712000px;}
.ws6_c00175{word-spacing:-17.640000px;}
.ws2_c00175{word-spacing:-15.120000px;}
.ws0_c00175{word-spacing:-12.600000px;}
.ws7_c00175{word-spacing:0.000000px;}
._9_c00175{margin-left:-5.255399px;}
._a_c00175{margin-left:-3.668995px;}
._7_c00175{margin-left:-2.660999px;}
._0_c00175{margin-left:-1.330802px;}
._1_c00175{width:1.270806px;}
._4_c00175{width:2.297998px;}
._5_c00175{width:4.294201px;}
._6_c00175{width:5.623793px;}
._8_c00175{width:7.355988px;}
._b_c00175{width:9.034802px;}
._f_c00175{width:10.668582px;}
._e_c00175{width:13.606817px;}
._c_c00175{width:15.136188px;}
._d_c00175{width:16.697998px;}
._13_c00175{width:18.922787px;}
._11_c00175{width:21.265194px;}
._10_c00175{width:22.389581px;}
._12_c00175{width:24.110415px;}
._3_c00175{width:28.080000px;}
._2_c00175{width:327.564968px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs3_c00175{font-size:38.880000px;}
.fs2_c00175{font-size:47.520000px;}
.fs1_c00175{font-size:60.480000px;}
.fs0_c00175{font-size:72.000000px;}
.y0_c00175{bottom:0.000000px;}
.y3_c00175{bottom:4.320000px;}
.y5_c00175{bottom:25.200000px;}
.y4_c00175{bottom:32.040000px;}
.y1_c00175{bottom:57.240000px;}
.y28_c00175{bottom:151.590000px;}
.y27_c00175{bottom:168.870000px;}
.y26_c00175{bottom:186.150000px;}
.y25_c00175{bottom:192.990000px;}
.y24_c00175{bottom:204.150000px;}
.y23_c00175{bottom:245.955000px;}
.y22_c00175{bottom:276.915000px;}
.y21_c00175{bottom:307.875000px;}
.y20_c00175{bottom:339.195000px;}
.y1f_c00175{bottom:370.185000px;}
.y1e_c00175{bottom:401.145000px;}
.y1d_c00175{bottom:432.105000px;}
.y1c_c00175{bottom:463.425000px;}
.y1b_c00175{bottom:494.430000px;}
.y1a_c00175{bottom:525.390000px;}
.y19_c00175{bottom:556.350000px;}
.y18_c00175{bottom:587.310000px;}
.y17_c00175{bottom:618.660000px;}
.y16_c00175{bottom:658.620000px;}
.y15_c00175{bottom:689.580000px;}
.y14_c00175{bottom:720.570000px;}
.y13_c00175{bottom:751.890000px;}
.y12_c00175{bottom:782.850000px;}
.y11_c00175{bottom:813.810000px;}
.y10_c00175{bottom:844.815000px;}
.yf_c00175{bottom:876.135000px;}
.ye_c00175{bottom:913.935000px;}
.yd_c00175{bottom:939.495000px;}
.yc_c00175{bottom:965.445000px;}
.yb_c00175{bottom:991.365000px;}
.ya_c00175{bottom:1017.285000px;}
.y8_c00175{bottom:1052.205000px;}
.y9_c00175{bottom:1059.045000px;}
.y7_c00175{bottom:1087.170000px;}
.y6_c00175{bottom:1122.090000px;}
.y2_c00175{bottom:1189.050000px;}
.h3_c00175{height:20.550000px;}
.h8_c00175{height:38.158594px;}
.h4_c00175{height:41.395500px;}
.h6_c00175{height:54.219375px;}
.h9_c00175{height:59.328281px;}
.h5_c00175{height:59.357813px;}
.h2_c00175{height:64.546875px;}
.ha_c00175{height:70.664062px;}
.h7_c00175{height:1262.875500px;}
.h0_c00175{height:1262.880000px;}
.h1_c00175{height:1263.000000px;}
.w2_c00175{width:8.310000px;}
.w3_c00175{width:638.190000px;}
.w4_c00175{width:893.157000px;}
.w0_c00175{width:893.160000px;}
.w1_c00175{width:893.250000px;}
.x0_c00175{left:0.000000px;}
.x3_c00175{left:127.489500px;}
.x8_c00175{left:142.632000px;}
.x1_c00175{left:154.515000px;}
.x4_c00175{left:168.195000px;}
.x5_c00175{left:267.942000px;}
.x6_c00175{left:283.065000px;}
.x7_c00175{left:343.590000px;}
.x2_c00175{left:757.365000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.lsb_c00175{letter-spacing:-1.258667pt;}
.lsa_c00175{letter-spacing:-0.473600pt;}
.lsf_c00175{letter-spacing:-0.320000pt;}
.lsd_c00175{letter-spacing:-0.256000pt;}
.ls9_c00175{letter-spacing:0.000000pt;}
.lsc_c00175{letter-spacing:0.020267pt;}
.ls2_c00175{letter-spacing:0.043520pt;}
.lse_c00175{letter-spacing:0.064000pt;}
.ls7_c00175{letter-spacing:0.448000pt;}
.ls3_c00175{letter-spacing:0.460800pt;}
.ls10_c00175{letter-spacing:0.512000pt;}
.ls0_c00175{letter-spacing:0.640000pt;}
.ls1_c00175{letter-spacing:0.647680pt;}
.ls4_c00175{letter-spacing:5.760000pt;}
.ls5_c00175{letter-spacing:8.320000pt;}
.ls6_c00175{letter-spacing:16.000000pt;}
.ls8_c00175{letter-spacing:16.010667pt;}
.ws1_c00175{word-spacing:-53.760000pt;}
.ws5_c00175{word-spacing:-16.064000pt;}
.ws3_c00175{word-spacing:-16.000000pt;}
.ws4_c00175{word-spacing:-15.744000pt;}
.ws6_c00175{word-spacing:-15.680000pt;}
.ws2_c00175{word-spacing:-13.440000pt;}
.ws0_c00175{word-spacing:-11.200000pt;}
.ws7_c00175{word-spacing:0.000000pt;}
._9_c00175{margin-left:-4.671466pt;}
._a_c00175{margin-left:-3.261329pt;}
._7_c00175{margin-left:-2.365332pt;}
._0_c00175{margin-left:-1.182935pt;}
._1_c00175{width:1.129605pt;}
._4_c00175{width:2.042665pt;}
._5_c00175{width:3.817068pt;}
._6_c00175{width:4.998927pt;}
._8_c00175{width:6.538656pt;}
._b_c00175{width:8.030935pt;}
._f_c00175{width:9.483184pt;}
._e_c00175{width:12.094949pt;}
._c_c00175{width:13.454389pt;}
._d_c00175{width:14.842665pt;}
._13_c00175{width:16.820255pt;}
._11_c00175{width:18.902395pt;}
._10_c00175{width:19.901850pt;}
._12_c00175{width:21.431480pt;}
._3_c00175{width:24.960000pt;}
._2_c00175{width:291.168860pt;}
.fs3_c00175{font-size:34.560000pt;}
.fs2_c00175{font-size:42.240000pt;}
.fs1_c00175{font-size:53.760000pt;}
.fs0_c00175{font-size:64.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y3_c00175{bottom:3.840000pt;}
.y5_c00175{bottom:22.400000pt;}
.y4_c00175{bottom:28.480000pt;}
.y1_c00175{bottom:50.880000pt;}
.y28_c00175{bottom:134.746667pt;}
.y27_c00175{bottom:150.106667pt;}
.y26_c00175{bottom:165.466667pt;}
.y25_c00175{bottom:171.546667pt;}
.y24_c00175{bottom:181.466667pt;}
.y23_c00175{bottom:218.626667pt;}
.y22_c00175{bottom:246.146667pt;}
.y21_c00175{bottom:273.666667pt;}
.y20_c00175{bottom:301.506667pt;}
.y1f_c00175{bottom:329.053333pt;}
.y1e_c00175{bottom:356.573333pt;}
.y1d_c00175{bottom:384.093333pt;}
.y1c_c00175{bottom:411.933333pt;}
.y1b_c00175{bottom:439.493333pt;}
.y1a_c00175{bottom:467.013333pt;}
.y19_c00175{bottom:494.533333pt;}
.y18_c00175{bottom:522.053333pt;}
.y17_c00175{bottom:549.920000pt;}
.y16_c00175{bottom:585.440000pt;}
.y15_c00175{bottom:612.960000pt;}
.y14_c00175{bottom:640.506667pt;}
.y13_c00175{bottom:668.346667pt;}
.y12_c00175{bottom:695.866667pt;}
.y11_c00175{bottom:723.386667pt;}
.y10_c00175{bottom:750.946667pt;}
.yf_c00175{bottom:778.786667pt;}
.ye_c00175{bottom:812.386667pt;}
.yd_c00175{bottom:835.106667pt;}
.yc_c00175{bottom:858.173333pt;}
.yb_c00175{bottom:881.213333pt;}
.ya_c00175{bottom:904.253333pt;}
.y8_c00175{bottom:935.293333pt;}
.y9_c00175{bottom:941.373333pt;}
.y7_c00175{bottom:966.373333pt;}
.y6_c00175{bottom:997.413333pt;}
.y2_c00175{bottom:1056.933333pt;}
.h3_c00175{height:18.266667pt;}
.h8_c00175{height:33.918750pt;}
.h4_c00175{height:36.796000pt;}
.h6_c00175{height:48.195000pt;}
.h9_c00175{height:52.736250pt;}
.h5_c00175{height:52.762500pt;}
.h2_c00175{height:57.375000pt;}
.ha_c00175{height:62.812500pt;}
.h7_c00175{height:1122.556000pt;}
.h0_c00175{height:1122.560000pt;}
.h1_c00175{height:1122.666667pt;}
.w2_c00175{width:7.386667pt;}
.w3_c00175{width:567.280000pt;}
.w4_c00175{width:793.917333pt;}
.w0_c00175{width:793.920000pt;}
.w1_c00175{width:794.000000pt;}
.x0_c00175{left:0.000000pt;}
.x3_c00175{left:113.324000pt;}
.x8_c00175{left:126.784000pt;}
.x1_c00175{left:137.346667pt;}
.x4_c00175{left:149.506667pt;}
.x5_c00175{left:238.170667pt;}
.x6_c00175{left:251.613333pt;}
.x7_c00175{left:305.413333pt;}
.x2_c00175{left:673.213333pt;}
}





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

.ir_c00176:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00176;src:url('chunks/assets/font_3c29531e009a5a36c51578b7.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_daa6cca5a1f5e8f281eafb4e.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_2088c10497a7c4c0c7726464.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_7d9a647bffa5ad14372e2e51.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;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_c00176;src:url('chunks/assets/font_a37ee210077cc250b40abf48.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00176;src:url('chunks/assets/font_ecb18bf7924730ab85e119f5.woff2')format("woff");}.ff6_c00176{font-family:ff6_c00176;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls6_c00176{letter-spacing:-1.296000px;}
.ls3_c00176{letter-spacing:0.000000px;}
.ls5_c00176{letter-spacing:0.022800px;}
.ls4_c00176{letter-spacing:0.486600px;}
.ls1_c00176{letter-spacing:0.504000px;}
.ls2_c00176{letter-spacing:0.506880px;}
.ls0_c00176{letter-spacing:0.720000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00176{word-spacing:-72.000000px;}
.ws3_c00176{word-spacing:-60.480000px;}
.ws5_c00176{word-spacing:-18.504000px;}
.ws0_c00176{word-spacing:-18.000000px;}
.ws2_c00176{word-spacing:-15.606600px;}
.ws4_c00176{word-spacing:-15.120000px;}
.ws6_c00176{word-spacing:0.000000px;}
._1_c00176{margin-left:-2.736000px;}
._3_c00176{margin-left:-1.080000px;}
._0_c00176{width:1.800000px;}
._6_c00176{width:2.952144px;}
._e_c00176{width:4.247712px;}
._8_c00176{width:5.688000px;}
._7_c00176{width:7.272000px;}
._9_c00176{width:8.435952px;}
._f_c00176{width:10.236024px;}
._d_c00176{width:11.795976px;}
._5_c00176{width:12.911904px;}
._2_c00176{width:14.052024px;}
._4_c00176{width:15.803880px;}
._a_c00176{width:16.896600px;}
._10_c00176{width:23.124000px;}
._11_c00176{width:24.456000px;}
._12_c00176{width:25.884000px;}
._c_c00176{width:37.332888px;}
._b_c00176{width:38.603856px;}
.fc0_c00176{color:rgb(0,0,0);}
.fs3_c00176{font-size:38.880000px;}
.fs1_c00176{font-size:47.520000px;}
.fs2_c00176{font-size:60.480000px;}
.fs0_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y3_c00176{bottom:4.320000px;}
.y5_c00176{bottom:25.200000px;}
.y4_c00176{bottom:32.040000px;}
.y1_c00176{bottom:57.240000px;}
.y2b_c00176{bottom:151.590000px;}
.y2a_c00176{bottom:168.870000px;}
.y29_c00176{bottom:186.150000px;}
.y28_c00176{bottom:203.430000px;}
.y27_c00176{bottom:220.710000px;}
.y26_c00176{bottom:227.550000px;}
.y25_c00176{bottom:238.035000px;}
.y24_c00176{bottom:255.315000px;}
.y23_c00176{bottom:272.595000px;}
.y22_c00176{bottom:279.435000px;}
.y21_c00176{bottom:290.235000px;}
.y20_c00176{bottom:336.675000px;}
.y1f_c00176{bottom:367.665000px;}
.y1d_c00176{bottom:398.625000px;}
.y1e_c00176{bottom:406.905000px;}
.y1c_c00176{bottom:429.585000px;}
.y1b_c00176{bottom:460.905000px;}
.y1a_c00176{bottom:491.910000px;}
.y19_c00176{bottom:522.870000px;}
.y18_c00176{bottom:553.830000px;}
.y17_c00176{bottom:585.150000px;}
.y16_c00176{bottom:616.140000px;}
.y15_c00176{bottom:647.100000px;}
.y14_c00176{bottom:678.060000px;}
.y13_c00176{bottom:709.380000px;}
.y12_c00176{bottom:740.370000px;}
.y11_c00176{bottom:771.330000px;}
.y10_c00176{bottom:809.130000px;}
.yf_c00176{bottom:835.050000px;}
.ye_c00176{bottom:870.015000px;}
.yd_c00176{bottom:904.935000px;}
.yc_c00176{bottom:939.495000px;}
.yb_c00176{bottom:976.965000px;}
.ya_c00176{bottom:1016.925000px;}
.y8_c00176{bottom:1056.885000px;}
.y9_c00176{bottom:1065.165000px;}
.y7_c00176{bottom:1087.890000px;}
.y6_c00176{bottom:1119.210000px;}
.y2_c00176{bottom:1189.050000px;}
.h3_c00176{height:20.550000px;}
.ha_c00176{height:34.855313px;}
.h4_c00176{height:41.395500px;}
.h7_c00176{height:46.638281px;}
.hb_c00176{height:54.219375px;}
.h9_c00176{height:59.328281px;}
.h8_c00176{height:59.357813px;}
.h2_c00176{height:64.546875px;}
.h5_c00176{height:70.664062px;}
.h6_c00176{height:1262.875500px;}
.h0_c00176{height:1262.880000px;}
.h1_c00176{height:1263.000000px;}
.w2_c00176{width:8.310000px;}
.w3_c00176{width:638.190000px;}
.w4_c00176{width:893.157000px;}
.w0_c00176{width:893.160000px;}
.w1_c00176{width:893.250000px;}
.x0_c00176{left:0.000000px;}
.x3_c00176{left:127.489500px;}
.xb_c00176{left:142.632000px;}
.x1_c00176{left:154.515000px;}
.x6_c00176{left:168.195000px;}
.x7_c00176{left:169.995000px;}
.x8_c00176{left:176.472000px;}
.x9_c00176{left:194.835000px;}
.x4_c00176{left:201.312000px;}
.x5_c00176{left:219.675000px;}
.xa_c00176{left:343.590000px;}
.x2_c00176{left:757.365000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls6_c00176{letter-spacing:-1.152000pt;}
.ls3_c00176{letter-spacing:0.000000pt;}
.ls5_c00176{letter-spacing:0.020267pt;}
.ls4_c00176{letter-spacing:0.432533pt;}
.ls1_c00176{letter-spacing:0.448000pt;}
.ls2_c00176{letter-spacing:0.450560pt;}
.ls0_c00176{letter-spacing:0.640000pt;}
.ws1_c00176{word-spacing:-64.000000pt;}
.ws3_c00176{word-spacing:-53.760000pt;}
.ws5_c00176{word-spacing:-16.448000pt;}
.ws0_c00176{word-spacing:-16.000000pt;}
.ws2_c00176{word-spacing:-13.872533pt;}
.ws4_c00176{word-spacing:-13.440000pt;}
.ws6_c00176{word-spacing:0.000000pt;}
._1_c00176{margin-left:-2.432000pt;}
._3_c00176{margin-left:-0.960000pt;}
._0_c00176{width:1.600000pt;}
._6_c00176{width:2.624128pt;}
._e_c00176{width:3.775744pt;}
._8_c00176{width:5.056000pt;}
._7_c00176{width:6.464000pt;}
._9_c00176{width:7.498624pt;}
._f_c00176{width:9.098688pt;}
._d_c00176{width:10.485312pt;}
._5_c00176{width:11.477248pt;}
._2_c00176{width:12.490688pt;}
._4_c00176{width:14.047893pt;}
._a_c00176{width:15.019200pt;}
._10_c00176{width:20.554667pt;}
._11_c00176{width:21.738667pt;}
._12_c00176{width:23.008000pt;}
._c_c00176{width:33.184789pt;}
._b_c00176{width:34.314539pt;}
.fs3_c00176{font-size:34.560000pt;}
.fs1_c00176{font-size:42.240000pt;}
.fs2_c00176{font-size:53.760000pt;}
.fs0_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y3_c00176{bottom:3.840000pt;}
.y5_c00176{bottom:22.400000pt;}
.y4_c00176{bottom:28.480000pt;}
.y1_c00176{bottom:50.880000pt;}
.y2b_c00176{bottom:134.746667pt;}
.y2a_c00176{bottom:150.106667pt;}
.y29_c00176{bottom:165.466667pt;}
.y28_c00176{bottom:180.826667pt;}
.y27_c00176{bottom:196.186667pt;}
.y26_c00176{bottom:202.266667pt;}
.y25_c00176{bottom:211.586667pt;}
.y24_c00176{bottom:226.946667pt;}
.y23_c00176{bottom:242.306667pt;}
.y22_c00176{bottom:248.386667pt;}
.y21_c00176{bottom:257.986667pt;}
.y20_c00176{bottom:299.266667pt;}
.y1f_c00176{bottom:326.813333pt;}
.y1d_c00176{bottom:354.333333pt;}
.y1e_c00176{bottom:361.693333pt;}
.y1c_c00176{bottom:381.853333pt;}
.y1b_c00176{bottom:409.693333pt;}
.y1a_c00176{bottom:437.253333pt;}
.y19_c00176{bottom:464.773333pt;}
.y18_c00176{bottom:492.293333pt;}
.y17_c00176{bottom:520.133333pt;}
.y16_c00176{bottom:547.680000pt;}
.y15_c00176{bottom:575.200000pt;}
.y14_c00176{bottom:602.720000pt;}
.y13_c00176{bottom:630.560000pt;}
.y12_c00176{bottom:658.106667pt;}
.y11_c00176{bottom:685.626667pt;}
.y10_c00176{bottom:719.226667pt;}
.yf_c00176{bottom:742.266667pt;}
.ye_c00176{bottom:773.346667pt;}
.yd_c00176{bottom:804.386667pt;}
.yc_c00176{bottom:835.106667pt;}
.yb_c00176{bottom:868.413333pt;}
.ya_c00176{bottom:903.933333pt;}
.y8_c00176{bottom:939.453333pt;}
.y9_c00176{bottom:946.813333pt;}
.y7_c00176{bottom:967.013333pt;}
.y6_c00176{bottom:994.853333pt;}
.y2_c00176{bottom:1056.933333pt;}
.h3_c00176{height:18.266667pt;}
.ha_c00176{height:30.982500pt;}
.h4_c00176{height:36.796000pt;}
.h7_c00176{height:41.456250pt;}
.hb_c00176{height:48.195000pt;}
.h9_c00176{height:52.736250pt;}
.h8_c00176{height:52.762500pt;}
.h2_c00176{height:57.375000pt;}
.h5_c00176{height:62.812500pt;}
.h6_c00176{height:1122.556000pt;}
.h0_c00176{height:1122.560000pt;}
.h1_c00176{height:1122.666667pt;}
.w2_c00176{width:7.386667pt;}
.w3_c00176{width:567.280000pt;}
.w4_c00176{width:793.917333pt;}
.w0_c00176{width:793.920000pt;}
.w1_c00176{width:794.000000pt;}
.x0_c00176{left:0.000000pt;}
.x3_c00176{left:113.324000pt;}
.xb_c00176{left:126.784000pt;}
.x1_c00176{left:137.346667pt;}
.x6_c00176{left:149.506667pt;}
.x7_c00176{left:151.106667pt;}
.x8_c00176{left:156.864000pt;}
.x9_c00176{left:173.186667pt;}
.x4_c00176{left:178.944000pt;}
.x5_c00176{left:195.266667pt;}
.xa_c00176{left:305.413333pt;}
.x2_c00176{left:673.213333pt;}
}





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

.ir_c00177:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00177;src:url('chunks/assets/font_85b340ffbc6381d6bf7836a1.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_81f061ad7c58a331ce82b0b8.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_cb059ac2e81ef889e1d98c22.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_b3d86ee0eccfb43d80b16a01.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_fc0a39acab5d70de3bc0cc87.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;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_c00177;src:url('chunks/assets/font_a2ce21b9a0d8706aa25a9509.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;line-height:1.104004;font-style:normal;font-weight: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_c00177;src:url('chunks/assets/font_b5f314a899cca1ab1bbcbf07.woff2')format("woff");}.ff7_c00177{font-family:ff7_c00177;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.lsb_c00177{letter-spacing:-0.532800px;}
.lsf_c00177{letter-spacing:-0.466800px;}
.ls9_c00177{letter-spacing:0.000000px;}
.lsd_c00177{letter-spacing:0.022800px;}
.ls1_c00177{letter-spacing:0.120000px;}
.lsa_c00177{letter-spacing:0.166800px;}
.ls5_c00177{letter-spacing:0.518400px;}
.lsc_c00177{letter-spacing:0.521400px;}
.lse_c00177{letter-spacing:0.702000px;}
.ls2_c00177{letter-spacing:0.720000px;}
.ls3_c00177{letter-spacing:0.728640px;}
.ls4_c00177{letter-spacing:0.900000px;}
.ls0_c00177{letter-spacing:1.440000px;}
.ls7_c00177{letter-spacing:2.160000px;}
.ls6_c00177{letter-spacing:22.320000px;}
.ls8_c00177{letter-spacing:56.880000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00177{word-spacing:-60.480000px;}
.ws0_c00177{word-spacing:-18.000000px;}
.ws4_c00177{word-spacing:-15.822000px;}
.ws3_c00177{word-spacing:-15.641400px;}
.ws2_c00177{word-spacing:-15.286800px;}
.ws1_c00177{word-spacing:-15.120000px;}
.ws6_c00177{word-spacing:-14.653200px;}
.ws7_c00177{word-spacing:0.000000px;}
._1_c00177{margin-left:-2.736000px;}
._4_c00177{margin-left:-1.008000px;}
._0_c00177{width:1.512000px;}
._2_c00177{width:2.664000px;}
._a_c00177{width:4.200000px;}
._d_c00177{width:6.120000px;}
._13_c00177{width:8.064000px;}
._12_c00177{width:9.648000px;}
._8_c00177{width:10.687219px;}
._7_c00177{width:12.579598px;}
._3_c00177{width:15.912000px;}
._10_c00177{width:20.124000px;}
._e_c00177{width:21.240000px;}
._f_c00177{width:22.308000px;}
._b_c00177{width:24.624000px;}
._c_c00177{width:25.848000px;}
._5_c00177{width:29.520000px;}
._6_c00177{width:30.600000px;}
._9_c00177{width:33.600000px;}
._11_c00177{width:55.524024px;}
.fc1_c00177{color:rgb(255,0,0);}
.fc0_c00177{color:rgb(0,0,0);}
.fs3_c00177{font-size:38.880000px;}
.fs1_c00177{font-size:47.520000px;}
.fs2_c00177{font-size:60.480000px;}
.fs0_c00177{font-size:72.000000px;}
.y0_c00177{bottom:0.000000px;}
.y3_c00177{bottom:4.320000px;}
.y5_c00177{bottom:25.200000px;}
.y4_c00177{bottom:32.040000px;}
.y1_c00177{bottom:57.240000px;}
.y26_c00177{bottom:151.590000px;}
.y25_c00177{bottom:158.430000px;}
.y24_c00177{bottom:169.590000px;}
.y23_c00177{bottom:205.950000px;}
.y22_c00177{bottom:236.955000px;}
.y21_c00177{bottom:268.275000px;}
.y20_c00177{bottom:299.235000px;}
.y1f_c00177{bottom:330.195000px;}
.y1e_c00177{bottom:361.185000px;}
.y1d_c00177{bottom:392.505000px;}
.y1c_c00177{bottom:432.465000px;}
.y1b_c00177{bottom:463.425000px;}
.y1a_c00177{bottom:494.430000px;}
.y19_c00177{bottom:525.750000px;}
.y18_c00177{bottom:556.710000px;}
.y17_c00177{bottom:587.670000px;}
.y16_c00177{bottom:618.660000px;}
.y15_c00177{bottom:649.980000px;}
.y14_c00177{bottom:680.940000px;}
.y13_c00177{bottom:718.770000px;}
.y12_c00177{bottom:744.690000px;}
.y11_c00177{bottom:770.250000px;}
.y10_c00177{bottom:805.170000px;}
.yf_c00177{bottom:840.090000px;}
.ye_c00177{bottom:875.055000px;}
.yd_c00177{bottom:909.975000px;}
.yc_c00177{bottom:944.895000px;}
.yb_c00177{bottom:979.845000px;}
.ya_c00177{bottom:1016.925000px;}
.y9_c00177{bottom:1056.885000px;}
.y7_c00177{bottom:1087.890000px;}
.y8_c00177{bottom:1096.170000px;}
.y6_c00177{bottom:1119.210000px;}
.y2_c00177{bottom:1189.050000px;}
.h3_c00177{height:20.550000px;}
.ha_c00177{height:34.855313px;}
.h4_c00177{height:41.395500px;}
.h7_c00177{height:46.638281px;}
.hb_c00177{height:54.514688px;}
.h9_c00177{height:59.328281px;}
.h8_c00177{height:59.357813px;}
.h2_c00177{height:64.546875px;}
.h5_c00177{height:70.664062px;}
.h6_c00177{height:1262.875500px;}
.h0_c00177{height:1262.880000px;}
.h1_c00177{height:1263.000000px;}
.w2_c00177{width:8.310000px;}
.w3_c00177{width:638.190000px;}
.w4_c00177{width:893.157000px;}
.w0_c00177{width:893.160000px;}
.w1_c00177{width:893.250000px;}
.x0_c00177{left:0.000000px;}
.x3_c00177{left:127.489500px;}
.x7_c00177{left:141.192000px;}
.x9_c00177{left:142.632000px;}
.x1_c00177{left:154.515000px;}
.x6_c00177{left:169.995000px;}
.x4_c00177{left:173.592000px;}
.x5_c00177{left:191.955000px;}
.x8_c00177{left:343.590000px;}
.x2_c00177{left:757.365000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.lsb_c00177{letter-spacing:-0.473600pt;}
.lsf_c00177{letter-spacing:-0.414933pt;}
.ls9_c00177{letter-spacing:0.000000pt;}
.lsd_c00177{letter-spacing:0.020267pt;}
.ls1_c00177{letter-spacing:0.106667pt;}
.lsa_c00177{letter-spacing:0.148267pt;}
.ls5_c00177{letter-spacing:0.460800pt;}
.lsc_c00177{letter-spacing:0.463467pt;}
.lse_c00177{letter-spacing:0.624000pt;}
.ls2_c00177{letter-spacing:0.640000pt;}
.ls3_c00177{letter-spacing:0.647680pt;}
.ls4_c00177{letter-spacing:0.800000pt;}
.ls0_c00177{letter-spacing:1.280000pt;}
.ls7_c00177{letter-spacing:1.920000pt;}
.ls6_c00177{letter-spacing:19.840000pt;}
.ls8_c00177{letter-spacing:50.560000pt;}
.ws5_c00177{word-spacing:-53.760000pt;}
.ws0_c00177{word-spacing:-16.000000pt;}
.ws4_c00177{word-spacing:-14.064000pt;}
.ws3_c00177{word-spacing:-13.903467pt;}
.ws2_c00177{word-spacing:-13.588267pt;}
.ws1_c00177{word-spacing:-13.440000pt;}
.ws6_c00177{word-spacing:-13.025067pt;}
.ws7_c00177{word-spacing:0.000000pt;}
._1_c00177{margin-left:-2.432000pt;}
._4_c00177{margin-left:-0.896000pt;}
._0_c00177{width:1.344000pt;}
._2_c00177{width:2.368000pt;}
._a_c00177{width:3.733333pt;}
._d_c00177{width:5.440000pt;}
._13_c00177{width:7.168000pt;}
._12_c00177{width:8.576000pt;}
._8_c00177{width:9.499750pt;}
._7_c00177{width:11.181865pt;}
._3_c00177{width:14.144000pt;}
._10_c00177{width:17.888000pt;}
._e_c00177{width:18.880000pt;}
._f_c00177{width:19.829333pt;}
._b_c00177{width:21.888000pt;}
._c_c00177{width:22.976000pt;}
._5_c00177{width:26.240000pt;}
._6_c00177{width:27.200000pt;}
._9_c00177{width:29.866667pt;}
._11_c00177{width:49.354688pt;}
.fs3_c00177{font-size:34.560000pt;}
.fs1_c00177{font-size:42.240000pt;}
.fs2_c00177{font-size:53.760000pt;}
.fs0_c00177{font-size:64.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y3_c00177{bottom:3.840000pt;}
.y5_c00177{bottom:22.400000pt;}
.y4_c00177{bottom:28.480000pt;}
.y1_c00177{bottom:50.880000pt;}
.y26_c00177{bottom:134.746667pt;}
.y25_c00177{bottom:140.826667pt;}
.y24_c00177{bottom:150.746667pt;}
.y23_c00177{bottom:183.066667pt;}
.y22_c00177{bottom:210.626667pt;}
.y21_c00177{bottom:238.466667pt;}
.y20_c00177{bottom:265.986667pt;}
.y1f_c00177{bottom:293.506667pt;}
.y1e_c00177{bottom:321.053333pt;}
.y1d_c00177{bottom:348.893333pt;}
.y1c_c00177{bottom:384.413333pt;}
.y1b_c00177{bottom:411.933333pt;}
.y1a_c00177{bottom:439.493333pt;}
.y19_c00177{bottom:467.333333pt;}
.y18_c00177{bottom:494.853333pt;}
.y17_c00177{bottom:522.373333pt;}
.y16_c00177{bottom:549.920000pt;}
.y15_c00177{bottom:577.760000pt;}
.y14_c00177{bottom:605.280000pt;}
.y13_c00177{bottom:638.906667pt;}
.y12_c00177{bottom:661.946667pt;}
.y11_c00177{bottom:684.666667pt;}
.y10_c00177{bottom:715.706667pt;}
.yf_c00177{bottom:746.746667pt;}
.ye_c00177{bottom:777.826667pt;}
.yd_c00177{bottom:808.866667pt;}
.yc_c00177{bottom:839.906667pt;}
.yb_c00177{bottom:870.973333pt;}
.ya_c00177{bottom:903.933333pt;}
.y9_c00177{bottom:939.453333pt;}
.y7_c00177{bottom:967.013333pt;}
.y8_c00177{bottom:974.373333pt;}
.y6_c00177{bottom:994.853333pt;}
.y2_c00177{bottom:1056.933333pt;}
.h3_c00177{height:18.266667pt;}
.ha_c00177{height:30.982500pt;}
.h4_c00177{height:36.796000pt;}
.h7_c00177{height:41.456250pt;}
.hb_c00177{height:48.457500pt;}
.h9_c00177{height:52.736250pt;}
.h8_c00177{height:52.762500pt;}
.h2_c00177{height:57.375000pt;}
.h5_c00177{height:62.812500pt;}
.h6_c00177{height:1122.556000pt;}
.h0_c00177{height:1122.560000pt;}
.h1_c00177{height:1122.666667pt;}
.w2_c00177{width:7.386667pt;}
.w3_c00177{width:567.280000pt;}
.w4_c00177{width:793.917333pt;}
.w0_c00177{width:793.920000pt;}
.w1_c00177{width:794.000000pt;}
.x0_c00177{left:0.000000pt;}
.x3_c00177{left:113.324000pt;}
.x7_c00177{left:125.504000pt;}
.x9_c00177{left:126.784000pt;}
.x1_c00177{left:137.346667pt;}
.x6_c00177{left:151.106667pt;}
.x4_c00177{left:154.304000pt;}
.x5_c00177{left:170.626667pt;}
.x8_c00177{left:305.413333pt;}
.x2_c00177{left:673.213333pt;}
}





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

.ir_c00178:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00178;src:url('chunks/assets/font_084be2c58b5f331a600966a3.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_60fa6722e72311c2ffb50db9.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_e0fd1b0f478db5046c749a2e.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_372030dea2adefb31eacd8cb.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;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_c00178;src:url('chunks/assets/font_e76cade96e30a78b7abb9111.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00178;src:url('chunks/assets/font_f39fb9a2a029ce6485a33501.woff2')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:1.104004;font-style:normal;font-weight: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_c00178;src:url('chunks/assets/font_50e64b4e15e5b20a9cd30248.woff2')format("woff");}.ff7_c00178{font-family:ff7_c00178;line-height:1.311035;font-style:normal;font-weight: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_c00178;src:url('chunks/assets/font_b24ae66676d8b35e83e2c67a.woff2')format("woff");}.ff8_c00178{font-family:ff8_c00178;line-height:1.112305;font-style:normal;font-weight: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_c00178;src:url('chunks/assets/font_ad0ec9bab6ff47613d1faf9a.woff2')format("woff");}.ff9_c00178{font-family:ff9_c00178;line-height:1.117188;font-style:normal;font-weight: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_c00178;src:url('chunks/assets/font_f84c3c2771d8d1314c3af18c.woff2')format("woff");}.ffa_c00178{font-family:ffa_c00178;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.lsd_c00178{letter-spacing:-1.416000px;}
.ls10_c00178{letter-spacing:-1.392000px;}
.lse_c00178{letter-spacing:-0.936000px;}
.lsf_c00178{letter-spacing:-0.241800px;}
.ls9_c00178{letter-spacing:0.000000px;}
.lsc_c00178{letter-spacing:0.022800px;}
.ls6_c00178{letter-spacing:0.048960px;}
.lsa_c00178{letter-spacing:0.166800px;}
.ls4_c00178{letter-spacing:0.504000px;}
.lsb_c00178{letter-spacing:0.521400px;}
.ls2_c00178{letter-spacing:0.576000px;}
.ls5_c00178{letter-spacing:0.720000px;}
.ls1_c00178{letter-spacing:2.160000px;}
.ls8_c00178{letter-spacing:9.360000px;}
.ls7_c00178{letter-spacing:10.820256px;}
.ls0_c00178{letter-spacing:15.120000px;}
.ls3_c00178{letter-spacing:38.160000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00178{word-spacing:-60.480000px;}
.ws0_c00178{word-spacing:-18.000000px;}
.ws3_c00178{word-spacing:-15.641400px;}
.ws2_c00178{word-spacing:-15.286800px;}
.ws1_c00178{word-spacing:-15.120000px;}
.ws6_c00178{word-spacing:-14.878200px;}
.ws5_c00178{word-spacing:-14.184000px;}
.ws7_c00178{word-spacing:-13.728000px;}
.ws8_c00178{word-spacing:0.000000px;}
._3_c00178{margin-left:-3.011976px;}
._1_c00178{margin-left:-1.296000px;}
._2_c00178{width:1.080000px;}
._4_c00178{width:2.808000px;}
._6_c00178{width:4.223952px;}
._7_c00178{width:5.544000px;}
._11_c00178{width:7.102201px;}
._10_c00178{width:8.832577px;}
._f_c00178{width:10.816796px;}
._e_c00178{width:12.217202px;}
._d_c00178{width:13.403952px;}
._9_c00178{width:14.616000px;}
._8_c00178{width:15.755976px;}
._a_c00178{width:16.859904px;}
._c_c00178{width:19.944000px;}
._0_c00178{width:24.192000px;}
._5_c00178{width:25.331976px;}
._b_c00178{width:37.296000px;}
.fc0_c00178{color:rgb(0,0,0);}
.fs3_c00178{font-size:38.880000px;}
.fs1_c00178{font-size:47.520000px;}
.fs2_c00178{font-size:60.480000px;}
.fs0_c00178{font-size:72.000000px;}
.y0_c00178{bottom:0.000000px;}
.y3_c00178{bottom:4.320000px;}
.y5_c00178{bottom:25.200000px;}
.y4_c00178{bottom:32.040000px;}
.y1_c00178{bottom:57.240000px;}
.y2d_c00178{bottom:151.590000px;}
.y2c_c00178{bottom:168.870000px;}
.y2b_c00178{bottom:186.150000px;}
.y2a_c00178{bottom:203.430000px;}
.y29_c00178{bottom:220.710000px;}
.y28_c00178{bottom:238.035000px;}
.y27_c00178{bottom:244.875000px;}
.y26_c00178{bottom:255.315000px;}
.y25_c00178{bottom:272.595000px;}
.y24_c00178{bottom:289.875000px;}
.y23_c00178{bottom:307.155000px;}
.y22_c00178{bottom:324.435000px;}
.y21_c00178{bottom:341.355000px;}
.y20_c00178{bottom:358.665000px;}
.y1f_c00178{bottom:365.505000px;}
.y1e_c00178{bottom:376.665000px;}
.y1d_c00178{bottom:422.385000px;}
.y1c_c00178{bottom:448.305000px;}
.y1b_c00178{bottom:474.225000px;}
.y1a_c00178{bottom:509.190000px;}
.y19_c00178{bottom:544.110000px;}
.y18_c00178{bottom:579.030000px;}
.y17_c00178{bottom:613.620000px;}
.y15_c00178{bottom:648.540000px;}
.y16_c00178{bottom:655.380000px;}
.y14_c00178{bottom:683.460000px;}
.y13_c00178{bottom:718.380000px;}
.y12_c00178{bottom:753.330000px;}
.y11_c00178{bottom:790.410000px;}
.yf_c00178{bottom:830.370000px;}
.y10_c00178{bottom:838.650000px;}
.ye_c00178{bottom:861.735000px;}
.yd_c00178{bottom:892.695000px;}
.yc_c00178{bottom:923.655000px;}
.yb_c00178{bottom:954.615000px;}
.ya_c00178{bottom:994.965000px;}
.y9_c00178{bottom:1025.925000px;}
.y8_c00178{bottom:1056.885000px;}
.y7_c00178{bottom:1087.890000px;}
.y6_c00178{bottom:1119.210000px;}
.y2_c00178{bottom:1189.050000px;}
.h3_c00178{height:20.550000px;}
.hc_c00178{height:34.855313px;}
.h9_c00178{height:39.183750px;}
.h4_c00178{height:41.395500px;}
.h7_c00178{height:46.638281px;}
.hd_c00178{height:54.219375px;}
.he_c00178{height:54.514688px;}
.hb_c00178{height:59.328281px;}
.h8_c00178{height:59.357813px;}
.ha_c00178{height:60.952500px;}
.h2_c00178{height:64.546875px;}
.h5_c00178{height:70.664062px;}
.h6_c00178{height:1262.875500px;}
.h0_c00178{height:1262.880000px;}
.h1_c00178{height:1263.000000px;}
.w2_c00178{width:8.310000px;}
.w3_c00178{width:638.190000px;}
.w4_c00178{width:893.157000px;}
.w0_c00178{width:893.160000px;}
.w1_c00178{width:893.250000px;}
.x0_c00178{left:0.000000px;}
.x3_c00178{left:127.489500px;}
.xa_c00178{left:142.632000px;}
.x1_c00178{left:154.515000px;}
.x4_c00178{left:169.995000px;}
.x5_c00178{left:197.352000px;}
.x6_c00178{left:215.715000px;}
.x7_c00178{left:334.947000px;}
.x9_c00178{left:343.590000px;}
.x8_c00178{left:350.070000px;}
.x2_c00178{left:757.365000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.lsd_c00178{letter-spacing:-1.258667pt;}
.ls10_c00178{letter-spacing:-1.237333pt;}
.lse_c00178{letter-spacing:-0.832000pt;}
.lsf_c00178{letter-spacing:-0.214933pt;}
.ls9_c00178{letter-spacing:0.000000pt;}
.lsc_c00178{letter-spacing:0.020267pt;}
.ls6_c00178{letter-spacing:0.043520pt;}
.lsa_c00178{letter-spacing:0.148267pt;}
.ls4_c00178{letter-spacing:0.448000pt;}
.lsb_c00178{letter-spacing:0.463467pt;}
.ls2_c00178{letter-spacing:0.512000pt;}
.ls5_c00178{letter-spacing:0.640000pt;}
.ls1_c00178{letter-spacing:1.920000pt;}
.ls8_c00178{letter-spacing:8.320000pt;}
.ls7_c00178{letter-spacing:9.618005pt;}
.ls0_c00178{letter-spacing:13.440000pt;}
.ls3_c00178{letter-spacing:33.920000pt;}
.ws4_c00178{word-spacing:-53.760000pt;}
.ws0_c00178{word-spacing:-16.000000pt;}
.ws3_c00178{word-spacing:-13.903467pt;}
.ws2_c00178{word-spacing:-13.588267pt;}
.ws1_c00178{word-spacing:-13.440000pt;}
.ws6_c00178{word-spacing:-13.225067pt;}
.ws5_c00178{word-spacing:-12.608000pt;}
.ws7_c00178{word-spacing:-12.202667pt;}
.ws8_c00178{word-spacing:0.000000pt;}
._3_c00178{margin-left:-2.677312pt;}
._1_c00178{margin-left:-1.152000pt;}
._2_c00178{width:0.960000pt;}
._4_c00178{width:2.496000pt;}
._6_c00178{width:3.754624pt;}
._7_c00178{width:4.928000pt;}
._11_c00178{width:6.313068pt;}
._10_c00178{width:7.851180pt;}
._f_c00178{width:9.614930pt;}
._e_c00178{width:10.859735pt;}
._d_c00178{width:11.914624pt;}
._9_c00178{width:12.992000pt;}
._8_c00178{width:14.005312pt;}
._a_c00178{width:14.986581pt;}
._c_c00178{width:17.728000pt;}
._0_c00178{width:21.504000pt;}
._5_c00178{width:22.517312pt;}
._b_c00178{width:33.152000pt;}
.fs3_c00178{font-size:34.560000pt;}
.fs1_c00178{font-size:42.240000pt;}
.fs2_c00178{font-size:53.760000pt;}
.fs0_c00178{font-size:64.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y3_c00178{bottom:3.840000pt;}
.y5_c00178{bottom:22.400000pt;}
.y4_c00178{bottom:28.480000pt;}
.y1_c00178{bottom:50.880000pt;}
.y2d_c00178{bottom:134.746667pt;}
.y2c_c00178{bottom:150.106667pt;}
.y2b_c00178{bottom:165.466667pt;}
.y2a_c00178{bottom:180.826667pt;}
.y29_c00178{bottom:196.186667pt;}
.y28_c00178{bottom:211.586667pt;}
.y27_c00178{bottom:217.666667pt;}
.y26_c00178{bottom:226.946667pt;}
.y25_c00178{bottom:242.306667pt;}
.y24_c00178{bottom:257.666667pt;}
.y23_c00178{bottom:273.026667pt;}
.y22_c00178{bottom:288.386667pt;}
.y21_c00178{bottom:303.426667pt;}
.y20_c00178{bottom:318.813333pt;}
.y1f_c00178{bottom:324.893333pt;}
.y1e_c00178{bottom:334.813333pt;}
.y1d_c00178{bottom:375.453333pt;}
.y1c_c00178{bottom:398.493333pt;}
.y1b_c00178{bottom:421.533333pt;}
.y1a_c00178{bottom:452.613333pt;}
.y19_c00178{bottom:483.653333pt;}
.y18_c00178{bottom:514.693333pt;}
.y17_c00178{bottom:545.440000pt;}
.y15_c00178{bottom:576.480000pt;}
.y16_c00178{bottom:582.560000pt;}
.y14_c00178{bottom:607.520000pt;}
.y13_c00178{bottom:638.560000pt;}
.y12_c00178{bottom:669.626667pt;}
.y11_c00178{bottom:702.586667pt;}
.yf_c00178{bottom:738.106667pt;}
.y10_c00178{bottom:745.466667pt;}
.ye_c00178{bottom:765.986667pt;}
.yd_c00178{bottom:793.506667pt;}
.yc_c00178{bottom:821.026667pt;}
.yb_c00178{bottom:848.546667pt;}
.ya_c00178{bottom:884.413333pt;}
.y9_c00178{bottom:911.933333pt;}
.y8_c00178{bottom:939.453333pt;}
.y7_c00178{bottom:967.013333pt;}
.y6_c00178{bottom:994.853333pt;}
.y2_c00178{bottom:1056.933333pt;}
.h3_c00178{height:18.266667pt;}
.hc_c00178{height:30.982500pt;}
.h9_c00178{height:34.830000pt;}
.h4_c00178{height:36.796000pt;}
.h7_c00178{height:41.456250pt;}
.hd_c00178{height:48.195000pt;}
.he_c00178{height:48.457500pt;}
.hb_c00178{height:52.736250pt;}
.h8_c00178{height:52.762500pt;}
.ha_c00178{height:54.180000pt;}
.h2_c00178{height:57.375000pt;}
.h5_c00178{height:62.812500pt;}
.h6_c00178{height:1122.556000pt;}
.h0_c00178{height:1122.560000pt;}
.h1_c00178{height:1122.666667pt;}
.w2_c00178{width:7.386667pt;}
.w3_c00178{width:567.280000pt;}
.w4_c00178{width:793.917333pt;}
.w0_c00178{width:793.920000pt;}
.w1_c00178{width:794.000000pt;}
.x0_c00178{left:0.000000pt;}
.x3_c00178{left:113.324000pt;}
.xa_c00178{left:126.784000pt;}
.x1_c00178{left:137.346667pt;}
.x4_c00178{left:151.106667pt;}
.x5_c00178{left:175.424000pt;}
.x6_c00178{left:191.746667pt;}
.x7_c00178{left:297.730667pt;}
.x9_c00178{left:305.413333pt;}
.x8_c00178{left:311.173333pt;}
.x2_c00178{left:673.213333pt;}
}





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

.ir_c00179:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00179;src:url('chunks/assets/font_5912e2ddbe37377ef597ae0c.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_1c273b004fb5652ea0f91d83.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_7ccf840e77dba3f762105be7.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_a0e12ce20cbbc84d072ed243.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00179;src:url('chunks/assets/font_1e70821eb7fa6f991bb89e60.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00179;src:url('chunks/assets/font_a3cfe2f632c3fcd45383b189.woff2')format("woff");}.ff6_c00179{font-family:ff6_c00179;line-height:1.104004;font-style:normal;font-weight: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_c00179;src:url('chunks/assets/font_2815cb83cd9518934a7650db.woff2')format("woff");}.ff7_c00179{font-family:ff7_c00179;line-height:1.311035;font-style:normal;font-weight: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_c00179;src:url('chunks/assets/font_2031069bc7b14b455b317bc3.woff2')format("woff");}.ff8_c00179{font-family:ff8_c00179;line-height:1.112305;font-style:normal;font-weight: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_c00179;src:url('chunks/assets/font_7933bf01d0279af409f58bfd.woff2')format("woff");}.ff9_c00179{font-family:ff9_c00179;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls8_c00179{letter-spacing:-0.532800px;}
.ls9_c00179{letter-spacing:-0.337200px;}
.ls6_c00179{letter-spacing:-0.288000px;}
.ls7_c00179{letter-spacing:-0.075000px;}
.ls5_c00179{letter-spacing:0.000000px;}
.ls4_c00179{letter-spacing:0.020400px;}
.ls0_c00179{letter-spacing:0.720000px;}
.ls3_c00179{letter-spacing:2.160000px;}
.ls1_c00179{letter-spacing:18.000000px;}
.ls2_c00179{letter-spacing:22.320000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00179{word-spacing:-60.480000px;}
.ws0_c00179{word-spacing:-18.000000px;}
.ws1_c00179{word-spacing:-17.712000px;}
.ws5_c00179{word-spacing:-15.140400px;}
.ws2_c00179{word-spacing:-15.120000px;}
.ws6_c00179{word-spacing:-14.782800px;}
.ws4_c00179{word-spacing:-14.587200px;}
.ws7_c00179{word-spacing:0.000000px;}
._12_c00179{margin-left:-3.240000px;}
._2_c00179{margin-left:-2.230200px;}
._0_c00179{margin-left:-1.028402px;}
._1_c00179{width:1.089003px;}
._3_c00179{width:2.497824px;}
._8_c00179{width:3.595833px;}
._7_c00179{width:4.649391px;}
._f_c00179{width:5.708402px;}
._e_c00179{width:6.921003px;}
._c_c00179{width:7.981197px;}
._10_c00179{width:9.031139px;}
._d_c00179{width:10.039775px;}
._4_c00179{width:11.448000px;}
._6_c00179{width:12.471540px;}
._5_c00179{width:13.475399px;}
._11_c00179{width:16.391350px;}
._9_c00179{width:19.080000px;}
._a_c00179{width:22.484402px;}
._b_c00179{width:24.196188px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs3_c00179{font-size:38.880000px;}
.fs2_c00179{font-size:47.520000px;}
.fs1_c00179{font-size:60.480000px;}
.fs0_c00179{font-size:72.000000px;}
.y0_c00179{bottom:0.000000px;}
.y3_c00179{bottom:4.320000px;}
.y5_c00179{bottom:25.200000px;}
.y4_c00179{bottom:32.040000px;}
.y1_c00179{bottom:57.240000px;}
.y2d_c00179{bottom:151.590000px;}
.y2c_c00179{bottom:168.870000px;}
.y2b_c00179{bottom:186.150000px;}
.y2a_c00179{bottom:203.430000px;}
.y29_c00179{bottom:220.710000px;}
.y28_c00179{bottom:238.035000px;}
.y27_c00179{bottom:255.315000px;}
.y26_c00179{bottom:262.155000px;}
.y25_c00179{bottom:272.595000px;}
.y24_c00179{bottom:289.875000px;}
.y23_c00179{bottom:307.155000px;}
.y22_c00179{bottom:324.435000px;}
.y21_c00179{bottom:341.355000px;}
.y20_c00179{bottom:348.195000px;}
.y1f_c00179{bottom:359.385000px;}
.y1e_c00179{bottom:409.065000px;}
.y1c_c00179{bottom:443.985000px;}
.y1d_c00179{bottom:450.825000px;}
.y1b_c00179{bottom:478.950000px;}
.y1a_c00179{bottom:516.030000px;}
.y19_c00179{bottom:556.350000px;}
.y18_c00179{bottom:587.310000px;}
.y17_c00179{bottom:618.300000px;}
.y16_c00179{bottom:649.260000px;}
.y15_c00179{bottom:680.580000px;}
.y14_c00179{bottom:711.540000px;}
.y13_c00179{bottom:742.530000px;}
.y12_c00179{bottom:773.490000px;}
.y11_c00179{bottom:804.810000px;}
.y10_c00179{bottom:835.770000px;}
.yf_c00179{bottom:866.775000px;}
.ye_c00179{bottom:897.735000px;}
.yd_c00179{bottom:929.055000px;}
.yc_c00179{bottom:960.015000px;}
.yb_c00179{bottom:991.005000px;}
.ya_c00179{bottom:1021.965000px;}
.y8_c00179{bottom:1053.285000px;}
.y9_c00179{bottom:1061.565000px;}
.y7_c00179{bottom:1084.290000px;}
.y6_c00179{bottom:1122.090000px;}
.y2_c00179{bottom:1189.050000px;}
.h3_c00179{height:20.550000px;}
.hc_c00179{height:34.855313px;}
.hb_c00179{height:39.183750px;}
.h4_c00179{height:41.395500px;}
.h8_c00179{height:46.638281px;}
.hd_c00179{height:54.219375px;}
.ha_c00179{height:54.514688px;}
.h5_c00179{height:59.328281px;}
.h9_c00179{height:59.357813px;}
.h2_c00179{height:64.546875px;}
.h6_c00179{height:70.664062px;}
.h7_c00179{height:1262.875500px;}
.h0_c00179{height:1262.880000px;}
.h1_c00179{height:1263.000000px;}
.w2_c00179{width:8.310000px;}
.w3_c00179{width:638.190000px;}
.w4_c00179{width:893.157000px;}
.w0_c00179{width:893.160000px;}
.w1_c00179{width:893.250000px;}
.x0_c00179{left:0.000000px;}
.x3_c00179{left:127.489500px;}
.xa_c00179{left:142.632000px;}
.x1_c00179{left:154.515000px;}
.x4_c00179{left:169.995000px;}
.x9_c00179{left:343.590000px;}
.x7_c00179{left:401.217000px;}
.x8_c00179{left:416.340000px;}
.x5_c00179{left:506.727000px;}
.x6_c00179{left:525.090000px;}
.x2_c00179{left:757.365000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls8_c00179{letter-spacing:-0.473600pt;}
.ls9_c00179{letter-spacing:-0.299733pt;}
.ls6_c00179{letter-spacing:-0.256000pt;}
.ls7_c00179{letter-spacing:-0.066667pt;}
.ls5_c00179{letter-spacing:0.000000pt;}
.ls4_c00179{letter-spacing:0.018133pt;}
.ls0_c00179{letter-spacing:0.640000pt;}
.ls3_c00179{letter-spacing:1.920000pt;}
.ls1_c00179{letter-spacing:16.000000pt;}
.ls2_c00179{letter-spacing:19.840000pt;}
.ws3_c00179{word-spacing:-53.760000pt;}
.ws0_c00179{word-spacing:-16.000000pt;}
.ws1_c00179{word-spacing:-15.744000pt;}
.ws5_c00179{word-spacing:-13.458133pt;}
.ws2_c00179{word-spacing:-13.440000pt;}
.ws6_c00179{word-spacing:-13.140267pt;}
.ws4_c00179{word-spacing:-12.966400pt;}
.ws7_c00179{word-spacing:0.000000pt;}
._12_c00179{margin-left:-2.880000pt;}
._2_c00179{margin-left:-1.982400pt;}
._0_c00179{margin-left:-0.914135pt;}
._1_c00179{width:0.968003pt;}
._3_c00179{width:2.220288pt;}
._8_c00179{width:3.196296pt;}
._7_c00179{width:4.132792pt;}
._f_c00179{width:5.074135pt;}
._e_c00179{width:6.152003pt;}
._c_c00179{width:7.094397pt;}
._10_c00179{width:8.027679pt;}
._d_c00179{width:8.924244pt;}
._4_c00179{width:10.176000pt;}
._6_c00179{width:11.085813pt;}
._5_c00179{width:11.978132pt;}
._11_c00179{width:14.570089pt;}
._9_c00179{width:16.960000pt;}
._a_c00179{width:19.986135pt;}
._b_c00179{width:21.507722pt;}
.fs3_c00179{font-size:34.560000pt;}
.fs2_c00179{font-size:42.240000pt;}
.fs1_c00179{font-size:53.760000pt;}
.fs0_c00179{font-size:64.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y3_c00179{bottom:3.840000pt;}
.y5_c00179{bottom:22.400000pt;}
.y4_c00179{bottom:28.480000pt;}
.y1_c00179{bottom:50.880000pt;}
.y2d_c00179{bottom:134.746667pt;}
.y2c_c00179{bottom:150.106667pt;}
.y2b_c00179{bottom:165.466667pt;}
.y2a_c00179{bottom:180.826667pt;}
.y29_c00179{bottom:196.186667pt;}
.y28_c00179{bottom:211.586667pt;}
.y27_c00179{bottom:226.946667pt;}
.y26_c00179{bottom:233.026667pt;}
.y25_c00179{bottom:242.306667pt;}
.y24_c00179{bottom:257.666667pt;}
.y23_c00179{bottom:273.026667pt;}
.y22_c00179{bottom:288.386667pt;}
.y21_c00179{bottom:303.426667pt;}
.y20_c00179{bottom:309.506667pt;}
.y1f_c00179{bottom:319.453333pt;}
.y1e_c00179{bottom:363.613333pt;}
.y1c_c00179{bottom:394.653333pt;}
.y1d_c00179{bottom:400.733333pt;}
.y1b_c00179{bottom:425.733333pt;}
.y1a_c00179{bottom:458.693333pt;}
.y19_c00179{bottom:494.533333pt;}
.y18_c00179{bottom:522.053333pt;}
.y17_c00179{bottom:549.600000pt;}
.y16_c00179{bottom:577.120000pt;}
.y15_c00179{bottom:604.960000pt;}
.y14_c00179{bottom:632.480000pt;}
.y13_c00179{bottom:660.026667pt;}
.y12_c00179{bottom:687.546667pt;}
.y11_c00179{bottom:715.386667pt;}
.y10_c00179{bottom:742.906667pt;}
.yf_c00179{bottom:770.466667pt;}
.ye_c00179{bottom:797.986667pt;}
.yd_c00179{bottom:825.826667pt;}
.yc_c00179{bottom:853.346667pt;}
.yb_c00179{bottom:880.893333pt;}
.ya_c00179{bottom:908.413333pt;}
.y8_c00179{bottom:936.253333pt;}
.y9_c00179{bottom:943.613333pt;}
.y7_c00179{bottom:963.813333pt;}
.y6_c00179{bottom:997.413333pt;}
.y2_c00179{bottom:1056.933333pt;}
.h3_c00179{height:18.266667pt;}
.hc_c00179{height:30.982500pt;}
.hb_c00179{height:34.830000pt;}
.h4_c00179{height:36.796000pt;}
.h8_c00179{height:41.456250pt;}
.hd_c00179{height:48.195000pt;}
.ha_c00179{height:48.457500pt;}
.h5_c00179{height:52.736250pt;}
.h9_c00179{height:52.762500pt;}
.h2_c00179{height:57.375000pt;}
.h6_c00179{height:62.812500pt;}
.h7_c00179{height:1122.556000pt;}
.h0_c00179{height:1122.560000pt;}
.h1_c00179{height:1122.666667pt;}
.w2_c00179{width:7.386667pt;}
.w3_c00179{width:567.280000pt;}
.w4_c00179{width:793.917333pt;}
.w0_c00179{width:793.920000pt;}
.w1_c00179{width:794.000000pt;}
.x0_c00179{left:0.000000pt;}
.x3_c00179{left:113.324000pt;}
.xa_c00179{left:126.784000pt;}
.x1_c00179{left:137.346667pt;}
.x4_c00179{left:151.106667pt;}
.x9_c00179{left:305.413333pt;}
.x7_c00179{left:356.637333pt;}
.x8_c00179{left:370.080000pt;}
.x5_c00179{left:450.424000pt;}
.x6_c00179{left:466.746667pt;}
.x2_c00179{left:673.213333pt;}
}





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

.ir_c00180:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00180;src:url('chunks/assets/font_96f7f95ad50b61d15557340d.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_61d62e18f3c08a00ccf4c289.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_b9d4714363115b91d96ad80d.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_f48bb6df5fc7ece656bf03b7.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_c1b0a7519095f123488a1617.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00180;src:url('chunks/assets/font_4366241b91143c79c889c4ad.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:1.104004;font-style:normal;font-weight: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_c00180;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00180{font-family:ff7_c00180;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.lsb_c00180{letter-spacing:-0.912000px;}
.ls7_c00180{letter-spacing:-0.864000px;}
.lsa_c00180{letter-spacing:-0.532800px;}
.ls9_c00180{letter-spacing:-0.288000px;}
.lsc_c00180{letter-spacing:-0.241800px;}
.ls5_c00180{letter-spacing:0.000000px;}
.ls8_c00180{letter-spacing:0.219000px;}
.ls6_c00180{letter-spacing:0.288000px;}
.ls2_c00180{letter-spacing:0.648000px;}
.ls4_c00180{letter-spacing:0.696740px;}
.ls0_c00180{letter-spacing:0.720000px;}
.ls1_c00180{letter-spacing:7.920000px;}
.ls3_c00180{letter-spacing:18.000000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:-72.000000px;}
.ws4_c00180{word-spacing:-60.699000px;}
.ws3_c00180{word-spacing:-60.480000px;}
.ws1_c00180{word-spacing:-18.000000px;}
.ws5_c00180{word-spacing:-17.712000px;}
.ws2_c00180{word-spacing:-15.120000px;}
.ws6_c00180{word-spacing:-14.878200px;}
.ws7_c00180{word-spacing:0.000000px;}
._6_c00180{margin-left:-3.254386px;}
._1_c00180{margin-left:-2.053780px;}
._0_c00180{margin-left:-1.028402px;}
._2_c00180{width:1.207181px;}
._3_c00180{width:2.380795px;}
._a_c00180{width:3.677936px;}
._10_c00180{width:5.332306px;}
._b_c00180{width:8.295002px;}
._c_c00180{width:9.679205px;}
._d_c00180{width:10.846210px;}
._11_c00180{width:11.880000px;}
._5_c00180{width:12.998434px;}
._4_c00180{width:14.398764px;}
._7_c00180{width:15.999607px;}
._9_c00180{width:20.059834px;}
._8_c00180{width:21.061198px;}
._e_c00180{width:29.727608px;}
._f_c00180{width:31.518599px;}
.fc0_c00180{color:rgb(0,0,0);}
.fs1_c00180{font-size:60.480000px;}
.fs0_c00180{font-size:72.000000px;}
.y0_c00180{bottom:0.000000px;}
.y3_c00180{bottom:4.320000px;}
.y5_c00180{bottom:25.200000px;}
.y4_c00180{bottom:32.040000px;}
.y1_c00180{bottom:57.240000px;}
.y23_c00180{bottom:159.870000px;}
.y22_c00180{bottom:185.790000px;}
.y21_c00180{bottom:220.710000px;}
.y20_c00180{bottom:255.675000px;}
.y1f_c00180{bottom:290.235000px;}
.y1e_c00180{bottom:327.675000px;}
.y1d_c00180{bottom:367.665000px;}
.y1c_c00180{bottom:398.625000px;}
.y1b_c00180{bottom:429.585000px;}
.y1a_c00180{bottom:460.905000px;}
.y19_c00180{bottom:491.910000px;}
.y18_c00180{bottom:522.870000px;}
.y17_c00180{bottom:553.830000px;}
.y16_c00180{bottom:585.150000px;}
.y15_c00180{bottom:616.140000px;}
.y14_c00180{bottom:653.940000px;}
.y13_c00180{bottom:688.860000px;}
.y12_c00180{bottom:723.450000px;}
.y11_c00180{bottom:758.370000px;}
.y10_c00180{bottom:795.810000px;}
.yf_c00180{bottom:835.770000px;}
.ye_c00180{bottom:866.775000px;}
.yd_c00180{bottom:897.735000px;}
.yc_c00180{bottom:929.055000px;}
.yb_c00180{bottom:960.015000px;}
.ya_c00180{bottom:991.005000px;}
.y9_c00180{bottom:1021.965000px;}
.y8_c00180{bottom:1053.285000px;}
.y7_c00180{bottom:1084.290000px;}
.y6_c00180{bottom:1122.090000px;}
.y2_c00180{bottom:1189.050000px;}
.h3_c00180{height:20.550000px;}
.h4_c00180{height:41.395500px;}
.h5_c00180{height:59.328281px;}
.h7_c00180{height:59.357813px;}
.h8_c00180{height:60.952500px;}
.h2_c00180{height:64.546875px;}
.h6_c00180{height:70.664062px;}
.h0_c00180{height:1262.880000px;}
.h1_c00180{height:1263.000000px;}
.w2_c00180{width:8.310000px;}
.w3_c00180{width:638.190000px;}
.w0_c00180{width:893.160000px;}
.w1_c00180{width:893.250000px;}
.x0_c00180{left:0.000000px;}
.x3_c00180{left:127.489500px;}
.x1_c00180{left:154.515000px;}
.x4_c00180{left:169.995000px;}
.x2_c00180{left:757.365000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.lsb_c00180{letter-spacing:-0.810667pt;}
.ls7_c00180{letter-spacing:-0.768000pt;}
.lsa_c00180{letter-spacing:-0.473600pt;}
.ls9_c00180{letter-spacing:-0.256000pt;}
.lsc_c00180{letter-spacing:-0.214933pt;}
.ls5_c00180{letter-spacing:0.000000pt;}
.ls8_c00180{letter-spacing:0.194667pt;}
.ls6_c00180{letter-spacing:0.256000pt;}
.ls2_c00180{letter-spacing:0.576000pt;}
.ls4_c00180{letter-spacing:0.619325pt;}
.ls0_c00180{letter-spacing:0.640000pt;}
.ls1_c00180{letter-spacing:7.040000pt;}
.ls3_c00180{letter-spacing:16.000000pt;}
.ws0_c00180{word-spacing:-64.000000pt;}
.ws4_c00180{word-spacing:-53.954667pt;}
.ws3_c00180{word-spacing:-53.760000pt;}
.ws1_c00180{word-spacing:-16.000000pt;}
.ws5_c00180{word-spacing:-15.744000pt;}
.ws2_c00180{word-spacing:-13.440000pt;}
.ws6_c00180{word-spacing:-13.225067pt;}
.ws7_c00180{word-spacing:0.000000pt;}
._6_c00180{margin-left:-2.892787pt;}
._1_c00180{margin-left:-1.825582pt;}
._0_c00180{margin-left:-0.914135pt;}
._2_c00180{width:1.073050pt;}
._3_c00180{width:2.116262pt;}
._a_c00180{width:3.269276pt;}
._10_c00180{width:4.739827pt;}
._b_c00180{width:7.373335pt;}
._c_c00180{width:8.603738pt;}
._d_c00180{width:9.641075pt;}
._11_c00180{width:10.560000pt;}
._5_c00180{width:11.554163pt;}
._4_c00180{width:12.798902pt;}
._7_c00180{width:14.221873pt;}
._9_c00180{width:17.830963pt;}
._8_c00180{width:18.721065pt;}
._e_c00180{width:26.424540pt;}
._f_c00180{width:28.016532pt;}
.fs1_c00180{font-size:53.760000pt;}
.fs0_c00180{font-size:64.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y3_c00180{bottom:3.840000pt;}
.y5_c00180{bottom:22.400000pt;}
.y4_c00180{bottom:28.480000pt;}
.y1_c00180{bottom:50.880000pt;}
.y23_c00180{bottom:142.106667pt;}
.y22_c00180{bottom:165.146667pt;}
.y21_c00180{bottom:196.186667pt;}
.y20_c00180{bottom:227.266667pt;}
.y1f_c00180{bottom:257.986667pt;}
.y1e_c00180{bottom:291.266667pt;}
.y1d_c00180{bottom:326.813333pt;}
.y1c_c00180{bottom:354.333333pt;}
.y1b_c00180{bottom:381.853333pt;}
.y1a_c00180{bottom:409.693333pt;}
.y19_c00180{bottom:437.253333pt;}
.y18_c00180{bottom:464.773333pt;}
.y17_c00180{bottom:492.293333pt;}
.y16_c00180{bottom:520.133333pt;}
.y15_c00180{bottom:547.680000pt;}
.y14_c00180{bottom:581.280000pt;}
.y13_c00180{bottom:612.320000pt;}
.y12_c00180{bottom:643.066667pt;}
.y11_c00180{bottom:674.106667pt;}
.y10_c00180{bottom:707.386667pt;}
.yf_c00180{bottom:742.906667pt;}
.ye_c00180{bottom:770.466667pt;}
.yd_c00180{bottom:797.986667pt;}
.yc_c00180{bottom:825.826667pt;}
.yb_c00180{bottom:853.346667pt;}
.ya_c00180{bottom:880.893333pt;}
.y9_c00180{bottom:908.413333pt;}
.y8_c00180{bottom:936.253333pt;}
.y7_c00180{bottom:963.813333pt;}
.y6_c00180{bottom:997.413333pt;}
.y2_c00180{bottom:1056.933333pt;}
.h3_c00180{height:18.266667pt;}
.h4_c00180{height:36.796000pt;}
.h5_c00180{height:52.736250pt;}
.h7_c00180{height:52.762500pt;}
.h8_c00180{height:54.180000pt;}
.h2_c00180{height:57.375000pt;}
.h6_c00180{height:62.812500pt;}
.h0_c00180{height:1122.560000pt;}
.h1_c00180{height:1122.666667pt;}
.w2_c00180{width:7.386667pt;}
.w3_c00180{width:567.280000pt;}
.w0_c00180{width:793.920000pt;}
.w1_c00180{width:794.000000pt;}
.x0_c00180{left:0.000000pt;}
.x3_c00180{left:113.324000pt;}
.x1_c00180{left:137.346667pt;}
.x4_c00180{left:151.106667pt;}
.x2_c00180{left:673.213333pt;}
}





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

.ir_c00181:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00181;src:url('chunks/assets/font_dfb58ab3f338a7c2a20ea325.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_b99e05bcd24f84816cfff64c.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_26d0b8062b7162e597060185.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;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_c00181;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00181;src:url('chunks/assets/font_399b8065d7a662aa5ecc423e.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00181;src:url('chunks/assets/font_c92928076e82595d58ea9fa5.woff2')format("woff");}.ff6_c00181{font-family:ff6_c00181;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls4_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:0.144000px;}
.ls1_c00181{letter-spacing:0.720000px;}
.ls2_c00181{letter-spacing:2.160000px;}
.ls3_c00181{letter-spacing:12.240000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00181{word-spacing:-72.000000px;}
.ws2_c00181{word-spacing:-61.200000px;}
.ws0_c00181{word-spacing:-18.000000px;}
.ws3_c00181{word-spacing:0.000000px;}
._e_c00181{margin-left:-3.240000px;}
._0_c00181{margin-left:-2.088000px;}
._4_c00181{margin-left:-1.008000px;}
._2_c00181{width:1.008000px;}
._1_c00181{width:2.088000px;}
._3_c00181{width:3.240000px;}
._f_c00181{width:4.248000px;}
._b_c00181{width:6.108000px;}
._10_c00181{width:7.260000px;}
._8_c00181{width:8.724024px;}
._a_c00181{width:10.139976px;}
._9_c00181{width:11.327904px;}
._16_c00181{width:12.660336px;}
._d_c00181{width:14.724000px;}
._c_c00181{width:15.996000px;}
._15_c00181{width:20.520000px;}
._14_c00181{width:21.600000px;}
._13_c00181{width:23.112000px;}
._7_c00181{width:24.264000px;}
._5_c00181{width:25.632000px;}
._6_c00181{width:27.000000px;}
._11_c00181{width:28.296000px;}
._12_c00181{width:29.724000px;}
.fc0_c00181{color:rgb(0,0,0);}
.fs2_c00181{font-size:38.880000px;}
.fs1_c00181{font-size:47.520000px;}
.fs3_c00181{font-size:60.480000px;}
.fs0_c00181{font-size:72.000000px;}
.y0_c00181{bottom:0.000000px;}
.y3_c00181{bottom:4.320000px;}
.y5_c00181{bottom:25.200000px;}
.y4_c00181{bottom:32.040000px;}
.y1_c00181{bottom:57.240000px;}
.y32_c00181{bottom:151.590000px;}
.y31_c00181{bottom:168.870000px;}
.y30_c00181{bottom:186.150000px;}
.y2f_c00181{bottom:203.430000px;}
.y2e_c00181{bottom:220.710000px;}
.y2d_c00181{bottom:238.035000px;}
.y2c_c00181{bottom:255.315000px;}
.y2b_c00181{bottom:272.595000px;}
.y2a_c00181{bottom:289.875000px;}
.y29_c00181{bottom:307.155000px;}
.y28_c00181{bottom:313.995000px;}
.y27_c00181{bottom:324.435000px;}
.y26_c00181{bottom:341.355000px;}
.y25_c00181{bottom:358.665000px;}
.y24_c00181{bottom:375.945000px;}
.y23_c00181{bottom:382.785000px;}
.y22_c00181{bottom:393.225000px;}
.y21_c00181{bottom:410.505000px;}
.y20_c00181{bottom:427.785000px;}
.y1f_c00181{bottom:445.065000px;}
.y1e_c00181{bottom:451.905000px;}
.y1d_c00181{bottom:462.705000px;}
.y1c_c00181{bottom:492.990000px;}
.y1b_c00181{bottom:532.950000px;}
.y1a_c00181{bottom:563.910000px;}
.y19_c00181{bottom:604.260000px;}
.y17_c00181{bottom:644.220000px;}
.y18_c00181{bottom:652.500000px;}
.y16_c00181{bottom:675.180000px;}
.y15_c00181{bottom:706.140000px;}
.y13_c00181{bottom:746.490000px;}
.y14_c00181{bottom:754.770000px;}
.y12_c00181{bottom:777.450000px;}
.y11_c00181{bottom:808.410000px;}
.y10_c00181{bottom:839.370000px;}
.yf_c00181{bottom:870.735000px;}
.ye_c00181{bottom:901.695000px;}
.yd_c00181{bottom:932.655000px;}
.yc_c00181{bottom:963.645000px;}
.yb_c00181{bottom:994.965000px;}
.ya_c00181{bottom:1025.925000px;}
.y9_c00181{bottom:1056.885000px;}
.y8_c00181{bottom:1087.890000px;}
.y6_c00181{bottom:1119.210000px;}
.y7_c00181{bottom:1127.490000px;}
.y2_c00181{bottom:1189.050000px;}
.h3_c00181{height:20.550000px;}
.h9_c00181{height:34.855313px;}
.h4_c00181{height:41.395500px;}
.h7_c00181{height:46.638281px;}
.ha_c00181{height:54.219375px;}
.hb_c00181{height:59.357813px;}
.h2_c00181{height:64.546875px;}
.h8_c00181{height:70.628906px;}
.h5_c00181{height:70.664062px;}
.h6_c00181{height:1262.875500px;}
.h0_c00181{height:1262.880000px;}
.h1_c00181{height:1263.000000px;}
.w2_c00181{width:8.310000px;}
.w3_c00181{width:638.190000px;}
.w4_c00181{width:893.157000px;}
.w0_c00181{width:893.160000px;}
.w1_c00181{width:893.250000px;}
.x0_c00181{left:0.000000px;}
.x3_c00181{left:127.489500px;}
.xd_c00181{left:142.632000px;}
.x1_c00181{left:154.515000px;}
.x4_c00181{left:169.995000px;}
.xb_c00181{left:178.635000px;}
.x7_c00181{left:239.142000px;}
.x8_c00181{left:257.505000px;}
.xc_c00181{left:343.590000px;}
.x5_c00181{left:354.027000px;}
.x9_c00181{left:356.907000px;}
.x6_c00181{left:372.390000px;}
.xa_c00181{left:375.270000px;}
.x2_c00181{left:757.365000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls4_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:0.128000pt;}
.ls1_c00181{letter-spacing:0.640000pt;}
.ls2_c00181{letter-spacing:1.920000pt;}
.ls3_c00181{letter-spacing:10.880000pt;}
.ws1_c00181{word-spacing:-64.000000pt;}
.ws2_c00181{word-spacing:-54.400000pt;}
.ws0_c00181{word-spacing:-16.000000pt;}
.ws3_c00181{word-spacing:0.000000pt;}
._e_c00181{margin-left:-2.880000pt;}
._0_c00181{margin-left:-1.856000pt;}
._4_c00181{margin-left:-0.896000pt;}
._2_c00181{width:0.896000pt;}
._1_c00181{width:1.856000pt;}
._3_c00181{width:2.880000pt;}
._f_c00181{width:3.776000pt;}
._b_c00181{width:5.429333pt;}
._10_c00181{width:6.453333pt;}
._8_c00181{width:7.754688pt;}
._a_c00181{width:9.013312pt;}
._9_c00181{width:10.069248pt;}
._16_c00181{width:11.253632pt;}
._d_c00181{width:13.088000pt;}
._c_c00181{width:14.218667pt;}
._15_c00181{width:18.240000pt;}
._14_c00181{width:19.200000pt;}
._13_c00181{width:20.544000pt;}
._7_c00181{width:21.568000pt;}
._5_c00181{width:22.784000pt;}
._6_c00181{width:24.000000pt;}
._11_c00181{width:25.152000pt;}
._12_c00181{width:26.421333pt;}
.fs2_c00181{font-size:34.560000pt;}
.fs1_c00181{font-size:42.240000pt;}
.fs3_c00181{font-size:53.760000pt;}
.fs0_c00181{font-size:64.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y3_c00181{bottom:3.840000pt;}
.y5_c00181{bottom:22.400000pt;}
.y4_c00181{bottom:28.480000pt;}
.y1_c00181{bottom:50.880000pt;}
.y32_c00181{bottom:134.746667pt;}
.y31_c00181{bottom:150.106667pt;}
.y30_c00181{bottom:165.466667pt;}
.y2f_c00181{bottom:180.826667pt;}
.y2e_c00181{bottom:196.186667pt;}
.y2d_c00181{bottom:211.586667pt;}
.y2c_c00181{bottom:226.946667pt;}
.y2b_c00181{bottom:242.306667pt;}
.y2a_c00181{bottom:257.666667pt;}
.y29_c00181{bottom:273.026667pt;}
.y28_c00181{bottom:279.106667pt;}
.y27_c00181{bottom:288.386667pt;}
.y26_c00181{bottom:303.426667pt;}
.y25_c00181{bottom:318.813333pt;}
.y24_c00181{bottom:334.173333pt;}
.y23_c00181{bottom:340.253333pt;}
.y22_c00181{bottom:349.533333pt;}
.y21_c00181{bottom:364.893333pt;}
.y20_c00181{bottom:380.253333pt;}
.y1f_c00181{bottom:395.613333pt;}
.y1e_c00181{bottom:401.693333pt;}
.y1d_c00181{bottom:411.293333pt;}
.y1c_c00181{bottom:438.213333pt;}
.y1b_c00181{bottom:473.733333pt;}
.y1a_c00181{bottom:501.253333pt;}
.y19_c00181{bottom:537.120000pt;}
.y17_c00181{bottom:572.640000pt;}
.y18_c00181{bottom:580.000000pt;}
.y16_c00181{bottom:600.160000pt;}
.y15_c00181{bottom:627.680000pt;}
.y13_c00181{bottom:663.546667pt;}
.y14_c00181{bottom:670.906667pt;}
.y12_c00181{bottom:691.066667pt;}
.y11_c00181{bottom:718.586667pt;}
.y10_c00181{bottom:746.106667pt;}
.yf_c00181{bottom:773.986667pt;}
.ye_c00181{bottom:801.506667pt;}
.yd_c00181{bottom:829.026667pt;}
.yc_c00181{bottom:856.573333pt;}
.yb_c00181{bottom:884.413333pt;}
.ya_c00181{bottom:911.933333pt;}
.y9_c00181{bottom:939.453333pt;}
.y8_c00181{bottom:967.013333pt;}
.y6_c00181{bottom:994.853333pt;}
.y7_c00181{bottom:1002.213333pt;}
.y2_c00181{bottom:1056.933333pt;}
.h3_c00181{height:18.266667pt;}
.h9_c00181{height:30.982500pt;}
.h4_c00181{height:36.796000pt;}
.h7_c00181{height:41.456250pt;}
.ha_c00181{height:48.195000pt;}
.hb_c00181{height:52.762500pt;}
.h2_c00181{height:57.375000pt;}
.h8_c00181{height:62.781250pt;}
.h5_c00181{height:62.812500pt;}
.h6_c00181{height:1122.556000pt;}
.h0_c00181{height:1122.560000pt;}
.h1_c00181{height:1122.666667pt;}
.w2_c00181{width:7.386667pt;}
.w3_c00181{width:567.280000pt;}
.w4_c00181{width:793.917333pt;}
.w0_c00181{width:793.920000pt;}
.w1_c00181{width:794.000000pt;}
.x0_c00181{left:0.000000pt;}
.x3_c00181{left:113.324000pt;}
.xd_c00181{left:126.784000pt;}
.x1_c00181{left:137.346667pt;}
.x4_c00181{left:151.106667pt;}
.xb_c00181{left:158.786667pt;}
.x7_c00181{left:212.570667pt;}
.x8_c00181{left:228.893333pt;}
.xc_c00181{left:305.413333pt;}
.x5_c00181{left:314.690667pt;}
.x9_c00181{left:317.250667pt;}
.x6_c00181{left:331.013333pt;}
.xa_c00181{left:333.573333pt;}
.x2_c00181{left:673.213333pt;}
}





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

.ir_c00182:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00182;src:url('chunks/assets/font_455fdb239e80d477fb6cf471.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_81b9fe0b3efe57b57dfe571b.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_348e2157b9fb5743dbc35953.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;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_c00182;src:url('chunks/assets/font_9655162821935200996f6268.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00182;src:url('chunks/assets/font_1d5553a2f57ad629ddad492e.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00182;src:url('chunks/assets/font_87021b5e6cede3843c7576b9.woff2')format("woff");}.ff6_c00182{font-family:ff6_c00182;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.v1_c00182{vertical-align:27.360000px;}
.ls6_c00182{letter-spacing:-0.864000px;}
.ls5_c00182{letter-spacing:-0.648000px;}
.ls7_c00182{letter-spacing:-0.288000px;}
.ls4_c00182{letter-spacing:0.000000px;}
.ls3_c00182{letter-spacing:0.504000px;}
.ls1_c00182{letter-spacing:0.720000px;}
.ls8_c00182{letter-spacing:1.152000px;}
.ls2_c00182{letter-spacing:2.160000px;}
.ls0_c00182{letter-spacing:20.880000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00182{word-spacing:-73.152000px;}
.ws3_c00182{word-spacing:-72.000000px;}
.ws0_c00182{word-spacing:-18.000000px;}
.ws1_c00182{word-spacing:-15.120000px;}
.ws4_c00182{word-spacing:0.000000px;}
._5_c00182{margin-left:-3.168000px;}
._0_c00182{margin-left:-1.872000px;}
._1_c00182{width:1.512000px;}
._4_c00182{width:3.024000px;}
._e_c00182{width:4.320000px;}
._d_c00182{width:6.552000px;}
._2_c00182{width:7.560000px;}
._3_c00182{width:8.568000px;}
._7_c00182{width:9.864000px;}
._a_c00182{width:11.448000px;}
._b_c00182{width:12.888000px;}
._12_c00182{width:14.208000px;}
._c_c00182{width:15.252000px;}
._6_c00182{width:16.332000px;}
._f_c00182{width:20.436000px;}
._8_c00182{width:27.936000px;}
._9_c00182{width:29.880000px;}
._11_c00182{width:31.776000px;}
._10_c00182{width:33.204000px;}
.fc0_c00182{color:rgb(0,0,0);}
.fs2_c00182{font-size:38.880000px;}
.fs1_c00182{font-size:60.480000px;}
.fs0_c00182{font-size:72.000000px;}
.y0_c00182{bottom:0.000000px;}
.y3_c00182{bottom:4.320000px;}
.yd_c00182{bottom:21.225000px;}
.y12_c00182{bottom:21.585000px;}
.y10_c00182{bottom:21.630000px;}
.y5_c00182{bottom:25.200000px;}
.y4_c00182{bottom:32.040000px;}
.ye_c00182{bottom:38.865000px;}
.yc_c00182{bottom:56.145000px;}
.y1_c00182{bottom:57.240000px;}
.y27_c00182{bottom:151.590000px;}
.y26_c00182{bottom:158.430000px;}
.y25_c00182{bottom:169.590000px;}
.y24_c00182{bottom:218.190000px;}
.y23_c00182{bottom:249.195000px;}
.y22_c00182{bottom:280.515000px;}
.y21_c00182{bottom:311.475000px;}
.y20_c00182{bottom:342.435000px;}
.y1f_c00182{bottom:373.425000px;}
.y1e_c00182{bottom:404.745000px;}
.y1d_c00182{bottom:444.705000px;}
.y1c_c00182{bottom:475.710000px;}
.y1b_c00182{bottom:506.670000px;}
.y1a_c00182{bottom:537.990000px;}
.y19_c00182{bottom:568.950000px;}
.y18_c00182{bottom:599.940000px;}
.y17_c00182{bottom:630.900000px;}
.y16_c00182{bottom:662.220000px;}
.y15_c00182{bottom:693.180000px;}
.y14_c00182{bottom:724.170000px;}
.y13_c00182{bottom:764.130000px;}
.y11_c00182{bottom:790.785000px;}
.yf_c00182{bottom:836.145000px;}
.yb_c00182{bottom:881.910000px;}
.ya_c00182{bottom:985.965000px;}
.y9_c00182{bottom:1025.925000px;}
.y8_c00182{bottom:1056.885000px;}
.y7_c00182{bottom:1087.890000px;}
.y6_c00182{bottom:1119.210000px;}
.y2_c00182{bottom:1189.050000px;}
.h3_c00182{height:20.550000px;}
.hd_c00182{height:38.158594px;}
.h4_c00182{height:41.395500px;}
.hb_c00182{height:43.905000px;}
.h9_c00182{height:43.941000px;}
.h8_c00182{height:59.357813px;}
.h2_c00182{height:64.546875px;}
.ha_c00182{height:65.518594px;}
.h6_c00182{height:70.628906px;}
.h5_c00182{height:70.664062px;}
.h7_c00182{height:78.465000px;}
.hc_c00182{height:1262.875500px;}
.h0_c00182{height:1262.880000px;}
.h1_c00182{height:1263.000000px;}
.w2_c00182{width:8.310000px;}
.w7_c00182{width:126.381000px;}
.w5_c00182{width:126.390000px;}
.w4_c00182{width:126.405000px;}
.w6_c00182{width:126.432000px;}
.w3_c00182{width:638.190000px;}
.w8_c00182{width:893.157000px;}
.w0_c00182{width:893.160000px;}
.w1_c00182{width:893.250000px;}
.x0_c00182{left:0.000000px;}
.x5_c00182{left:9.382500px;}
.x6_c00182{left:15.502500px;}
.xf_c00182{left:30.240000px;}
.x10_c00182{left:32.070000px;}
.x13_c00182{left:36.705000px;}
.xc_c00182{left:39.945000px;}
.x12_c00182{left:45.720000px;}
.x8_c00182{left:47.880000px;}
.x11_c00182{left:55.455000px;}
.xa_c00182{left:59.430000px;}
.xe_c00182{left:63.025500px;}
.x3_c00182{left:127.489500px;}
.x15_c00182{left:142.632000px;}
.x1_c00182{left:154.515000px;}
.x4_c00182{left:178.635000px;}
.x7_c00182{left:255.705000px;}
.x14_c00182{left:343.590000px;}
.x9_c00182{left:383.550000px;}
.xb_c00182{left:511.425000px;}
.xd_c00182{left:639.270000px;}
.x2_c00182{left:757.365000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.v1_c00182{vertical-align:24.320000pt;}
.ls6_c00182{letter-spacing:-0.768000pt;}
.ls5_c00182{letter-spacing:-0.576000pt;}
.ls7_c00182{letter-spacing:-0.256000pt;}
.ls4_c00182{letter-spacing:0.000000pt;}
.ls3_c00182{letter-spacing:0.448000pt;}
.ls1_c00182{letter-spacing:0.640000pt;}
.ls8_c00182{letter-spacing:1.024000pt;}
.ls2_c00182{letter-spacing:1.920000pt;}
.ls0_c00182{letter-spacing:18.560000pt;}
.ws2_c00182{word-spacing:-65.024000pt;}
.ws3_c00182{word-spacing:-64.000000pt;}
.ws0_c00182{word-spacing:-16.000000pt;}
.ws1_c00182{word-spacing:-13.440000pt;}
.ws4_c00182{word-spacing:0.000000pt;}
._5_c00182{margin-left:-2.816000pt;}
._0_c00182{margin-left:-1.664000pt;}
._1_c00182{width:1.344000pt;}
._4_c00182{width:2.688000pt;}
._e_c00182{width:3.840000pt;}
._d_c00182{width:5.824000pt;}
._2_c00182{width:6.720000pt;}
._3_c00182{width:7.616000pt;}
._7_c00182{width:8.768000pt;}
._a_c00182{width:10.176000pt;}
._b_c00182{width:11.456000pt;}
._12_c00182{width:12.629333pt;}
._c_c00182{width:13.557333pt;}
._6_c00182{width:14.517333pt;}
._f_c00182{width:18.165333pt;}
._8_c00182{width:24.832000pt;}
._9_c00182{width:26.560000pt;}
._11_c00182{width:28.245333pt;}
._10_c00182{width:29.514667pt;}
.fs2_c00182{font-size:34.560000pt;}
.fs1_c00182{font-size:53.760000pt;}
.fs0_c00182{font-size:64.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y3_c00182{bottom:3.840000pt;}
.yd_c00182{bottom:18.866667pt;}
.y12_c00182{bottom:19.186667pt;}
.y10_c00182{bottom:19.226667pt;}
.y5_c00182{bottom:22.400000pt;}
.y4_c00182{bottom:28.480000pt;}
.ye_c00182{bottom:34.546667pt;}
.yc_c00182{bottom:49.906667pt;}
.y1_c00182{bottom:50.880000pt;}
.y27_c00182{bottom:134.746667pt;}
.y26_c00182{bottom:140.826667pt;}
.y25_c00182{bottom:150.746667pt;}
.y24_c00182{bottom:193.946667pt;}
.y23_c00182{bottom:221.506667pt;}
.y22_c00182{bottom:249.346667pt;}
.y21_c00182{bottom:276.866667pt;}
.y20_c00182{bottom:304.386667pt;}
.y1f_c00182{bottom:331.933333pt;}
.y1e_c00182{bottom:359.773333pt;}
.y1d_c00182{bottom:395.293333pt;}
.y1c_c00182{bottom:422.853333pt;}
.y1b_c00182{bottom:450.373333pt;}
.y1a_c00182{bottom:478.213333pt;}
.y19_c00182{bottom:505.733333pt;}
.y18_c00182{bottom:533.280000pt;}
.y17_c00182{bottom:560.800000pt;}
.y16_c00182{bottom:588.640000pt;}
.y15_c00182{bottom:616.160000pt;}
.y14_c00182{bottom:643.706667pt;}
.y13_c00182{bottom:679.226667pt;}
.y11_c00182{bottom:702.920000pt;}
.yf_c00182{bottom:743.240000pt;}
.yb_c00182{bottom:783.920000pt;}
.ya_c00182{bottom:876.413333pt;}
.y9_c00182{bottom:911.933333pt;}
.y8_c00182{bottom:939.453333pt;}
.y7_c00182{bottom:967.013333pt;}
.y6_c00182{bottom:994.853333pt;}
.y2_c00182{bottom:1056.933333pt;}
.h3_c00182{height:18.266667pt;}
.hd_c00182{height:33.918750pt;}
.h4_c00182{height:36.796000pt;}
.hb_c00182{height:39.026667pt;}
.h9_c00182{height:39.058667pt;}
.h8_c00182{height:52.762500pt;}
.h2_c00182{height:57.375000pt;}
.ha_c00182{height:58.238750pt;}
.h6_c00182{height:62.781250pt;}
.h5_c00182{height:62.812500pt;}
.h7_c00182{height:69.746667pt;}
.hc_c00182{height:1122.556000pt;}
.h0_c00182{height:1122.560000pt;}
.h1_c00182{height:1122.666667pt;}
.w2_c00182{width:7.386667pt;}
.w7_c00182{width:112.338667pt;}
.w5_c00182{width:112.346667pt;}
.w4_c00182{width:112.360000pt;}
.w6_c00182{width:112.384000pt;}
.w3_c00182{width:567.280000pt;}
.w8_c00182{width:793.917333pt;}
.w0_c00182{width:793.920000pt;}
.w1_c00182{width:794.000000pt;}
.x0_c00182{left:0.000000pt;}
.x5_c00182{left:8.340000pt;}
.x6_c00182{left:13.780000pt;}
.xf_c00182{left:26.880000pt;}
.x10_c00182{left:28.506667pt;}
.x13_c00182{left:32.626667pt;}
.xc_c00182{left:35.506667pt;}
.x12_c00182{left:40.640000pt;}
.x8_c00182{left:42.560000pt;}
.x11_c00182{left:49.293333pt;}
.xa_c00182{left:52.826667pt;}
.xe_c00182{left:56.022667pt;}
.x3_c00182{left:113.324000pt;}
.x15_c00182{left:126.784000pt;}
.x1_c00182{left:137.346667pt;}
.x4_c00182{left:158.786667pt;}
.x7_c00182{left:227.293333pt;}
.x14_c00182{left:305.413333pt;}
.x9_c00182{left:340.933333pt;}
.xb_c00182{left:454.600000pt;}
.xd_c00182{left:568.240000pt;}
.x2_c00182{left:673.213333pt;}
}





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

.ir_c00183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_9ecb614671228184e350f3c4.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00183;src:url('chunks/assets/font_4349b5f5aeaf419cb24ba96d.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00183;src:url('chunks/assets/font_0bb340ed655aa2550dfbbd89.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;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_c00183;src:url('chunks/assets/font_411adbc4b8152127ceb80ecc.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_9e23a7b772bef470eb3ef9cf.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls1_c00183{letter-spacing:0.000000px;}
.ls2_c00183{letter-spacing:0.521400px;}
.ls0_c00183{letter-spacing:2.160000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:-18.000000px;}
.ws2_c00183{word-spacing:-15.641400px;}
.ws1_c00183{word-spacing:-15.120000px;}
.ws3_c00183{word-spacing:0.000000px;}
._6_c00183{margin-left:-2.592000px;}
._0_c00183{margin-left:-1.584000px;}
._2_c00183{width:1.224000px;}
._3_c00183{width:2.304000px;}
._c_c00183{width:3.600000px;}
._7_c00183{width:5.256000px;}
._8_c00183{width:6.984000px;}
._1_c00183{width:9.288000px;}
._5_c00183{width:10.872000px;}
._4_c00183{width:11.952000px;}
._f_c00183{width:13.608000px;}
._10_c00183{width:15.708000px;}
._11_c00183{width:20.232000px;}
._9_c00183{width:21.600000px;}
._a_c00183{width:22.752000px;}
._b_c00183{width:23.760000px;}
._d_c00183{width:38.808000px;}
._e_c00183{width:39.960000px;}
.fc0_c00183{color:rgb(0,0,0);}
.fs1_c00183{font-size:60.480000px;}
.fs0_c00183{font-size:72.000000px;}
.y0_c00183{bottom:0.000000px;}
.y3_c00183{bottom:4.320000px;}
.y17_c00183{bottom:21.240000px;}
.y23_c00183{bottom:21.585000px;}
.y25_c00183{bottom:21.589500px;}
.y15_c00183{bottom:21.600000px;}
.y13_c00183{bottom:21.630000px;}
.y1b_c00183{bottom:21.645000px;}
.y5_c00183{bottom:25.200000px;}
.y4_c00183{bottom:32.040000px;}
.y1_c00183{bottom:57.240000px;}
.y24_c00183{bottom:128.920500px;}
.y22_c00183{bottom:174.285000px;}
.y21_c00183{bottom:219.645000px;}
.y20_c00183{bottom:289.155000px;}
.y1f_c00183{bottom:329.115000px;}
.y1e_c00183{bottom:360.105000px;}
.y1d_c00183{bottom:400.065000px;}
.y1c_c00183{bottom:426.705000px;}
.y1a_c00183{bottom:472.065000px;}
.y19_c00183{bottom:517.830000px;}
.y18_c00183{bottom:563.190000px;}
.y16_c00183{bottom:608.580000px;}
.y14_c00183{bottom:653.940000px;}
.y12_c00183{bottom:699.300000px;}
.y11_c00183{bottom:768.450000px;}
.y10_c00183{bottom:808.410000px;}
.yf_c00183{bottom:839.370000px;}
.ye_c00183{bottom:870.735000px;}
.yd_c00183{bottom:901.695000px;}
.yc_c00183{bottom:932.655000px;}
.yb_c00183{bottom:963.645000px;}
.ya_c00183{bottom:994.965000px;}
.y9_c00183{bottom:1025.925000px;}
.y8_c00183{bottom:1056.885000px;}
.y7_c00183{bottom:1087.890000px;}
.y6_c00183{bottom:1119.210000px;}
.y2_c00183{bottom:1189.050000px;}
.h3_c00183{height:20.550000px;}
.h4_c00183{height:41.395500px;}
.hb_c00183{height:43.545000px;}
.h9_c00183{height:43.560000px;}
.ha_c00183{height:43.590000px;}
.hd_c00183{height:43.905000px;}
.hf_c00183{height:43.915500px;}
.h8_c00183{height:43.920000px;}
.he_c00183{height:43.941000px;}
.hc_c00183{height:43.950000px;}
.h6_c00183{height:43.956000px;}
.h7_c00183{height:59.357813px;}
.h2_c00183{height:64.546875px;}
.h5_c00183{height:70.664062px;}
.h0_c00183{height:1262.880000px;}
.h1_c00183{height:1263.000000px;}
.w2_c00183{width:8.310000px;}
.w7_c00183{width:128.181000px;}
.w5_c00183{width:128.190000px;}
.w4_c00183{width:128.205000px;}
.w6_c00183{width:128.232000px;}
.w8_c00183{width:160.605000px;}
.w9_c00183{width:160.635000px;}
.w3_c00183{width:638.190000px;}
.w0_c00183{width:893.160000px;}
.w1_c00183{width:893.250000px;}
.x0_c00183{left:0.000000px;}
.x3_c00183{left:127.489500px;}
.x1_c00183{left:154.515000px;}
.x8_c00183{left:178.635000px;}
.x4_c00183{left:257.865000px;}
.x9_c00183{left:290.265000px;}
.x5_c00183{left:387.510000px;}
.xa_c00183{left:452.340000px;}
.x6_c00183{left:517.185000px;}
.xb_c00183{left:614.430000px;}
.x7_c00183{left:646.830000px;}
.x2_c00183{left:757.365000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls1_c00183{letter-spacing:0.000000pt;}
.ls2_c00183{letter-spacing:0.463467pt;}
.ls0_c00183{letter-spacing:1.920000pt;}
.ws0_c00183{word-spacing:-16.000000pt;}
.ws2_c00183{word-spacing:-13.903467pt;}
.ws1_c00183{word-spacing:-13.440000pt;}
.ws3_c00183{word-spacing:0.000000pt;}
._6_c00183{margin-left:-2.304000pt;}
._0_c00183{margin-left:-1.408000pt;}
._2_c00183{width:1.088000pt;}
._3_c00183{width:2.048000pt;}
._c_c00183{width:3.200000pt;}
._7_c00183{width:4.672000pt;}
._8_c00183{width:6.208000pt;}
._1_c00183{width:8.256000pt;}
._5_c00183{width:9.664000pt;}
._4_c00183{width:10.624000pt;}
._f_c00183{width:12.096000pt;}
._10_c00183{width:13.962667pt;}
._11_c00183{width:17.984000pt;}
._9_c00183{width:19.200000pt;}
._a_c00183{width:20.224000pt;}
._b_c00183{width:21.120000pt;}
._d_c00183{width:34.496000pt;}
._e_c00183{width:35.520000pt;}
.fs1_c00183{font-size:53.760000pt;}
.fs0_c00183{font-size:64.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y3_c00183{bottom:3.840000pt;}
.y17_c00183{bottom:18.880000pt;}
.y23_c00183{bottom:19.186667pt;}
.y25_c00183{bottom:19.190667pt;}
.y15_c00183{bottom:19.200000pt;}
.y13_c00183{bottom:19.226667pt;}
.y1b_c00183{bottom:19.240000pt;}
.y5_c00183{bottom:22.400000pt;}
.y4_c00183{bottom:28.480000pt;}
.y1_c00183{bottom:50.880000pt;}
.y24_c00183{bottom:114.596000pt;}
.y22_c00183{bottom:154.920000pt;}
.y21_c00183{bottom:195.240000pt;}
.y20_c00183{bottom:257.026667pt;}
.y1f_c00183{bottom:292.546667pt;}
.y1e_c00183{bottom:320.093333pt;}
.y1d_c00183{bottom:355.613333pt;}
.y1c_c00183{bottom:379.293333pt;}
.y1a_c00183{bottom:419.613333pt;}
.y19_c00183{bottom:460.293333pt;}
.y18_c00183{bottom:500.613333pt;}
.y16_c00183{bottom:540.960000pt;}
.y14_c00183{bottom:581.280000pt;}
.y12_c00183{bottom:621.600000pt;}
.y11_c00183{bottom:683.066667pt;}
.y10_c00183{bottom:718.586667pt;}
.yf_c00183{bottom:746.106667pt;}
.ye_c00183{bottom:773.986667pt;}
.yd_c00183{bottom:801.506667pt;}
.yc_c00183{bottom:829.026667pt;}
.yb_c00183{bottom:856.573333pt;}
.ya_c00183{bottom:884.413333pt;}
.y9_c00183{bottom:911.933333pt;}
.y8_c00183{bottom:939.453333pt;}
.y7_c00183{bottom:967.013333pt;}
.y6_c00183{bottom:994.853333pt;}
.y2_c00183{bottom:1056.933333pt;}
.h3_c00183{height:18.266667pt;}
.h4_c00183{height:36.796000pt;}
.hb_c00183{height:38.706667pt;}
.h9_c00183{height:38.720000pt;}
.ha_c00183{height:38.746667pt;}
.hd_c00183{height:39.026667pt;}
.hf_c00183{height:39.036000pt;}
.h8_c00183{height:39.040000pt;}
.he_c00183{height:39.058667pt;}
.hc_c00183{height:39.066667pt;}
.h6_c00183{height:39.072000pt;}
.h7_c00183{height:52.762500pt;}
.h2_c00183{height:57.375000pt;}
.h5_c00183{height:62.812500pt;}
.h0_c00183{height:1122.560000pt;}
.h1_c00183{height:1122.666667pt;}
.w2_c00183{width:7.386667pt;}
.w7_c00183{width:113.938667pt;}
.w5_c00183{width:113.946667pt;}
.w4_c00183{width:113.960000pt;}
.w6_c00183{width:113.984000pt;}
.w8_c00183{width:142.760000pt;}
.w9_c00183{width:142.786667pt;}
.w3_c00183{width:567.280000pt;}
.w0_c00183{width:793.920000pt;}
.w1_c00183{width:794.000000pt;}
.x0_c00183{left:0.000000pt;}
.x3_c00183{left:113.324000pt;}
.x1_c00183{left:137.346667pt;}
.x8_c00183{left:158.786667pt;}
.x4_c00183{left:229.213333pt;}
.x9_c00183{left:258.013333pt;}
.x5_c00183{left:344.453333pt;}
.xa_c00183{left:402.080000pt;}
.x6_c00183{left:459.720000pt;}
.xb_c00183{left:546.160000pt;}
.x7_c00183{left:574.960000pt;}
.x2_c00183{left:673.213333pt;}
}





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

.ir_c00184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00184;src:url('chunks/assets/font_c76f3c31ae705ee8c0c6bf66.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_67f0d886a735b01423526fc2.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_d38c581776873dda565171d9.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_b0b78721d39fa8df822595a5.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;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_c00184;src:url('chunks/assets/font_f2483688ba39253d4b14795f.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls8_c00184{letter-spacing:-0.288000px;}
.ls7_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:0.020160px;}
.ls1_c00184{letter-spacing:0.180000px;}
.ls4_c00184{letter-spacing:0.372000px;}
.ls9_c00184{letter-spacing:0.504000px;}
.ls6_c00184{letter-spacing:0.720000px;}
.ls3_c00184{letter-spacing:5.040000px;}
.ls2_c00184{letter-spacing:9.360000px;}
.ls5_c00184{letter-spacing:10.800000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00184{word-spacing:-18.504000px;}
.ws1_c00184{word-spacing:-18.000000px;}
.ws2_c00184{word-spacing:-17.712000px;}
.ws0_c00184{word-spacing:-15.120000px;}
.ws4_c00184{word-spacing:0.000000px;}
._f_c00184{margin-left:-3.548765px;}
._2_c00184{margin-left:-2.358599px;}
._0_c00184{margin-left:-1.169280px;}
._1_c00184{width:1.390798px;}
._4_c00184{width:2.656449px;}
._8_c00184{width:3.991801px;}
._c_c00184{width:5.558428px;}
._6_c00184{width:7.837569px;}
._a_c00184{width:8.853389px;}
._7_c00184{width:9.903095px;}
._9_c00184{width:11.196714px;}
._b_c00184{width:12.920065px;}
._e_c00184{width:19.837319px;}
._d_c00184{width:20.963762px;}
._3_c00184{width:54.017280px;}
._5_c00184{width:55.491840px;}
.fc0_c00184{color:rgb(0,0,0);}
.fs3_c00184{font-size:38.880000px;}
.fs2_c00184{font-size:47.520000px;}
.fs1_c00184{font-size:60.480000px;}
.fs0_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y3_c00184{bottom:4.320000px;}
.y7_c00184{bottom:21.240000px;}
.yb_c00184{bottom:21.615000px;}
.y5_c00184{bottom:25.200000px;}
.y4_c00184{bottom:32.040000px;}
.y1_c00184{bottom:57.240000px;}
.y26_c00184{bottom:151.590000px;}
.y25_c00184{bottom:168.870000px;}
.y24_c00184{bottom:175.710000px;}
.y23_c00184{bottom:186.870000px;}
.y22_c00184{bottom:247.755000px;}
.y21_c00184{bottom:278.715000px;}
.y20_c00184{bottom:319.035000px;}
.y1f_c00184{bottom:349.995000px;}
.y1e_c00184{bottom:380.985000px;}
.y1d_c00184{bottom:411.945000px;}
.y1c_c00184{bottom:443.265000px;}
.y1b_c00184{bottom:474.225000px;}
.y1a_c00184{bottom:505.230000px;}
.y19_c00184{bottom:536.190000px;}
.y18_c00184{bottom:567.510000px;}
.y16_c00184{bottom:607.500000px;}
.y17_c00184{bottom:615.780000px;}
.y15_c00184{bottom:638.460000px;}
.y14_c00184{bottom:669.420000px;}
.y13_c00184{bottom:700.740000px;}
.y12_c00184{bottom:731.730000px;}
.y11_c00184{bottom:762.690000px;}
.y10_c00184{bottom:793.650000px;}
.yf_c00184{bottom:824.970000px;}
.ye_c00184{bottom:855.975000px;}
.yd_c00184{bottom:886.935000px;}
.yc_c00184{bottom:926.895000px;}
.ya_c00184{bottom:953.550000px;}
.y9_c00184{bottom:999.285000px;}
.y8_c00184{bottom:1044.645000px;}
.y6_c00184{bottom:1090.050000px;}
.y2_c00184{bottom:1189.050000px;}
.h3_c00184{height:20.550000px;}
.hc_c00184{height:34.855313px;}
.h4_c00184{height:41.395500px;}
.h5_c00184{height:43.545000px;}
.h7_c00184{height:43.590000px;}
.h8_c00184{height:43.920000px;}
.hb_c00184{height:46.638281px;}
.hd_c00184{height:54.219375px;}
.h6_c00184{height:59.357813px;}
.h2_c00184{height:64.546875px;}
.h9_c00184{height:70.664062px;}
.ha_c00184{height:1262.875500px;}
.h0_c00184{height:1262.880000px;}
.h1_c00184{height:1263.000000px;}
.w2_c00184{width:8.310000px;}
.w4_c00184{width:160.605000px;}
.w5_c00184{width:160.635000px;}
.w3_c00184{width:638.190000px;}
.w6_c00184{width:893.157000px;}
.w0_c00184{width:893.160000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.x3_c00184{left:127.489500px;}
.xb_c00184{left:142.632000px;}
.x1_c00184{left:154.515000px;}
.x7_c00184{left:178.635000px;}
.x4_c00184{left:290.265000px;}
.x8_c00184{left:327.027000px;}
.xa_c00184{left:343.590000px;}
.x9_c00184{left:345.390000px;}
.x5_c00184{left:452.340000px;}
.x6_c00184{left:614.430000px;}
.x2_c00184{left:757.365000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls8_c00184{letter-spacing:-0.256000pt;}
.ls7_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:0.017920pt;}
.ls1_c00184{letter-spacing:0.160000pt;}
.ls4_c00184{letter-spacing:0.330667pt;}
.ls9_c00184{letter-spacing:0.448000pt;}
.ls6_c00184{letter-spacing:0.640000pt;}
.ls3_c00184{letter-spacing:4.480000pt;}
.ls2_c00184{letter-spacing:8.320000pt;}
.ls5_c00184{letter-spacing:9.600000pt;}
.ws3_c00184{word-spacing:-16.448000pt;}
.ws1_c00184{word-spacing:-16.000000pt;}
.ws2_c00184{word-spacing:-15.744000pt;}
.ws0_c00184{word-spacing:-13.440000pt;}
.ws4_c00184{word-spacing:0.000000pt;}
._f_c00184{margin-left:-3.154458pt;}
._2_c00184{margin-left:-2.096532pt;}
._0_c00184{margin-left:-1.039360pt;}
._1_c00184{width:1.236265pt;}
._4_c00184{width:2.361288pt;}
._8_c00184{width:3.548268pt;}
._c_c00184{width:4.940825pt;}
._6_c00184{width:6.966728pt;}
._a_c00184{width:7.869679pt;}
._7_c00184{width:8.802751pt;}
._9_c00184{width:9.952635pt;}
._b_c00184{width:11.484502pt;}
._e_c00184{width:17.633172pt;}
._d_c00184{width:18.634455pt;}
._3_c00184{width:48.015360pt;}
._5_c00184{width:49.326080pt;}
.fs3_c00184{font-size:34.560000pt;}
.fs2_c00184{font-size:42.240000pt;}
.fs1_c00184{font-size:53.760000pt;}
.fs0_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y3_c00184{bottom:3.840000pt;}
.y7_c00184{bottom:18.880000pt;}
.yb_c00184{bottom:19.213333pt;}
.y5_c00184{bottom:22.400000pt;}
.y4_c00184{bottom:28.480000pt;}
.y1_c00184{bottom:50.880000pt;}
.y26_c00184{bottom:134.746667pt;}
.y25_c00184{bottom:150.106667pt;}
.y24_c00184{bottom:156.186667pt;}
.y23_c00184{bottom:166.106667pt;}
.y22_c00184{bottom:220.226667pt;}
.y21_c00184{bottom:247.746667pt;}
.y20_c00184{bottom:283.586667pt;}
.y1f_c00184{bottom:311.106667pt;}
.y1e_c00184{bottom:338.653333pt;}
.y1d_c00184{bottom:366.173333pt;}
.y1c_c00184{bottom:394.013333pt;}
.y1b_c00184{bottom:421.533333pt;}
.y1a_c00184{bottom:449.093333pt;}
.y19_c00184{bottom:476.613333pt;}
.y18_c00184{bottom:504.453333pt;}
.y16_c00184{bottom:540.000000pt;}
.y17_c00184{bottom:547.360000pt;}
.y15_c00184{bottom:567.520000pt;}
.y14_c00184{bottom:595.040000pt;}
.y13_c00184{bottom:622.880000pt;}
.y12_c00184{bottom:650.426667pt;}
.y11_c00184{bottom:677.946667pt;}
.y10_c00184{bottom:705.466667pt;}
.yf_c00184{bottom:733.306667pt;}
.ye_c00184{bottom:760.866667pt;}
.yd_c00184{bottom:788.386667pt;}
.yc_c00184{bottom:823.906667pt;}
.ya_c00184{bottom:847.600000pt;}
.y9_c00184{bottom:888.253333pt;}
.y8_c00184{bottom:928.573333pt;}
.y6_c00184{bottom:968.933333pt;}
.y2_c00184{bottom:1056.933333pt;}
.h3_c00184{height:18.266667pt;}
.hc_c00184{height:30.982500pt;}
.h4_c00184{height:36.796000pt;}
.h5_c00184{height:38.706667pt;}
.h7_c00184{height:38.746667pt;}
.h8_c00184{height:39.040000pt;}
.hb_c00184{height:41.456250pt;}
.hd_c00184{height:48.195000pt;}
.h6_c00184{height:52.762500pt;}
.h2_c00184{height:57.375000pt;}
.h9_c00184{height:62.812500pt;}
.ha_c00184{height:1122.556000pt;}
.h0_c00184{height:1122.560000pt;}
.h1_c00184{height:1122.666667pt;}
.w2_c00184{width:7.386667pt;}
.w4_c00184{width:142.760000pt;}
.w5_c00184{width:142.786667pt;}
.w3_c00184{width:567.280000pt;}
.w6_c00184{width:793.917333pt;}
.w0_c00184{width:793.920000pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.x3_c00184{left:113.324000pt;}
.xb_c00184{left:126.784000pt;}
.x1_c00184{left:137.346667pt;}
.x7_c00184{left:158.786667pt;}
.x4_c00184{left:258.013333pt;}
.x8_c00184{left:290.690667pt;}
.xa_c00184{left:305.413333pt;}
.x9_c00184{left:307.013333pt;}
.x5_c00184{left:402.080000pt;}
.x6_c00184{left:546.160000pt;}
.x2_c00184{left:673.213333pt;}
}





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

.ir_c00185:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00185;src:url('chunks/assets/font_c263ad30f8a3f38b20e29a46.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_4e90702b1576c019b2890a5e.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_e80530be5b6d3c45e37c3c81.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;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_c00185;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00185;src:url('chunks/assets/font_433c1ec69eb349686103fc83.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls8_c00185{letter-spacing:-0.720000px;}
.ls7_c00185{letter-spacing:-0.648000px;}
.lsa_c00185{letter-spacing:-0.466800px;}
.ls9_c00185{letter-spacing:-0.288000px;}
.ls6_c00185{letter-spacing:0.000000px;}
.ls0_c00185{letter-spacing:0.120000px;}
.lsb_c00185{letter-spacing:0.466800px;}
.lsc_c00185{letter-spacing:0.507000px;}
.ls2_c00185{letter-spacing:0.576000px;}
.ls1_c00185{letter-spacing:0.720000px;}
.ls5_c00185{letter-spacing:5.040000px;}
.ls4_c00185{letter-spacing:10.800000px;}
.ls3_c00185{letter-spacing:16.560000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00185{word-spacing:-72.000000px;}
.ws6_c00185{word-spacing:-60.480000px;}
.ws0_c00185{word-spacing:-18.000000px;}
.ws2_c00185{word-spacing:-17.712000px;}
.ws5_c00185{word-spacing:-15.586800px;}
.ws4_c00185{word-spacing:-15.120000px;}
.ws3_c00185{word-spacing:-14.653200px;}
.ws7_c00185{word-spacing:0.000000px;}
._3_c00185{margin-left:-2.448000px;}
._1_c00185{margin-left:-1.296000px;}
._0_c00185{width:1.080000px;}
._5_c00185{width:2.424000px;}
._2_c00185{width:3.672000px;}
._4_c00185{width:4.680000px;}
._c_c00185{width:6.120000px;}
._d_c00185{width:7.368000px;}
._b_c00185{width:8.568000px;}
._13_c00185{width:9.798893px;}
._12_c00185{width:10.799974px;}
._11_c00185{width:11.964024px;}
._6_c00185{width:13.320000px;}
._7_c00185{width:15.624000px;}
._10_c00185{width:16.656024px;}
._14_c00185{width:19.233600px;}
._8_c00185{width:21.132000px;}
._e_c00185{width:23.040000px;}
._f_c00185{width:24.624000px;}
._a_c00185{width:33.576000px;}
._9_c00185{width:35.496000px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs2_c00185{font-size:38.880000px;}
.fs1_c00185{font-size:47.520000px;}
.fs3_c00185{font-size:60.480000px;}
.fs0_c00185{font-size:72.000000px;}
.y0_c00185{bottom:0.000000px;}
.y3_c00185{bottom:4.320000px;}
.y5_c00185{bottom:25.200000px;}
.y4_c00185{bottom:32.040000px;}
.y1_c00185{bottom:57.240000px;}
.y2c_c00185{bottom:151.590000px;}
.y2b_c00185{bottom:168.870000px;}
.y2a_c00185{bottom:186.150000px;}
.y29_c00185{bottom:203.430000px;}
.y28_c00185{bottom:220.710000px;}
.y27_c00185{bottom:238.035000px;}
.y26_c00185{bottom:255.315000px;}
.y25_c00185{bottom:262.155000px;}
.y24_c00185{bottom:272.595000px;}
.y23_c00185{bottom:289.875000px;}
.y22_c00185{bottom:296.715000px;}
.y21_c00185{bottom:307.515000px;}
.y20_c00185{bottom:346.755000px;}
.y1f_c00185{bottom:377.745000px;}
.y1e_c00185{bottom:408.705000px;}
.y1d_c00185{bottom:440.025000px;}
.y1c_c00185{bottom:470.985000px;}
.y1b_c00185{bottom:501.990000px;}
.y1a_c00185{bottom:532.950000px;}
.y19_c00185{bottom:563.910000px;}
.y18_c00185{bottom:595.230000px;}
.y17_c00185{bottom:626.220000px;}
.y16_c00185{bottom:657.180000px;}
.y15_c00185{bottom:688.140000px;}
.y14_c00185{bottom:719.490000px;}
.y13_c00185{bottom:750.450000px;}
.y12_c00185{bottom:781.410000px;}
.y11_c00185{bottom:812.370000px;}
.y10_c00185{bottom:843.735000px;}
.yf_c00185{bottom:874.695000px;}
.ye_c00185{bottom:905.655000px;}
.yd_c00185{bottom:945.615000px;}
.yc_c00185{bottom:985.965000px;}
.ya_c00185{bottom:1025.925000px;}
.yb_c00185{bottom:1034.205000px;}
.y9_c00185{bottom:1056.885000px;}
.y8_c00185{bottom:1087.890000px;}
.y6_c00185{bottom:1119.210000px;}
.y7_c00185{bottom:1127.490000px;}
.y2_c00185{bottom:1189.050000px;}
.h3_c00185{height:20.550000px;}
.h9_c00185{height:38.158594px;}
.h4_c00185{height:41.395500px;}
.h8_c00185{height:46.615078px;}
.h7_c00185{height:46.638281px;}
.hb_c00185{height:59.328281px;}
.ha_c00185{height:59.357813px;}
.h2_c00185{height:64.546875px;}
.h5_c00185{height:70.664062px;}
.h6_c00185{height:1262.875500px;}
.h0_c00185{height:1262.880000px;}
.h1_c00185{height:1263.000000px;}
.w2_c00185{width:8.310000px;}
.w3_c00185{width:638.190000px;}
.w4_c00185{width:893.157000px;}
.w0_c00185{width:893.160000px;}
.w1_c00185{width:893.250000px;}
.x0_c00185{left:0.000000px;}
.x3_c00185{left:127.489500px;}
.xa_c00185{left:142.632000px;}
.x1_c00185{left:154.515000px;}
.x8_c00185{left:178.635000px;}
.x9_c00185{left:343.590000px;}
.x6_c00185{left:417.417000px;}
.x7_c00185{left:435.780000px;}
.x4_c00185{left:643.932000px;}
.x5_c00185{left:662.295000px;}
.x2_c00185{left:757.365000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls8_c00185{letter-spacing:-0.640000pt;}
.ls7_c00185{letter-spacing:-0.576000pt;}
.lsa_c00185{letter-spacing:-0.414933pt;}
.ls9_c00185{letter-spacing:-0.256000pt;}
.ls6_c00185{letter-spacing:0.000000pt;}
.ls0_c00185{letter-spacing:0.106667pt;}
.lsb_c00185{letter-spacing:0.414933pt;}
.lsc_c00185{letter-spacing:0.450667pt;}
.ls2_c00185{letter-spacing:0.512000pt;}
.ls1_c00185{letter-spacing:0.640000pt;}
.ls5_c00185{letter-spacing:4.480000pt;}
.ls4_c00185{letter-spacing:9.600000pt;}
.ls3_c00185{letter-spacing:14.720000pt;}
.ws1_c00185{word-spacing:-64.000000pt;}
.ws6_c00185{word-spacing:-53.760000pt;}
.ws0_c00185{word-spacing:-16.000000pt;}
.ws2_c00185{word-spacing:-15.744000pt;}
.ws5_c00185{word-spacing:-13.854933pt;}
.ws4_c00185{word-spacing:-13.440000pt;}
.ws3_c00185{word-spacing:-13.025067pt;}
.ws7_c00185{word-spacing:0.000000pt;}
._3_c00185{margin-left:-2.176000pt;}
._1_c00185{margin-left:-1.152000pt;}
._0_c00185{width:0.960000pt;}
._5_c00185{width:2.154667pt;}
._2_c00185{width:3.264000pt;}
._4_c00185{width:4.160000pt;}
._c_c00185{width:5.440000pt;}
._d_c00185{width:6.549333pt;}
._b_c00185{width:7.616000pt;}
._13_c00185{width:8.710127pt;}
._12_c00185{width:9.599977pt;}
._11_c00185{width:10.634688pt;}
._6_c00185{width:11.840000pt;}
._7_c00185{width:13.888000pt;}
._10_c00185{width:14.805355pt;}
._14_c00185{width:17.096533pt;}
._8_c00185{width:18.784000pt;}
._e_c00185{width:20.480000pt;}
._f_c00185{width:21.888000pt;}
._a_c00185{width:29.845333pt;}
._9_c00185{width:31.552000pt;}
.fs2_c00185{font-size:34.560000pt;}
.fs1_c00185{font-size:42.240000pt;}
.fs3_c00185{font-size:53.760000pt;}
.fs0_c00185{font-size:64.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y3_c00185{bottom:3.840000pt;}
.y5_c00185{bottom:22.400000pt;}
.y4_c00185{bottom:28.480000pt;}
.y1_c00185{bottom:50.880000pt;}
.y2c_c00185{bottom:134.746667pt;}
.y2b_c00185{bottom:150.106667pt;}
.y2a_c00185{bottom:165.466667pt;}
.y29_c00185{bottom:180.826667pt;}
.y28_c00185{bottom:196.186667pt;}
.y27_c00185{bottom:211.586667pt;}
.y26_c00185{bottom:226.946667pt;}
.y25_c00185{bottom:233.026667pt;}
.y24_c00185{bottom:242.306667pt;}
.y23_c00185{bottom:257.666667pt;}
.y22_c00185{bottom:263.746667pt;}
.y21_c00185{bottom:273.346667pt;}
.y20_c00185{bottom:308.226667pt;}
.y1f_c00185{bottom:335.773333pt;}
.y1e_c00185{bottom:363.293333pt;}
.y1d_c00185{bottom:391.133333pt;}
.y1c_c00185{bottom:418.653333pt;}
.y1b_c00185{bottom:446.213333pt;}
.y1a_c00185{bottom:473.733333pt;}
.y19_c00185{bottom:501.253333pt;}
.y18_c00185{bottom:529.093333pt;}
.y17_c00185{bottom:556.640000pt;}
.y16_c00185{bottom:584.160000pt;}
.y15_c00185{bottom:611.680000pt;}
.y14_c00185{bottom:639.546667pt;}
.y13_c00185{bottom:667.066667pt;}
.y12_c00185{bottom:694.586667pt;}
.y11_c00185{bottom:722.106667pt;}
.y10_c00185{bottom:749.986667pt;}
.yf_c00185{bottom:777.506667pt;}
.ye_c00185{bottom:805.026667pt;}
.yd_c00185{bottom:840.546667pt;}
.yc_c00185{bottom:876.413333pt;}
.ya_c00185{bottom:911.933333pt;}
.yb_c00185{bottom:919.293333pt;}
.y9_c00185{bottom:939.453333pt;}
.y8_c00185{bottom:967.013333pt;}
.y6_c00185{bottom:994.853333pt;}
.y7_c00185{bottom:1002.213333pt;}
.y2_c00185{bottom:1056.933333pt;}
.h3_c00185{height:18.266667pt;}
.h9_c00185{height:33.918750pt;}
.h4_c00185{height:36.796000pt;}
.h8_c00185{height:41.435625pt;}
.h7_c00185{height:41.456250pt;}
.hb_c00185{height:52.736250pt;}
.ha_c00185{height:52.762500pt;}
.h2_c00185{height:57.375000pt;}
.h5_c00185{height:62.812500pt;}
.h6_c00185{height:1122.556000pt;}
.h0_c00185{height:1122.560000pt;}
.h1_c00185{height:1122.666667pt;}
.w2_c00185{width:7.386667pt;}
.w3_c00185{width:567.280000pt;}
.w4_c00185{width:793.917333pt;}
.w0_c00185{width:793.920000pt;}
.w1_c00185{width:794.000000pt;}
.x0_c00185{left:0.000000pt;}
.x3_c00185{left:113.324000pt;}
.xa_c00185{left:126.784000pt;}
.x1_c00185{left:137.346667pt;}
.x8_c00185{left:158.786667pt;}
.x9_c00185{left:305.413333pt;}
.x6_c00185{left:371.037333pt;}
.x7_c00185{left:387.360000pt;}
.x4_c00185{left:572.384000pt;}
.x5_c00185{left:588.706667pt;}
.x2_c00185{left:673.213333pt;}
}





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

.ir_c00186:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00186;src:url('chunks/assets/font_b56d2c55cac416b69bc00efd.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_f23291c884329862d4afba06.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_a8693b0b4219d3a9680c9bb4.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;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_c00186;src:url('chunks/assets/font_7b3489d3f2638fbaea16bda1.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_28934a0ac864f0c45d03ff79.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00186;src:url('chunks/assets/font_439c2d6953777c23390f3ea9.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:1.104004;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00186{font-family:ff7_c00186;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls7_c00186{letter-spacing:-1.440000px;}
.lsa_c00186{letter-spacing:-0.720000px;}
.ls9_c00186{letter-spacing:-0.532800px;}
.lsc_c00186{letter-spacing:-0.360000px;}
.lsb_c00186{letter-spacing:-0.288000px;}
.ls8_c00186{letter-spacing:-0.241800px;}
.ls6_c00186{letter-spacing:0.000000px;}
.ls4_c00186{letter-spacing:0.504000px;}
.ls2_c00186{letter-spacing:0.720000px;}
.ls3_c00186{letter-spacing:0.740300px;}
.ls0_c00186{letter-spacing:1.620000px;}
.ls1_c00186{letter-spacing:5.040000px;}
.ls5_c00186{letter-spacing:6.480000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00186{word-spacing:-72.000000px;}
.ws5_c00186{word-spacing:-60.480000px;}
.ws0_c00186{word-spacing:-18.000000px;}
.ws6_c00186{word-spacing:-17.712000px;}
.ws7_c00186{word-spacing:-17.640000px;}
.ws2_c00186{word-spacing:-15.120000px;}
.ws3_c00186{word-spacing:-14.878200px;}
.ws4_c00186{word-spacing:-14.587200px;}
.ws8_c00186{word-spacing:0.000000px;}
._6_c00186{margin-left:-3.312000px;}
._0_c00186{margin-left:-2.232000px;}
._3_c00186{margin-left:-1.080000px;}
._1_c00186{width:1.368000px;}
._7_c00186{width:2.808000px;}
._b_c00186{width:3.888000px;}
._4_c00186{width:5.040000px;}
._5_c00186{width:6.696000px;}
._c_c00186{width:8.087976px;}
._9_c00186{width:9.936000px;}
._8_c00186{width:11.016000px;}
._a_c00186{width:12.168000px;}
._e_c00186{width:13.968000px;}
._d_c00186{width:15.696000px;}
._f_c00186{width:16.992000px;}
._2_c00186{width:19.080000px;}
._13_c00186{width:20.304000px;}
._12_c00186{width:32.771928px;}
._11_c00186{width:34.056000px;}
._10_c00186{width:35.112024px;}
.fc0_c00186{color:rgb(0,0,0);}
.fs1_c00186{font-size:60.480000px;}
.fs0_c00186{font-size:72.000000px;}
.y0_c00186{bottom:0.000000px;}
.y3_c00186{bottom:4.320000px;}
.y5_c00186{bottom:25.200000px;}
.y4_c00186{bottom:32.040000px;}
.y1_c00186{bottom:57.240000px;}
.y23_c00186{bottom:159.510000px;}
.y22_c00186{bottom:190.470000px;}
.y21_c00186{bottom:221.430000px;}
.y20_c00186{bottom:252.795000px;}
.y1f_c00186{bottom:283.755000px;}
.y1e_c00186{bottom:321.555000px;}
.y1d_c00186{bottom:347.475000px;}
.y1c_c00186{bottom:382.065000px;}
.y1b_c00186{bottom:416.985000px;}
.y1a_c00186{bottom:451.905000px;}
.y19_c00186{bottom:486.870000px;}
.y18_c00186{bottom:523.950000px;}
.y17_c00186{bottom:563.910000px;}
.y16_c00186{bottom:604.260000px;}
.y15_c00186{bottom:644.220000px;}
.y14_c00186{bottom:675.180000px;}
.y13_c00186{bottom:706.140000px;}
.y12_c00186{bottom:737.490000px;}
.y11_c00186{bottom:768.450000px;}
.y10_c00186{bottom:799.410000px;}
.yf_c00186{bottom:830.370000px;}
.ye_c00186{bottom:861.735000px;}
.yd_c00186{bottom:901.695000px;}
.yc_c00186{bottom:932.655000px;}
.yb_c00186{bottom:963.645000px;}
.ya_c00186{bottom:994.965000px;}
.y9_c00186{bottom:1025.925000px;}
.y8_c00186{bottom:1056.885000px;}
.y7_c00186{bottom:1087.890000px;}
.y6_c00186{bottom:1119.210000px;}
.y2_c00186{bottom:1189.050000px;}
.h3_c00186{height:20.550000px;}
.h4_c00186{height:41.395500px;}
.h9_c00186{height:59.328281px;}
.h7_c00186{height:59.357813px;}
.h8_c00186{height:60.952500px;}
.h2_c00186{height:64.546875px;}
.h6_c00186{height:70.628906px;}
.h5_c00186{height:70.664062px;}
.h0_c00186{height:1262.880000px;}
.h1_c00186{height:1263.000000px;}
.w2_c00186{width:8.310000px;}
.w3_c00186{width:638.190000px;}
.w0_c00186{width:893.160000px;}
.w1_c00186{width:893.250000px;}
.x0_c00186{left:0.000000px;}
.x3_c00186{left:127.489500px;}
.x1_c00186{left:154.515000px;}
.x6_c00186{left:169.995000px;}
.x4_c00186{left:178.635000px;}
.x5_c00186{left:180.795000px;}
.x2_c00186{left:757.365000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls7_c00186{letter-spacing:-1.280000pt;}
.lsa_c00186{letter-spacing:-0.640000pt;}
.ls9_c00186{letter-spacing:-0.473600pt;}
.lsc_c00186{letter-spacing:-0.320000pt;}
.lsb_c00186{letter-spacing:-0.256000pt;}
.ls8_c00186{letter-spacing:-0.214933pt;}
.ls6_c00186{letter-spacing:0.000000pt;}
.ls4_c00186{letter-spacing:0.448000pt;}
.ls2_c00186{letter-spacing:0.640000pt;}
.ls3_c00186{letter-spacing:0.658045pt;}
.ls0_c00186{letter-spacing:1.440000pt;}
.ls1_c00186{letter-spacing:4.480000pt;}
.ls5_c00186{letter-spacing:5.760000pt;}
.ws1_c00186{word-spacing:-64.000000pt;}
.ws5_c00186{word-spacing:-53.760000pt;}
.ws0_c00186{word-spacing:-16.000000pt;}
.ws6_c00186{word-spacing:-15.744000pt;}
.ws7_c00186{word-spacing:-15.680000pt;}
.ws2_c00186{word-spacing:-13.440000pt;}
.ws3_c00186{word-spacing:-13.225067pt;}
.ws4_c00186{word-spacing:-12.966400pt;}
.ws8_c00186{word-spacing:0.000000pt;}
._6_c00186{margin-left:-2.944000pt;}
._0_c00186{margin-left:-1.984000pt;}
._3_c00186{margin-left:-0.960000pt;}
._1_c00186{width:1.216000pt;}
._7_c00186{width:2.496000pt;}
._b_c00186{width:3.456000pt;}
._4_c00186{width:4.480000pt;}
._5_c00186{width:5.952000pt;}
._c_c00186{width:7.189312pt;}
._9_c00186{width:8.832000pt;}
._8_c00186{width:9.792000pt;}
._a_c00186{width:10.816000pt;}
._e_c00186{width:12.416000pt;}
._d_c00186{width:13.952000pt;}
._f_c00186{width:15.104000pt;}
._2_c00186{width:16.960000pt;}
._13_c00186{width:18.048000pt;}
._12_c00186{width:29.130603pt;}
._11_c00186{width:30.272000pt;}
._10_c00186{width:31.210688pt;}
.fs1_c00186{font-size:53.760000pt;}
.fs0_c00186{font-size:64.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.y3_c00186{bottom:3.840000pt;}
.y5_c00186{bottom:22.400000pt;}
.y4_c00186{bottom:28.480000pt;}
.y1_c00186{bottom:50.880000pt;}
.y23_c00186{bottom:141.786667pt;}
.y22_c00186{bottom:169.306667pt;}
.y21_c00186{bottom:196.826667pt;}
.y20_c00186{bottom:224.706667pt;}
.y1f_c00186{bottom:252.226667pt;}
.y1e_c00186{bottom:285.826667pt;}
.y1d_c00186{bottom:308.866667pt;}
.y1c_c00186{bottom:339.613333pt;}
.y1b_c00186{bottom:370.653333pt;}
.y1a_c00186{bottom:401.693333pt;}
.y19_c00186{bottom:432.773333pt;}
.y18_c00186{bottom:465.733333pt;}
.y17_c00186{bottom:501.253333pt;}
.y16_c00186{bottom:537.120000pt;}
.y15_c00186{bottom:572.640000pt;}
.y14_c00186{bottom:600.160000pt;}
.y13_c00186{bottom:627.680000pt;}
.y12_c00186{bottom:655.546667pt;}
.y11_c00186{bottom:683.066667pt;}
.y10_c00186{bottom:710.586667pt;}
.yf_c00186{bottom:738.106667pt;}
.ye_c00186{bottom:765.986667pt;}
.yd_c00186{bottom:801.506667pt;}
.yc_c00186{bottom:829.026667pt;}
.yb_c00186{bottom:856.573333pt;}
.ya_c00186{bottom:884.413333pt;}
.y9_c00186{bottom:911.933333pt;}
.y8_c00186{bottom:939.453333pt;}
.y7_c00186{bottom:967.013333pt;}
.y6_c00186{bottom:994.853333pt;}
.y2_c00186{bottom:1056.933333pt;}
.h3_c00186{height:18.266667pt;}
.h4_c00186{height:36.796000pt;}
.h9_c00186{height:52.736250pt;}
.h7_c00186{height:52.762500pt;}
.h8_c00186{height:54.180000pt;}
.h2_c00186{height:57.375000pt;}
.h6_c00186{height:62.781250pt;}
.h5_c00186{height:62.812500pt;}
.h0_c00186{height:1122.560000pt;}
.h1_c00186{height:1122.666667pt;}
.w2_c00186{width:7.386667pt;}
.w3_c00186{width:567.280000pt;}
.w0_c00186{width:793.920000pt;}
.w1_c00186{width:794.000000pt;}
.x0_c00186{left:0.000000pt;}
.x3_c00186{left:113.324000pt;}
.x1_c00186{left:137.346667pt;}
.x6_c00186{left:151.106667pt;}
.x4_c00186{left:158.786667pt;}
.x5_c00186{left:160.706667pt;}
.x2_c00186{left:673.213333pt;}
}





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

.ir_c00187:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00187;src:url('chunks/assets/font_498e548d42efe8acacd1dc82.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_279fd464c2fbac49c685fdc4.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_d58f7d5b0704f812dcf1f8f7.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_ff9a9560a82ce779c5917788.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;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_c00187;src:url('chunks/assets/font_9ab851e20787157b9a167d04.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00187;src:url('chunks/assets/font_cdc99e3b8f6f9e12d569ea67.woff2')format("woff");}.ff6_c00187{font-family:ff6_c00187;line-height:1.311035;font-style:normal;font-weight: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_c00187;src:url('chunks/assets/font_0f5bea25297930380a6d22d3.woff2')format("woff");}.ff7_c00187{font-family:ff7_c00187;line-height:1.104004;font-style:normal;font-weight: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_c00187;src:url('chunks/assets/font_69dd007571d95158f3f63320.woff2')format("woff");}.ff8_c00187{font-family:ff8_c00187;line-height:1.117188;font-style:normal;font-weight: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_c00187;src:url('chunks/assets/font_7a713fe6b7517620d3dd4758.woff2')format("woff");}.ff9_c00187{font-family:ff9_c00187;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls15_c00187{letter-spacing:-0.972000px;}
.lsf_c00187{letter-spacing:-0.912000px;}
.ls10_c00187{letter-spacing:-0.544200px;}
.ls11_c00187{letter-spacing:-0.486600px;}
.lsc_c00187{letter-spacing:-0.288000px;}
.lsb_c00187{letter-spacing:0.000000px;}
.ls6_c00187{letter-spacing:0.120000px;}
.ls1_c00187{letter-spacing:0.144000px;}
.ls7_c00187{letter-spacing:0.164160px;}
.ls13_c00187{letter-spacing:0.166800px;}
.ls0_c00187{letter-spacing:0.180000px;}
.ls14_c00187{letter-spacing:0.313800px;}
.lse_c00187{letter-spacing:0.385800px;}
.lsa_c00187{letter-spacing:0.466560px;}
.ls12_c00187{letter-spacing:0.466800px;}
.lsd_c00187{letter-spacing:0.507000px;}
.ls3_c00187{letter-spacing:0.708506px;}
.ls2_c00187{letter-spacing:0.720000px;}
.ls4_c00187{letter-spacing:1.620000px;}
.ls5_c00187{letter-spacing:5.040000px;}
.ls8_c00187{letter-spacing:6.480000px;}
.ls9_c00187{letter-spacing:7.920000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00187{word-spacing:-60.480000px;}
.ws0_c00187{word-spacing:-18.000000px;}
.ws2_c00187{word-spacing:-15.627000px;}
.ws7_c00187{word-spacing:-15.433800px;}
.ws6_c00187{word-spacing:-15.286800px;}
.ws1_c00187{word-spacing:-15.120000px;}
.ws5_c00187{word-spacing:-14.633400px;}
.ws4_c00187{word-spacing:-14.575800px;}
.ws8_c00187{word-spacing:0.000000px;}
._2_c00187{margin-left:-3.108000px;}
._1_c00187{margin-left:-1.440000px;}
._0_c00187{width:1.080000px;}
._4_c00187{width:2.088000px;}
._3_c00187{width:3.180000px;}
._8_c00187{width:4.410002px;}
._7_c00187{width:5.688000px;}
._5_c00187{width:6.833998px;}
._6_c00187{width:7.897807px;}
._9_c00187{width:9.660000px;}
._a_c00187{width:10.842580px;}
._b_c00187{width:12.676260px;}
._c_c00187{width:13.911479px;}
._12_c00187{width:16.200000px;}
._13_c00187{width:17.475598px;}
._d_c00187{width:22.248000px;}
._e_c00187{width:23.976000px;}
._f_c00187{width:30.396000px;}
._10_c00187{width:31.428000px;}
._11_c00187{width:32.652000px;}
.fc0_c00187{color:rgb(0,0,0);}
.fs3_c00187{font-size:38.880000px;}
.fs2_c00187{font-size:47.520000px;}
.fs1_c00187{font-size:60.480000px;}
.fs0_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y3_c00187{bottom:4.320000px;}
.y5_c00187{bottom:25.200000px;}
.y4_c00187{bottom:32.040000px;}
.y1_c00187{bottom:57.240000px;}
.y2c_c00187{bottom:151.590000px;}
.y2b_c00187{bottom:168.870000px;}
.y2a_c00187{bottom:186.150000px;}
.y29_c00187{bottom:203.430000px;}
.y28_c00187{bottom:220.710000px;}
.y27_c00187{bottom:238.035000px;}
.y26_c00187{bottom:255.315000px;}
.y25_c00187{bottom:262.155000px;}
.y24_c00187{bottom:272.595000px;}
.y23_c00187{bottom:289.875000px;}
.y22_c00187{bottom:307.155000px;}
.y21_c00187{bottom:313.995000px;}
.y20_c00187{bottom:324.795000px;}
.y1f_c00187{bottom:367.665000px;}
.y1d_c00187{bottom:398.625000px;}
.y1e_c00187{bottom:406.905000px;}
.y1c_c00187{bottom:429.585000px;}
.y1b_c00187{bottom:460.905000px;}
.y1a_c00187{bottom:491.910000px;}
.y19_c00187{bottom:522.870000px;}
.y18_c00187{bottom:553.830000px;}
.y17_c00187{bottom:594.150000px;}
.y16_c00187{bottom:625.140000px;}
.y14_c00187{bottom:656.100000px;}
.y15_c00187{bottom:664.380000px;}
.y13_c00187{bottom:687.060000px;}
.y12_c00187{bottom:718.380000px;}
.y11_c00187{bottom:749.370000px;}
.y10_c00187{bottom:780.330000px;}
.yf_c00187{bottom:811.290000px;}
.ye_c00187{bottom:849.135000px;}
.yd_c00187{bottom:875.055000px;}
.yc_c00187{bottom:909.975000px;}
.yb_c00187{bottom:944.895000px;}
.ya_c00187{bottom:979.845000px;}
.y9_c00187{bottom:1016.925000px;}
.y8_c00187{bottom:1056.885000px;}
.y7_c00187{bottom:1087.890000px;}
.y6_c00187{bottom:1119.210000px;}
.y2_c00187{bottom:1189.050000px;}
.h3_c00187{height:20.550000px;}
.hb_c00187{height:38.158594px;}
.h4_c00187{height:41.395500px;}
.ha_c00187{height:46.638281px;}
.hc_c00187{height:54.219375px;}
.h8_c00187{height:59.328281px;}
.h6_c00187{height:59.357813px;}
.h7_c00187{height:60.952500px;}
.h2_c00187{height:64.546875px;}
.h5_c00187{height:70.664062px;}
.h9_c00187{height:1262.875500px;}
.h0_c00187{height:1262.880000px;}
.h1_c00187{height:1263.000000px;}
.w2_c00187{width:8.310000px;}
.w3_c00187{width:638.190000px;}
.w4_c00187{width:893.157000px;}
.w0_c00187{width:893.160000px;}
.w1_c00187{width:893.250000px;}
.x0_c00187{left:0.000000px;}
.x3_c00187{left:127.489500px;}
.xa_c00187{left:142.632000px;}
.x1_c00187{left:154.515000px;}
.x4_c00187{left:169.995000px;}
.x9_c00187{left:343.590000px;}
.x5_c00187{left:405.537000px;}
.x6_c00187{left:423.900000px;}
.x7_c00187{left:714.522000px;}
.x8_c00187{left:732.885000px;}
.x2_c00187{left:757.365000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls15_c00187{letter-spacing:-0.864000pt;}
.lsf_c00187{letter-spacing:-0.810667pt;}
.ls10_c00187{letter-spacing:-0.483733pt;}
.ls11_c00187{letter-spacing:-0.432533pt;}
.lsc_c00187{letter-spacing:-0.256000pt;}
.lsb_c00187{letter-spacing:0.000000pt;}
.ls6_c00187{letter-spacing:0.106667pt;}
.ls1_c00187{letter-spacing:0.128000pt;}
.ls7_c00187{letter-spacing:0.145920pt;}
.ls13_c00187{letter-spacing:0.148267pt;}
.ls0_c00187{letter-spacing:0.160000pt;}
.ls14_c00187{letter-spacing:0.278933pt;}
.lse_c00187{letter-spacing:0.342933pt;}
.lsa_c00187{letter-spacing:0.414720pt;}
.ls12_c00187{letter-spacing:0.414933pt;}
.lsd_c00187{letter-spacing:0.450667pt;}
.ls3_c00187{letter-spacing:0.629783pt;}
.ls2_c00187{letter-spacing:0.640000pt;}
.ls4_c00187{letter-spacing:1.440000pt;}
.ls5_c00187{letter-spacing:4.480000pt;}
.ls8_c00187{letter-spacing:5.760000pt;}
.ls9_c00187{letter-spacing:7.040000pt;}
.ws3_c00187{word-spacing:-53.760000pt;}
.ws0_c00187{word-spacing:-16.000000pt;}
.ws2_c00187{word-spacing:-13.890667pt;}
.ws7_c00187{word-spacing:-13.718933pt;}
.ws6_c00187{word-spacing:-13.588267pt;}
.ws1_c00187{word-spacing:-13.440000pt;}
.ws5_c00187{word-spacing:-13.007467pt;}
.ws4_c00187{word-spacing:-12.956267pt;}
.ws8_c00187{word-spacing:0.000000pt;}
._2_c00187{margin-left:-2.762667pt;}
._1_c00187{margin-left:-1.280000pt;}
._0_c00187{width:0.960000pt;}
._4_c00187{width:1.856000pt;}
._3_c00187{width:2.826667pt;}
._8_c00187{width:3.920002pt;}
._7_c00187{width:5.056000pt;}
._5_c00187{width:6.074665pt;}
._6_c00187{width:7.020273pt;}
._9_c00187{width:8.586667pt;}
._a_c00187{width:9.637849pt;}
._b_c00187{width:11.267787pt;}
._c_c00187{width:12.365759pt;}
._12_c00187{width:14.400000pt;}
._13_c00187{width:15.533865pt;}
._d_c00187{width:19.776000pt;}
._e_c00187{width:21.312000pt;}
._f_c00187{width:27.018667pt;}
._10_c00187{width:27.936000pt;}
._11_c00187{width:29.024000pt;}
.fs3_c00187{font-size:34.560000pt;}
.fs2_c00187{font-size:42.240000pt;}
.fs1_c00187{font-size:53.760000pt;}
.fs0_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y3_c00187{bottom:3.840000pt;}
.y5_c00187{bottom:22.400000pt;}
.y4_c00187{bottom:28.480000pt;}
.y1_c00187{bottom:50.880000pt;}
.y2c_c00187{bottom:134.746667pt;}
.y2b_c00187{bottom:150.106667pt;}
.y2a_c00187{bottom:165.466667pt;}
.y29_c00187{bottom:180.826667pt;}
.y28_c00187{bottom:196.186667pt;}
.y27_c00187{bottom:211.586667pt;}
.y26_c00187{bottom:226.946667pt;}
.y25_c00187{bottom:233.026667pt;}
.y24_c00187{bottom:242.306667pt;}
.y23_c00187{bottom:257.666667pt;}
.y22_c00187{bottom:273.026667pt;}
.y21_c00187{bottom:279.106667pt;}
.y20_c00187{bottom:288.706667pt;}
.y1f_c00187{bottom:326.813333pt;}
.y1d_c00187{bottom:354.333333pt;}
.y1e_c00187{bottom:361.693333pt;}
.y1c_c00187{bottom:381.853333pt;}
.y1b_c00187{bottom:409.693333pt;}
.y1a_c00187{bottom:437.253333pt;}
.y19_c00187{bottom:464.773333pt;}
.y18_c00187{bottom:492.293333pt;}
.y17_c00187{bottom:528.133333pt;}
.y16_c00187{bottom:555.680000pt;}
.y14_c00187{bottom:583.200000pt;}
.y15_c00187{bottom:590.560000pt;}
.y13_c00187{bottom:610.720000pt;}
.y12_c00187{bottom:638.560000pt;}
.y11_c00187{bottom:666.106667pt;}
.y10_c00187{bottom:693.626667pt;}
.yf_c00187{bottom:721.146667pt;}
.ye_c00187{bottom:754.786667pt;}
.yd_c00187{bottom:777.826667pt;}
.yc_c00187{bottom:808.866667pt;}
.yb_c00187{bottom:839.906667pt;}
.ya_c00187{bottom:870.973333pt;}
.y9_c00187{bottom:903.933333pt;}
.y8_c00187{bottom:939.453333pt;}
.y7_c00187{bottom:967.013333pt;}
.y6_c00187{bottom:994.853333pt;}
.y2_c00187{bottom:1056.933333pt;}
.h3_c00187{height:18.266667pt;}
.hb_c00187{height:33.918750pt;}
.h4_c00187{height:36.796000pt;}
.ha_c00187{height:41.456250pt;}
.hc_c00187{height:48.195000pt;}
.h8_c00187{height:52.736250pt;}
.h6_c00187{height:52.762500pt;}
.h7_c00187{height:54.180000pt;}
.h2_c00187{height:57.375000pt;}
.h5_c00187{height:62.812500pt;}
.h9_c00187{height:1122.556000pt;}
.h0_c00187{height:1122.560000pt;}
.h1_c00187{height:1122.666667pt;}
.w2_c00187{width:7.386667pt;}
.w3_c00187{width:567.280000pt;}
.w4_c00187{width:793.917333pt;}
.w0_c00187{width:793.920000pt;}
.w1_c00187{width:794.000000pt;}
.x0_c00187{left:0.000000pt;}
.x3_c00187{left:113.324000pt;}
.xa_c00187{left:126.784000pt;}
.x1_c00187{left:137.346667pt;}
.x4_c00187{left:151.106667pt;}
.x9_c00187{left:305.413333pt;}
.x5_c00187{left:360.477333pt;}
.x6_c00187{left:376.800000pt;}
.x7_c00187{left:635.130667pt;}
.x8_c00187{left:651.453333pt;}
.x2_c00187{left:673.213333pt;}
}





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

.ir_c00188:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00188;src:url('chunks/assets/font_065593defb385bec07b9f846.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_8c63978a732e0a5de0613a28.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_e40b1b5e0191d2998b969cde.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;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_c00188;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00188;src:url('chunks/assets/font_9e05116f6f9ee6b07cb69da2.woff2')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00188;src:url('chunks/assets/font_73ed162ef313824a13772e91.woff2')format("woff");}.ff6_c00188{font-family:ff6_c00188;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls16_c00188{letter-spacing:-1.416000px;}
.ls14_c00188{letter-spacing:-0.972000px;}
.ls11_c00188{letter-spacing:-0.720000px;}
.ls10_c00188{letter-spacing:-0.648000px;}
.ls18_c00188{letter-spacing:-0.241800px;}
.ls13_c00188{letter-spacing:-0.169800px;}
.ls17_c00188{letter-spacing:-0.011400px;}
.lsf_c00188{letter-spacing:0.000000px;}
.ls12_c00188{letter-spacing:0.020400px;}
.ls8_c00188{letter-spacing:0.048960px;}
.lsc_c00188{letter-spacing:0.060600px;}
.ls5_c00188{letter-spacing:0.180000px;}
.ls15_c00188{letter-spacing:0.466800px;}
.ls2_c00188{letter-spacing:0.720000px;}
.lsd_c00188{letter-spacing:0.740160px;}
.ls0_c00188{letter-spacing:0.792000px;}
.ls1_c00188{letter-spacing:1.440000px;}
.ls3_c00188{letter-spacing:2.160000px;}
.ls6_c00188{letter-spacing:3.600000px;}
.ls4_c00188{letter-spacing:6.480000px;}
.lse_c00188{letter-spacing:12.240000px;}
.ls9_c00188{letter-spacing:16.560000px;}
.lsa_c00188{letter-spacing:16.580160px;}
.ls7_c00188{letter-spacing:18.000000px;}
.lsb_c00188{letter-spacing:18.120000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00188{word-spacing:-72.000000px;}
.ws0_c00188{word-spacing:-18.000000px;}
.ws5_c00188{word-spacing:-15.180600px;}
.ws3_c00188{word-spacing:-15.140400px;}
.ws2_c00188{word-spacing:-15.120000px;}
.ws7_c00188{word-spacing:-15.108600px;}
.ws4_c00188{word-spacing:-14.950200px;}
.ws8_c00188{word-spacing:-14.878200px;}
.ws6_c00188{word-spacing:-13.704000px;}
.ws9_c00188{word-spacing:0.000000px;}
._1_c00188{margin-left:-2.376000px;}
._3_c00188{margin-left:-1.152000px;}
._2_c00188{width:1.368000px;}
._4_c00188{width:2.376000px;}
._0_c00188{width:3.672000px;}
._6_c00188{width:4.752000px;}
._5_c00188{width:5.976000px;}
._7_c00188{width:7.560000px;}
._9_c00188{width:8.640000px;}
._8_c00188{width:10.080000px;}
._a_c00188{width:11.880000px;}
._b_c00188{width:13.608000px;}
._10_c00188{width:16.223976px;}
._12_c00188{width:17.419248px;}
._11_c00188{width:18.886798px;}
._c_c00188{width:20.304000px;}
._d_c00188{width:21.384000px;}
._e_c00188{width:22.680000px;}
._f_c00188{width:23.700024px;}
.fc1_c00188{color:rgb(255,0,0);}
.fc0_c00188{color:rgb(0,0,0);}
.fs2_c00188{font-size:38.880000px;}
.fs1_c00188{font-size:47.520000px;}
.fs3_c00188{font-size:60.480000px;}
.fs0_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y3_c00188{bottom:4.320000px;}
.y5_c00188{bottom:25.200000px;}
.y4_c00188{bottom:32.040000px;}
.y1_c00188{bottom:57.240000px;}
.y35_c00188{bottom:151.590000px;}
.y34_c00188{bottom:168.870000px;}
.y33_c00188{bottom:186.150000px;}
.y32_c00188{bottom:192.990000px;}
.y31_c00188{bottom:203.430000px;}
.y30_c00188{bottom:220.710000px;}
.y2f_c00188{bottom:238.035000px;}
.y2e_c00188{bottom:255.315000px;}
.y2d_c00188{bottom:272.595000px;}
.y2c_c00188{bottom:289.875000px;}
.y2b_c00188{bottom:296.715000px;}
.y2a_c00188{bottom:307.155000px;}
.y29_c00188{bottom:313.995000px;}
.y28_c00188{bottom:324.435000px;}
.y27_c00188{bottom:341.355000px;}
.y26_c00188{bottom:348.195000px;}
.y25_c00188{bottom:358.665000px;}
.y24_c00188{bottom:375.945000px;}
.y23_c00188{bottom:393.225000px;}
.y22_c00188{bottom:400.065000px;}
.y21_c00188{bottom:411.225000px;}
.y20_c00188{bottom:440.025000px;}
.y1f_c00188{bottom:470.985000px;}
.y1e_c00188{bottom:501.990000px;}
.y1d_c00188{bottom:532.950000px;}
.y1c_c00188{bottom:563.910000px;}
.y1b_c00188{bottom:595.230000px;}
.y1a_c00188{bottom:626.220000px;}
.y19_c00188{bottom:666.180000px;}
.y18_c00188{bottom:697.140000px;}
.y16_c00188{bottom:737.490000px;}
.y17_c00188{bottom:745.770000px;}
.y15_c00188{bottom:768.450000px;}
.y13_c00188{bottom:799.410000px;}
.y14_c00188{bottom:807.690000px;}
.y12_c00188{bottom:830.370000px;}
.y11_c00188{bottom:861.735000px;}
.yf_c00188{bottom:892.695000px;}
.y10_c00188{bottom:900.975000px;}
.ye_c00188{bottom:932.655000px;}
.yd_c00188{bottom:963.645000px;}
.yc_c00188{bottom:994.965000px;}
.ya_c00188{bottom:1025.925000px;}
.yb_c00188{bottom:1034.205000px;}
.y8_c00188{bottom:1056.885000px;}
.y9_c00188{bottom:1065.165000px;}
.y7_c00188{bottom:1087.890000px;}
.y6_c00188{bottom:1119.210000px;}
.y2_c00188{bottom:1189.050000px;}
.h3_c00188{height:20.550000px;}
.h9_c00188{height:34.855313px;}
.hc_c00188{height:38.158594px;}
.h4_c00188{height:41.395500px;}
.h7_c00188{height:46.638281px;}
.hb_c00188{height:54.219375px;}
.ha_c00188{height:59.357813px;}
.h2_c00188{height:64.546875px;}
.h8_c00188{height:70.628906px;}
.h5_c00188{height:70.664062px;}
.h6_c00188{height:1262.875500px;}
.h0_c00188{height:1262.880000px;}
.h1_c00188{height:1263.000000px;}
.w2_c00188{width:8.310000px;}
.w3_c00188{width:638.190000px;}
.w4_c00188{width:893.157000px;}
.w0_c00188{width:893.160000px;}
.w1_c00188{width:893.250000px;}
.x0_c00188{left:0.000000px;}
.x3_c00188{left:127.489500px;}
.x10_c00188{left:142.632000px;}
.x1_c00188{left:154.515000px;}
.x8_c00188{left:169.995000px;}
.x4_c00188{left:273.342000px;}
.x5_c00188{left:291.705000px;}
.xf_c00188{left:343.590000px;}
.x6_c00188{left:578.727000px;}
.x7_c00188{left:597.135000px;}
.xd_c00188{left:680.322000px;}
.xe_c00188{left:698.685000px;}
.xb_c00188{left:742.962000px;}
.x9_c00188{left:747.282000px;}
.x2_c00188{left:757.365000px;}
.xc_c00188{left:761.370000px;}
.xa_c00188{left:765.690000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls16_c00188{letter-spacing:-1.258667pt;}
.ls14_c00188{letter-spacing:-0.864000pt;}
.ls11_c00188{letter-spacing:-0.640000pt;}
.ls10_c00188{letter-spacing:-0.576000pt;}
.ls18_c00188{letter-spacing:-0.214933pt;}
.ls13_c00188{letter-spacing:-0.150933pt;}
.ls17_c00188{letter-spacing:-0.010133pt;}
.lsf_c00188{letter-spacing:0.000000pt;}
.ls12_c00188{letter-spacing:0.018133pt;}
.ls8_c00188{letter-spacing:0.043520pt;}
.lsc_c00188{letter-spacing:0.053867pt;}
.ls5_c00188{letter-spacing:0.160000pt;}
.ls15_c00188{letter-spacing:0.414933pt;}
.ls2_c00188{letter-spacing:0.640000pt;}
.lsd_c00188{letter-spacing:0.657920pt;}
.ls0_c00188{letter-spacing:0.704000pt;}
.ls1_c00188{letter-spacing:1.280000pt;}
.ls3_c00188{letter-spacing:1.920000pt;}
.ls6_c00188{letter-spacing:3.200000pt;}
.ls4_c00188{letter-spacing:5.760000pt;}
.lse_c00188{letter-spacing:10.880000pt;}
.ls9_c00188{letter-spacing:14.720000pt;}
.lsa_c00188{letter-spacing:14.737920pt;}
.ls7_c00188{letter-spacing:16.000000pt;}
.lsb_c00188{letter-spacing:16.106667pt;}
.ws1_c00188{word-spacing:-64.000000pt;}
.ws0_c00188{word-spacing:-16.000000pt;}
.ws5_c00188{word-spacing:-13.493867pt;}
.ws3_c00188{word-spacing:-13.458133pt;}
.ws2_c00188{word-spacing:-13.440000pt;}
.ws7_c00188{word-spacing:-13.429867pt;}
.ws4_c00188{word-spacing:-13.289067pt;}
.ws8_c00188{word-spacing:-13.225067pt;}
.ws6_c00188{word-spacing:-12.181333pt;}
.ws9_c00188{word-spacing:0.000000pt;}
._1_c00188{margin-left:-2.112000pt;}
._3_c00188{margin-left:-1.024000pt;}
._2_c00188{width:1.216000pt;}
._4_c00188{width:2.112000pt;}
._0_c00188{width:3.264000pt;}
._6_c00188{width:4.224000pt;}
._5_c00188{width:5.312000pt;}
._7_c00188{width:6.720000pt;}
._9_c00188{width:7.680000pt;}
._8_c00188{width:8.960000pt;}
._a_c00188{width:10.560000pt;}
._b_c00188{width:12.096000pt;}
._10_c00188{width:14.421312pt;}
._12_c00188{width:15.483776pt;}
._11_c00188{width:16.788265pt;}
._c_c00188{width:18.048000pt;}
._d_c00188{width:19.008000pt;}
._e_c00188{width:20.160000pt;}
._f_c00188{width:21.066688pt;}
.fs2_c00188{font-size:34.560000pt;}
.fs1_c00188{font-size:42.240000pt;}
.fs3_c00188{font-size:53.760000pt;}
.fs0_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y3_c00188{bottom:3.840000pt;}
.y5_c00188{bottom:22.400000pt;}
.y4_c00188{bottom:28.480000pt;}
.y1_c00188{bottom:50.880000pt;}
.y35_c00188{bottom:134.746667pt;}
.y34_c00188{bottom:150.106667pt;}
.y33_c00188{bottom:165.466667pt;}
.y32_c00188{bottom:171.546667pt;}
.y31_c00188{bottom:180.826667pt;}
.y30_c00188{bottom:196.186667pt;}
.y2f_c00188{bottom:211.586667pt;}
.y2e_c00188{bottom:226.946667pt;}
.y2d_c00188{bottom:242.306667pt;}
.y2c_c00188{bottom:257.666667pt;}
.y2b_c00188{bottom:263.746667pt;}
.y2a_c00188{bottom:273.026667pt;}
.y29_c00188{bottom:279.106667pt;}
.y28_c00188{bottom:288.386667pt;}
.y27_c00188{bottom:303.426667pt;}
.y26_c00188{bottom:309.506667pt;}
.y25_c00188{bottom:318.813333pt;}
.y24_c00188{bottom:334.173333pt;}
.y23_c00188{bottom:349.533333pt;}
.y22_c00188{bottom:355.613333pt;}
.y21_c00188{bottom:365.533333pt;}
.y20_c00188{bottom:391.133333pt;}
.y1f_c00188{bottom:418.653333pt;}
.y1e_c00188{bottom:446.213333pt;}
.y1d_c00188{bottom:473.733333pt;}
.y1c_c00188{bottom:501.253333pt;}
.y1b_c00188{bottom:529.093333pt;}
.y1a_c00188{bottom:556.640000pt;}
.y19_c00188{bottom:592.160000pt;}
.y18_c00188{bottom:619.680000pt;}
.y16_c00188{bottom:655.546667pt;}
.y17_c00188{bottom:662.906667pt;}
.y15_c00188{bottom:683.066667pt;}
.y13_c00188{bottom:710.586667pt;}
.y14_c00188{bottom:717.946667pt;}
.y12_c00188{bottom:738.106667pt;}
.y11_c00188{bottom:765.986667pt;}
.yf_c00188{bottom:793.506667pt;}
.y10_c00188{bottom:800.866667pt;}
.ye_c00188{bottom:829.026667pt;}
.yd_c00188{bottom:856.573333pt;}
.yc_c00188{bottom:884.413333pt;}
.ya_c00188{bottom:911.933333pt;}
.yb_c00188{bottom:919.293333pt;}
.y8_c00188{bottom:939.453333pt;}
.y9_c00188{bottom:946.813333pt;}
.y7_c00188{bottom:967.013333pt;}
.y6_c00188{bottom:994.853333pt;}
.y2_c00188{bottom:1056.933333pt;}
.h3_c00188{height:18.266667pt;}
.h9_c00188{height:30.982500pt;}
.hc_c00188{height:33.918750pt;}
.h4_c00188{height:36.796000pt;}
.h7_c00188{height:41.456250pt;}
.hb_c00188{height:48.195000pt;}
.ha_c00188{height:52.762500pt;}
.h2_c00188{height:57.375000pt;}
.h8_c00188{height:62.781250pt;}
.h5_c00188{height:62.812500pt;}
.h6_c00188{height:1122.556000pt;}
.h0_c00188{height:1122.560000pt;}
.h1_c00188{height:1122.666667pt;}
.w2_c00188{width:7.386667pt;}
.w3_c00188{width:567.280000pt;}
.w4_c00188{width:793.917333pt;}
.w0_c00188{width:793.920000pt;}
.w1_c00188{width:794.000000pt;}
.x0_c00188{left:0.000000pt;}
.x3_c00188{left:113.324000pt;}
.x10_c00188{left:126.784000pt;}
.x1_c00188{left:137.346667pt;}
.x8_c00188{left:151.106667pt;}
.x4_c00188{left:242.970667pt;}
.x5_c00188{left:259.293333pt;}
.xf_c00188{left:305.413333pt;}
.x6_c00188{left:514.424000pt;}
.x7_c00188{left:530.786667pt;}
.xd_c00188{left:604.730667pt;}
.xe_c00188{left:621.053333pt;}
.xb_c00188{left:660.410667pt;}
.x9_c00188{left:664.250667pt;}
.x2_c00188{left:673.213333pt;}
.xc_c00188{left:676.773333pt;}
.xa_c00188{left:680.613333pt;}
}





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

.ir_c00189:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00189;src:url('chunks/assets/font_9e44e95bbfea32923c2a1393.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_bf52964befc679924791cd5a.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_bd1e2311eb78264cc448475f.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;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_c00189;src:url('chunks/assets/font_bf5ac83f48cde4ad4c1fd8b8.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls2_c00189{letter-spacing:0.000000px;}
.ls3_c00189{letter-spacing:0.507000px;}
.ls0_c00189{letter-spacing:0.720000px;}
.ls1_c00189{letter-spacing:3.600000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:-18.000000px;}
.ws2_c00189{word-spacing:-15.627000px;}
.ws1_c00189{word-spacing:-15.120000px;}
.ws3_c00189{word-spacing:0.000000px;}
._2_c00189{margin-left:-3.528000px;}
._5_c00189{margin-left:-2.304000px;}
._3_c00189{margin-left:-1.008000px;}
._1_c00189{width:1.872000px;}
._0_c00189{width:3.240000px;}
._4_c00189{width:4.968000px;}
._7_c00189{width:6.912000px;}
._6_c00189{width:8.136000px;}
._11_c00189{width:9.144000px;}
._e_c00189{width:10.152000px;}
._b_c00189{width:11.448000px;}
._a_c00189{width:12.456000px;}
._10_c00189{width:13.596000px;}
._f_c00189{width:15.060000px;}
._14_c00189{width:18.446400px;}
._13_c00189{width:20.003996px;}
._12_c00189{width:21.606002px;}
._8_c00189{width:25.272000px;}
._9_c00189{width:26.424000px;}
._c_c00189{width:29.376000px;}
._d_c00189{width:31.248000px;}
.fc0_c00189{color:rgb(0,0,0);}
.fs2_c00189{font-size:38.880000px;}
.fs1_c00189{font-size:47.520000px;}
.fs3_c00189{font-size:60.480000px;}
.fs0_c00189{font-size:72.000000px;}
.y0_c00189{bottom:0.000000px;}
.y3_c00189{bottom:4.320000px;}
.y5_c00189{bottom:25.200000px;}
.y4_c00189{bottom:32.040000px;}
.y1_c00189{bottom:57.240000px;}
.y31_c00189{bottom:151.590000px;}
.y30_c00189{bottom:168.870000px;}
.y2f_c00189{bottom:186.150000px;}
.y2e_c00189{bottom:192.990000px;}
.y2d_c00189{bottom:203.430000px;}
.y2c_c00189{bottom:220.710000px;}
.y2b_c00189{bottom:238.035000px;}
.y2a_c00189{bottom:255.315000px;}
.y29_c00189{bottom:272.595000px;}
.y28_c00189{bottom:289.875000px;}
.y27_c00189{bottom:307.155000px;}
.y26_c00189{bottom:324.435000px;}
.y25_c00189{bottom:341.355000px;}
.y24_c00189{bottom:358.665000px;}
.y23_c00189{bottom:375.945000px;}
.y22_c00189{bottom:382.785000px;}
.y21_c00189{bottom:393.225000px;}
.y20_c00189{bottom:410.505000px;}
.y1f_c00189{bottom:417.345000px;}
.y1e_c00189{bottom:428.505000px;}
.y1d_c00189{bottom:452.985000px;}
.y1b_c00189{bottom:492.990000px;}
.y1c_c00189{bottom:501.270000px;}
.y1a_c00189{bottom:523.950000px;}
.y19_c00189{bottom:554.910000px;}
.y18_c00189{bottom:586.230000px;}
.y17_c00189{bottom:617.220000px;}
.y16_c00189{bottom:648.180000px;}
.y15_c00189{bottom:679.140000px;}
.y14_c00189{bottom:710.460000px;}
.y13_c00189{bottom:750.450000px;}
.y12_c00189{bottom:781.410000px;}
.y11_c00189{bottom:812.370000px;}
.y10_c00189{bottom:852.735000px;}
.ye_c00189{bottom:892.695000px;}
.yf_c00189{bottom:900.975000px;}
.yd_c00189{bottom:923.655000px;}
.yc_c00189{bottom:954.615000px;}
.yb_c00189{bottom:985.965000px;}
.y9_c00189{bottom:1025.925000px;}
.ya_c00189{bottom:1034.205000px;}
.y8_c00189{bottom:1056.885000px;}
.y7_c00189{bottom:1087.890000px;}
.y6_c00189{bottom:1119.210000px;}
.y2_c00189{bottom:1189.050000px;}
.h3_c00189{height:20.550000px;}
.h8_c00189{height:38.158594px;}
.h4_c00189{height:41.395500px;}
.h7_c00189{height:46.638281px;}
.h9_c00189{height:59.357813px;}
.h2_c00189{height:64.546875px;}
.h5_c00189{height:70.664062px;}
.h6_c00189{height:1262.875500px;}
.h0_c00189{height:1262.880000px;}
.h1_c00189{height:1263.000000px;}
.w2_c00189{width:8.310000px;}
.w3_c00189{width:638.190000px;}
.w4_c00189{width:893.157000px;}
.w0_c00189{width:893.160000px;}
.w1_c00189{width:893.250000px;}
.x0_c00189{left:0.000000px;}
.x3_c00189{left:127.489500px;}
.xc_c00189{left:142.632000px;}
.x1_c00189{left:154.515000px;}
.x6_c00189{left:178.635000px;}
.x7_c00189{left:333.867000px;}
.x9_c00189{left:339.987000px;}
.xb_c00189{left:343.590000px;}
.x8_c00189{left:352.230000px;}
.xa_c00189{left:358.350000px;}
.x4_c00189{left:518.607000px;}
.x5_c00189{left:536.970000px;}
.x2_c00189{left:757.365000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls2_c00189{letter-spacing:0.000000pt;}
.ls3_c00189{letter-spacing:0.450667pt;}
.ls0_c00189{letter-spacing:0.640000pt;}
.ls1_c00189{letter-spacing:3.200000pt;}
.ws0_c00189{word-spacing:-16.000000pt;}
.ws2_c00189{word-spacing:-13.890667pt;}
.ws1_c00189{word-spacing:-13.440000pt;}
.ws3_c00189{word-spacing:0.000000pt;}
._2_c00189{margin-left:-3.136000pt;}
._5_c00189{margin-left:-2.048000pt;}
._3_c00189{margin-left:-0.896000pt;}
._1_c00189{width:1.664000pt;}
._0_c00189{width:2.880000pt;}
._4_c00189{width:4.416000pt;}
._7_c00189{width:6.144000pt;}
._6_c00189{width:7.232000pt;}
._11_c00189{width:8.128000pt;}
._e_c00189{width:9.024000pt;}
._b_c00189{width:10.176000pt;}
._a_c00189{width:11.072000pt;}
._10_c00189{width:12.085333pt;}
._f_c00189{width:13.386667pt;}
._14_c00189{width:16.396800pt;}
._13_c00189{width:17.781330pt;}
._12_c00189{width:19.205335pt;}
._8_c00189{width:22.464000pt;}
._9_c00189{width:23.488000pt;}
._c_c00189{width:26.112000pt;}
._d_c00189{width:27.776000pt;}
.fs2_c00189{font-size:34.560000pt;}
.fs1_c00189{font-size:42.240000pt;}
.fs3_c00189{font-size:53.760000pt;}
.fs0_c00189{font-size:64.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y3_c00189{bottom:3.840000pt;}
.y5_c00189{bottom:22.400000pt;}
.y4_c00189{bottom:28.480000pt;}
.y1_c00189{bottom:50.880000pt;}
.y31_c00189{bottom:134.746667pt;}
.y30_c00189{bottom:150.106667pt;}
.y2f_c00189{bottom:165.466667pt;}
.y2e_c00189{bottom:171.546667pt;}
.y2d_c00189{bottom:180.826667pt;}
.y2c_c00189{bottom:196.186667pt;}
.y2b_c00189{bottom:211.586667pt;}
.y2a_c00189{bottom:226.946667pt;}
.y29_c00189{bottom:242.306667pt;}
.y28_c00189{bottom:257.666667pt;}
.y27_c00189{bottom:273.026667pt;}
.y26_c00189{bottom:288.386667pt;}
.y25_c00189{bottom:303.426667pt;}
.y24_c00189{bottom:318.813333pt;}
.y23_c00189{bottom:334.173333pt;}
.y22_c00189{bottom:340.253333pt;}
.y21_c00189{bottom:349.533333pt;}
.y20_c00189{bottom:364.893333pt;}
.y1f_c00189{bottom:370.973333pt;}
.y1e_c00189{bottom:380.893333pt;}
.y1d_c00189{bottom:402.653333pt;}
.y1b_c00189{bottom:438.213333pt;}
.y1c_c00189{bottom:445.573333pt;}
.y1a_c00189{bottom:465.733333pt;}
.y19_c00189{bottom:493.253333pt;}
.y18_c00189{bottom:521.093333pt;}
.y17_c00189{bottom:548.640000pt;}
.y16_c00189{bottom:576.160000pt;}
.y15_c00189{bottom:603.680000pt;}
.y14_c00189{bottom:631.520000pt;}
.y13_c00189{bottom:667.066667pt;}
.y12_c00189{bottom:694.586667pt;}
.y11_c00189{bottom:722.106667pt;}
.y10_c00189{bottom:757.986667pt;}
.ye_c00189{bottom:793.506667pt;}
.yf_c00189{bottom:800.866667pt;}
.yd_c00189{bottom:821.026667pt;}
.yc_c00189{bottom:848.546667pt;}
.yb_c00189{bottom:876.413333pt;}
.y9_c00189{bottom:911.933333pt;}
.ya_c00189{bottom:919.293333pt;}
.y8_c00189{bottom:939.453333pt;}
.y7_c00189{bottom:967.013333pt;}
.y6_c00189{bottom:994.853333pt;}
.y2_c00189{bottom:1056.933333pt;}
.h3_c00189{height:18.266667pt;}
.h8_c00189{height:33.918750pt;}
.h4_c00189{height:36.796000pt;}
.h7_c00189{height:41.456250pt;}
.h9_c00189{height:52.762500pt;}
.h2_c00189{height:57.375000pt;}
.h5_c00189{height:62.812500pt;}
.h6_c00189{height:1122.556000pt;}
.h0_c00189{height:1122.560000pt;}
.h1_c00189{height:1122.666667pt;}
.w2_c00189{width:7.386667pt;}
.w3_c00189{width:567.280000pt;}
.w4_c00189{width:793.917333pt;}
.w0_c00189{width:793.920000pt;}
.w1_c00189{width:794.000000pt;}
.x0_c00189{left:0.000000pt;}
.x3_c00189{left:113.324000pt;}
.xc_c00189{left:126.784000pt;}
.x1_c00189{left:137.346667pt;}
.x6_c00189{left:158.786667pt;}
.x7_c00189{left:296.770667pt;}
.x9_c00189{left:302.210667pt;}
.xb_c00189{left:305.413333pt;}
.x8_c00189{left:313.093333pt;}
.xa_c00189{left:318.533333pt;}
.x4_c00189{left:460.984000pt;}
.x5_c00189{left:477.306667pt;}
.x2_c00189{left:673.213333pt;}
}





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

.ir_c00190:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00190;src:url('chunks/assets/font_b35e7276ff532237e21a97a8.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_52214f685ae1f20142cdaf83.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_23a3b9165db81d84e763f66a.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;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_c00190;src:url('chunks/assets/font_d9e7e8431365b234e317809c.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls3_c00190{letter-spacing:0.000000px;}
.ls1_c00190{letter-spacing:0.720000px;}
.ls2_c00190{letter-spacing:2.160000px;}
.ls0_c00190{letter-spacing:12.240000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:-18.000000px;}
.ws1_c00190{word-spacing:0.000000px;}
._7_c00190{margin-left:-3.648024px;}
._3_c00190{margin-left:-2.304000px;}
._1_c00190{margin-left:-1.296000px;}
._0_c00190{width:1.368000px;}
._5_c00190{width:2.399976px;}
._6_c00190{width:3.912048px;}
._f_c00190{width:5.592024px;}
._10_c00190{width:6.851880px;}
._a_c00190{width:9.000000px;}
._8_c00190{width:10.440000px;}
._9_c00190{width:11.448000px;}
._b_c00190{width:12.456000px;}
._c_c00190{width:14.304024px;}
._2_c00190{width:19.584000px;}
._4_c00190{width:21.024000px;}
._13_c00190{width:22.296024px;}
._e_c00190{width:23.856048px;}
._d_c00190{width:25.344000px;}
._12_c00190{width:40.512096px;}
._11_c00190{width:41.544000px;}
.fc1_c00190{color:rgb(255,0,0);}
.fc0_c00190{color:rgb(0,0,0);}
.fs2_c00190{font-size:38.880000px;}
.fs1_c00190{font-size:47.520000px;}
.fs3_c00190{font-size:60.480000px;}
.fs0_c00190{font-size:72.000000px;}
.y0_c00190{bottom:0.000000px;}
.y3_c00190{bottom:4.320000px;}
.y5_c00190{bottom:25.200000px;}
.y4_c00190{bottom:32.040000px;}
.y1_c00190{bottom:57.240000px;}
.y29_c00190{bottom:151.590000px;}
.y28_c00190{bottom:168.870000px;}
.y27_c00190{bottom:186.150000px;}
.y26_c00190{bottom:203.430000px;}
.y25_c00190{bottom:220.710000px;}
.y24_c00190{bottom:238.035000px;}
.y23_c00190{bottom:244.875000px;}
.y22_c00190{bottom:256.035000px;}
.y21_c00190{bottom:293.475000px;}
.y20_c00190{bottom:324.795000px;}
.y1f_c00190{bottom:355.785000px;}
.y1e_c00190{bottom:386.745000px;}
.y1d_c00190{bottom:417.705000px;}
.y1c_c00190{bottom:449.025000px;}
.y1b_c00190{bottom:480.030000px;}
.y1a_c00190{bottom:510.990000px;}
.y19_c00190{bottom:541.950000px;}
.y18_c00190{bottom:581.910000px;}
.y17_c00190{bottom:613.260000px;}
.y16_c00190{bottom:644.220000px;}
.y15_c00190{bottom:675.180000px;}
.y14_c00190{bottom:706.140000px;}
.y13_c00190{bottom:737.490000px;}
.y12_c00190{bottom:768.450000px;}
.y10_c00190{bottom:799.410000px;}
.y11_c00190{bottom:807.690000px;}
.yf_c00190{bottom:830.370000px;}
.ye_c00190{bottom:861.735000px;}
.yd_c00190{bottom:901.695000px;}
.yc_c00190{bottom:932.655000px;}
.yb_c00190{bottom:963.645000px;}
.ya_c00190{bottom:994.965000px;}
.y9_c00190{bottom:1025.925000px;}
.y8_c00190{bottom:1056.885000px;}
.y7_c00190{bottom:1087.890000px;}
.y6_c00190{bottom:1119.210000px;}
.y2_c00190{bottom:1189.050000px;}
.h3_c00190{height:20.550000px;}
.h8_c00190{height:34.855313px;}
.h4_c00190{height:41.395500px;}
.h7_c00190{height:46.638281px;}
.h9_c00190{height:54.219375px;}
.h2_c00190{height:64.546875px;}
.h5_c00190{height:70.664062px;}
.h6_c00190{height:1262.875500px;}
.h0_c00190{height:1262.880000px;}
.h1_c00190{height:1263.000000px;}
.w2_c00190{width:8.310000px;}
.w3_c00190{width:638.190000px;}
.w4_c00190{width:893.157000px;}
.w0_c00190{width:893.160000px;}
.w1_c00190{width:893.250000px;}
.x0_c00190{left:0.000000px;}
.x3_c00190{left:127.489500px;}
.x8_c00190{left:142.632000px;}
.x1_c00190{left:154.515000px;}
.x4_c00190{left:178.635000px;}
.x7_c00190{left:343.590000px;}
.x5_c00190{left:372.027000px;}
.x6_c00190{left:390.390000px;}
.x2_c00190{left:757.365000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls3_c00190{letter-spacing:0.000000pt;}
.ls1_c00190{letter-spacing:0.640000pt;}
.ls2_c00190{letter-spacing:1.920000pt;}
.ls0_c00190{letter-spacing:10.880000pt;}
.ws0_c00190{word-spacing:-16.000000pt;}
.ws1_c00190{word-spacing:0.000000pt;}
._7_c00190{margin-left:-3.242688pt;}
._3_c00190{margin-left:-2.048000pt;}
._1_c00190{margin-left:-1.152000pt;}
._0_c00190{width:1.216000pt;}
._5_c00190{width:2.133312pt;}
._6_c00190{width:3.477376pt;}
._f_c00190{width:4.970688pt;}
._10_c00190{width:6.090560pt;}
._a_c00190{width:8.000000pt;}
._8_c00190{width:9.280000pt;}
._9_c00190{width:10.176000pt;}
._b_c00190{width:11.072000pt;}
._c_c00190{width:12.714688pt;}
._2_c00190{width:17.408000pt;}
._4_c00190{width:18.688000pt;}
._13_c00190{width:19.818688pt;}
._e_c00190{width:21.205376pt;}
._d_c00190{width:22.528000pt;}
._12_c00190{width:36.010752pt;}
._11_c00190{width:36.928000pt;}
.fs2_c00190{font-size:34.560000pt;}
.fs1_c00190{font-size:42.240000pt;}
.fs3_c00190{font-size:53.760000pt;}
.fs0_c00190{font-size:64.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y3_c00190{bottom:3.840000pt;}
.y5_c00190{bottom:22.400000pt;}
.y4_c00190{bottom:28.480000pt;}
.y1_c00190{bottom:50.880000pt;}
.y29_c00190{bottom:134.746667pt;}
.y28_c00190{bottom:150.106667pt;}
.y27_c00190{bottom:165.466667pt;}
.y26_c00190{bottom:180.826667pt;}
.y25_c00190{bottom:196.186667pt;}
.y24_c00190{bottom:211.586667pt;}
.y23_c00190{bottom:217.666667pt;}
.y22_c00190{bottom:227.586667pt;}
.y21_c00190{bottom:260.866667pt;}
.y20_c00190{bottom:288.706667pt;}
.y1f_c00190{bottom:316.253333pt;}
.y1e_c00190{bottom:343.773333pt;}
.y1d_c00190{bottom:371.293333pt;}
.y1c_c00190{bottom:399.133333pt;}
.y1b_c00190{bottom:426.693333pt;}
.y1a_c00190{bottom:454.213333pt;}
.y19_c00190{bottom:481.733333pt;}
.y18_c00190{bottom:517.253333pt;}
.y17_c00190{bottom:545.120000pt;}
.y16_c00190{bottom:572.640000pt;}
.y15_c00190{bottom:600.160000pt;}
.y14_c00190{bottom:627.680000pt;}
.y13_c00190{bottom:655.546667pt;}
.y12_c00190{bottom:683.066667pt;}
.y10_c00190{bottom:710.586667pt;}
.y11_c00190{bottom:717.946667pt;}
.yf_c00190{bottom:738.106667pt;}
.ye_c00190{bottom:765.986667pt;}
.yd_c00190{bottom:801.506667pt;}
.yc_c00190{bottom:829.026667pt;}
.yb_c00190{bottom:856.573333pt;}
.ya_c00190{bottom:884.413333pt;}
.y9_c00190{bottom:911.933333pt;}
.y8_c00190{bottom:939.453333pt;}
.y7_c00190{bottom:967.013333pt;}
.y6_c00190{bottom:994.853333pt;}
.y2_c00190{bottom:1056.933333pt;}
.h3_c00190{height:18.266667pt;}
.h8_c00190{height:30.982500pt;}
.h4_c00190{height:36.796000pt;}
.h7_c00190{height:41.456250pt;}
.h9_c00190{height:48.195000pt;}
.h2_c00190{height:57.375000pt;}
.h5_c00190{height:62.812500pt;}
.h6_c00190{height:1122.556000pt;}
.h0_c00190{height:1122.560000pt;}
.h1_c00190{height:1122.666667pt;}
.w2_c00190{width:7.386667pt;}
.w3_c00190{width:567.280000pt;}
.w4_c00190{width:793.917333pt;}
.w0_c00190{width:793.920000pt;}
.w1_c00190{width:794.000000pt;}
.x0_c00190{left:0.000000pt;}
.x3_c00190{left:113.324000pt;}
.x8_c00190{left:126.784000pt;}
.x1_c00190{left:137.346667pt;}
.x4_c00190{left:158.786667pt;}
.x7_c00190{left:305.413333pt;}
.x5_c00190{left:330.690667pt;}
.x6_c00190{left:347.013333pt;}
.x2_c00190{left:673.213333pt;}
}





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

.ir_c00191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00191;src:url('chunks/assets/font_3310cb6bcce8d2267b0f83de.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_ecdfe74fa84fc19a2a52cafb.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_c0195ef4a983e8ab54ad18a1.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_73fb9e8d6429f8d7557486d8.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;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_c00191;src:url('chunks/assets/font_2a9ada9dca224a0d82496187.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00191;src:url('chunks/assets/font_b87f9b698385d80d2a5f66e2.woff2')format("woff");}.ff6_c00191{font-family:ff6_c00191;line-height:1.104004;font-style:normal;font-weight: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_c00191;src:url('chunks/assets/font_8fcb5fc41c3c29b89596a0ac.woff2')format("woff");}.ff7_c00191{font-family:ff7_c00191;line-height:1.112305;font-style:normal;font-weight: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_c00191;src:url('chunks/assets/font_2eb651972d7d822d1e0e6f51.woff2')format("woff");}.ff8_c00191{font-family:ff8_c00191;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.lsc_c00191{letter-spacing:-1.512000px;}
.ls9_c00191{letter-spacing:-0.241800px;}
.ls6_c00191{letter-spacing:0.000000px;}
.ls8_c00191{letter-spacing:0.022800px;}
.ls0_c00191{letter-spacing:0.120000px;}
.lsb_c00191{letter-spacing:0.423600px;}
.ls5_c00191{letter-spacing:0.466560px;}
.ls7_c00191{letter-spacing:0.504000px;}
.lsa_c00191{letter-spacing:0.529800px;}
.ls4_c00191{letter-spacing:0.708693px;}
.ls2_c00191{letter-spacing:0.720000px;}
.ls1_c00191{letter-spacing:0.840000px;}
.ls3_c00191{letter-spacing:0.920398px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00191{word-spacing:-60.480000px;}
.ws0_c00191{word-spacing:-18.000000px;}
.ws3_c00191{word-spacing:-15.649800px;}
.ws4_c00191{word-spacing:-15.543600px;}
.ws2_c00191{word-spacing:-15.142800px;}
.ws1_c00191{word-spacing:-15.120000px;}
.ws6_c00191{word-spacing:0.000000px;}
._1_c00191{margin-left:-2.736000px;}
._2_c00191{margin-left:-1.440000px;}
._0_c00191{width:1.080000px;}
._4_c00191{width:2.232000px;}
._6_c00191{width:3.672000px;}
._3_c00191{width:4.752000px;}
._5_c00191{width:6.624000px;}
._9_c00191{width:8.043598px;}
._a_c00191{width:9.193202px;}
._8_c00191{width:11.088000px;}
._7_c00191{width:12.168000px;}
._e_c00191{width:20.399976px;}
._d_c00191{width:21.504024px;}
._b_c00191{width:22.896000px;}
._c_c00191{width:24.396000px;}
.fc0_c00191{color:rgb(0,0,0);}
.fs3_c00191{font-size:38.880000px;}
.fs1_c00191{font-size:47.520000px;}
.fs2_c00191{font-size:60.480000px;}
.fs0_c00191{font-size:72.000000px;}
.y0_c00191{bottom:0.000000px;}
.y3_c00191{bottom:4.320000px;}
.y5_c00191{bottom:25.200000px;}
.y4_c00191{bottom:32.040000px;}
.y1_c00191{bottom:57.240000px;}
.y2a_c00191{bottom:151.590000px;}
.y29_c00191{bottom:168.870000px;}
.y28_c00191{bottom:186.150000px;}
.y27_c00191{bottom:203.430000px;}
.y26_c00191{bottom:220.710000px;}
.y25_c00191{bottom:238.035000px;}
.y24_c00191{bottom:255.315000px;}
.y23_c00191{bottom:272.595000px;}
.y22_c00191{bottom:289.875000px;}
.y21_c00191{bottom:307.155000px;}
.y20_c00191{bottom:313.995000px;}
.y1f_c00191{bottom:324.795000px;}
.y1e_c00191{bottom:353.625000px;}
.y1d_c00191{bottom:384.585000px;}
.y1c_c00191{bottom:415.905000px;}
.y1b_c00191{bottom:446.865000px;}
.y1a_c00191{bottom:477.870000px;}
.y19_c00191{bottom:515.670000px;}
.y18_c00191{bottom:541.590000px;}
.y17_c00191{bottom:567.510000px;}
.y16_c00191{bottom:593.430000px;}
.y15_c00191{bottom:628.020000px;}
.y14_c00191{bottom:662.940000px;}
.y13_c00191{bottom:697.860000px;}
.y12_c00191{bottom:732.810000px;}
.y11_c00191{bottom:767.730000px;}
.y10_c00191{bottom:802.650000px;}
.yf_c00191{bottom:837.570000px;}
.ye_c00191{bottom:874.695000px;}
.yd_c00191{bottom:914.655000px;}
.yc_c00191{bottom:954.615000px;}
.yb_c00191{bottom:994.965000px;}
.ya_c00191{bottom:1025.925000px;}
.y8_c00191{bottom:1056.885000px;}
.y9_c00191{bottom:1065.165000px;}
.y7_c00191{bottom:1087.890000px;}
.y6_c00191{bottom:1119.210000px;}
.y2_c00191{bottom:1189.050000px;}
.h3_c00191{height:20.550000px;}
.hb_c00191{height:34.855313px;}
.h4_c00191{height:41.395500px;}
.h7_c00191{height:46.638281px;}
.hc_c00191{height:54.219375px;}
.hd_c00191{height:54.514688px;}
.ha_c00191{height:59.328281px;}
.h9_c00191{height:59.357813px;}
.h2_c00191{height:64.546875px;}
.h8_c00191{height:70.628906px;}
.h5_c00191{height:70.664062px;}
.h6_c00191{height:1262.875500px;}
.h0_c00191{height:1262.880000px;}
.h1_c00191{height:1263.000000px;}
.w2_c00191{width:8.310000px;}
.w3_c00191{width:638.190000px;}
.w4_c00191{width:893.157000px;}
.w0_c00191{width:893.160000px;}
.w1_c00191{width:893.250000px;}
.x0_c00191{left:0.000000px;}
.x3_c00191{left:127.489500px;}
.x9_c00191{left:142.632000px;}
.x1_c00191{left:154.515000px;}
.x7_c00191{left:169.995000px;}
.x6_c00191{left:180.795000px;}
.x4_c00191{left:318.747000px;}
.x5_c00191{left:337.110000px;}
.x8_c00191{left:343.590000px;}
.x2_c00191{left:757.365000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.lsc_c00191{letter-spacing:-1.344000pt;}
.ls9_c00191{letter-spacing:-0.214933pt;}
.ls6_c00191{letter-spacing:0.000000pt;}
.ls8_c00191{letter-spacing:0.020267pt;}
.ls0_c00191{letter-spacing:0.106667pt;}
.lsb_c00191{letter-spacing:0.376533pt;}
.ls5_c00191{letter-spacing:0.414720pt;}
.ls7_c00191{letter-spacing:0.448000pt;}
.lsa_c00191{letter-spacing:0.470933pt;}
.ls4_c00191{letter-spacing:0.629949pt;}
.ls2_c00191{letter-spacing:0.640000pt;}
.ls1_c00191{letter-spacing:0.746667pt;}
.ls3_c00191{letter-spacing:0.818132pt;}
.ws5_c00191{word-spacing:-53.760000pt;}
.ws0_c00191{word-spacing:-16.000000pt;}
.ws3_c00191{word-spacing:-13.910933pt;}
.ws4_c00191{word-spacing:-13.816533pt;}
.ws2_c00191{word-spacing:-13.460267pt;}
.ws1_c00191{word-spacing:-13.440000pt;}
.ws6_c00191{word-spacing:0.000000pt;}
._1_c00191{margin-left:-2.432000pt;}
._2_c00191{margin-left:-1.280000pt;}
._0_c00191{width:0.960000pt;}
._4_c00191{width:1.984000pt;}
._6_c00191{width:3.264000pt;}
._3_c00191{width:4.224000pt;}
._5_c00191{width:5.888000pt;}
._9_c00191{width:7.149865pt;}
._a_c00191{width:8.171735pt;}
._8_c00191{width:9.856000pt;}
._7_c00191{width:10.816000pt;}
._e_c00191{width:18.133312pt;}
._d_c00191{width:19.114688pt;}
._b_c00191{width:20.352000pt;}
._c_c00191{width:21.685333pt;}
.fs3_c00191{font-size:34.560000pt;}
.fs1_c00191{font-size:42.240000pt;}
.fs2_c00191{font-size:53.760000pt;}
.fs0_c00191{font-size:64.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y3_c00191{bottom:3.840000pt;}
.y5_c00191{bottom:22.400000pt;}
.y4_c00191{bottom:28.480000pt;}
.y1_c00191{bottom:50.880000pt;}
.y2a_c00191{bottom:134.746667pt;}
.y29_c00191{bottom:150.106667pt;}
.y28_c00191{bottom:165.466667pt;}
.y27_c00191{bottom:180.826667pt;}
.y26_c00191{bottom:196.186667pt;}
.y25_c00191{bottom:211.586667pt;}
.y24_c00191{bottom:226.946667pt;}
.y23_c00191{bottom:242.306667pt;}
.y22_c00191{bottom:257.666667pt;}
.y21_c00191{bottom:273.026667pt;}
.y20_c00191{bottom:279.106667pt;}
.y1f_c00191{bottom:288.706667pt;}
.y1e_c00191{bottom:314.333333pt;}
.y1d_c00191{bottom:341.853333pt;}
.y1c_c00191{bottom:369.693333pt;}
.y1b_c00191{bottom:397.213333pt;}
.y1a_c00191{bottom:424.773333pt;}
.y19_c00191{bottom:458.373333pt;}
.y18_c00191{bottom:481.413333pt;}
.y17_c00191{bottom:504.453333pt;}
.y16_c00191{bottom:527.493333pt;}
.y15_c00191{bottom:558.240000pt;}
.y14_c00191{bottom:589.280000pt;}
.y13_c00191{bottom:620.320000pt;}
.y12_c00191{bottom:651.386667pt;}
.y11_c00191{bottom:682.426667pt;}
.y10_c00191{bottom:713.466667pt;}
.yf_c00191{bottom:744.506667pt;}
.ye_c00191{bottom:777.506667pt;}
.yd_c00191{bottom:813.026667pt;}
.yc_c00191{bottom:848.546667pt;}
.yb_c00191{bottom:884.413333pt;}
.ya_c00191{bottom:911.933333pt;}
.y8_c00191{bottom:939.453333pt;}
.y9_c00191{bottom:946.813333pt;}
.y7_c00191{bottom:967.013333pt;}
.y6_c00191{bottom:994.853333pt;}
.y2_c00191{bottom:1056.933333pt;}
.h3_c00191{height:18.266667pt;}
.hb_c00191{height:30.982500pt;}
.h4_c00191{height:36.796000pt;}
.h7_c00191{height:41.456250pt;}
.hc_c00191{height:48.195000pt;}
.hd_c00191{height:48.457500pt;}
.ha_c00191{height:52.736250pt;}
.h9_c00191{height:52.762500pt;}
.h2_c00191{height:57.375000pt;}
.h8_c00191{height:62.781250pt;}
.h5_c00191{height:62.812500pt;}
.h6_c00191{height:1122.556000pt;}
.h0_c00191{height:1122.560000pt;}
.h1_c00191{height:1122.666667pt;}
.w2_c00191{width:7.386667pt;}
.w3_c00191{width:567.280000pt;}
.w4_c00191{width:793.917333pt;}
.w0_c00191{width:793.920000pt;}
.w1_c00191{width:794.000000pt;}
.x0_c00191{left:0.000000pt;}
.x3_c00191{left:113.324000pt;}
.x9_c00191{left:126.784000pt;}
.x1_c00191{left:137.346667pt;}
.x7_c00191{left:151.106667pt;}
.x6_c00191{left:160.706667pt;}
.x4_c00191{left:283.330667pt;}
.x5_c00191{left:299.653333pt;}
.x8_c00191{left:305.413333pt;}
.x2_c00191{left:673.213333pt;}
}





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

.ir_c00192:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00192;src:url('chunks/assets/font_4a056728ad74bad911c0aa74.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_39232e8c3421b310d6e2053e.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_5c7791df52b2401c0d54656e.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_db855cffb32894a08a2d4890.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;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_c00192;src:url('chunks/assets/font_e16d971254dee0d78d69b0e1.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00192;src:url('chunks/assets/font_109eced18207f3a365dd3a9b.woff2')format("woff");}.ff6_c00192{font-family:ff6_c00192;line-height:1.104004;font-style:normal;font-weight: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_c00192;src:url('chunks/assets/font_03a80bc0aeaaf4291f59b46f.woff2')format("woff");}.ff7_c00192{font-family:ff7_c00192;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.lsb_c00192{letter-spacing:-0.532800px;}
.lsc_c00192{letter-spacing:-0.360000px;}
.ls8_c00192{letter-spacing:-0.241800px;}
.ls6_c00192{letter-spacing:0.000000px;}
.ls9_c00192{letter-spacing:0.166800px;}
.ls2_c00192{letter-spacing:0.518400px;}
.ls7_c00192{letter-spacing:0.529800px;}
.lsa_c00192{letter-spacing:0.702000px;}
.ls0_c00192{letter-spacing:0.708480px;}
.ls1_c00192{letter-spacing:0.720000px;}
.ls4_c00192{letter-spacing:0.740091px;}
.ls3_c00192{letter-spacing:0.900000px;}
.ls5_c00192{letter-spacing:21.744000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00192{word-spacing:-72.000000px;}
.ws3_c00192{word-spacing:-60.480000px;}
.ws0_c00192{word-spacing:-18.000000px;}
.ws7_c00192{word-spacing:-17.640000px;}
.ws6_c00192{word-spacing:-15.822000px;}
.ws5_c00192{word-spacing:-15.286800px;}
.ws2_c00192{word-spacing:-15.120000px;}
.ws4_c00192{word-spacing:-14.878200px;}
.ws8_c00192{word-spacing:0.000000px;}
._e_c00192{margin-left:-5.760000px;}
._9_c00192{margin-left:-3.312000px;}
._2_c00192{margin-left:-2.304000px;}
._0_c00192{margin-left:-1.296000px;}
._1_c00192{width:1.368000px;}
._3_c00192{width:2.952000px;}
._4_c00192{width:4.392000px;}
._8_c00192{width:6.120000px;}
._6_c00192{width:7.128000px;}
._5_c00192{width:9.504000px;}
._7_c00192{width:11.016000px;}
._f_c00192{width:13.032000px;}
._10_c00192{width:14.135976px;}
._a_c00192{width:16.992000px;}
._b_c00192{width:19.008000px;}
._d_c00192{width:73.440000px;}
._c_c00192{width:74.952000px;}
.fc0_c00192{color:rgb(0,0,0);}
.fs1_c00192{font-size:60.480000px;}
.fs0_c00192{font-size:72.000000px;}
.y0_c00192{bottom:0.000000px;}
.y3_c00192{bottom:4.320000px;}
.y5_c00192{bottom:25.200000px;}
.y4_c00192{bottom:32.040000px;}
.y1_c00192{bottom:57.240000px;}
.y21_c00192{bottom:235.875000px;}
.y20_c00192{bottom:266.835000px;}
.y1f_c00192{bottom:297.795000px;}
.y1e_c00192{bottom:328.755000px;}
.y1d_c00192{bottom:360.105000px;}
.y1c_c00192{bottom:391.065000px;}
.y1b_c00192{bottom:431.025000px;}
.y1a_c00192{bottom:461.985000px;}
.y19_c00192{bottom:493.350000px;}
.y18_c00192{bottom:530.790000px;}
.y17_c00192{bottom:556.710000px;}
.y16_c00192{bottom:591.630000px;}
.y15_c00192{bottom:626.580000px;}
.y14_c00192{bottom:661.500000px;}
.y13_c00192{bottom:696.420000px;}
.y12_c00192{bottom:731.370000px;}
.y11_c00192{bottom:768.450000px;}
.y10_c00192{bottom:808.410000px;}
.yf_c00192{bottom:839.370000px;}
.ye_c00192{bottom:870.735000px;}
.yd_c00192{bottom:901.695000px;}
.yc_c00192{bottom:932.655000px;}
.yb_c00192{bottom:963.645000px;}
.ya_c00192{bottom:994.965000px;}
.y9_c00192{bottom:1025.925000px;}
.y8_c00192{bottom:1056.885000px;}
.y7_c00192{bottom:1087.890000px;}
.y6_c00192{bottom:1119.210000px;}
.y2_c00192{bottom:1189.050000px;}
.h3_c00192{height:20.550000px;}
.h4_c00192{height:41.395500px;}
.h7_c00192{height:59.328281px;}
.h6_c00192{height:59.357813px;}
.h2_c00192{height:64.546875px;}
.h5_c00192{height:70.664062px;}
.h8_c00192{height:74.004654px;}
.h0_c00192{height:1262.880000px;}
.h1_c00192{height:1263.000000px;}
.w2_c00192{width:8.310000px;}
.w3_c00192{width:638.190000px;}
.w0_c00192{width:893.160000px;}
.w1_c00192{width:893.250000px;}
.x0_c00192{left:0.000000px;}
.x3_c00192{left:127.489500px;}
.x1_c00192{left:154.515000px;}
.x4_c00192{left:169.995000px;}
.x2_c00192{left:757.365000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.lsb_c00192{letter-spacing:-0.473600pt;}
.lsc_c00192{letter-spacing:-0.320000pt;}
.ls8_c00192{letter-spacing:-0.214933pt;}
.ls6_c00192{letter-spacing:0.000000pt;}
.ls9_c00192{letter-spacing:0.148267pt;}
.ls2_c00192{letter-spacing:0.460800pt;}
.ls7_c00192{letter-spacing:0.470933pt;}
.lsa_c00192{letter-spacing:0.624000pt;}
.ls0_c00192{letter-spacing:0.629760pt;}
.ls1_c00192{letter-spacing:0.640000pt;}
.ls4_c00192{letter-spacing:0.657859pt;}
.ls3_c00192{letter-spacing:0.800000pt;}
.ls5_c00192{letter-spacing:19.328000pt;}
.ws1_c00192{word-spacing:-64.000000pt;}
.ws3_c00192{word-spacing:-53.760000pt;}
.ws0_c00192{word-spacing:-16.000000pt;}
.ws7_c00192{word-spacing:-15.680000pt;}
.ws6_c00192{word-spacing:-14.064000pt;}
.ws5_c00192{word-spacing:-13.588267pt;}
.ws2_c00192{word-spacing:-13.440000pt;}
.ws4_c00192{word-spacing:-13.225067pt;}
.ws8_c00192{word-spacing:0.000000pt;}
._e_c00192{margin-left:-5.120000pt;}
._9_c00192{margin-left:-2.944000pt;}
._2_c00192{margin-left:-2.048000pt;}
._0_c00192{margin-left:-1.152000pt;}
._1_c00192{width:1.216000pt;}
._3_c00192{width:2.624000pt;}
._4_c00192{width:3.904000pt;}
._8_c00192{width:5.440000pt;}
._6_c00192{width:6.336000pt;}
._5_c00192{width:8.448000pt;}
._7_c00192{width:9.792000pt;}
._f_c00192{width:11.584000pt;}
._10_c00192{width:12.565312pt;}
._a_c00192{width:15.104000pt;}
._b_c00192{width:16.896000pt;}
._d_c00192{width:65.280000pt;}
._c_c00192{width:66.624000pt;}
.fs1_c00192{font-size:53.760000pt;}
.fs0_c00192{font-size:64.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y3_c00192{bottom:3.840000pt;}
.y5_c00192{bottom:22.400000pt;}
.y4_c00192{bottom:28.480000pt;}
.y1_c00192{bottom:50.880000pt;}
.y21_c00192{bottom:209.666667pt;}
.y20_c00192{bottom:237.186667pt;}
.y1f_c00192{bottom:264.706667pt;}
.y1e_c00192{bottom:292.226667pt;}
.y1d_c00192{bottom:320.093333pt;}
.y1c_c00192{bottom:347.613333pt;}
.y1b_c00192{bottom:383.133333pt;}
.y1a_c00192{bottom:410.653333pt;}
.y19_c00192{bottom:438.533333pt;}
.y18_c00192{bottom:471.813333pt;}
.y17_c00192{bottom:494.853333pt;}
.y16_c00192{bottom:525.893333pt;}
.y15_c00192{bottom:556.960000pt;}
.y14_c00192{bottom:588.000000pt;}
.y13_c00192{bottom:619.040000pt;}
.y12_c00192{bottom:650.106667pt;}
.y11_c00192{bottom:683.066667pt;}
.y10_c00192{bottom:718.586667pt;}
.yf_c00192{bottom:746.106667pt;}
.ye_c00192{bottom:773.986667pt;}
.yd_c00192{bottom:801.506667pt;}
.yc_c00192{bottom:829.026667pt;}
.yb_c00192{bottom:856.573333pt;}
.ya_c00192{bottom:884.413333pt;}
.y9_c00192{bottom:911.933333pt;}
.y8_c00192{bottom:939.453333pt;}
.y7_c00192{bottom:967.013333pt;}
.y6_c00192{bottom:994.853333pt;}
.y2_c00192{bottom:1056.933333pt;}
.h3_c00192{height:18.266667pt;}
.h4_c00192{height:36.796000pt;}
.h7_c00192{height:52.736250pt;}
.h6_c00192{height:52.762500pt;}
.h2_c00192{height:57.375000pt;}
.h5_c00192{height:62.812500pt;}
.h8_c00192{height:65.781915pt;}
.h0_c00192{height:1122.560000pt;}
.h1_c00192{height:1122.666667pt;}
.w2_c00192{width:7.386667pt;}
.w3_c00192{width:567.280000pt;}
.w0_c00192{width:793.920000pt;}
.w1_c00192{width:794.000000pt;}
.x0_c00192{left:0.000000pt;}
.x3_c00192{left:113.324000pt;}
.x1_c00192{left:137.346667pt;}
.x4_c00192{left:151.106667pt;}
.x2_c00192{left:673.213333pt;}
}





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

.ir_c00193:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00193;src:url('chunks/assets/font_eb3e7854f96a24254f755477.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_1445266d64b5cd324930bf90.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_003b298e47da22e3c5d657f8.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00193;src:url('chunks/assets/font_4ece7104ddfc2d2251f692a6.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;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_c00193;src:url('chunks/assets/font_cff595283fbe187c99a80cfb.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00193;src:url('chunks/assets/font_53078b02a761ad5cc15e339d.woff2')format("woff");}.ff6_c00193{font-family:ff6_c00193;line-height:1.104004;font-style:normal;font-weight: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_c00193;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00193{font-family:ff7_c00193;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls11_c00193{letter-spacing:-1.440000px;}
.ls14_c00193{letter-spacing:-0.504000px;}
.ls15_c00193{letter-spacing:-0.360000px;}
.lse_c00193{letter-spacing:-0.288000px;}
.lsf_c00193{letter-spacing:-0.144000px;}
.lsd_c00193{letter-spacing:0.000000px;}
.lsa_c00193{letter-spacing:0.072000px;}
.ls13_c00193{letter-spacing:0.144000px;}
.ls10_c00193{letter-spacing:0.288000px;}
.lsc_c00193{letter-spacing:0.504000px;}
.ls12_c00193{letter-spacing:0.576000px;}
.ls2_c00193{letter-spacing:0.720000px;}
.ls3_c00193{letter-spacing:1.440000px;}
.ls4_c00193{letter-spacing:2.160000px;}
.ls5_c00193{letter-spacing:3.600000px;}
.ls7_c00193{letter-spacing:5.040000px;}
.lsb_c00193{letter-spacing:6.480000px;}
.ls1_c00193{letter-spacing:7.920000px;}
.ls9_c00193{letter-spacing:9.360000px;}
.ls8_c00193{letter-spacing:10.800000px;}
.ls0_c00193{letter-spacing:15.120000px;}
.ls6_c00193{letter-spacing:16.560000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00193{word-spacing:-72.000000px;}
.ws3_c00193{word-spacing:-18.720000px;}
.ws2_c00193{word-spacing:-18.288000px;}
.ws5_c00193{word-spacing:-18.072000px;}
.ws0_c00193{word-spacing:-18.000000px;}
.ws1_c00193{word-spacing:-17.856000px;}
.ws6_c00193{word-spacing:-17.640000px;}
.ws7_c00193{word-spacing:-15.120000px;}
.ws8_c00193{word-spacing:0.000000px;}
._5_c00193{margin-left:-2.808000px;}
._0_c00193{margin-left:-1.728000px;}
._2_c00193{width:1.080000px;}
._4_c00193{width:2.232000px;}
._7_c00193{width:3.240000px;}
._e_c00193{width:4.248000px;}
._a_c00193{width:5.256000px;}
._b_c00193{width:6.408000px;}
._1_c00193{width:7.848000px;}
._3_c00193{width:9.720000px;}
._10_c00193{width:10.728000px;}
._f_c00193{width:12.168000px;}
._9_c00193{width:13.740000px;}
._6_c00193{width:15.048000px;}
._8_c00193{width:16.776000px;}
._c_c00193{width:27.648000px;}
._d_c00193{width:29.880000px;}
._11_c00193{width:31.608000px;}
.fc0_c00193{color:rgb(0,0,0);}
.fs2_c00193{font-size:38.880000px;}
.fs1_c00193{font-size:47.520000px;}
.fs3_c00193{font-size:60.480000px;}
.fs0_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y3_c00193{bottom:4.320000px;}
.y5_c00193{bottom:25.200000px;}
.y4_c00193{bottom:32.040000px;}
.y1_c00193{bottom:57.240000px;}
.y2b_c00193{bottom:151.590000px;}
.y2a_c00193{bottom:168.870000px;}
.y29_c00193{bottom:175.710000px;}
.y28_c00193{bottom:186.150000px;}
.y27_c00193{bottom:203.430000px;}
.y26_c00193{bottom:210.270000px;}
.y25_c00193{bottom:221.430000px;}
.y24_c00193{bottom:249.555000px;}
.y23_c00193{bottom:280.515000px;}
.y22_c00193{bottom:311.475000px;}
.y21_c00193{bottom:342.795000px;}
.y20_c00193{bottom:373.785000px;}
.y1f_c00193{bottom:404.745000px;}
.y1e_c00193{bottom:435.705000px;}
.y1d_c00193{bottom:467.025000px;}
.y1c_c00193{bottom:498.030000px;}
.y1b_c00193{bottom:528.990000px;}
.y1a_c00193{bottom:559.950000px;}
.y18_c00193{bottom:590.910000px;}
.y19_c00193{bottom:599.220000px;}
.y17_c00193{bottom:622.260000px;}
.y16_c00193{bottom:653.220000px;}
.y15_c00193{bottom:684.180000px;}
.y14_c00193{bottom:715.140000px;}
.y13_c00193{bottom:746.490000px;}
.y12_c00193{bottom:777.450000px;}
.y11_c00193{bottom:808.410000px;}
.y10_c00193{bottom:839.370000px;}
.yf_c00193{bottom:870.735000px;}
.ye_c00193{bottom:901.695000px;}
.yd_c00193{bottom:932.655000px;}
.yc_c00193{bottom:963.645000px;}
.yb_c00193{bottom:994.965000px;}
.ya_c00193{bottom:1025.925000px;}
.y9_c00193{bottom:1056.885000px;}
.y8_c00193{bottom:1087.890000px;}
.y6_c00193{bottom:1119.210000px;}
.y7_c00193{bottom:1127.490000px;}
.y2_c00193{bottom:1189.050000px;}
.h3_c00193{height:20.550000px;}
.h9_c00193{height:38.158594px;}
.h4_c00193{height:41.395500px;}
.h6_c00193{height:46.638281px;}
.ha_c00193{height:59.357813px;}
.h2_c00193{height:64.546875px;}
.h7_c00193{height:70.664062px;}
.h8_c00193{height:72.562500px;}
.h5_c00193{height:1262.875500px;}
.h0_c00193{height:1262.880000px;}
.h1_c00193{height:1263.000000px;}
.w2_c00193{width:8.310000px;}
.w3_c00193{width:638.190000px;}
.w4_c00193{width:893.157000px;}
.w0_c00193{width:893.160000px;}
.w1_c00193{width:893.250000px;}
.x0_c00193{left:0.000000px;}
.x3_c00193{left:127.489500px;}
.x9_c00193{left:142.632000px;}
.x1_c00193{left:154.515000px;}
.x6_c00193{left:314.067000px;}
.x7_c00193{left:332.430000px;}
.x8_c00193{left:343.590000px;}
.x4_c00193{left:710.562000px;}
.x5_c00193{left:728.925000px;}
.x2_c00193{left:757.365000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls11_c00193{letter-spacing:-1.280000pt;}
.ls14_c00193{letter-spacing:-0.448000pt;}
.ls15_c00193{letter-spacing:-0.320000pt;}
.lse_c00193{letter-spacing:-0.256000pt;}
.lsf_c00193{letter-spacing:-0.128000pt;}
.lsd_c00193{letter-spacing:0.000000pt;}
.lsa_c00193{letter-spacing:0.064000pt;}
.ls13_c00193{letter-spacing:0.128000pt;}
.ls10_c00193{letter-spacing:0.256000pt;}
.lsc_c00193{letter-spacing:0.448000pt;}
.ls12_c00193{letter-spacing:0.512000pt;}
.ls2_c00193{letter-spacing:0.640000pt;}
.ls3_c00193{letter-spacing:1.280000pt;}
.ls4_c00193{letter-spacing:1.920000pt;}
.ls5_c00193{letter-spacing:3.200000pt;}
.ls7_c00193{letter-spacing:4.480000pt;}
.lsb_c00193{letter-spacing:5.760000pt;}
.ls1_c00193{letter-spacing:7.040000pt;}
.ls9_c00193{letter-spacing:8.320000pt;}
.ls8_c00193{letter-spacing:9.600000pt;}
.ls0_c00193{letter-spacing:13.440000pt;}
.ls6_c00193{letter-spacing:14.720000pt;}
.ws4_c00193{word-spacing:-64.000000pt;}
.ws3_c00193{word-spacing:-16.640000pt;}
.ws2_c00193{word-spacing:-16.256000pt;}
.ws5_c00193{word-spacing:-16.064000pt;}
.ws0_c00193{word-spacing:-16.000000pt;}
.ws1_c00193{word-spacing:-15.872000pt;}
.ws6_c00193{word-spacing:-15.680000pt;}
.ws7_c00193{word-spacing:-13.440000pt;}
.ws8_c00193{word-spacing:0.000000pt;}
._5_c00193{margin-left:-2.496000pt;}
._0_c00193{margin-left:-1.536000pt;}
._2_c00193{width:0.960000pt;}
._4_c00193{width:1.984000pt;}
._7_c00193{width:2.880000pt;}
._e_c00193{width:3.776000pt;}
._a_c00193{width:4.672000pt;}
._b_c00193{width:5.696000pt;}
._1_c00193{width:6.976000pt;}
._3_c00193{width:8.640000pt;}
._10_c00193{width:9.536000pt;}
._f_c00193{width:10.816000pt;}
._9_c00193{width:12.213333pt;}
._6_c00193{width:13.376000pt;}
._8_c00193{width:14.912000pt;}
._c_c00193{width:24.576000pt;}
._d_c00193{width:26.560000pt;}
._11_c00193{width:28.096000pt;}
.fs2_c00193{font-size:34.560000pt;}
.fs1_c00193{font-size:42.240000pt;}
.fs3_c00193{font-size:53.760000pt;}
.fs0_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y3_c00193{bottom:3.840000pt;}
.y5_c00193{bottom:22.400000pt;}
.y4_c00193{bottom:28.480000pt;}
.y1_c00193{bottom:50.880000pt;}
.y2b_c00193{bottom:134.746667pt;}
.y2a_c00193{bottom:150.106667pt;}
.y29_c00193{bottom:156.186667pt;}
.y28_c00193{bottom:165.466667pt;}
.y27_c00193{bottom:180.826667pt;}
.y26_c00193{bottom:186.906667pt;}
.y25_c00193{bottom:196.826667pt;}
.y24_c00193{bottom:221.826667pt;}
.y23_c00193{bottom:249.346667pt;}
.y22_c00193{bottom:276.866667pt;}
.y21_c00193{bottom:304.706667pt;}
.y20_c00193{bottom:332.253333pt;}
.y1f_c00193{bottom:359.773333pt;}
.y1e_c00193{bottom:387.293333pt;}
.y1d_c00193{bottom:415.133333pt;}
.y1c_c00193{bottom:442.693333pt;}
.y1b_c00193{bottom:470.213333pt;}
.y1a_c00193{bottom:497.733333pt;}
.y18_c00193{bottom:525.253333pt;}
.y19_c00193{bottom:532.640000pt;}
.y17_c00193{bottom:553.120000pt;}
.y16_c00193{bottom:580.640000pt;}
.y15_c00193{bottom:608.160000pt;}
.y14_c00193{bottom:635.680000pt;}
.y13_c00193{bottom:663.546667pt;}
.y12_c00193{bottom:691.066667pt;}
.y11_c00193{bottom:718.586667pt;}
.y10_c00193{bottom:746.106667pt;}
.yf_c00193{bottom:773.986667pt;}
.ye_c00193{bottom:801.506667pt;}
.yd_c00193{bottom:829.026667pt;}
.yc_c00193{bottom:856.573333pt;}
.yb_c00193{bottom:884.413333pt;}
.ya_c00193{bottom:911.933333pt;}
.y9_c00193{bottom:939.453333pt;}
.y8_c00193{bottom:967.013333pt;}
.y6_c00193{bottom:994.853333pt;}
.y7_c00193{bottom:1002.213333pt;}
.y2_c00193{bottom:1056.933333pt;}
.h3_c00193{height:18.266667pt;}
.h9_c00193{height:33.918750pt;}
.h4_c00193{height:36.796000pt;}
.h6_c00193{height:41.456250pt;}
.ha_c00193{height:52.762500pt;}
.h2_c00193{height:57.375000pt;}
.h7_c00193{height:62.812500pt;}
.h8_c00193{height:64.500000pt;}
.h5_c00193{height:1122.556000pt;}
.h0_c00193{height:1122.560000pt;}
.h1_c00193{height:1122.666667pt;}
.w2_c00193{width:7.386667pt;}
.w3_c00193{width:567.280000pt;}
.w4_c00193{width:793.917333pt;}
.w0_c00193{width:793.920000pt;}
.w1_c00193{width:794.000000pt;}
.x0_c00193{left:0.000000pt;}
.x3_c00193{left:113.324000pt;}
.x9_c00193{left:126.784000pt;}
.x1_c00193{left:137.346667pt;}
.x6_c00193{left:279.170667pt;}
.x7_c00193{left:295.493333pt;}
.x8_c00193{left:305.413333pt;}
.x4_c00193{left:631.610667pt;}
.x5_c00193{left:647.933333pt;}
.x2_c00193{left:673.213333pt;}
}





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

.ir_c00194:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00194;src:url('chunks/assets/font_2f155887fa9d472bddc85ad1.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_200d92189ae9432cb58b213e.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_ddb05ae58076b0433853e3d6.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_91408c923b9c2754ed74479d.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;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_c00194;src:url('chunks/assets/font_0804322eb1800277ef38e818.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00194;src:url('chunks/assets/font_4f0fd671395f2ce69b2d0e81.woff2')format("woff");}.ff6_c00194{font-family:ff6_c00194;line-height:1.104004;font-style:normal;font-weight: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_c00194;src:url('chunks/assets/font_66cbccc3d2d79c020aec074c.woff2')format("woff");}.ff7_c00194{font-family:ff7_c00194;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.lsc_c00194{letter-spacing:-0.532800px;}
.ls11_c00194{letter-spacing:-0.486600px;}
.lsf_c00194{letter-spacing:-0.241800px;}
.ls13_c00194{letter-spacing:-0.169800px;}
.lsb_c00194{letter-spacing:0.000000px;}
.ls15_c00194{letter-spacing:0.020400px;}
.ls8_c00194{letter-spacing:0.022800px;}
.ls5_c00194{letter-spacing:0.048960px;}
.lsd_c00194{letter-spacing:0.060600px;}
.ls2_c00194{letter-spacing:0.120000px;}
.ls1_c00194{letter-spacing:0.144000px;}
.ls4_c00194{letter-spacing:0.164160px;}
.lse_c00194{letter-spacing:0.397200px;}
.ls14_c00194{letter-spacing:0.466800px;}
.ls12_c00194{letter-spacing:0.529800px;}
.ls0_c00194{letter-spacing:0.720000px;}
.ls3_c00194{letter-spacing:0.728640px;}
.ls10_c00194{letter-spacing:1.200000px;}
.lsa_c00194{letter-spacing:2.160000px;}
.ls9_c00194{letter-spacing:3.600000px;}
.ls6_c00194{letter-spacing:5.040000px;}
.ls7_c00194{letter-spacing:6.480000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:-18.000000px;}
.ws3_c00194{word-spacing:-16.320000px;}
.ws2_c00194{word-spacing:-15.180600px;}
.ws8_c00194{word-spacing:-15.140400px;}
.ws1_c00194{word-spacing:-15.120000px;}
.ws7_c00194{word-spacing:-14.950200px;}
.ws6_c00194{word-spacing:-14.878200px;}
.ws4_c00194{word-spacing:-14.633400px;}
.ws5_c00194{word-spacing:-14.587200px;}
.ws9_c00194{word-spacing:0.000000px;}
._14_c00194{margin-left:-3.387001px;}
._6_c00194{margin-left:-2.376000px;}
._0_c00194{margin-left:-1.140000px;}
._1_c00194{width:1.368000px;}
._7_c00194{width:2.580000px;}
._5_c00194{width:3.720000px;}
._10_c00194{width:5.916000px;}
._2_c00194{width:6.984000px;}
._3_c00194{width:8.328000px;}
._4_c00194{width:9.552000px;}
._d_c00194{width:10.872000px;}
._e_c00194{width:12.324000px;}
._f_c00194{width:15.552000px;}
._13_c00194{width:16.572004px;}
._15_c00194{width:18.385542px;}
._11_c00194{width:19.788000px;}
._a_c00194{width:21.576000px;}
._c_c00194{width:23.592000px;}
._b_c00194{width:24.600000px;}
._12_c00194{width:25.920000px;}
._8_c00194{width:27.708000px;}
._9_c00194{width:29.604000px;}
.fc0_c00194{color:rgb(0,0,0);}
.fs3_c00194{font-size:38.880000px;}
.fs1_c00194{font-size:47.520000px;}
.fs2_c00194{font-size:60.480000px;}
.fs0_c00194{font-size:72.000000px;}
.y0_c00194{bottom:0.000000px;}
.y3_c00194{bottom:4.320000px;}
.y5_c00194{bottom:25.200000px;}
.y4_c00194{bottom:32.040000px;}
.y1_c00194{bottom:57.240000px;}
.y2e_c00194{bottom:151.590000px;}
.y2d_c00194{bottom:168.870000px;}
.y2c_c00194{bottom:186.150000px;}
.y2b_c00194{bottom:203.430000px;}
.y2a_c00194{bottom:220.710000px;}
.y29_c00194{bottom:227.550000px;}
.y28_c00194{bottom:238.035000px;}
.y27_c00194{bottom:244.875000px;}
.y26_c00194{bottom:255.315000px;}
.y25_c00194{bottom:272.595000px;}
.y24_c00194{bottom:289.875000px;}
.y23_c00194{bottom:296.715000px;}
.y22_c00194{bottom:307.515000px;}
.y21_c00194{bottom:331.635000px;}
.y20_c00194{bottom:357.585000px;}
.y1f_c00194{bottom:392.505000px;}
.y1e_c00194{bottom:427.425000px;}
.y1d_c00194{bottom:462.345000px;}
.y1c_c00194{bottom:497.310000px;}
.y1b_c00194{bottom:532.230000px;}
.y1a_c00194{bottom:566.790000px;}
.y19_c00194{bottom:604.260000px;}
.y18_c00194{bottom:644.220000px;}
.y16_c00194{bottom:684.180000px;}
.y17_c00194{bottom:692.460000px;}
.y15_c00194{bottom:715.140000px;}
.y14_c00194{bottom:746.490000px;}
.y13_c00194{bottom:777.450000px;}
.y12_c00194{bottom:808.410000px;}
.y11_c00194{bottom:839.370000px;}
.y10_c00194{bottom:870.735000px;}
.yf_c00194{bottom:901.695000px;}
.ye_c00194{bottom:932.655000px;}
.yd_c00194{bottom:963.645000px;}
.yb_c00194{bottom:994.965000px;}
.yc_c00194{bottom:1003.245000px;}
.ya_c00194{bottom:1025.925000px;}
.y9_c00194{bottom:1056.885000px;}
.y8_c00194{bottom:1087.890000px;}
.y6_c00194{bottom:1119.210000px;}
.y7_c00194{bottom:1127.490000px;}
.y2_c00194{bottom:1189.050000px;}
.h3_c00194{height:20.550000px;}
.hc_c00194{height:34.855313px;}
.hb_c00194{height:38.158594px;}
.h4_c00194{height:41.395500px;}
.h8_c00194{height:46.615078px;}
.h7_c00194{height:46.638281px;}
.hd_c00194{height:54.514688px;}
.ha_c00194{height:59.328281px;}
.h9_c00194{height:59.357813px;}
.h2_c00194{height:64.546875px;}
.h5_c00194{height:70.664062px;}
.h6_c00194{height:1262.875500px;}
.h0_c00194{height:1262.880000px;}
.h1_c00194{height:1263.000000px;}
.w2_c00194{width:8.310000px;}
.w3_c00194{width:638.190000px;}
.w4_c00194{width:893.157000px;}
.w0_c00194{width:893.160000px;}
.w1_c00194{width:893.250000px;}
.x0_c00194{left:0.000000px;}
.x3_c00194{left:127.489500px;}
.xc_c00194{left:142.632000px;}
.x1_c00194{left:154.515000px;}
.xa_c00194{left:169.995000px;}
.x8_c00194{left:320.907000px;}
.x9_c00194{left:339.270000px;}
.xb_c00194{left:343.590000px;}
.x6_c00194{left:411.297000px;}
.x7_c00194{left:429.660000px;}
.x4_c00194{left:591.012000px;}
.x5_c00194{left:609.375000px;}
.x2_c00194{left:757.365000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.lsc_c00194{letter-spacing:-0.473600pt;}
.ls11_c00194{letter-spacing:-0.432533pt;}
.lsf_c00194{letter-spacing:-0.214933pt;}
.ls13_c00194{letter-spacing:-0.150933pt;}
.lsb_c00194{letter-spacing:0.000000pt;}
.ls15_c00194{letter-spacing:0.018133pt;}
.ls8_c00194{letter-spacing:0.020267pt;}
.ls5_c00194{letter-spacing:0.043520pt;}
.lsd_c00194{letter-spacing:0.053867pt;}
.ls2_c00194{letter-spacing:0.106667pt;}
.ls1_c00194{letter-spacing:0.128000pt;}
.ls4_c00194{letter-spacing:0.145920pt;}
.lse_c00194{letter-spacing:0.353067pt;}
.ls14_c00194{letter-spacing:0.414933pt;}
.ls12_c00194{letter-spacing:0.470933pt;}
.ls0_c00194{letter-spacing:0.640000pt;}
.ls3_c00194{letter-spacing:0.647680pt;}
.ls10_c00194{letter-spacing:1.066667pt;}
.lsa_c00194{letter-spacing:1.920000pt;}
.ls9_c00194{letter-spacing:3.200000pt;}
.ls6_c00194{letter-spacing:4.480000pt;}
.ls7_c00194{letter-spacing:5.760000pt;}
.ws0_c00194{word-spacing:-16.000000pt;}
.ws3_c00194{word-spacing:-14.506667pt;}
.ws2_c00194{word-spacing:-13.493867pt;}
.ws8_c00194{word-spacing:-13.458133pt;}
.ws1_c00194{word-spacing:-13.440000pt;}
.ws7_c00194{word-spacing:-13.289067pt;}
.ws6_c00194{word-spacing:-13.225067pt;}
.ws4_c00194{word-spacing:-13.007467pt;}
.ws5_c00194{word-spacing:-12.966400pt;}
.ws9_c00194{word-spacing:0.000000pt;}
._14_c00194{margin-left:-3.010668pt;}
._6_c00194{margin-left:-2.112000pt;}
._0_c00194{margin-left:-1.013333pt;}
._1_c00194{width:1.216000pt;}
._7_c00194{width:2.293333pt;}
._5_c00194{width:3.306667pt;}
._10_c00194{width:5.258667pt;}
._2_c00194{width:6.208000pt;}
._3_c00194{width:7.402667pt;}
._4_c00194{width:8.490667pt;}
._d_c00194{width:9.664000pt;}
._e_c00194{width:10.954667pt;}
._f_c00194{width:13.824000pt;}
._13_c00194{width:14.730670pt;}
._15_c00194{width:16.342704pt;}
._11_c00194{width:17.589333pt;}
._a_c00194{width:19.178667pt;}
._c_c00194{width:20.970667pt;}
._b_c00194{width:21.866667pt;}
._12_c00194{width:23.040000pt;}
._8_c00194{width:24.629333pt;}
._9_c00194{width:26.314667pt;}
.fs3_c00194{font-size:34.560000pt;}
.fs1_c00194{font-size:42.240000pt;}
.fs2_c00194{font-size:53.760000pt;}
.fs0_c00194{font-size:64.000000pt;}
.y0_c00194{bottom:0.000000pt;}
.y3_c00194{bottom:3.840000pt;}
.y5_c00194{bottom:22.400000pt;}
.y4_c00194{bottom:28.480000pt;}
.y1_c00194{bottom:50.880000pt;}
.y2e_c00194{bottom:134.746667pt;}
.y2d_c00194{bottom:150.106667pt;}
.y2c_c00194{bottom:165.466667pt;}
.y2b_c00194{bottom:180.826667pt;}
.y2a_c00194{bottom:196.186667pt;}
.y29_c00194{bottom:202.266667pt;}
.y28_c00194{bottom:211.586667pt;}
.y27_c00194{bottom:217.666667pt;}
.y26_c00194{bottom:226.946667pt;}
.y25_c00194{bottom:242.306667pt;}
.y24_c00194{bottom:257.666667pt;}
.y23_c00194{bottom:263.746667pt;}
.y22_c00194{bottom:273.346667pt;}
.y21_c00194{bottom:294.786667pt;}
.y20_c00194{bottom:317.853333pt;}
.y1f_c00194{bottom:348.893333pt;}
.y1e_c00194{bottom:379.933333pt;}
.y1d_c00194{bottom:410.973333pt;}
.y1c_c00194{bottom:442.053333pt;}
.y1b_c00194{bottom:473.093333pt;}
.y1a_c00194{bottom:503.813333pt;}
.y19_c00194{bottom:537.120000pt;}
.y18_c00194{bottom:572.640000pt;}
.y16_c00194{bottom:608.160000pt;}
.y17_c00194{bottom:615.520000pt;}
.y15_c00194{bottom:635.680000pt;}
.y14_c00194{bottom:663.546667pt;}
.y13_c00194{bottom:691.066667pt;}
.y12_c00194{bottom:718.586667pt;}
.y11_c00194{bottom:746.106667pt;}
.y10_c00194{bottom:773.986667pt;}
.yf_c00194{bottom:801.506667pt;}
.ye_c00194{bottom:829.026667pt;}
.yd_c00194{bottom:856.573333pt;}
.yb_c00194{bottom:884.413333pt;}
.yc_c00194{bottom:891.773333pt;}
.ya_c00194{bottom:911.933333pt;}
.y9_c00194{bottom:939.453333pt;}
.y8_c00194{bottom:967.013333pt;}
.y6_c00194{bottom:994.853333pt;}
.y7_c00194{bottom:1002.213333pt;}
.y2_c00194{bottom:1056.933333pt;}
.h3_c00194{height:18.266667pt;}
.hc_c00194{height:30.982500pt;}
.hb_c00194{height:33.918750pt;}
.h4_c00194{height:36.796000pt;}
.h8_c00194{height:41.435625pt;}
.h7_c00194{height:41.456250pt;}
.hd_c00194{height:48.457500pt;}
.ha_c00194{height:52.736250pt;}
.h9_c00194{height:52.762500pt;}
.h2_c00194{height:57.375000pt;}
.h5_c00194{height:62.812500pt;}
.h6_c00194{height:1122.556000pt;}
.h0_c00194{height:1122.560000pt;}
.h1_c00194{height:1122.666667pt;}
.w2_c00194{width:7.386667pt;}
.w3_c00194{width:567.280000pt;}
.w4_c00194{width:793.917333pt;}
.w0_c00194{width:793.920000pt;}
.w1_c00194{width:794.000000pt;}
.x0_c00194{left:0.000000pt;}
.x3_c00194{left:113.324000pt;}
.xc_c00194{left:126.784000pt;}
.x1_c00194{left:137.346667pt;}
.xa_c00194{left:151.106667pt;}
.x8_c00194{left:285.250667pt;}
.x9_c00194{left:301.573333pt;}
.xb_c00194{left:305.413333pt;}
.x6_c00194{left:365.597333pt;}
.x7_c00194{left:381.920000pt;}
.x4_c00194{left:525.344000pt;}
.x5_c00194{left:541.666667pt;}
.x2_c00194{left:673.213333pt;}
}





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

.ir_c00195:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00195;src:url('chunks/assets/font_147b1045e7cac6a0f5224cd8.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_a4701b7cfff994763482c816.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_e4d6ffba04db0d5444ae6f18.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_6ad40d3366708b236a1ccb4f.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00195;src:url('chunks/assets/font_f28cd305090330f728b25e1b.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.lsb_c00195{letter-spacing:-0.720000px;}
.ls9_c00195{letter-spacing:-0.288000px;}
.ls8_c00195{letter-spacing:0.000000px;}
.lsd_c00195{letter-spacing:0.020400px;}
.ls5_c00195{letter-spacing:0.024000px;}
.ls2_c00195{letter-spacing:0.120000px;}
.ls7_c00195{letter-spacing:0.164160px;}
.ls1_c00195{letter-spacing:0.288000px;}
.lsc_c00195{letter-spacing:0.486600px;}
.lsa_c00195{letter-spacing:0.576000px;}
.ls6_c00195{letter-spacing:0.720000px;}
.ls3_c00195{letter-spacing:2.160000px;}
.ls0_c00195{letter-spacing:6.480000px;}
.ls4_c00195{letter-spacing:22.440000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00195{word-spacing:-18.000000px;}
.ws2_c00195{word-spacing:-15.606600px;}
.ws3_c00195{word-spacing:-15.140400px;}
.ws1_c00195{word-spacing:-15.120000px;}
.ws4_c00195{word-spacing:0.000000px;}
._5_c00195{margin-left:-2.784609px;}
._0_c00195{margin-left:-1.572601px;}
._1_c00195{width:1.149604px;}
._3_c00195{width:2.870997px;}
._2_c00195{width:4.380601px;}
._4_c00195{width:6.147598px;}
._9_c00195{width:7.223427px;}
._8_c00195{width:8.288402px;}
._13_c00195{width:10.238379px;}
._6_c00195{width:12.156601px;}
._7_c00195{width:13.721342px;}
._15_c00195{width:15.531598px;}
._16_c00195{width:16.901740px;}
._14_c00195{width:20.032214px;}
._11_c00195{width:21.741071px;}
._c_c00195{width:22.796983px;}
._a_c00195{width:24.050396px;}
._b_c00195{width:25.743606px;}
._d_c00195{width:26.786396px;}
._e_c00195{width:28.102193px;}
._12_c00195{width:29.629791px;}
._f_c00195{width:35.486997px;}
._10_c00195{width:36.796211px;}
.fc1_c00195{color:rgb(255,0,0);}
.fc0_c00195{color:rgb(0,0,0);}
.fs3_c00195{font-size:38.880000px;}
.fs2_c00195{font-size:47.520000px;}
.fs1_c00195{font-size:60.480000px;}
.fs0_c00195{font-size:72.000000px;}
.y0_c00195{bottom:0.000000px;}
.y3_c00195{bottom:4.320000px;}
.y5_c00195{bottom:25.200000px;}
.y4_c00195{bottom:32.040000px;}
.y1_c00195{bottom:57.240000px;}
.y2b_c00195{bottom:151.590000px;}
.y2a_c00195{bottom:168.870000px;}
.y29_c00195{bottom:186.150000px;}
.y28_c00195{bottom:192.990000px;}
.y27_c00195{bottom:203.430000px;}
.y26_c00195{bottom:220.710000px;}
.y25_c00195{bottom:238.035000px;}
.y24_c00195{bottom:255.315000px;}
.y23_c00195{bottom:272.595000px;}
.y22_c00195{bottom:279.435000px;}
.y21_c00195{bottom:290.235000px;}
.y20_c00195{bottom:348.195000px;}
.y1f_c00195{bottom:379.185000px;}
.y1e_c00195{bottom:410.145000px;}
.y1d_c00195{bottom:441.105000px;}
.y1c_c00195{bottom:472.425000px;}
.y1b_c00195{bottom:503.430000px;}
.y1a_c00195{bottom:534.390000px;}
.y19_c00195{bottom:565.350000px;}
.y18_c00195{bottom:596.310000px;}
.y17_c00195{bottom:636.660000px;}
.y16_c00195{bottom:667.620000px;}
.y15_c00195{bottom:698.580000px;}
.y13_c00195{bottom:729.570000px;}
.y14_c00195{bottom:737.850000px;}
.y12_c00195{bottom:760.890000px;}
.y11_c00195{bottom:791.850000px;}
.y10_c00195{bottom:822.810000px;}
.yf_c00195{bottom:853.815000px;}
.ye_c00195{bottom:885.135000px;}
.yd_c00195{bottom:916.095000px;}
.yb_c00195{bottom:956.055000px;}
.yc_c00195{bottom:964.365000px;}
.ya_c00195{bottom:987.045000px;}
.y9_c00195{bottom:1018.365000px;}
.y8_c00195{bottom:1049.325000px;}
.y7_c00195{bottom:1087.170000px;}
.y6_c00195{bottom:1122.090000px;}
.y2_c00195{bottom:1189.050000px;}
.h3_c00195{height:20.550000px;}
.h9_c00195{height:38.158594px;}
.h4_c00195{height:41.395500px;}
.h8_c00195{height:46.638281px;}
.h5_c00195{height:59.328281px;}
.ha_c00195{height:59.357813px;}
.h2_c00195{height:64.546875px;}
.h6_c00195{height:70.664062px;}
.h7_c00195{height:1262.875500px;}
.h0_c00195{height:1262.880000px;}
.h1_c00195{height:1263.000000px;}
.w2_c00195{width:8.310000px;}
.w3_c00195{width:638.190000px;}
.w4_c00195{width:893.157000px;}
.w0_c00195{width:893.160000px;}
.w1_c00195{width:893.250000px;}
.x0_c00195{left:0.000000px;}
.x3_c00195{left:127.489500px;}
.xa_c00195{left:142.632000px;}
.x1_c00195{left:154.515000px;}
.x4_c00195{left:169.995000px;}
.x9_c00195{left:343.590000px;}
.x5_c00195{left:370.947000px;}
.x6_c00195{left:389.310000px;}
.x7_c00195{left:590.652000px;}
.x8_c00195{left:609.015000px;}
.x2_c00195{left:757.365000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.lsb_c00195{letter-spacing:-0.640000pt;}
.ls9_c00195{letter-spacing:-0.256000pt;}
.ls8_c00195{letter-spacing:0.000000pt;}
.lsd_c00195{letter-spacing:0.018133pt;}
.ls5_c00195{letter-spacing:0.021333pt;}
.ls2_c00195{letter-spacing:0.106667pt;}
.ls7_c00195{letter-spacing:0.145920pt;}
.ls1_c00195{letter-spacing:0.256000pt;}
.lsc_c00195{letter-spacing:0.432533pt;}
.lsa_c00195{letter-spacing:0.512000pt;}
.ls6_c00195{letter-spacing:0.640000pt;}
.ls3_c00195{letter-spacing:1.920000pt;}
.ls0_c00195{letter-spacing:5.760000pt;}
.ls4_c00195{letter-spacing:19.946667pt;}
.ws0_c00195{word-spacing:-16.000000pt;}
.ws2_c00195{word-spacing:-13.872533pt;}
.ws3_c00195{word-spacing:-13.458133pt;}
.ws1_c00195{word-spacing:-13.440000pt;}
.ws4_c00195{word-spacing:0.000000pt;}
._5_c00195{margin-left:-2.475208pt;}
._0_c00195{margin-left:-1.397868pt;}
._1_c00195{width:1.021870pt;}
._3_c00195{width:2.551997pt;}
._2_c00195{width:3.893868pt;}
._4_c00195{width:5.464532pt;}
._9_c00195{width:6.420824pt;}
._8_c00195{width:7.367468pt;}
._13_c00195{width:9.100781pt;}
._6_c00195{width:10.805868pt;}
._7_c00195{width:12.196749pt;}
._15_c00195{width:13.805865pt;}
._16_c00195{width:15.023769pt;}
._14_c00195{width:17.806413pt;}
._11_c00195{width:19.325396pt;}
._c_c00195{width:20.263985pt;}
._a_c00195{width:21.378130pt;}
._b_c00195{width:22.883205pt;}
._d_c00195{width:23.810130pt;}
._e_c00195{width:24.979727pt;}
._12_c00195{width:26.337592pt;}
._f_c00195{width:31.543997pt;}
._10_c00195{width:32.707743pt;}
.fs3_c00195{font-size:34.560000pt;}
.fs2_c00195{font-size:42.240000pt;}
.fs1_c00195{font-size:53.760000pt;}
.fs0_c00195{font-size:64.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y3_c00195{bottom:3.840000pt;}
.y5_c00195{bottom:22.400000pt;}
.y4_c00195{bottom:28.480000pt;}
.y1_c00195{bottom:50.880000pt;}
.y2b_c00195{bottom:134.746667pt;}
.y2a_c00195{bottom:150.106667pt;}
.y29_c00195{bottom:165.466667pt;}
.y28_c00195{bottom:171.546667pt;}
.y27_c00195{bottom:180.826667pt;}
.y26_c00195{bottom:196.186667pt;}
.y25_c00195{bottom:211.586667pt;}
.y24_c00195{bottom:226.946667pt;}
.y23_c00195{bottom:242.306667pt;}
.y22_c00195{bottom:248.386667pt;}
.y21_c00195{bottom:257.986667pt;}
.y20_c00195{bottom:309.506667pt;}
.y1f_c00195{bottom:337.053333pt;}
.y1e_c00195{bottom:364.573333pt;}
.y1d_c00195{bottom:392.093333pt;}
.y1c_c00195{bottom:419.933333pt;}
.y1b_c00195{bottom:447.493333pt;}
.y1a_c00195{bottom:475.013333pt;}
.y19_c00195{bottom:502.533333pt;}
.y18_c00195{bottom:530.053333pt;}
.y17_c00195{bottom:565.920000pt;}
.y16_c00195{bottom:593.440000pt;}
.y15_c00195{bottom:620.960000pt;}
.y13_c00195{bottom:648.506667pt;}
.y14_c00195{bottom:655.866667pt;}
.y12_c00195{bottom:676.346667pt;}
.y11_c00195{bottom:703.866667pt;}
.y10_c00195{bottom:731.386667pt;}
.yf_c00195{bottom:758.946667pt;}
.ye_c00195{bottom:786.786667pt;}
.yd_c00195{bottom:814.306667pt;}
.yb_c00195{bottom:849.826667pt;}
.yc_c00195{bottom:857.213333pt;}
.ya_c00195{bottom:877.373333pt;}
.y9_c00195{bottom:905.213333pt;}
.y8_c00195{bottom:932.733333pt;}
.y7_c00195{bottom:966.373333pt;}
.y6_c00195{bottom:997.413333pt;}
.y2_c00195{bottom:1056.933333pt;}
.h3_c00195{height:18.266667pt;}
.h9_c00195{height:33.918750pt;}
.h4_c00195{height:36.796000pt;}
.h8_c00195{height:41.456250pt;}
.h5_c00195{height:52.736250pt;}
.ha_c00195{height:52.762500pt;}
.h2_c00195{height:57.375000pt;}
.h6_c00195{height:62.812500pt;}
.h7_c00195{height:1122.556000pt;}
.h0_c00195{height:1122.560000pt;}
.h1_c00195{height:1122.666667pt;}
.w2_c00195{width:7.386667pt;}
.w3_c00195{width:567.280000pt;}
.w4_c00195{width:793.917333pt;}
.w0_c00195{width:793.920000pt;}
.w1_c00195{width:794.000000pt;}
.x0_c00195{left:0.000000pt;}
.x3_c00195{left:113.324000pt;}
.xa_c00195{left:126.784000pt;}
.x1_c00195{left:137.346667pt;}
.x4_c00195{left:151.106667pt;}
.x9_c00195{left:305.413333pt;}
.x5_c00195{left:329.730667pt;}
.x6_c00195{left:346.053333pt;}
.x7_c00195{left:525.024000pt;}
.x8_c00195{left:541.346667pt;}
.x2_c00195{left:673.213333pt;}
}





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

.ir_c00196:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00196;src:url('chunks/assets/font_941054deeec226b2031282ff.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_2ca7a492c9741acc288598dc.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_0e1dedb06d8d09be6f869c48.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;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_c00196;src:url('chunks/assets/font_e38675546b627854585ac50d.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_cf41267fba170687449b8dac.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00196;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00196{font-family:ff6_c00196;line-height:1.311035;font-style:normal;font-weight: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_c00196;src:url('chunks/assets/font_9a08779a107382e01f82ad90.woff2')format("woff");}.ff7_c00196{font-family:ff7_c00196;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls14_c00196{letter-spacing:-1.668000px;}
.ls16_c00196{letter-spacing:-0.972000px;}
.ls15_c00196{letter-spacing:-0.936000px;}
.ls19_c00196{letter-spacing:-0.532800px;}
.ls18_c00196{letter-spacing:-0.302400px;}
.lsf_c00196{letter-spacing:-0.241800px;}
.lse_c00196{letter-spacing:0.000000px;}
.lsa_c00196{letter-spacing:0.022800px;}
.ls0_c00196{letter-spacing:0.120000px;}
.ls10_c00196{letter-spacing:0.166800px;}
.ls12_c00196{letter-spacing:0.325200px;}
.ls13_c00196{letter-spacing:0.529800px;}
.ls11_c00196{letter-spacing:0.630000px;}
.ls17_c00196{letter-spacing:0.702000px;}
.ls1_c00196{letter-spacing:0.720000px;}
.lsb_c00196{letter-spacing:0.740286px;}
.ls5_c00196{letter-spacing:2.160000px;}
.ls4_c00196{letter-spacing:3.600000px;}
.ls6_c00196{letter-spacing:3.620062px;}
.ls7_c00196{letter-spacing:3.620102px;}
.lsc_c00196{letter-spacing:3.620225px;}
.ls8_c00196{letter-spacing:3.620277px;}
.ls9_c00196{letter-spacing:10.800000px;}
.ls2_c00196{letter-spacing:12.240000px;}
.lsd_c00196{letter-spacing:12.248640px;}
.ls3_c00196{letter-spacing:15.120000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00196{word-spacing:-60.805200px;}
.ws5_c00196{word-spacing:-60.480000px;}
.ws0_c00196{word-spacing:-18.000000px;}
.ws8_c00196{word-spacing:-15.822000px;}
.ws4_c00196{word-spacing:-15.750000px;}
.ws3_c00196{word-spacing:-15.286800px;}
.ws1_c00196{word-spacing:-15.120000px;}
.ws2_c00196{word-spacing:-14.878200px;}
.ws9_c00196{word-spacing:-14.817600px;}
.ws7_c00196{word-spacing:-14.148000px;}
.wsa_c00196{word-spacing:0.000000px;}
._6_c00196{margin-left:-2.736000px;}
._1_c00196{margin-left:-1.584000px;}
._0_c00196{width:1.656000px;}
._5_c00196{width:2.795976px;}
._a_c00196{width:4.260024px;}
._7_c00196{width:5.321998px;}
._8_c00196{width:6.834603px;}
._9_c00196{width:8.501397px;}
._c_c00196{width:10.368000px;}
._d_c00196{width:11.520000px;}
._b_c00196{width:12.684024px;}
._12_c00196{width:15.540120px;}
._e_c00196{width:16.763976px;}
._2_c00196{width:20.232000px;}
._3_c00196{width:21.960000px;}
._4_c00196{width:23.112000px;}
._13_c00196{width:24.935976px;}
._10_c00196{width:26.280000px;}
._f_c00196{width:27.360000px;}
._11_c00196{width:28.584000px;}
.fc0_c00196{color:rgb(0,0,0);}
.fs3_c00196{font-size:38.880000px;}
.fs1_c00196{font-size:47.520000px;}
.fs2_c00196{font-size:60.480000px;}
.fs0_c00196{font-size:72.000000px;}
.y0_c00196{bottom:0.000000px;}
.y3_c00196{bottom:4.320000px;}
.y5_c00196{bottom:25.200000px;}
.y4_c00196{bottom:32.040000px;}
.y1_c00196{bottom:57.240000px;}
.y2e_c00196{bottom:151.590000px;}
.y2d_c00196{bottom:168.870000px;}
.y2c_c00196{bottom:186.150000px;}
.y2b_c00196{bottom:203.430000px;}
.y2a_c00196{bottom:220.710000px;}
.y29_c00196{bottom:227.550000px;}
.y28_c00196{bottom:238.035000px;}
.y27_c00196{bottom:255.315000px;}
.y26_c00196{bottom:272.595000px;}
.y25_c00196{bottom:279.435000px;}
.y24_c00196{bottom:289.875000px;}
.y23_c00196{bottom:307.155000px;}
.y22_c00196{bottom:313.995000px;}
.y21_c00196{bottom:324.795000px;}
.y1f_c00196{bottom:371.625000px;}
.y20_c00196{bottom:379.905000px;}
.y1e_c00196{bottom:402.585000px;}
.y1d_c00196{bottom:433.905000px;}
.y1c_c00196{bottom:464.865000px;}
.y1b_c00196{bottom:495.870000px;}
.y1a_c00196{bottom:526.830000px;}
.y19_c00196{bottom:558.150000px;}
.y18_c00196{bottom:589.110000px;}
.y17_c00196{bottom:620.100000px;}
.y16_c00196{bottom:651.060000px;}
.y15_c00196{bottom:688.860000px;}
.y14_c00196{bottom:714.780000px;}
.y13_c00196{bottom:740.730000px;}
.y12_c00196{bottom:766.650000px;}
.y11_c00196{bottom:801.570000px;}
.y10_c00196{bottom:836.490000px;}
.yf_c00196{bottom:871.095000px;}
.ye_c00196{bottom:906.015000px;}
.yd_c00196{bottom:940.935000px;}
.yc_c00196{bottom:975.885000px;}
.yb_c00196{bottom:1010.805000px;}
.ya_c00196{bottom:1047.885000px;}
.y8_c00196{bottom:1087.890000px;}
.y9_c00196{bottom:1096.170000px;}
.y6_c00196{bottom:1119.210000px;}
.y7_c00196{bottom:1127.490000px;}
.y2_c00196{bottom:1189.050000px;}
.h3_c00196{height:20.550000px;}
.hb_c00196{height:38.158594px;}
.h4_c00196{height:41.395500px;}
.h7_c00196{height:46.638281px;}
.ha_c00196{height:59.328281px;}
.h8_c00196{height:59.357813px;}
.h9_c00196{height:60.952500px;}
.h2_c00196{height:64.546875px;}
.h5_c00196{height:70.664062px;}
.h6_c00196{height:1262.875500px;}
.h0_c00196{height:1262.880000px;}
.h1_c00196{height:1263.000000px;}
.w2_c00196{width:8.310000px;}
.w3_c00196{width:638.190000px;}
.w4_c00196{width:893.157000px;}
.w0_c00196{width:893.160000px;}
.w1_c00196{width:893.250000px;}
.x0_c00196{left:0.000000px;}
.x3_c00196{left:127.489500px;}
.xd_c00196{left:142.632000px;}
.x1_c00196{left:154.515000px;}
.x9_c00196{left:169.995000px;}
.x8_c00196{left:180.795000px;}
.xa_c00196{left:192.312000px;}
.xb_c00196{left:210.675000px;}
.xc_c00196{left:343.590000px;}
.x4_c00196{left:482.577000px;}
.x5_c00196{left:500.970000px;}
.x6_c00196{left:692.922000px;}
.x7_c00196{left:711.285000px;}
.x2_c00196{left:757.365000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls14_c00196{letter-spacing:-1.482667pt;}
.ls16_c00196{letter-spacing:-0.864000pt;}
.ls15_c00196{letter-spacing:-0.832000pt;}
.ls19_c00196{letter-spacing:-0.473600pt;}
.ls18_c00196{letter-spacing:-0.268800pt;}
.lsf_c00196{letter-spacing:-0.214933pt;}
.lse_c00196{letter-spacing:0.000000pt;}
.lsa_c00196{letter-spacing:0.020267pt;}
.ls0_c00196{letter-spacing:0.106667pt;}
.ls10_c00196{letter-spacing:0.148267pt;}
.ls12_c00196{letter-spacing:0.289067pt;}
.ls13_c00196{letter-spacing:0.470933pt;}
.ls11_c00196{letter-spacing:0.560000pt;}
.ls17_c00196{letter-spacing:0.624000pt;}
.ls1_c00196{letter-spacing:0.640000pt;}
.lsb_c00196{letter-spacing:0.658032pt;}
.ls5_c00196{letter-spacing:1.920000pt;}
.ls4_c00196{letter-spacing:3.200000pt;}
.ls6_c00196{letter-spacing:3.217833pt;}
.ls7_c00196{letter-spacing:3.217869pt;}
.lsc_c00196{letter-spacing:3.217978pt;}
.ls8_c00196{letter-spacing:3.218024pt;}
.ls9_c00196{letter-spacing:9.600000pt;}
.ls2_c00196{letter-spacing:10.880000pt;}
.lsd_c00196{letter-spacing:10.887680pt;}
.ls3_c00196{letter-spacing:13.440000pt;}
.ws6_c00196{word-spacing:-54.049067pt;}
.ws5_c00196{word-spacing:-53.760000pt;}
.ws0_c00196{word-spacing:-16.000000pt;}
.ws8_c00196{word-spacing:-14.064000pt;}
.ws4_c00196{word-spacing:-14.000000pt;}
.ws3_c00196{word-spacing:-13.588267pt;}
.ws1_c00196{word-spacing:-13.440000pt;}
.ws2_c00196{word-spacing:-13.225067pt;}
.ws9_c00196{word-spacing:-13.171200pt;}
.ws7_c00196{word-spacing:-12.576000pt;}
.wsa_c00196{word-spacing:0.000000pt;}
._6_c00196{margin-left:-2.432000pt;}
._1_c00196{margin-left:-1.408000pt;}
._0_c00196{width:1.472000pt;}
._5_c00196{width:2.485312pt;}
._a_c00196{width:3.786688pt;}
._7_c00196{width:4.730665pt;}
._8_c00196{width:6.075203pt;}
._9_c00196{width:7.556797pt;}
._c_c00196{width:9.216000pt;}
._d_c00196{width:10.240000pt;}
._b_c00196{width:11.274688pt;}
._12_c00196{width:13.813440pt;}
._e_c00196{width:14.901312pt;}
._2_c00196{width:17.984000pt;}
._3_c00196{width:19.520000pt;}
._4_c00196{width:20.544000pt;}
._13_c00196{width:22.165312pt;}
._10_c00196{width:23.360000pt;}
._f_c00196{width:24.320000pt;}
._11_c00196{width:25.408000pt;}
.fs3_c00196{font-size:34.560000pt;}
.fs1_c00196{font-size:42.240000pt;}
.fs2_c00196{font-size:53.760000pt;}
.fs0_c00196{font-size:64.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y3_c00196{bottom:3.840000pt;}
.y5_c00196{bottom:22.400000pt;}
.y4_c00196{bottom:28.480000pt;}
.y1_c00196{bottom:50.880000pt;}
.y2e_c00196{bottom:134.746667pt;}
.y2d_c00196{bottom:150.106667pt;}
.y2c_c00196{bottom:165.466667pt;}
.y2b_c00196{bottom:180.826667pt;}
.y2a_c00196{bottom:196.186667pt;}
.y29_c00196{bottom:202.266667pt;}
.y28_c00196{bottom:211.586667pt;}
.y27_c00196{bottom:226.946667pt;}
.y26_c00196{bottom:242.306667pt;}
.y25_c00196{bottom:248.386667pt;}
.y24_c00196{bottom:257.666667pt;}
.y23_c00196{bottom:273.026667pt;}
.y22_c00196{bottom:279.106667pt;}
.y21_c00196{bottom:288.706667pt;}
.y1f_c00196{bottom:330.333333pt;}
.y20_c00196{bottom:337.693333pt;}
.y1e_c00196{bottom:357.853333pt;}
.y1d_c00196{bottom:385.693333pt;}
.y1c_c00196{bottom:413.213333pt;}
.y1b_c00196{bottom:440.773333pt;}
.y1a_c00196{bottom:468.293333pt;}
.y19_c00196{bottom:496.133333pt;}
.y18_c00196{bottom:523.653333pt;}
.y17_c00196{bottom:551.200000pt;}
.y16_c00196{bottom:578.720000pt;}
.y15_c00196{bottom:612.320000pt;}
.y14_c00196{bottom:635.360000pt;}
.y13_c00196{bottom:658.426667pt;}
.y12_c00196{bottom:681.466667pt;}
.y11_c00196{bottom:712.506667pt;}
.y10_c00196{bottom:743.546667pt;}
.yf_c00196{bottom:774.306667pt;}
.ye_c00196{bottom:805.346667pt;}
.yd_c00196{bottom:836.386667pt;}
.yc_c00196{bottom:867.453333pt;}
.yb_c00196{bottom:898.493333pt;}
.ya_c00196{bottom:931.453333pt;}
.y8_c00196{bottom:967.013333pt;}
.y9_c00196{bottom:974.373333pt;}
.y6_c00196{bottom:994.853333pt;}
.y7_c00196{bottom:1002.213333pt;}
.y2_c00196{bottom:1056.933333pt;}
.h3_c00196{height:18.266667pt;}
.hb_c00196{height:33.918750pt;}
.h4_c00196{height:36.796000pt;}
.h7_c00196{height:41.456250pt;}
.ha_c00196{height:52.736250pt;}
.h8_c00196{height:52.762500pt;}
.h9_c00196{height:54.180000pt;}
.h2_c00196{height:57.375000pt;}
.h5_c00196{height:62.812500pt;}
.h6_c00196{height:1122.556000pt;}
.h0_c00196{height:1122.560000pt;}
.h1_c00196{height:1122.666667pt;}
.w2_c00196{width:7.386667pt;}
.w3_c00196{width:567.280000pt;}
.w4_c00196{width:793.917333pt;}
.w0_c00196{width:793.920000pt;}
.w1_c00196{width:794.000000pt;}
.x0_c00196{left:0.000000pt;}
.x3_c00196{left:113.324000pt;}
.xd_c00196{left:126.784000pt;}
.x1_c00196{left:137.346667pt;}
.x9_c00196{left:151.106667pt;}
.x8_c00196{left:160.706667pt;}
.xa_c00196{left:170.944000pt;}
.xb_c00196{left:187.266667pt;}
.xc_c00196{left:305.413333pt;}
.x4_c00196{left:428.957333pt;}
.x5_c00196{left:445.306667pt;}
.x6_c00196{left:615.930667pt;}
.x7_c00196{left:632.253333pt;}
.x2_c00196{left:673.213333pt;}
}





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

.ir_c00197:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00197;src:url('chunks/assets/font_a869e78eaf053fcd46428bb1.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_6151ce41a1764f9e0f1506bc.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_397c349666e12182edb0c256.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;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_c00197;src:url('chunks/assets/font_208ba51781a92f4dc1d0ca61.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00197;src:url('chunks/assets/font_8cca9d9ab879cb079bc61337.woff2')format("woff");}.ff5_c00197{font-family:ff5_c00197;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00197;src:url('chunks/assets/font_abbdda232835778dddc693b7.woff2')format("woff");}.ff6_c00197{font-family:ff6_c00197;line-height:1.104004;font-style:normal;font-weight: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_c00197;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00197{font-family:ff7_c00197;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls8_c00197{letter-spacing:-0.011400px;}
.ls7_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:0.374400px;}
.ls2_c00197{letter-spacing:0.466560px;}
.ls9_c00197{letter-spacing:0.518400px;}
.lsa_c00197{letter-spacing:0.521400px;}
.ls1_c00197{letter-spacing:0.720000px;}
.lsb_c00197{letter-spacing:0.792000px;}
.ls3_c00197{letter-spacing:0.900000px;}
.ls4_c00197{letter-spacing:3.600000px;}
.ls6_c00197{letter-spacing:5.040000px;}
.ls5_c00197{letter-spacing:16.560000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00197{word-spacing:-60.480000px;}
.ws5_c00197{word-spacing:-18.792000px;}
.ws0_c00197{word-spacing:-18.000000px;}
.ws4_c00197{word-spacing:-15.641400px;}
.ws1_c00197{word-spacing:-15.120000px;}
.ws2_c00197{word-spacing:-15.108600px;}
.ws6_c00197{word-spacing:0.000000px;}
._2_c00197{margin-left:-2.868000px;}
._1_c00197{margin-left:-1.296000px;}
._0_c00197{width:1.656000px;}
._4_c00197{width:3.192000px;}
._3_c00197{width:4.236000px;}
._5_c00197{width:5.640000px;}
._a_c00197{width:6.852000px;}
._10_c00197{width:9.216000px;}
._11_c00197{width:10.260000px;}
._12_c00197{width:11.508000px;}
._8_c00197{width:13.212000px;}
._7_c00197{width:14.472000px;}
._6_c00197{width:15.900000px;}
._9_c00197{width:16.920000px;}
._c_c00197{width:21.372000px;}
._f_c00197{width:22.524000px;}
._b_c00197{width:23.676000px;}
._d_c00197{width:25.212000px;}
._e_c00197{width:26.904000px;}
.fc1_c00197{color:rgb(255,0,0);}
.fc0_c00197{color:rgb(0,0,0);}
.fs1_c00197{font-size:60.480000px;}
.fs0_c00197{font-size:72.000000px;}
.y0_c00197{bottom:0.000000px;}
.y3_c00197{bottom:4.320000px;}
.y5_c00197{bottom:25.200000px;}
.y4_c00197{bottom:32.040000px;}
.y1_c00197{bottom:57.240000px;}
.y23_c00197{bottom:141.516000px;}
.y22_c00197{bottom:181.470000px;}
.y21_c00197{bottom:212.430000px;}
.y20_c00197{bottom:243.795000px;}
.y1f_c00197{bottom:283.755000px;}
.y1e_c00197{bottom:314.715000px;}
.y1d_c00197{bottom:354.705000px;}
.y1c_c00197{bottom:386.025000px;}
.y1b_c00197{bottom:416.985000px;}
.y1a_c00197{bottom:447.945000px;}
.y19_c00197{bottom:485.790000px;}
.y18_c00197{bottom:520.710000px;}
.y17_c00197{bottom:555.630000px;}
.y16_c00197{bottom:592.710000px;}
.y15_c00197{bottom:632.700000px;}
.y14_c00197{bottom:663.660000px;}
.y13_c00197{bottom:694.980000px;}
.y12_c00197{bottom:725.970000px;}
.y11_c00197{bottom:756.930000px;}
.y10_c00197{bottom:787.890000px;}
.yf_c00197{bottom:819.210000px;}
.ye_c00197{bottom:850.215000px;}
.yd_c00197{bottom:881.175000px;}
.yc_c00197{bottom:912.135000px;}
.yb_c00197{bottom:943.455000px;}
.ya_c00197{bottom:974.445000px;}
.y9_c00197{bottom:1012.245000px;}
.y8_c00197{bottom:1047.165000px;}
.y7_c00197{bottom:1081.725000px;}
.y6_c00197{bottom:1119.210000px;}
.y2_c00197{bottom:1189.050000px;}
.h3_c00197{height:20.550000px;}
.h4_c00197{height:41.395500px;}
.h7_c00197{height:59.328281px;}
.h6_c00197{height:59.357813px;}
.h8_c00197{height:60.952500px;}
.h2_c00197{height:64.546875px;}
.h9_c00197{height:70.628906px;}
.h5_c00197{height:70.664062px;}
.h0_c00197{height:1262.880000px;}
.h1_c00197{height:1263.000000px;}
.w2_c00197{width:8.310000px;}
.w3_c00197{width:638.190000px;}
.w0_c00197{width:893.160000px;}
.w1_c00197{width:893.250000px;}
.x0_c00197{left:0.000000px;}
.x3_c00197{left:127.489500px;}
.x1_c00197{left:154.515000px;}
.x4_c00197{left:169.995000px;}
.x5_c00197{left:178.635000px;}
.x2_c00197{left:757.365000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls8_c00197{letter-spacing:-0.010133pt;}
.ls7_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:0.332800pt;}
.ls2_c00197{letter-spacing:0.414720pt;}
.ls9_c00197{letter-spacing:0.460800pt;}
.lsa_c00197{letter-spacing:0.463467pt;}
.ls1_c00197{letter-spacing:0.640000pt;}
.lsb_c00197{letter-spacing:0.704000pt;}
.ls3_c00197{letter-spacing:0.800000pt;}
.ls4_c00197{letter-spacing:3.200000pt;}
.ls6_c00197{letter-spacing:4.480000pt;}
.ls5_c00197{letter-spacing:14.720000pt;}
.ws3_c00197{word-spacing:-53.760000pt;}
.ws5_c00197{word-spacing:-16.704000pt;}
.ws0_c00197{word-spacing:-16.000000pt;}
.ws4_c00197{word-spacing:-13.903467pt;}
.ws1_c00197{word-spacing:-13.440000pt;}
.ws2_c00197{word-spacing:-13.429867pt;}
.ws6_c00197{word-spacing:0.000000pt;}
._2_c00197{margin-left:-2.549333pt;}
._1_c00197{margin-left:-1.152000pt;}
._0_c00197{width:1.472000pt;}
._4_c00197{width:2.837333pt;}
._3_c00197{width:3.765333pt;}
._5_c00197{width:5.013333pt;}
._a_c00197{width:6.090667pt;}
._10_c00197{width:8.192000pt;}
._11_c00197{width:9.120000pt;}
._12_c00197{width:10.229333pt;}
._8_c00197{width:11.744000pt;}
._7_c00197{width:12.864000pt;}
._6_c00197{width:14.133333pt;}
._9_c00197{width:15.040000pt;}
._c_c00197{width:18.997333pt;}
._f_c00197{width:20.021333pt;}
._b_c00197{width:21.045333pt;}
._d_c00197{width:22.410667pt;}
._e_c00197{width:23.914667pt;}
.fs1_c00197{font-size:53.760000pt;}
.fs0_c00197{font-size:64.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y3_c00197{bottom:3.840000pt;}
.y5_c00197{bottom:22.400000pt;}
.y4_c00197{bottom:28.480000pt;}
.y1_c00197{bottom:50.880000pt;}
.y23_c00197{bottom:125.792000pt;}
.y22_c00197{bottom:161.306667pt;}
.y21_c00197{bottom:188.826667pt;}
.y20_c00197{bottom:216.706667pt;}
.y1f_c00197{bottom:252.226667pt;}
.y1e_c00197{bottom:279.746667pt;}
.y1d_c00197{bottom:315.293333pt;}
.y1c_c00197{bottom:343.133333pt;}
.y1b_c00197{bottom:370.653333pt;}
.y1a_c00197{bottom:398.173333pt;}
.y19_c00197{bottom:431.813333pt;}
.y18_c00197{bottom:462.853333pt;}
.y17_c00197{bottom:493.893333pt;}
.y16_c00197{bottom:526.853333pt;}
.y15_c00197{bottom:562.400000pt;}
.y14_c00197{bottom:589.920000pt;}
.y13_c00197{bottom:617.760000pt;}
.y12_c00197{bottom:645.306667pt;}
.y11_c00197{bottom:672.826667pt;}
.y10_c00197{bottom:700.346667pt;}
.yf_c00197{bottom:728.186667pt;}
.ye_c00197{bottom:755.746667pt;}
.yd_c00197{bottom:783.266667pt;}
.yc_c00197{bottom:810.786667pt;}
.yb_c00197{bottom:838.626667pt;}
.ya_c00197{bottom:866.173333pt;}
.y9_c00197{bottom:899.773333pt;}
.y8_c00197{bottom:930.813333pt;}
.y7_c00197{bottom:961.533333pt;}
.y6_c00197{bottom:994.853333pt;}
.y2_c00197{bottom:1056.933333pt;}
.h3_c00197{height:18.266667pt;}
.h4_c00197{height:36.796000pt;}
.h7_c00197{height:52.736250pt;}
.h6_c00197{height:52.762500pt;}
.h8_c00197{height:54.180000pt;}
.h2_c00197{height:57.375000pt;}
.h9_c00197{height:62.781250pt;}
.h5_c00197{height:62.812500pt;}
.h0_c00197{height:1122.560000pt;}
.h1_c00197{height:1122.666667pt;}
.w2_c00197{width:7.386667pt;}
.w3_c00197{width:567.280000pt;}
.w0_c00197{width:793.920000pt;}
.w1_c00197{width:794.000000pt;}
.x0_c00197{left:0.000000pt;}
.x3_c00197{left:113.324000pt;}
.x1_c00197{left:137.346667pt;}
.x4_c00197{left:151.106667pt;}
.x5_c00197{left:158.786667pt;}
.x2_c00197{left:673.213333pt;}
}





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

.ir_c00198:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00198;src:url('chunks/assets/font_9e44e95bbfea32923c2a1393.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_ee78630cb1728a555a530dad.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_59db73d75611f30e9423a39c.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_4625c67ec7a37cc17724b520.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_1f963163a3ed8a4a7577cd14.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.v1_c00198{vertical-align:27.480000px;}
.ls4_c00198{letter-spacing:0.000000px;}
.ls2_c00198{letter-spacing:0.180000px;}
.ls0_c00198{letter-spacing:0.720000px;}
.ls1_c00198{letter-spacing:1.440000px;}
.ls3_c00198{letter-spacing:15.120000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:-72.000000px;}
.ws3_c00198{word-spacing:-60.480000px;}
.ws2_c00198{word-spacing:-18.000000px;}
.ws1_c00198{word-spacing:-15.120000px;}
.ws4_c00198{word-spacing:0.000000px;}
._4_c00198{margin-left:-2.664000px;}
._1_c00198{margin-left:-1.224000px;}
._0_c00198{width:1.008000px;}
._5_c00198{width:2.292000px;}
._2_c00198{width:3.960000px;}
._3_c00198{width:5.340000px;}
._a_c00198{width:6.492000px;}
._b_c00198{width:7.932000px;}
._6_c00198{width:10.368000px;}
._7_c00198{width:11.796000px;}
._f_c00198{width:12.876024px;}
._10_c00198{width:14.123976px;}
._9_c00198{width:15.492000px;}
._8_c00198{width:16.920000px;}
._11_c00198{width:19.176000px;}
._c_c00198{width:20.316000px;}
._e_c00198{width:21.767976px;}
._d_c00198{width:23.040000px;}
.fc0_c00198{color:rgb(0,0,0);}
.fs2_c00198{font-size:38.880000px;}
.fs1_c00198{font-size:60.480000px;}
.fs0_c00198{font-size:72.000000px;}
.y0_c00198{bottom:0.000000px;}
.y3_c00198{bottom:4.320000px;}
.yc_c00198{bottom:21.225000px;}
.ya_c00198{bottom:21.240000px;}
.y5_c00198{bottom:25.200000px;}
.y4_c00198{bottom:32.040000px;}
.y9_c00198{bottom:56.160000px;}
.y1_c00198{bottom:57.240000px;}
.y8_c00198{bottom:91.080000px;}
.y26_c00198{bottom:151.590000px;}
.y25_c00198{bottom:158.430000px;}
.y24_c00198{bottom:169.590000px;}
.y23_c00198{bottom:192.270000px;}
.y22_c00198{bottom:223.590000px;}
.y21_c00198{bottom:254.595000px;}
.y20_c00198{bottom:285.555000px;}
.y1f_c00198{bottom:316.515000px;}
.y1e_c00198{bottom:347.475000px;}
.y1d_c00198{bottom:378.825000px;}
.y1c_c00198{bottom:409.785000px;}
.y1b_c00198{bottom:440.745000px;}
.y1a_c00198{bottom:471.705000px;}
.y19_c00198{bottom:503.070000px;}
.y18_c00198{bottom:534.030000px;}
.y17_c00198{bottom:564.990000px;}
.y16_c00198{bottom:595.950000px;}
.y15_c00198{bottom:627.300000px;}
.y14_c00198{bottom:658.260000px;}
.y13_c00198{bottom:689.220000px;}
.y12_c00198{bottom:729.210000px;}
.y11_c00198{bottom:760.530000px;}
.y10_c00198{bottom:791.490000px;}
.yf_c00198{bottom:822.450000px;}
.ye_c00198{bottom:862.455000px;}
.yd_c00198{bottom:889.470000px;}
.yb_c00198{bottom:934.830000px;}
.y7_c00198{bottom:980.205000px;}
.y6_c00198{bottom:1119.210000px;}
.y2_c00198{bottom:1189.050000px;}
.h3_c00198{height:20.550000px;}
.hd_c00198{height:38.158594px;}
.h4_c00198{height:41.395500px;}
.ha_c00198{height:43.545000px;}
.h8_c00198{height:43.560000px;}
.h7_c00198{height:59.357813px;}
.h2_c00198{height:64.546875px;}
.h9_c00198{height:65.638594px;}
.h5_c00198{height:70.628906px;}
.hb_c00198{height:70.664062px;}
.h6_c00198{height:113.430000px;}
.hc_c00198{height:1262.875500px;}
.h0_c00198{height:1262.880000px;}
.h1_c00198{height:1263.000000px;}
.w2_c00198{width:8.310000px;}
.w6_c00198{width:38.145000px;}
.w8_c00198{width:38.190000px;}
.w7_c00198{width:157.365000px;}
.w5_c00198{width:159.195000px;}
.w4_c00198{width:238.770000px;}
.w3_c00198{width:638.190000px;}
.w9_c00198{width:893.157000px;}
.w0_c00198{width:893.160000px;}
.w1_c00198{width:893.250000px;}
.x0_c00198{left:0.000000px;}
.x3_c00198{left:127.489500px;}
.xa_c00198{left:142.632000px;}
.x1_c00198{left:154.515000px;}
.x4_c00198{left:178.635000px;}
.x9_c00198{left:343.590000px;}
.x5_c00198{left:368.070000px;}
.x6_c00198{left:529.065000px;}
.x7_c00198{left:568.665000px;}
.x8_c00198{left:727.485000px;}
.x2_c00198{left:757.365000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.v1_c00198{vertical-align:24.426667pt;}
.ls4_c00198{letter-spacing:0.000000pt;}
.ls2_c00198{letter-spacing:0.160000pt;}
.ls0_c00198{letter-spacing:0.640000pt;}
.ls1_c00198{letter-spacing:1.280000pt;}
.ls3_c00198{letter-spacing:13.440000pt;}
.ws0_c00198{word-spacing:-64.000000pt;}
.ws3_c00198{word-spacing:-53.760000pt;}
.ws2_c00198{word-spacing:-16.000000pt;}
.ws1_c00198{word-spacing:-13.440000pt;}
.ws4_c00198{word-spacing:0.000000pt;}
._4_c00198{margin-left:-2.368000pt;}
._1_c00198{margin-left:-1.088000pt;}
._0_c00198{width:0.896000pt;}
._5_c00198{width:2.037333pt;}
._2_c00198{width:3.520000pt;}
._3_c00198{width:4.746667pt;}
._a_c00198{width:5.770667pt;}
._b_c00198{width:7.050667pt;}
._6_c00198{width:9.216000pt;}
._7_c00198{width:10.485333pt;}
._f_c00198{width:11.445355pt;}
._10_c00198{width:12.554645pt;}
._9_c00198{width:13.770667pt;}
._8_c00198{width:15.040000pt;}
._11_c00198{width:17.045333pt;}
._c_c00198{width:18.058667pt;}
._e_c00198{width:19.349312pt;}
._d_c00198{width:20.480000pt;}
.fs2_c00198{font-size:34.560000pt;}
.fs1_c00198{font-size:53.760000pt;}
.fs0_c00198{font-size:64.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y3_c00198{bottom:3.840000pt;}
.yc_c00198{bottom:18.866667pt;}
.ya_c00198{bottom:18.880000pt;}
.y5_c00198{bottom:22.400000pt;}
.y4_c00198{bottom:28.480000pt;}
.y9_c00198{bottom:49.920000pt;}
.y1_c00198{bottom:50.880000pt;}
.y8_c00198{bottom:80.960000pt;}
.y26_c00198{bottom:134.746667pt;}
.y25_c00198{bottom:140.826667pt;}
.y24_c00198{bottom:150.746667pt;}
.y23_c00198{bottom:170.906667pt;}
.y22_c00198{bottom:198.746667pt;}
.y21_c00198{bottom:226.306667pt;}
.y20_c00198{bottom:253.826667pt;}
.y1f_c00198{bottom:281.346667pt;}
.y1e_c00198{bottom:308.866667pt;}
.y1d_c00198{bottom:336.733333pt;}
.y1c_c00198{bottom:364.253333pt;}
.y1b_c00198{bottom:391.773333pt;}
.y1a_c00198{bottom:419.293333pt;}
.y19_c00198{bottom:447.173333pt;}
.y18_c00198{bottom:474.693333pt;}
.y17_c00198{bottom:502.213333pt;}
.y16_c00198{bottom:529.733333pt;}
.y15_c00198{bottom:557.600000pt;}
.y14_c00198{bottom:585.120000pt;}
.y13_c00198{bottom:612.640000pt;}
.y12_c00198{bottom:648.186667pt;}
.y11_c00198{bottom:676.026667pt;}
.y10_c00198{bottom:703.546667pt;}
.yf_c00198{bottom:731.066667pt;}
.ye_c00198{bottom:766.626667pt;}
.yd_c00198{bottom:790.640000pt;}
.yb_c00198{bottom:830.960000pt;}
.y7_c00198{bottom:871.293333pt;}
.y6_c00198{bottom:994.853333pt;}
.y2_c00198{bottom:1056.933333pt;}
.h3_c00198{height:18.266667pt;}
.hd_c00198{height:33.918750pt;}
.h4_c00198{height:36.796000pt;}
.ha_c00198{height:38.706667pt;}
.h8_c00198{height:38.720000pt;}
.h7_c00198{height:52.762500pt;}
.h2_c00198{height:57.375000pt;}
.h9_c00198{height:58.345417pt;}
.h5_c00198{height:62.781250pt;}
.hb_c00198{height:62.812500pt;}
.h6_c00198{height:100.826667pt;}
.hc_c00198{height:1122.556000pt;}
.h0_c00198{height:1122.560000pt;}
.h1_c00198{height:1122.666667pt;}
.w2_c00198{width:7.386667pt;}
.w6_c00198{width:33.906667pt;}
.w8_c00198{width:33.946667pt;}
.w7_c00198{width:139.880000pt;}
.w5_c00198{width:141.506667pt;}
.w4_c00198{width:212.240000pt;}
.w3_c00198{width:567.280000pt;}
.w9_c00198{width:793.917333pt;}
.w0_c00198{width:793.920000pt;}
.w1_c00198{width:794.000000pt;}
.x0_c00198{left:0.000000pt;}
.x3_c00198{left:113.324000pt;}
.xa_c00198{left:126.784000pt;}
.x1_c00198{left:137.346667pt;}
.x4_c00198{left:158.786667pt;}
.x9_c00198{left:305.413333pt;}
.x5_c00198{left:327.173333pt;}
.x6_c00198{left:470.280000pt;}
.x7_c00198{left:505.480000pt;}
.x8_c00198{left:646.653333pt;}
.x2_c00198{left:673.213333pt;}
}





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

.ir_c00199:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00199;src:url('chunks/assets/font_660016fb3ab0fd2f25f81b3a.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_2e9120a1bfa57fac214228f4.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_5ff38728bbf8c930bd100d70.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;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_c00199;src:url('chunks/assets/font_9e08be3a990e2b5d88a15894.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_29c0e194a6db828ed00007bf.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls4_c00199{letter-spacing:-1.440000px;}
.ls7_c00199{letter-spacing:-1.422000px;}
.ls6_c00199{letter-spacing:-0.507000px;}
.ls3_c00199{letter-spacing:0.000000px;}
.ls1_c00199{letter-spacing:0.120000px;}
.ls5_c00199{letter-spacing:0.144000px;}
.ls2_c00199{letter-spacing:0.720000px;}
.ls0_c00199{letter-spacing:9.360000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00199{word-spacing:-72.000000px;}
.ws0_c00199{word-spacing:-18.000000px;}
.ws4_c00199{word-spacing:-15.840000px;}
.ws2_c00199{word-spacing:-15.120000px;}
.ws3_c00199{word-spacing:-14.613000px;}
.ws5_c00199{word-spacing:-13.698000px;}
.ws6_c00199{word-spacing:0.000000px;}
._6_c00199{margin-left:-2.736000px;}
._3_c00199{margin-left:-1.296000px;}
._2_c00199{width:1.080000px;}
._9_c00199{width:2.160000px;}
._d_c00199{width:3.371976px;}
._4_c00199{width:4.523976px;}
._1_c00199{width:5.688000px;}
._0_c00199{width:6.840000px;}
._5_c00199{width:8.832024px;}
._b_c00199{width:11.520000px;}
._a_c00199{width:12.816000px;}
._c_c00199{width:14.592024px;}
._e_c00199{width:15.683976px;}
._f_c00199{width:16.980048px;}
._8_c00199{width:24.984000px;}
._7_c00199{width:26.784000px;}
.fc0_c00199{color:rgb(0,0,0);}
.fs3_c00199{font-size:38.880000px;}
.fs1_c00199{font-size:47.520000px;}
.fs2_c00199{font-size:60.480000px;}
.fs0_c00199{font-size:72.000000px;}
.y0_c00199{bottom:0.000000px;}
.y3_c00199{bottom:4.320000px;}
.y22_c00199{bottom:21.585000px;}
.y1d_c00199{bottom:21.600000px;}
.y20_c00199{bottom:21.615000px;}
.y1b_c00199{bottom:21.645000px;}
.y5_c00199{bottom:25.200000px;}
.y4_c00199{bottom:32.040000px;}
.y1_c00199{bottom:57.240000px;}
.y27_c00199{bottom:151.590000px;}
.y26_c00199{bottom:168.870000px;}
.y25_c00199{bottom:175.710000px;}
.y24_c00199{bottom:186.870000px;}
.y23_c00199{bottom:245.970000px;}
.y21_c00199{bottom:291.330000px;}
.y1f_c00199{bottom:336.690000px;}
.y1e_c00199{bottom:382.065000px;}
.y1c_c00199{bottom:427.425000px;}
.y1a_c00199{bottom:472.785000px;}
.y19_c00199{bottom:541.950000px;}
.y18_c00199{bottom:581.910000px;}
.y16_c00199{bottom:613.260000px;}
.y17_c00199{bottom:621.540000px;}
.y15_c00199{bottom:644.220000px;}
.y14_c00199{bottom:675.180000px;}
.y13_c00199{bottom:706.140000px;}
.y12_c00199{bottom:737.490000px;}
.y11_c00199{bottom:768.450000px;}
.y10_c00199{bottom:799.410000px;}
.yf_c00199{bottom:830.370000px;}
.ye_c00199{bottom:861.735000px;}
.yd_c00199{bottom:901.695000px;}
.yc_c00199{bottom:932.655000px;}
.yb_c00199{bottom:963.645000px;}
.ya_c00199{bottom:994.965000px;}
.y9_c00199{bottom:1025.925000px;}
.y8_c00199{bottom:1056.885000px;}
.y7_c00199{bottom:1087.890000px;}
.y6_c00199{bottom:1119.210000px;}
.y2_c00199{bottom:1189.050000px;}
.h3_c00199{height:20.550000px;}
.hc_c00199{height:38.158594px;}
.h4_c00199{height:41.395500px;}
.ha_c00199{height:43.905000px;}
.hb_c00199{height:43.920000px;}
.h8_c00199{height:43.950000px;}
.h7_c00199{height:46.638281px;}
.h9_c00199{height:59.357813px;}
.h2_c00199{height:64.546875px;}
.h5_c00199{height:70.664062px;}
.h6_c00199{height:1262.875500px;}
.h0_c00199{height:1262.880000px;}
.h1_c00199{height:1263.000000px;}
.w2_c00199{width:8.310000px;}
.w8_c00199{width:128.181000px;}
.w6_c00199{width:128.190000px;}
.w5_c00199{width:128.205000px;}
.w7_c00199{width:128.232000px;}
.w3_c00199{width:638.190000px;}
.w4_c00199{width:893.157000px;}
.w0_c00199{width:893.160000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x3_c00199{left:127.489500px;}
.xc_c00199{left:142.632000px;}
.x1_c00199{left:154.515000px;}
.x4_c00199{left:178.635000px;}
.x7_c00199{left:257.865000px;}
.xb_c00199{left:343.590000px;}
.x8_c00199{left:387.510000px;}
.x5_c00199{left:419.937000px;}
.x6_c00199{left:438.300000px;}
.x9_c00199{left:517.185000px;}
.xa_c00199{left:646.830000px;}
.x2_c00199{left:757.365000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls4_c00199{letter-spacing:-1.280000pt;}
.ls7_c00199{letter-spacing:-1.264000pt;}
.ls6_c00199{letter-spacing:-0.450667pt;}
.ls3_c00199{letter-spacing:0.000000pt;}
.ls1_c00199{letter-spacing:0.106667pt;}
.ls5_c00199{letter-spacing:0.128000pt;}
.ls2_c00199{letter-spacing:0.640000pt;}
.ls0_c00199{letter-spacing:8.320000pt;}
.ws1_c00199{word-spacing:-64.000000pt;}
.ws0_c00199{word-spacing:-16.000000pt;}
.ws4_c00199{word-spacing:-14.080000pt;}
.ws2_c00199{word-spacing:-13.440000pt;}
.ws3_c00199{word-spacing:-12.989333pt;}
.ws5_c00199{word-spacing:-12.176000pt;}
.ws6_c00199{word-spacing:0.000000pt;}
._6_c00199{margin-left:-2.432000pt;}
._3_c00199{margin-left:-1.152000pt;}
._2_c00199{width:0.960000pt;}
._9_c00199{width:1.920000pt;}
._d_c00199{width:2.997312pt;}
._4_c00199{width:4.021312pt;}
._1_c00199{width:5.056000pt;}
._0_c00199{width:6.080000pt;}
._5_c00199{width:7.850688pt;}
._b_c00199{width:10.240000pt;}
._a_c00199{width:11.392000pt;}
._c_c00199{width:12.970688pt;}
._e_c00199{width:13.941312pt;}
._f_c00199{width:15.093376pt;}
._8_c00199{width:22.208000pt;}
._7_c00199{width:23.808000pt;}
.fs3_c00199{font-size:34.560000pt;}
.fs1_c00199{font-size:42.240000pt;}
.fs2_c00199{font-size:53.760000pt;}
.fs0_c00199{font-size:64.000000pt;}
.y0_c00199{bottom:0.000000pt;}
.y3_c00199{bottom:3.840000pt;}
.y22_c00199{bottom:19.186667pt;}
.y1d_c00199{bottom:19.200000pt;}
.y20_c00199{bottom:19.213333pt;}
.y1b_c00199{bottom:19.240000pt;}
.y5_c00199{bottom:22.400000pt;}
.y4_c00199{bottom:28.480000pt;}
.y1_c00199{bottom:50.880000pt;}
.y27_c00199{bottom:134.746667pt;}
.y26_c00199{bottom:150.106667pt;}
.y25_c00199{bottom:156.186667pt;}
.y24_c00199{bottom:166.106667pt;}
.y23_c00199{bottom:218.640000pt;}
.y21_c00199{bottom:258.960000pt;}
.y1f_c00199{bottom:299.280000pt;}
.y1e_c00199{bottom:339.613333pt;}
.y1c_c00199{bottom:379.933333pt;}
.y1a_c00199{bottom:420.253333pt;}
.y19_c00199{bottom:481.733333pt;}
.y18_c00199{bottom:517.253333pt;}
.y16_c00199{bottom:545.120000pt;}
.y17_c00199{bottom:552.480000pt;}
.y15_c00199{bottom:572.640000pt;}
.y14_c00199{bottom:600.160000pt;}
.y13_c00199{bottom:627.680000pt;}
.y12_c00199{bottom:655.546667pt;}
.y11_c00199{bottom:683.066667pt;}
.y10_c00199{bottom:710.586667pt;}
.yf_c00199{bottom:738.106667pt;}
.ye_c00199{bottom:765.986667pt;}
.yd_c00199{bottom:801.506667pt;}
.yc_c00199{bottom:829.026667pt;}
.yb_c00199{bottom:856.573333pt;}
.ya_c00199{bottom:884.413333pt;}
.y9_c00199{bottom:911.933333pt;}
.y8_c00199{bottom:939.453333pt;}
.y7_c00199{bottom:967.013333pt;}
.y6_c00199{bottom:994.853333pt;}
.y2_c00199{bottom:1056.933333pt;}
.h3_c00199{height:18.266667pt;}
.hc_c00199{height:33.918750pt;}
.h4_c00199{height:36.796000pt;}
.ha_c00199{height:39.026667pt;}
.hb_c00199{height:39.040000pt;}
.h8_c00199{height:39.066667pt;}
.h7_c00199{height:41.456250pt;}
.h9_c00199{height:52.762500pt;}
.h2_c00199{height:57.375000pt;}
.h5_c00199{height:62.812500pt;}
.h6_c00199{height:1122.556000pt;}
.h0_c00199{height:1122.560000pt;}
.h1_c00199{height:1122.666667pt;}
.w2_c00199{width:7.386667pt;}
.w8_c00199{width:113.938667pt;}
.w6_c00199{width:113.946667pt;}
.w5_c00199{width:113.960000pt;}
.w7_c00199{width:113.984000pt;}
.w3_c00199{width:567.280000pt;}
.w4_c00199{width:793.917333pt;}
.w0_c00199{width:793.920000pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x3_c00199{left:113.324000pt;}
.xc_c00199{left:126.784000pt;}
.x1_c00199{left:137.346667pt;}
.x4_c00199{left:158.786667pt;}
.x7_c00199{left:229.213333pt;}
.xb_c00199{left:305.413333pt;}
.x8_c00199{left:344.453333pt;}
.x5_c00199{left:373.277333pt;}
.x6_c00199{left:389.600000pt;}
.x9_c00199{left:459.720000pt;}
.xa_c00199{left:574.960000pt;}
.x2_c00199{left:673.213333pt;}
}





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

.ir_c00200:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00200;src:url('chunks/assets/font_0f37a932608fb5848dc10d2c.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_424933d695e6b6204db1168c.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_d1cf686a6dc00f48256eee41.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_8994ab150968c86ee3b7e460.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;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_c00200;src:url('chunks/assets/font_c98ce147b45a6d0b3220ac9e.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls4_c00200{letter-spacing:0.000000px;}
.ls3_c00200{letter-spacing:0.840000px;}
.ls0_c00200{letter-spacing:2.160000px;}
.ls1_c00200{letter-spacing:3.600000px;}
.ls2_c00200{letter-spacing:3.720000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00200{word-spacing:-18.000000px;}
.ws0_c00200{word-spacing:-15.120000px;}
.ws2_c00200{word-spacing:0.000000px;}
._7_c00200{margin-left:-3.096000px;}
._0_c00200{margin-left:-1.765319px;}
._1_c00200{width:1.440000px;}
._6_c00200{width:2.744067px;}
._a_c00200{width:4.442285px;}
._b_c00200{width:5.539890px;}
._4_c00200{width:8.858638px;}
._11_c00200{width:10.000086px;}
._5_c00200{width:11.018638px;}
._d_c00200{width:12.026638px;}
._c_c00200{width:13.104000px;}
._e_c00200{width:14.207976px;}
._10_c00200{width:16.346638px;}
._9_c00200{width:19.872000px;}
._8_c00200{width:21.314638px;}
._f_c00200{width:32.335914px;}
._2_c00200{width:33.480000px;}
._3_c00200{width:35.538595px;}
.fc1_c00200{color:rgb(255,0,0);}
.fc0_c00200{color:rgb(0,0,0);}
.fs1_c00200{font-size:60.480000px;}
.fs0_c00200{font-size:72.000000px;}
.y0_c00200{bottom:0.000000px;}
.y3_c00200{bottom:4.320000px;}
.y7_c00200{bottom:21.240000px;}
.y1e_c00200{bottom:21.585000px;}
.y16_c00200{bottom:21.600000px;}
.y1a_c00200{bottom:21.645000px;}
.y5_c00200{bottom:25.200000px;}
.y4_c00200{bottom:32.040000px;}
.y1_c00200{bottom:57.240000px;}
.y24_c00200{bottom:140.076000px;}
.y23_c00200{bottom:171.030000px;}
.y22_c00200{bottom:201.990000px;}
.y21_c00200{bottom:232.995000px;}
.y20_c00200{bottom:264.315000px;}
.y1f_c00200{bottom:304.275000px;}
.y1d_c00200{bottom:330.930000px;}
.y1c_c00200{bottom:376.305000px;}
.y1b_c00200{bottom:421.665000px;}
.y19_c00200{bottom:467.025000px;}
.y18_c00200{bottom:512.430000px;}
.y17_c00200{bottom:557.790000px;}
.y15_c00200{bottom:603.180000px;}
.y14_c00200{bottom:672.660000px;}
.y13_c00200{bottom:712.620000px;}
.y12_c00200{bottom:743.610000px;}
.y11_c00200{bottom:774.570000px;}
.y10_c00200{bottom:805.530000px;}
.yf_c00200{bottom:836.850000px;}
.ye_c00200{bottom:867.855000px;}
.yd_c00200{bottom:898.815000px;}
.yc_c00200{bottom:929.775000px;}
.yb_c00200{bottom:961.095000px;}
.ya_c00200{bottom:992.085000px;}
.y9_c00200{bottom:1023.045000px;}
.y8_c00200{bottom:1063.005000px;}
.y6_c00200{bottom:1090.050000px;}
.y2_c00200{bottom:1189.050000px;}
.h3_c00200{height:20.550000px;}
.h4_c00200{height:41.395500px;}
.h5_c00200{height:43.545000px;}
.ha_c00200{height:43.905000px;}
.h8_c00200{height:43.920000px;}
.h9_c00200{height:43.950000px;}
.h6_c00200{height:59.357813px;}
.h2_c00200{height:64.546875px;}
.h7_c00200{height:70.664062px;}
.h0_c00200{height:1262.880000px;}
.h1_c00200{height:1263.000000px;}
.w2_c00200{width:8.310000px;}
.w7_c00200{width:128.181000px;}
.w5_c00200{width:128.190000px;}
.w4_c00200{width:128.205000px;}
.w6_c00200{width:128.232000px;}
.w8_c00200{width:160.605000px;}
.w9_c00200{width:160.635000px;}
.w3_c00200{width:638.190000px;}
.w0_c00200{width:893.160000px;}
.w1_c00200{width:893.250000px;}
.x0_c00200{left:0.000000px;}
.x3_c00200{left:127.489500px;}
.x1_c00200{left:154.515000px;}
.x8_c00200{left:178.635000px;}
.x4_c00200{left:257.865000px;}
.x9_c00200{left:290.265000px;}
.x5_c00200{left:387.510000px;}
.xa_c00200{left:452.340000px;}
.x6_c00200{left:517.185000px;}
.xb_c00200{left:614.430000px;}
.x7_c00200{left:646.830000px;}
.x2_c00200{left:757.365000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls4_c00200{letter-spacing:0.000000pt;}
.ls3_c00200{letter-spacing:0.746667pt;}
.ls0_c00200{letter-spacing:1.920000pt;}
.ls1_c00200{letter-spacing:3.200000pt;}
.ls2_c00200{letter-spacing:3.306667pt;}
.ws1_c00200{word-spacing:-16.000000pt;}
.ws0_c00200{word-spacing:-13.440000pt;}
.ws2_c00200{word-spacing:0.000000pt;}
._7_c00200{margin-left:-2.752000pt;}
._0_c00200{margin-left:-1.569172pt;}
._1_c00200{width:1.280000pt;}
._6_c00200{width:2.439171pt;}
._a_c00200{width:3.948698pt;}
._b_c00200{width:4.924347pt;}
._4_c00200{width:7.874345pt;}
._11_c00200{width:8.888965pt;}
._5_c00200{width:9.794345pt;}
._d_c00200{width:10.690345pt;}
._c_c00200{width:11.648000pt;}
._e_c00200{width:12.629312pt;}
._10_c00200{width:14.530345pt;}
._9_c00200{width:17.664000pt;}
._8_c00200{width:18.946345pt;}
._f_c00200{width:28.743035pt;}
._2_c00200{width:29.760000pt;}
._3_c00200{width:31.589862pt;}
.fs1_c00200{font-size:53.760000pt;}
.fs0_c00200{font-size:64.000000pt;}
.y0_c00200{bottom:0.000000pt;}
.y3_c00200{bottom:3.840000pt;}
.y7_c00200{bottom:18.880000pt;}
.y1e_c00200{bottom:19.186667pt;}
.y16_c00200{bottom:19.200000pt;}
.y1a_c00200{bottom:19.240000pt;}
.y5_c00200{bottom:22.400000pt;}
.y4_c00200{bottom:28.480000pt;}
.y1_c00200{bottom:50.880000pt;}
.y24_c00200{bottom:124.512000pt;}
.y23_c00200{bottom:152.026667pt;}
.y22_c00200{bottom:179.546667pt;}
.y21_c00200{bottom:207.106667pt;}
.y20_c00200{bottom:234.946667pt;}
.y1f_c00200{bottom:270.466667pt;}
.y1d_c00200{bottom:294.160000pt;}
.y1c_c00200{bottom:334.493333pt;}
.y1b_c00200{bottom:374.813333pt;}
.y19_c00200{bottom:415.133333pt;}
.y18_c00200{bottom:455.493333pt;}
.y17_c00200{bottom:495.813333pt;}
.y15_c00200{bottom:536.160000pt;}
.y14_c00200{bottom:597.920000pt;}
.y13_c00200{bottom:633.440000pt;}
.y12_c00200{bottom:660.986667pt;}
.y11_c00200{bottom:688.506667pt;}
.y10_c00200{bottom:716.026667pt;}
.yf_c00200{bottom:743.866667pt;}
.ye_c00200{bottom:771.426667pt;}
.yd_c00200{bottom:798.946667pt;}
.yc_c00200{bottom:826.466667pt;}
.yb_c00200{bottom:854.306667pt;}
.ya_c00200{bottom:881.853333pt;}
.y9_c00200{bottom:909.373333pt;}
.y8_c00200{bottom:944.893333pt;}
.y6_c00200{bottom:968.933333pt;}
.y2_c00200{bottom:1056.933333pt;}
.h3_c00200{height:18.266667pt;}
.h4_c00200{height:36.796000pt;}
.h5_c00200{height:38.706667pt;}
.ha_c00200{height:39.026667pt;}
.h8_c00200{height:39.040000pt;}
.h9_c00200{height:39.066667pt;}
.h6_c00200{height:52.762500pt;}
.h2_c00200{height:57.375000pt;}
.h7_c00200{height:62.812500pt;}
.h0_c00200{height:1122.560000pt;}
.h1_c00200{height:1122.666667pt;}
.w2_c00200{width:7.386667pt;}
.w7_c00200{width:113.938667pt;}
.w5_c00200{width:113.946667pt;}
.w4_c00200{width:113.960000pt;}
.w6_c00200{width:113.984000pt;}
.w8_c00200{width:142.760000pt;}
.w9_c00200{width:142.786667pt;}
.w3_c00200{width:567.280000pt;}
.w0_c00200{width:793.920000pt;}
.w1_c00200{width:794.000000pt;}
.x0_c00200{left:0.000000pt;}
.x3_c00200{left:113.324000pt;}
.x1_c00200{left:137.346667pt;}
.x8_c00200{left:158.786667pt;}
.x4_c00200{left:229.213333pt;}
.x9_c00200{left:258.013333pt;}
.x5_c00200{left:344.453333pt;}
.xa_c00200{left:402.080000pt;}
.x6_c00200{left:459.720000pt;}
.xb_c00200{left:546.160000pt;}
.x7_c00200{left:574.960000pt;}
.x2_c00200{left:673.213333pt;}
}





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

.ir_c00201:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00201;src:url('chunks/assets/font_5c2751de5c5e254a2e65c2ac.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_c830733e8adfdb339b89b371.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_321ec76a06da4e923fb3ea53.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;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_c00201;src:url('chunks/assets/font_e4894dba8904fe0eebb06342.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls1_c00201{letter-spacing:0.000000px;}
.ls0_c00201{letter-spacing:0.720000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:-18.000000px;}
.ws1_c00201{word-spacing:0.000000px;}
._9_c00201{margin-left:-3.456000px;}
._6_c00201{margin-left:-2.376000px;}
._1_c00201{margin-left:-1.296000px;}
._0_c00201{width:1.080000px;}
._2_c00201{width:2.952000px;}
._3_c00201{width:4.752000px;}
._10_c00201{width:6.120000px;}
._f_c00201{width:7.344000px;}
._5_c00201{width:9.144000px;}
._4_c00201{width:10.224000px;}
._7_c00201{width:11.592000px;}
._8_c00201{width:13.032000px;}
._e_c00201{width:14.400000px;}
._11_c00201{width:15.840000px;}
._12_c00201{width:16.992000px;}
._d_c00201{width:22.320000px;}
._b_c00201{width:34.416000px;}
._a_c00201{width:35.424000px;}
._c_c00201{width:37.008000px;}
.fc1_c00201{color:rgb(255,0,0);}
.fc0_c00201{color:rgb(0,0,0);}
.fs2_c00201{font-size:38.880000px;}
.fs1_c00201{font-size:47.520000px;}
.fs3_c00201{font-size:60.480000px;}
.fs0_c00201{font-size:72.000000px;}
.y0_c00201{bottom:0.000000px;}
.y3_c00201{bottom:4.320000px;}
.y5_c00201{bottom:25.200000px;}
.y4_c00201{bottom:32.040000px;}
.y1_c00201{bottom:57.240000px;}
.y28_c00201{bottom:151.590000px;}
.y27_c00201{bottom:158.430000px;}
.y26_c00201{bottom:168.870000px;}
.y25_c00201{bottom:175.710000px;}
.y24_c00201{bottom:186.870000px;}
.y23_c00201{bottom:235.515000px;}
.y21_c00201{bottom:275.475000px;}
.y22_c00201{bottom:283.755000px;}
.y20_c00201{bottom:306.795000px;}
.y1f_c00201{bottom:337.755000px;}
.y1e_c00201{bottom:368.745000px;}
.y1d_c00201{bottom:408.705000px;}
.y1c_c00201{bottom:440.025000px;}
.y1b_c00201{bottom:470.985000px;}
.y1a_c00201{bottom:501.990000px;}
.y19_c00201{bottom:532.950000px;}
.y18_c00201{bottom:563.910000px;}
.y17_c00201{bottom:595.230000px;}
.y16_c00201{bottom:626.220000px;}
.y15_c00201{bottom:657.180000px;}
.y14_c00201{bottom:688.140000px;}
.y13_c00201{bottom:719.490000px;}
.y12_c00201{bottom:750.450000px;}
.y11_c00201{bottom:790.410000px;}
.y10_c00201{bottom:821.370000px;}
.yf_c00201{bottom:852.735000px;}
.yd_c00201{bottom:883.695000px;}
.ye_c00201{bottom:891.975000px;}
.yc_c00201{bottom:914.655000px;}
.yb_c00201{bottom:954.615000px;}
.ya_c00201{bottom:994.965000px;}
.y9_c00201{bottom:1025.925000px;}
.y8_c00201{bottom:1056.885000px;}
.y7_c00201{bottom:1087.890000px;}
.y6_c00201{bottom:1119.210000px;}
.y2_c00201{bottom:1189.050000px;}
.h3_c00201{height:20.550000px;}
.ha_c00201{height:34.855313px;}
.h4_c00201{height:41.395500px;}
.h9_c00201{height:46.615078px;}
.h8_c00201{height:46.638281px;}
.hc_c00201{height:54.219375px;}
.hb_c00201{height:59.357813px;}
.h2_c00201{height:64.546875px;}
.h6_c00201{height:70.628906px;}
.h5_c00201{height:70.664062px;}
.h7_c00201{height:1262.875500px;}
.h0_c00201{height:1262.880000px;}
.h1_c00201{height:1263.000000px;}
.w2_c00201{width:8.310000px;}
.w3_c00201{width:638.190000px;}
.w4_c00201{width:893.157000px;}
.w0_c00201{width:893.160000px;}
.w1_c00201{width:893.250000px;}
.x0_c00201{left:0.000000px;}
.x3_c00201{left:127.489500px;}
.xa_c00201{left:142.632000px;}
.x1_c00201{left:154.515000px;}
.x4_c00201{left:178.635000px;}
.x9_c00201{left:343.590000px;}
.x5_c00201{left:540.927000px;}
.x7_c00201{left:556.047000px;}
.x6_c00201{left:559.290000px;}
.x8_c00201{left:574.410000px;}
.x2_c00201{left:757.365000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls1_c00201{letter-spacing:0.000000pt;}
.ls0_c00201{letter-spacing:0.640000pt;}
.ws0_c00201{word-spacing:-16.000000pt;}
.ws1_c00201{word-spacing:0.000000pt;}
._9_c00201{margin-left:-3.072000pt;}
._6_c00201{margin-left:-2.112000pt;}
._1_c00201{margin-left:-1.152000pt;}
._0_c00201{width:0.960000pt;}
._2_c00201{width:2.624000pt;}
._3_c00201{width:4.224000pt;}
._10_c00201{width:5.440000pt;}
._f_c00201{width:6.528000pt;}
._5_c00201{width:8.128000pt;}
._4_c00201{width:9.088000pt;}
._7_c00201{width:10.304000pt;}
._8_c00201{width:11.584000pt;}
._e_c00201{width:12.800000pt;}
._11_c00201{width:14.080000pt;}
._12_c00201{width:15.104000pt;}
._d_c00201{width:19.840000pt;}
._b_c00201{width:30.592000pt;}
._a_c00201{width:31.488000pt;}
._c_c00201{width:32.896000pt;}
.fs2_c00201{font-size:34.560000pt;}
.fs1_c00201{font-size:42.240000pt;}
.fs3_c00201{font-size:53.760000pt;}
.fs0_c00201{font-size:64.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y3_c00201{bottom:3.840000pt;}
.y5_c00201{bottom:22.400000pt;}
.y4_c00201{bottom:28.480000pt;}
.y1_c00201{bottom:50.880000pt;}
.y28_c00201{bottom:134.746667pt;}
.y27_c00201{bottom:140.826667pt;}
.y26_c00201{bottom:150.106667pt;}
.y25_c00201{bottom:156.186667pt;}
.y24_c00201{bottom:166.106667pt;}
.y23_c00201{bottom:209.346667pt;}
.y21_c00201{bottom:244.866667pt;}
.y22_c00201{bottom:252.226667pt;}
.y20_c00201{bottom:272.706667pt;}
.y1f_c00201{bottom:300.226667pt;}
.y1e_c00201{bottom:327.773333pt;}
.y1d_c00201{bottom:363.293333pt;}
.y1c_c00201{bottom:391.133333pt;}
.y1b_c00201{bottom:418.653333pt;}
.y1a_c00201{bottom:446.213333pt;}
.y19_c00201{bottom:473.733333pt;}
.y18_c00201{bottom:501.253333pt;}
.y17_c00201{bottom:529.093333pt;}
.y16_c00201{bottom:556.640000pt;}
.y15_c00201{bottom:584.160000pt;}
.y14_c00201{bottom:611.680000pt;}
.y13_c00201{bottom:639.546667pt;}
.y12_c00201{bottom:667.066667pt;}
.y11_c00201{bottom:702.586667pt;}
.y10_c00201{bottom:730.106667pt;}
.yf_c00201{bottom:757.986667pt;}
.yd_c00201{bottom:785.506667pt;}
.ye_c00201{bottom:792.866667pt;}
.yc_c00201{bottom:813.026667pt;}
.yb_c00201{bottom:848.546667pt;}
.ya_c00201{bottom:884.413333pt;}
.y9_c00201{bottom:911.933333pt;}
.y8_c00201{bottom:939.453333pt;}
.y7_c00201{bottom:967.013333pt;}
.y6_c00201{bottom:994.853333pt;}
.y2_c00201{bottom:1056.933333pt;}
.h3_c00201{height:18.266667pt;}
.ha_c00201{height:30.982500pt;}
.h4_c00201{height:36.796000pt;}
.h9_c00201{height:41.435625pt;}
.h8_c00201{height:41.456250pt;}
.hc_c00201{height:48.195000pt;}
.hb_c00201{height:52.762500pt;}
.h2_c00201{height:57.375000pt;}
.h6_c00201{height:62.781250pt;}
.h5_c00201{height:62.812500pt;}
.h7_c00201{height:1122.556000pt;}
.h0_c00201{height:1122.560000pt;}
.h1_c00201{height:1122.666667pt;}
.w2_c00201{width:7.386667pt;}
.w3_c00201{width:567.280000pt;}
.w4_c00201{width:793.917333pt;}
.w0_c00201{width:793.920000pt;}
.w1_c00201{width:794.000000pt;}
.x0_c00201{left:0.000000pt;}
.x3_c00201{left:113.324000pt;}
.xa_c00201{left:126.784000pt;}
.x1_c00201{left:137.346667pt;}
.x4_c00201{left:158.786667pt;}
.x9_c00201{left:305.413333pt;}
.x5_c00201{left:480.824000pt;}
.x7_c00201{left:494.264000pt;}
.x6_c00201{left:497.146667pt;}
.x8_c00201{left:510.586667pt;}
.x2_c00201{left:673.213333pt;}
}





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

.ir_c00202:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00202;src:url('chunks/assets/font_f613accbc931755ede5079d5.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_98067f1a027a869948cccee3.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_c1f2b1bd6fdfe0435b552f38.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;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_c00202;src:url('chunks/assets/font_9e08be3a990e2b5d88a15894.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_6fc8ab1ce2c85fafbfdb70f1.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00202;src:url('chunks/assets/font_c93ec3096c664de1abada520.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls6_c00202{letter-spacing:-0.912000px;}
.ls3_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:0.144000px;}
.ls5_c00202{letter-spacing:0.466800px;}
.ls4_c00202{letter-spacing:0.507000px;}
.ls1_c00202{letter-spacing:0.720000px;}
.ls2_c00202{letter-spacing:6.480000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00202{word-spacing:-72.000000px;}
.ws0_c00202{word-spacing:-18.000000px;}
.ws3_c00202{word-spacing:-15.627000px;}
.ws2_c00202{word-spacing:-15.120000px;}
.ws4_c00202{word-spacing:0.000000px;}
._4_c00202{margin-left:-3.024000px;}
._0_c00202{margin-left:-1.800000px;}
._2_c00202{width:1.368000px;}
._6_c00202{width:3.240000px;}
._e_c00202{width:4.896000px;}
._12_c00202{width:6.035976px;}
._11_c00202{width:7.344000px;}
._15_c00202{width:8.436024px;}
._7_c00202{width:9.720000px;}
._f_c00202{width:11.376000px;}
._10_c00202{width:12.384000px;}
._d_c00202{width:14.112000px;}
._b_c00202{width:15.264000px;}
._c_c00202{width:16.920000px;}
._a_c00202{width:19.308024px;}
._8_c00202{width:20.520000px;}
._9_c00202{width:22.392000px;}
._13_c00202{width:36.504000px;}
._14_c00202{width:37.584000px;}
._1_c00202{width:39.240000px;}
._3_c00202{width:41.172000px;}
._5_c00202{width:51.408000px;}
.fc0_c00202{color:rgb(0,0,0);}
.fs2_c00202{font-size:38.880000px;}
.fs1_c00202{font-size:47.520000px;}
.fs3_c00202{font-size:60.480000px;}
.fs0_c00202{font-size:72.000000px;}
.y0_c00202{bottom:0.000000px;}
.y3_c00202{bottom:4.320000px;}
.y5_c00202{bottom:25.200000px;}
.y4_c00202{bottom:32.040000px;}
.y1_c00202{bottom:57.240000px;}
.y2c_c00202{bottom:151.590000px;}
.y2b_c00202{bottom:168.870000px;}
.y2a_c00202{bottom:186.150000px;}
.y29_c00202{bottom:203.430000px;}
.y28_c00202{bottom:220.710000px;}
.y27_c00202{bottom:238.035000px;}
.y26_c00202{bottom:244.875000px;}
.y25_c00202{bottom:255.315000px;}
.y24_c00202{bottom:272.595000px;}
.y23_c00202{bottom:279.435000px;}
.y22_c00202{bottom:290.235000px;}
.y21_c00202{bottom:333.795000px;}
.y20_c00202{bottom:364.785000px;}
.y1f_c00202{bottom:395.745000px;}
.y1d_c00202{bottom:426.705000px;}
.y1e_c00202{bottom:434.985000px;}
.y1c_c00202{bottom:458.025000px;}
.y1b_c00202{bottom:489.030000px;}
.y1a_c00202{bottom:519.990000px;}
.y19_c00202{bottom:550.950000px;}
.y18_c00202{bottom:590.910000px;}
.y17_c00202{bottom:622.260000px;}
.y16_c00202{bottom:653.220000px;}
.y15_c00202{bottom:684.180000px;}
.y14_c00202{bottom:715.140000px;}
.y13_c00202{bottom:746.490000px;}
.y12_c00202{bottom:777.450000px;}
.y11_c00202{bottom:808.410000px;}
.y10_c00202{bottom:839.370000px;}
.yf_c00202{bottom:870.735000px;}
.ye_c00202{bottom:901.695000px;}
.yd_c00202{bottom:932.655000px;}
.yb_c00202{bottom:963.645000px;}
.yc_c00202{bottom:971.925000px;}
.ya_c00202{bottom:994.965000px;}
.y9_c00202{bottom:1025.925000px;}
.y8_c00202{bottom:1056.885000px;}
.y7_c00202{bottom:1087.890000px;}
.y6_c00202{bottom:1119.210000px;}
.y2_c00202{bottom:1189.050000px;}
.h3_c00202{height:20.550000px;}
.h8_c00202{height:34.855313px;}
.h4_c00202{height:41.395500px;}
.h7_c00202{height:46.638281px;}
.h9_c00202{height:54.219375px;}
.h2_c00202{height:64.546875px;}
.h5_c00202{height:70.664062px;}
.h6_c00202{height:1262.875500px;}
.h0_c00202{height:1262.880000px;}
.h1_c00202{height:1263.000000px;}
.w2_c00202{width:8.310000px;}
.w3_c00202{width:638.190000px;}
.w4_c00202{width:893.157000px;}
.w0_c00202{width:893.160000px;}
.w1_c00202{width:893.250000px;}
.x0_c00202{left:0.000000px;}
.x3_c00202{left:127.489500px;}
.xa_c00202{left:142.632000px;}
.x1_c00202{left:154.515000px;}
.x6_c00202{left:178.635000px;}
.x9_c00202{left:343.590000px;}
.x7_c00202{left:419.217000px;}
.x8_c00202{left:437.580000px;}
.x4_c00202{left:710.562000px;}
.x5_c00202{left:728.925000px;}
.x2_c00202{left:757.365000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls6_c00202{letter-spacing:-0.810667pt;}
.ls3_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:0.128000pt;}
.ls5_c00202{letter-spacing:0.414933pt;}
.ls4_c00202{letter-spacing:0.450667pt;}
.ls1_c00202{letter-spacing:0.640000pt;}
.ls2_c00202{letter-spacing:5.760000pt;}
.ws1_c00202{word-spacing:-64.000000pt;}
.ws0_c00202{word-spacing:-16.000000pt;}
.ws3_c00202{word-spacing:-13.890667pt;}
.ws2_c00202{word-spacing:-13.440000pt;}
.ws4_c00202{word-spacing:0.000000pt;}
._4_c00202{margin-left:-2.688000pt;}
._0_c00202{margin-left:-1.600000pt;}
._2_c00202{width:1.216000pt;}
._6_c00202{width:2.880000pt;}
._e_c00202{width:4.352000pt;}
._12_c00202{width:5.365312pt;}
._11_c00202{width:6.528000pt;}
._15_c00202{width:7.498688pt;}
._7_c00202{width:8.640000pt;}
._f_c00202{width:10.112000pt;}
._10_c00202{width:11.008000pt;}
._d_c00202{width:12.544000pt;}
._b_c00202{width:13.568000pt;}
._c_c00202{width:15.040000pt;}
._a_c00202{width:17.162688pt;}
._8_c00202{width:18.240000pt;}
._9_c00202{width:19.904000pt;}
._13_c00202{width:32.448000pt;}
._14_c00202{width:33.408000pt;}
._1_c00202{width:34.880000pt;}
._3_c00202{width:36.597333pt;}
._5_c00202{width:45.696000pt;}
.fs2_c00202{font-size:34.560000pt;}
.fs1_c00202{font-size:42.240000pt;}
.fs3_c00202{font-size:53.760000pt;}
.fs0_c00202{font-size:64.000000pt;}
.y0_c00202{bottom:0.000000pt;}
.y3_c00202{bottom:3.840000pt;}
.y5_c00202{bottom:22.400000pt;}
.y4_c00202{bottom:28.480000pt;}
.y1_c00202{bottom:50.880000pt;}
.y2c_c00202{bottom:134.746667pt;}
.y2b_c00202{bottom:150.106667pt;}
.y2a_c00202{bottom:165.466667pt;}
.y29_c00202{bottom:180.826667pt;}
.y28_c00202{bottom:196.186667pt;}
.y27_c00202{bottom:211.586667pt;}
.y26_c00202{bottom:217.666667pt;}
.y25_c00202{bottom:226.946667pt;}
.y24_c00202{bottom:242.306667pt;}
.y23_c00202{bottom:248.386667pt;}
.y22_c00202{bottom:257.986667pt;}
.y21_c00202{bottom:296.706667pt;}
.y20_c00202{bottom:324.253333pt;}
.y1f_c00202{bottom:351.773333pt;}
.y1d_c00202{bottom:379.293333pt;}
.y1e_c00202{bottom:386.653333pt;}
.y1c_c00202{bottom:407.133333pt;}
.y1b_c00202{bottom:434.693333pt;}
.y1a_c00202{bottom:462.213333pt;}
.y19_c00202{bottom:489.733333pt;}
.y18_c00202{bottom:525.253333pt;}
.y17_c00202{bottom:553.120000pt;}
.y16_c00202{bottom:580.640000pt;}
.y15_c00202{bottom:608.160000pt;}
.y14_c00202{bottom:635.680000pt;}
.y13_c00202{bottom:663.546667pt;}
.y12_c00202{bottom:691.066667pt;}
.y11_c00202{bottom:718.586667pt;}
.y10_c00202{bottom:746.106667pt;}
.yf_c00202{bottom:773.986667pt;}
.ye_c00202{bottom:801.506667pt;}
.yd_c00202{bottom:829.026667pt;}
.yb_c00202{bottom:856.573333pt;}
.yc_c00202{bottom:863.933333pt;}
.ya_c00202{bottom:884.413333pt;}
.y9_c00202{bottom:911.933333pt;}
.y8_c00202{bottom:939.453333pt;}
.y7_c00202{bottom:967.013333pt;}
.y6_c00202{bottom:994.853333pt;}
.y2_c00202{bottom:1056.933333pt;}
.h3_c00202{height:18.266667pt;}
.h8_c00202{height:30.982500pt;}
.h4_c00202{height:36.796000pt;}
.h7_c00202{height:41.456250pt;}
.h9_c00202{height:48.195000pt;}
.h2_c00202{height:57.375000pt;}
.h5_c00202{height:62.812500pt;}
.h6_c00202{height:1122.556000pt;}
.h0_c00202{height:1122.560000pt;}
.h1_c00202{height:1122.666667pt;}
.w2_c00202{width:7.386667pt;}
.w3_c00202{width:567.280000pt;}
.w4_c00202{width:793.917333pt;}
.w0_c00202{width:793.920000pt;}
.w1_c00202{width:794.000000pt;}
.x0_c00202{left:0.000000pt;}
.x3_c00202{left:113.324000pt;}
.xa_c00202{left:126.784000pt;}
.x1_c00202{left:137.346667pt;}
.x6_c00202{left:158.786667pt;}
.x9_c00202{left:305.413333pt;}
.x7_c00202{left:372.637333pt;}
.x8_c00202{left:388.960000pt;}
.x4_c00202{left:631.610667pt;}
.x5_c00202{left:647.933333pt;}
.x2_c00202{left:673.213333pt;}
}





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

.ir_c00203:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00203;src:url('chunks/assets/font_9c0b8750d24559c754338dbf.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_e96e8c75ee031af27523fb0a.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_05fcfebb2880ac24cd5bc2e1.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;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_c00203;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00203;src:url('chunks/assets/font_7a647d7aba161a2ea7e085cc.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00203;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00203{font-family:ff6_c00203;line-height:1.311035;font-style:normal;font-weight: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_c00203;src:url('chunks/assets/font_8a3b5a4ae3b4a2f95507b29c.woff2')format("woff");}.ff7_c00203{font-family:ff7_c00203;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.lsd_c00203{letter-spacing:-2.880000px;}
.ls7_c00203{letter-spacing:-1.416000px;}
.ls8_c00203{letter-spacing:-0.720000px;}
.ls5_c00203{letter-spacing:0.000000px;}
.lse_c00203{letter-spacing:0.020400px;}
.ls6_c00203{letter-spacing:0.022800px;}
.ls9_c00203{letter-spacing:0.313800px;}
.lsa_c00203{letter-spacing:0.486600px;}
.lsc_c00203{letter-spacing:0.630000px;}
.ls1_c00203{letter-spacing:0.720000px;}
.ls0_c00203{letter-spacing:0.720219px;}
.ls2_c00203{letter-spacing:0.740142px;}
.ls3_c00203{letter-spacing:0.740154px;}
.lsb_c00203{letter-spacing:1.152000px;}
.ls4_c00203{letter-spacing:15.120000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00203{word-spacing:-72.000000px;}
.ws3_c00203{word-spacing:-60.480000px;}
.ws6_c00203{word-spacing:-19.152000px;}
.ws0_c00203{word-spacing:-18.000000px;}
.ws7_c00203{word-spacing:-15.750000px;}
.ws5_c00203{word-spacing:-15.606600px;}
.ws4_c00203{word-spacing:-15.433800px;}
.ws8_c00203{word-spacing:-15.140400px;}
.ws2_c00203{word-spacing:-15.120000px;}
.ws9_c00203{word-spacing:0.000000px;}
._c_c00203{margin-left:-3.468000px;}
._2_c00203{margin-left:-2.172000px;}
._0_c00203{margin-left:-1.080000px;}
._1_c00203{width:1.296000px;}
._5_c00203{width:2.496000px;}
._4_c00203{width:3.900000px;}
._3_c00203{width:4.980000px;}
._6_c00203{width:6.972000px;}
._7_c00203{width:8.136000px;}
._a_c00203{width:9.936000px;}
._b_c00203{width:11.832000px;}
._d_c00203{width:13.412377px;}
._9_c00203{width:15.864000px;}
._8_c00203{width:16.992000px;}
.fc0_c00203{color:rgb(0,0,0);}
.fs3_c00203{font-size:38.880000px;}
.fs2_c00203{font-size:47.520000px;}
.fs1_c00203{font-size:60.480000px;}
.fs0_c00203{font-size:72.000000px;}
.y0_c00203{bottom:0.000000px;}
.y3_c00203{bottom:4.320000px;}
.y5_c00203{bottom:25.200000px;}
.y4_c00203{bottom:32.040000px;}
.y1_c00203{bottom:57.240000px;}
.y25_c00203{bottom:151.590000px;}
.y24_c00203{bottom:168.870000px;}
.y23_c00203{bottom:175.710000px;}
.y22_c00203{bottom:186.870000px;}
.y21_c00203{bottom:215.310000px;}
.y20_c00203{bottom:246.675000px;}
.y1f_c00203{bottom:286.635000px;}
.y1e_c00203{bottom:317.595000px;}
.y1d_c00203{bottom:348.555000px;}
.y1c_c00203{bottom:379.905000px;}
.y1b_c00203{bottom:410.865000px;}
.y19_c00203{bottom:450.825000px;}
.y1a_c00203{bottom:459.105000px;}
.y18_c00203{bottom:481.830000px;}
.y17_c00203{bottom:513.150000px;}
.y16_c00203{bottom:544.110000px;}
.y15_c00203{bottom:575.070000px;}
.y14_c00203{bottom:612.900000px;}
.y13_c00203{bottom:647.820000px;}
.y12_c00203{bottom:682.740000px;}
.y11_c00203{bottom:717.660000px;}
.y10_c00203{bottom:752.250000px;}
.yf_c00203{bottom:787.170000px;}
.ye_c00203{bottom:822.090000px;}
.yd_c00203{bottom:857.055000px;}
.yc_c00203{bottom:891.975000px;}
.yb_c00203{bottom:926.895000px;}
.ya_c00203{bottom:961.815000px;}
.y9_c00203{bottom:998.925000px;}
.y8_c00203{bottom:1038.885000px;}
.y7_c00203{bottom:1078.845000px;}
.y6_c00203{bottom:1119.210000px;}
.y2_c00203{bottom:1189.050000px;}
.h3_c00203{height:20.550000px;}
.hb_c00203{height:34.855313px;}
.h4_c00203{height:41.395500px;}
.ha_c00203{height:46.615078px;}
.h8_c00203{height:59.357813px;}
.h7_c00203{height:60.952500px;}
.h2_c00203{height:64.546875px;}
.h6_c00203{height:70.628906px;}
.h5_c00203{height:70.664062px;}
.h9_c00203{height:1262.875500px;}
.h0_c00203{height:1262.880000px;}
.h1_c00203{height:1263.000000px;}
.w2_c00203{width:8.310000px;}
.w3_c00203{width:638.190000px;}
.w4_c00203{width:893.157000px;}
.w0_c00203{width:893.160000px;}
.w1_c00203{width:893.250000px;}
.x0_c00203{left:0.000000px;}
.x3_c00203{left:127.489500px;}
.xa_c00203{left:142.632000px;}
.x1_c00203{left:154.515000px;}
.x5_c00203{left:168.195000px;}
.x8_c00203{left:178.635000px;}
.x4_c00203{left:180.795000px;}
.x6_c00203{left:316.587000px;}
.x7_c00203{left:334.950000px;}
.x9_c00203{left:343.590000px;}
.x2_c00203{left:757.365000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.lsd_c00203{letter-spacing:-2.560000pt;}
.ls7_c00203{letter-spacing:-1.258667pt;}
.ls8_c00203{letter-spacing:-0.640000pt;}
.ls5_c00203{letter-spacing:0.000000pt;}
.lse_c00203{letter-spacing:0.018133pt;}
.ls6_c00203{letter-spacing:0.020267pt;}
.ls9_c00203{letter-spacing:0.278933pt;}
.lsa_c00203{letter-spacing:0.432533pt;}
.lsc_c00203{letter-spacing:0.560000pt;}
.ls1_c00203{letter-spacing:0.640000pt;}
.ls0_c00203{letter-spacing:0.640195pt;}
.ls2_c00203{letter-spacing:0.657904pt;}
.ls3_c00203{letter-spacing:0.657915pt;}
.lsb_c00203{letter-spacing:1.024000pt;}
.ls4_c00203{letter-spacing:13.440000pt;}
.ws1_c00203{word-spacing:-64.000000pt;}
.ws3_c00203{word-spacing:-53.760000pt;}
.ws6_c00203{word-spacing:-17.024000pt;}
.ws0_c00203{word-spacing:-16.000000pt;}
.ws7_c00203{word-spacing:-14.000000pt;}
.ws5_c00203{word-spacing:-13.872533pt;}
.ws4_c00203{word-spacing:-13.718933pt;}
.ws8_c00203{word-spacing:-13.458133pt;}
.ws2_c00203{word-spacing:-13.440000pt;}
.ws9_c00203{word-spacing:0.000000pt;}
._c_c00203{margin-left:-3.082667pt;}
._2_c00203{margin-left:-1.930667pt;}
._0_c00203{margin-left:-0.960000pt;}
._1_c00203{width:1.152000pt;}
._5_c00203{width:2.218667pt;}
._4_c00203{width:3.466667pt;}
._3_c00203{width:4.426667pt;}
._6_c00203{width:6.197333pt;}
._7_c00203{width:7.232000pt;}
._a_c00203{width:8.832000pt;}
._b_c00203{width:10.517333pt;}
._d_c00203{width:11.922113pt;}
._9_c00203{width:14.101333pt;}
._8_c00203{width:15.104000pt;}
.fs3_c00203{font-size:34.560000pt;}
.fs2_c00203{font-size:42.240000pt;}
.fs1_c00203{font-size:53.760000pt;}
.fs0_c00203{font-size:64.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.y3_c00203{bottom:3.840000pt;}
.y5_c00203{bottom:22.400000pt;}
.y4_c00203{bottom:28.480000pt;}
.y1_c00203{bottom:50.880000pt;}
.y25_c00203{bottom:134.746667pt;}
.y24_c00203{bottom:150.106667pt;}
.y23_c00203{bottom:156.186667pt;}
.y22_c00203{bottom:166.106667pt;}
.y21_c00203{bottom:191.386667pt;}
.y20_c00203{bottom:219.266667pt;}
.y1f_c00203{bottom:254.786667pt;}
.y1e_c00203{bottom:282.306667pt;}
.y1d_c00203{bottom:309.826667pt;}
.y1c_c00203{bottom:337.693333pt;}
.y1b_c00203{bottom:365.213333pt;}
.y19_c00203{bottom:400.733333pt;}
.y1a_c00203{bottom:408.093333pt;}
.y18_c00203{bottom:428.293333pt;}
.y17_c00203{bottom:456.133333pt;}
.y16_c00203{bottom:483.653333pt;}
.y15_c00203{bottom:511.173333pt;}
.y14_c00203{bottom:544.800000pt;}
.y13_c00203{bottom:575.840000pt;}
.y12_c00203{bottom:606.880000pt;}
.y11_c00203{bottom:637.920000pt;}
.y10_c00203{bottom:668.666667pt;}
.yf_c00203{bottom:699.706667pt;}
.ye_c00203{bottom:730.746667pt;}
.yd_c00203{bottom:761.826667pt;}
.yc_c00203{bottom:792.866667pt;}
.yb_c00203{bottom:823.906667pt;}
.ya_c00203{bottom:854.946667pt;}
.y9_c00203{bottom:887.933333pt;}
.y8_c00203{bottom:923.453333pt;}
.y7_c00203{bottom:958.973333pt;}
.y6_c00203{bottom:994.853333pt;}
.y2_c00203{bottom:1056.933333pt;}
.h3_c00203{height:18.266667pt;}
.hb_c00203{height:30.982500pt;}
.h4_c00203{height:36.796000pt;}
.ha_c00203{height:41.435625pt;}
.h8_c00203{height:52.762500pt;}
.h7_c00203{height:54.180000pt;}
.h2_c00203{height:57.375000pt;}
.h6_c00203{height:62.781250pt;}
.h5_c00203{height:62.812500pt;}
.h9_c00203{height:1122.556000pt;}
.h0_c00203{height:1122.560000pt;}
.h1_c00203{height:1122.666667pt;}
.w2_c00203{width:7.386667pt;}
.w3_c00203{width:567.280000pt;}
.w4_c00203{width:793.917333pt;}
.w0_c00203{width:793.920000pt;}
.w1_c00203{width:794.000000pt;}
.x0_c00203{left:0.000000pt;}
.x3_c00203{left:113.324000pt;}
.xa_c00203{left:126.784000pt;}
.x1_c00203{left:137.346667pt;}
.x5_c00203{left:149.506667pt;}
.x8_c00203{left:158.786667pt;}
.x4_c00203{left:160.706667pt;}
.x6_c00203{left:281.410667pt;}
.x7_c00203{left:297.733333pt;}
.x9_c00203{left:305.413333pt;}
.x2_c00203{left:673.213333pt;}
}





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

.ir_c00204:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00204;src:url('chunks/assets/font_e8ea59b50cd1c6037d7af096.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_7c31bb5e6f89aa53870bd625.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00204;src:url('chunks/assets/font_0706814b710a8015983e8c3a.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;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_c00204;src:url('chunks/assets/font_f955fa0e6c8a284147569625.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00204;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.lsb_c00204{letter-spacing:-0.936000px;}
.lsa_c00204{letter-spacing:-0.288000px;}
.ls8_c00204{letter-spacing:0.000000px;}
.ls2_c00204{letter-spacing:0.504000px;}
.ls5_c00204{letter-spacing:0.720000px;}
.ls7_c00204{letter-spacing:0.740160px;}
.ls6_c00204{letter-spacing:0.840000px;}
.ls9_c00204{letter-spacing:1.440000px;}
.ls3_c00204{letter-spacing:2.016000px;}
.ls1_c00204{letter-spacing:6.480000px;}
.ls0_c00204{letter-spacing:6.660000px;}
.ls4_c00204{letter-spacing:13.680000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00204{word-spacing:-72.000000px;}
.ws0_c00204{word-spacing:-18.000000px;}
.ws2_c00204{word-spacing:-17.712000px;}
.ws3_c00204{word-spacing:-17.064000px;}
.ws4_c00204{word-spacing:0.000000px;}
._1_c00204{margin-left:-2.736000px;}
._4_c00204{margin-left:-1.368000px;}
._2_c00204{width:1.080000px;}
._6_c00204{width:2.304000px;}
._b_c00204{width:3.816000px;}
._3_c00204{width:5.760000px;}
._0_c00204{width:7.128000px;}
._5_c00204{width:8.712000px;}
._a_c00204{width:10.656000px;}
._9_c00204{width:12.168000px;}
._f_c00204{width:13.968000px;}
._e_c00204{width:15.696000px;}
._10_c00204{width:16.848000px;}
._7_c00204{width:19.008000px;}
._8_c00204{width:20.880000px;}
._12_c00204{width:22.392000px;}
._11_c00204{width:23.400000px;}
._d_c00204{width:25.632000px;}
._c_c00204{width:26.856000px;}
.fc0_c00204{color:rgb(0,0,0);}
.fs2_c00204{font-size:38.880000px;}
.fs1_c00204{font-size:47.520000px;}
.fs3_c00204{font-size:60.480000px;}
.fs0_c00204{font-size:72.000000px;}
.y0_c00204{bottom:0.000000px;}
.y3_c00204{bottom:4.320000px;}
.y5_c00204{bottom:25.200000px;}
.y4_c00204{bottom:32.040000px;}
.y1_c00204{bottom:57.240000px;}
.y27_c00204{bottom:151.590000px;}
.y26_c00204{bottom:158.430000px;}
.y25_c00204{bottom:169.590000px;}
.y24_c00204{bottom:191.550000px;}
.y23_c00204{bottom:222.510000px;}
.y21_c00204{bottom:253.515000px;}
.y22_c00204{bottom:261.795000px;}
.y20_c00204{bottom:284.475000px;}
.y1f_c00204{bottom:315.795000px;}
.y1e_c00204{bottom:355.785000px;}
.y1d_c00204{bottom:386.745000px;}
.y1c_c00204{bottom:417.705000px;}
.y1b_c00204{bottom:449.025000px;}
.y1a_c00204{bottom:480.030000px;}
.y19_c00204{bottom:510.990000px;}
.y18_c00204{bottom:541.950000px;}
.y17_c00204{bottom:572.910000px;}
.y16_c00204{bottom:604.260000px;}
.y15_c00204{bottom:635.220000px;}
.y14_c00204{bottom:666.180000px;}
.y13_c00204{bottom:697.140000px;}
.y12_c00204{bottom:728.490000px;}
.y11_c00204{bottom:759.450000px;}
.y10_c00204{bottom:799.410000px;}
.yf_c00204{bottom:839.370000px;}
.ye_c00204{bottom:870.735000px;}
.yd_c00204{bottom:901.695000px;}
.yc_c00204{bottom:932.655000px;}
.yb_c00204{bottom:963.645000px;}
.ya_c00204{bottom:994.965000px;}
.y9_c00204{bottom:1025.925000px;}
.y8_c00204{bottom:1056.885000px;}
.y7_c00204{bottom:1087.890000px;}
.y6_c00204{bottom:1119.210000px;}
.y2_c00204{bottom:1189.050000px;}
.h3_c00204{height:20.550000px;}
.h9_c00204{height:34.855313px;}
.h4_c00204{height:41.395500px;}
.h8_c00204{height:46.638281px;}
.ha_c00204{height:59.357813px;}
.h2_c00204{height:64.546875px;}
.h6_c00204{height:70.628906px;}
.h5_c00204{height:70.664062px;}
.h7_c00204{height:1262.875500px;}
.h0_c00204{height:1262.880000px;}
.h1_c00204{height:1263.000000px;}
.w2_c00204{width:8.310000px;}
.w3_c00204{width:638.190000px;}
.w4_c00204{width:893.157000px;}
.w0_c00204{width:893.160000px;}
.w1_c00204{width:893.250000px;}
.x0_c00204{left:0.000000px;}
.x3_c00204{left:127.489500px;}
.x8_c00204{left:142.632000px;}
.x1_c00204{left:154.515000px;}
.x4_c00204{left:178.635000px;}
.x7_c00204{left:343.590000px;}
.x5_c00204{left:563.967000px;}
.x6_c00204{left:582.375000px;}
.x2_c00204{left:757.365000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.lsb_c00204{letter-spacing:-0.832000pt;}
.lsa_c00204{letter-spacing:-0.256000pt;}
.ls8_c00204{letter-spacing:0.000000pt;}
.ls2_c00204{letter-spacing:0.448000pt;}
.ls5_c00204{letter-spacing:0.640000pt;}
.ls7_c00204{letter-spacing:0.657920pt;}
.ls6_c00204{letter-spacing:0.746667pt;}
.ls9_c00204{letter-spacing:1.280000pt;}
.ls3_c00204{letter-spacing:1.792000pt;}
.ls1_c00204{letter-spacing:5.760000pt;}
.ls0_c00204{letter-spacing:5.920000pt;}
.ls4_c00204{letter-spacing:12.160000pt;}
.ws1_c00204{word-spacing:-64.000000pt;}
.ws0_c00204{word-spacing:-16.000000pt;}
.ws2_c00204{word-spacing:-15.744000pt;}
.ws3_c00204{word-spacing:-15.168000pt;}
.ws4_c00204{word-spacing:0.000000pt;}
._1_c00204{margin-left:-2.432000pt;}
._4_c00204{margin-left:-1.216000pt;}
._2_c00204{width:0.960000pt;}
._6_c00204{width:2.048000pt;}
._b_c00204{width:3.392000pt;}
._3_c00204{width:5.120000pt;}
._0_c00204{width:6.336000pt;}
._5_c00204{width:7.744000pt;}
._a_c00204{width:9.472000pt;}
._9_c00204{width:10.816000pt;}
._f_c00204{width:12.416000pt;}
._e_c00204{width:13.952000pt;}
._10_c00204{width:14.976000pt;}
._7_c00204{width:16.896000pt;}
._8_c00204{width:18.560000pt;}
._12_c00204{width:19.904000pt;}
._11_c00204{width:20.800000pt;}
._d_c00204{width:22.784000pt;}
._c_c00204{width:23.872000pt;}
.fs2_c00204{font-size:34.560000pt;}
.fs1_c00204{font-size:42.240000pt;}
.fs3_c00204{font-size:53.760000pt;}
.fs0_c00204{font-size:64.000000pt;}
.y0_c00204{bottom:0.000000pt;}
.y3_c00204{bottom:3.840000pt;}
.y5_c00204{bottom:22.400000pt;}
.y4_c00204{bottom:28.480000pt;}
.y1_c00204{bottom:50.880000pt;}
.y27_c00204{bottom:134.746667pt;}
.y26_c00204{bottom:140.826667pt;}
.y25_c00204{bottom:150.746667pt;}
.y24_c00204{bottom:170.266667pt;}
.y23_c00204{bottom:197.786667pt;}
.y21_c00204{bottom:225.346667pt;}
.y22_c00204{bottom:232.706667pt;}
.y20_c00204{bottom:252.866667pt;}
.y1f_c00204{bottom:280.706667pt;}
.y1e_c00204{bottom:316.253333pt;}
.y1d_c00204{bottom:343.773333pt;}
.y1c_c00204{bottom:371.293333pt;}
.y1b_c00204{bottom:399.133333pt;}
.y1a_c00204{bottom:426.693333pt;}
.y19_c00204{bottom:454.213333pt;}
.y18_c00204{bottom:481.733333pt;}
.y17_c00204{bottom:509.253333pt;}
.y16_c00204{bottom:537.120000pt;}
.y15_c00204{bottom:564.640000pt;}
.y14_c00204{bottom:592.160000pt;}
.y13_c00204{bottom:619.680000pt;}
.y12_c00204{bottom:647.546667pt;}
.y11_c00204{bottom:675.066667pt;}
.y10_c00204{bottom:710.586667pt;}
.yf_c00204{bottom:746.106667pt;}
.ye_c00204{bottom:773.986667pt;}
.yd_c00204{bottom:801.506667pt;}
.yc_c00204{bottom:829.026667pt;}
.yb_c00204{bottom:856.573333pt;}
.ya_c00204{bottom:884.413333pt;}
.y9_c00204{bottom:911.933333pt;}
.y8_c00204{bottom:939.453333pt;}
.y7_c00204{bottom:967.013333pt;}
.y6_c00204{bottom:994.853333pt;}
.y2_c00204{bottom:1056.933333pt;}
.h3_c00204{height:18.266667pt;}
.h9_c00204{height:30.982500pt;}
.h4_c00204{height:36.796000pt;}
.h8_c00204{height:41.456250pt;}
.ha_c00204{height:52.762500pt;}
.h2_c00204{height:57.375000pt;}
.h6_c00204{height:62.781250pt;}
.h5_c00204{height:62.812500pt;}
.h7_c00204{height:1122.556000pt;}
.h0_c00204{height:1122.560000pt;}
.h1_c00204{height:1122.666667pt;}
.w2_c00204{width:7.386667pt;}
.w3_c00204{width:567.280000pt;}
.w4_c00204{width:793.917333pt;}
.w0_c00204{width:793.920000pt;}
.w1_c00204{width:794.000000pt;}
.x0_c00204{left:0.000000pt;}
.x3_c00204{left:113.324000pt;}
.x8_c00204{left:126.784000pt;}
.x1_c00204{left:137.346667pt;}
.x4_c00204{left:158.786667pt;}
.x7_c00204{left:305.413333pt;}
.x5_c00204{left:501.304000pt;}
.x6_c00204{left:517.666667pt;}
.x2_c00204{left:673.213333pt;}
}





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

.ir_c00205:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00205;src:url('chunks/assets/font_3718fd949b6188961d75adb4.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_54af744423f69007f3e1fa56.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_36449cc53e0edafc3b1e83c1.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;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_c00205;src:url('chunks/assets/font_5b897d5683ee38cb5fd16782.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00205;src:url('chunks/assets/font_bdf3e99189219e501fe29b3f.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls12_c00205{letter-spacing:-1.416000px;}
.ls10_c00205{letter-spacing:-0.532800px;}
.lsa_c00205{letter-spacing:-0.241800px;}
.ls8_c00205{letter-spacing:0.000000px;}
.lsb_c00205{letter-spacing:0.020400px;}
.ls11_c00205{letter-spacing:0.022800px;}
.ls6_c00205{letter-spacing:0.048960px;}
.lsf_c00205{letter-spacing:0.166800px;}
.lse_c00205{letter-spacing:0.466800px;}
.ls9_c00205{letter-spacing:0.507000px;}
.lsd_c00205{letter-spacing:0.521400px;}
.ls7_c00205{letter-spacing:0.524160px;}
.lsc_c00205{letter-spacing:0.702000px;}
.ls0_c00205{letter-spacing:0.720000px;}
.ls2_c00205{letter-spacing:3.600000px;}
.ls3_c00205{letter-spacing:5.040000px;}
.ls5_c00205{letter-spacing:5.060160px;}
.ls1_c00205{letter-spacing:5.063040px;}
.ls4_c00205{letter-spacing:5.160000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:-18.000000px;}
.ws4_c00205{word-spacing:-15.822000px;}
.ws5_c00205{word-spacing:-15.641400px;}
.ws6_c00205{word-spacing:-15.286800px;}
.ws3_c00205{word-spacing:-15.140400px;}
.ws1_c00205{word-spacing:-15.120000px;}
.ws2_c00205{word-spacing:-14.878200px;}
.ws7_c00205{word-spacing:0.000000px;}
._7_c00205{margin-left:-3.024000px;}
._0_c00205{margin-left:-1.296000px;}
._1_c00205{width:1.368000px;}
._5_c00205{width:2.376000px;}
._b_c00205{width:4.176000px;}
._d_c00205{width:5.400000px;}
._c_c00205{width:6.408000px;}
._e_c00205{width:7.992000px;}
._9_c00205{width:9.144000px;}
._a_c00205{width:10.224000px;}
._2_c00205{width:11.448000px;}
._3_c00205{width:12.888000px;}
._4_c00205{width:13.968000px;}
._12_c00205{width:16.932000px;}
._13_c00205{width:19.152000px;}
._10_c00205{width:21.384000px;}
._f_c00205{width:22.392000px;}
._11_c00205{width:24.300000px;}
._6_c00205{width:26.352000px;}
._8_c00205{width:28.200000px;}
.fc0_c00205{color:rgb(0,0,0);}
.fs2_c00205{font-size:38.880000px;}
.fs1_c00205{font-size:47.520000px;}
.fs3_c00205{font-size:60.480000px;}
.fs0_c00205{font-size:72.000000px;}
.y0_c00205{bottom:0.000000px;}
.y3_c00205{bottom:4.320000px;}
.y5_c00205{bottom:25.200000px;}
.y4_c00205{bottom:32.040000px;}
.y1_c00205{bottom:57.240000px;}
.y33_c00205{bottom:151.590000px;}
.y32_c00205{bottom:158.430000px;}
.y31_c00205{bottom:168.870000px;}
.y30_c00205{bottom:186.150000px;}
.y2f_c00205{bottom:203.430000px;}
.y2e_c00205{bottom:220.710000px;}
.y2d_c00205{bottom:227.550000px;}
.y2c_c00205{bottom:238.035000px;}
.y2b_c00205{bottom:244.875000px;}
.y2a_c00205{bottom:255.315000px;}
.y29_c00205{bottom:272.595000px;}
.y28_c00205{bottom:289.875000px;}
.y27_c00205{bottom:296.715000px;}
.y26_c00205{bottom:307.155000px;}
.y25_c00205{bottom:324.435000px;}
.y24_c00205{bottom:341.355000px;}
.y23_c00205{bottom:348.195000px;}
.y22_c00205{bottom:359.385000px;}
.y21_c00205{bottom:399.705000px;}
.y20_c00205{bottom:431.025000px;}
.y1f_c00205{bottom:461.985000px;}
.y1e_c00205{bottom:492.990000px;}
.y1d_c00205{bottom:523.950000px;}
.y1c_c00205{bottom:554.910000px;}
.y1b_c00205{bottom:595.230000px;}
.y1a_c00205{bottom:626.220000px;}
.y19_c00205{bottom:657.180000px;}
.y18_c00205{bottom:688.140000px;}
.y17_c00205{bottom:719.490000px;}
.y15_c00205{bottom:750.450000px;}
.y16_c00205{bottom:758.730000px;}
.y14_c00205{bottom:781.410000px;}
.y13_c00205{bottom:821.370000px;}
.y11_c00205{bottom:861.735000px;}
.y12_c00205{bottom:870.015000px;}
.y10_c00205{bottom:892.695000px;}
.yf_c00205{bottom:923.655000px;}
.yd_c00205{bottom:954.615000px;}
.ye_c00205{bottom:962.925000px;}
.yc_c00205{bottom:985.965000px;}
.ya_c00205{bottom:1016.925000px;}
.yb_c00205{bottom:1025.205000px;}
.y9_c00205{bottom:1047.885000px;}
.y7_c00205{bottom:1087.890000px;}
.y8_c00205{bottom:1096.170000px;}
.y6_c00205{bottom:1119.210000px;}
.y2_c00205{bottom:1189.050000px;}
.h3_c00205{height:20.550000px;}
.h8_c00205{height:34.855313px;}
.hb_c00205{height:38.158594px;}
.h4_c00205{height:41.395500px;}
.h7_c00205{height:46.638281px;}
.h9_c00205{height:54.219375px;}
.ha_c00205{height:59.357813px;}
.h2_c00205{height:64.546875px;}
.h5_c00205{height:70.664062px;}
.h6_c00205{height:1262.875500px;}
.h0_c00205{height:1262.880000px;}
.h1_c00205{height:1263.000000px;}
.w2_c00205{width:8.310000px;}
.w3_c00205{width:638.190000px;}
.w4_c00205{width:893.157000px;}
.w0_c00205{width:893.160000px;}
.w1_c00205{width:893.250000px;}
.x0_c00205{left:0.000000px;}
.x3_c00205{left:127.489500px;}
.x10_c00205{left:142.632000px;}
.x1_c00205{left:154.515000px;}
.x6_c00205{left:178.635000px;}
.x4_c00205{left:300.342000px;}
.x5_c00205{left:318.750000px;}
.xf_c00205{left:343.590000px;}
.x9_c00205{left:376.707000px;}
.xd_c00205{left:382.107000px;}
.xa_c00205{left:395.070000px;}
.xe_c00205{left:400.470000px;}
.x7_c00205{left:403.377000px;}
.x8_c00205{left:421.740000px;}
.xb_c00205{left:618.732000px;}
.xc_c00205{left:637.095000px;}
.x2_c00205{left:757.365000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls12_c00205{letter-spacing:-1.258667pt;}
.ls10_c00205{letter-spacing:-0.473600pt;}
.lsa_c00205{letter-spacing:-0.214933pt;}
.ls8_c00205{letter-spacing:0.000000pt;}
.lsb_c00205{letter-spacing:0.018133pt;}
.ls11_c00205{letter-spacing:0.020267pt;}
.ls6_c00205{letter-spacing:0.043520pt;}
.lsf_c00205{letter-spacing:0.148267pt;}
.lse_c00205{letter-spacing:0.414933pt;}
.ls9_c00205{letter-spacing:0.450667pt;}
.lsd_c00205{letter-spacing:0.463467pt;}
.ls7_c00205{letter-spacing:0.465920pt;}
.lsc_c00205{letter-spacing:0.624000pt;}
.ls0_c00205{letter-spacing:0.640000pt;}
.ls2_c00205{letter-spacing:3.200000pt;}
.ls3_c00205{letter-spacing:4.480000pt;}
.ls5_c00205{letter-spacing:4.497920pt;}
.ls1_c00205{letter-spacing:4.500480pt;}
.ls4_c00205{letter-spacing:4.586667pt;}
.ws0_c00205{word-spacing:-16.000000pt;}
.ws4_c00205{word-spacing:-14.064000pt;}
.ws5_c00205{word-spacing:-13.903467pt;}
.ws6_c00205{word-spacing:-13.588267pt;}
.ws3_c00205{word-spacing:-13.458133pt;}
.ws1_c00205{word-spacing:-13.440000pt;}
.ws2_c00205{word-spacing:-13.225067pt;}
.ws7_c00205{word-spacing:0.000000pt;}
._7_c00205{margin-left:-2.688000pt;}
._0_c00205{margin-left:-1.152000pt;}
._1_c00205{width:1.216000pt;}
._5_c00205{width:2.112000pt;}
._b_c00205{width:3.712000pt;}
._d_c00205{width:4.800000pt;}
._c_c00205{width:5.696000pt;}
._e_c00205{width:7.104000pt;}
._9_c00205{width:8.128000pt;}
._a_c00205{width:9.088000pt;}
._2_c00205{width:10.176000pt;}
._3_c00205{width:11.456000pt;}
._4_c00205{width:12.416000pt;}
._12_c00205{width:15.050667pt;}
._13_c00205{width:17.024000pt;}
._10_c00205{width:19.008000pt;}
._f_c00205{width:19.904000pt;}
._11_c00205{width:21.600000pt;}
._6_c00205{width:23.424000pt;}
._8_c00205{width:25.066667pt;}
.fs2_c00205{font-size:34.560000pt;}
.fs1_c00205{font-size:42.240000pt;}
.fs3_c00205{font-size:53.760000pt;}
.fs0_c00205{font-size:64.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y3_c00205{bottom:3.840000pt;}
.y5_c00205{bottom:22.400000pt;}
.y4_c00205{bottom:28.480000pt;}
.y1_c00205{bottom:50.880000pt;}
.y33_c00205{bottom:134.746667pt;}
.y32_c00205{bottom:140.826667pt;}
.y31_c00205{bottom:150.106667pt;}
.y30_c00205{bottom:165.466667pt;}
.y2f_c00205{bottom:180.826667pt;}
.y2e_c00205{bottom:196.186667pt;}
.y2d_c00205{bottom:202.266667pt;}
.y2c_c00205{bottom:211.586667pt;}
.y2b_c00205{bottom:217.666667pt;}
.y2a_c00205{bottom:226.946667pt;}
.y29_c00205{bottom:242.306667pt;}
.y28_c00205{bottom:257.666667pt;}
.y27_c00205{bottom:263.746667pt;}
.y26_c00205{bottom:273.026667pt;}
.y25_c00205{bottom:288.386667pt;}
.y24_c00205{bottom:303.426667pt;}
.y23_c00205{bottom:309.506667pt;}
.y22_c00205{bottom:319.453333pt;}
.y21_c00205{bottom:355.293333pt;}
.y20_c00205{bottom:383.133333pt;}
.y1f_c00205{bottom:410.653333pt;}
.y1e_c00205{bottom:438.213333pt;}
.y1d_c00205{bottom:465.733333pt;}
.y1c_c00205{bottom:493.253333pt;}
.y1b_c00205{bottom:529.093333pt;}
.y1a_c00205{bottom:556.640000pt;}
.y19_c00205{bottom:584.160000pt;}
.y18_c00205{bottom:611.680000pt;}
.y17_c00205{bottom:639.546667pt;}
.y15_c00205{bottom:667.066667pt;}
.y16_c00205{bottom:674.426667pt;}
.y14_c00205{bottom:694.586667pt;}
.y13_c00205{bottom:730.106667pt;}
.y11_c00205{bottom:765.986667pt;}
.y12_c00205{bottom:773.346667pt;}
.y10_c00205{bottom:793.506667pt;}
.yf_c00205{bottom:821.026667pt;}
.yd_c00205{bottom:848.546667pt;}
.ye_c00205{bottom:855.933333pt;}
.yc_c00205{bottom:876.413333pt;}
.ya_c00205{bottom:903.933333pt;}
.yb_c00205{bottom:911.293333pt;}
.y9_c00205{bottom:931.453333pt;}
.y7_c00205{bottom:967.013333pt;}
.y8_c00205{bottom:974.373333pt;}
.y6_c00205{bottom:994.853333pt;}
.y2_c00205{bottom:1056.933333pt;}
.h3_c00205{height:18.266667pt;}
.h8_c00205{height:30.982500pt;}
.hb_c00205{height:33.918750pt;}
.h4_c00205{height:36.796000pt;}
.h7_c00205{height:41.456250pt;}
.h9_c00205{height:48.195000pt;}
.ha_c00205{height:52.762500pt;}
.h2_c00205{height:57.375000pt;}
.h5_c00205{height:62.812500pt;}
.h6_c00205{height:1122.556000pt;}
.h0_c00205{height:1122.560000pt;}
.h1_c00205{height:1122.666667pt;}
.w2_c00205{width:7.386667pt;}
.w3_c00205{width:567.280000pt;}
.w4_c00205{width:793.917333pt;}
.w0_c00205{width:793.920000pt;}
.w1_c00205{width:794.000000pt;}
.x0_c00205{left:0.000000pt;}
.x3_c00205{left:113.324000pt;}
.x10_c00205{left:126.784000pt;}
.x1_c00205{left:137.346667pt;}
.x6_c00205{left:158.786667pt;}
.x4_c00205{left:266.970667pt;}
.x5_c00205{left:283.333333pt;}
.xf_c00205{left:305.413333pt;}
.x9_c00205{left:334.850667pt;}
.xd_c00205{left:339.650667pt;}
.xa_c00205{left:351.173333pt;}
.xe_c00205{left:355.973333pt;}
.x7_c00205{left:358.557333pt;}
.x8_c00205{left:374.880000pt;}
.xb_c00205{left:549.984000pt;}
.xc_c00205{left:566.306667pt;}
.x2_c00205{left:673.213333pt;}
}





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

.ir_c00206:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00206;src:url('chunks/assets/font_45f3e4a1c8de71113a326b1d.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_f0fb18270518600d4f1869cf.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_c17f08223a71014e21f07d3d.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;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_c00206;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls2_c00206{letter-spacing:-0.936000px;}
.ls1_c00206{letter-spacing:-0.648000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00206{word-spacing:-72.000000px;}
.ws0_c00206{word-spacing:-18.000000px;}
.ws2_c00206{word-spacing:-17.352000px;}
.ws3_c00206{word-spacing:-17.064000px;}
.ws4_c00206{word-spacing:0.000000px;}
._0_c00206{margin-left:-2.592000px;}
._3_c00206{margin-left:-1.440000px;}
._1_c00206{width:1.512000px;}
._5_c00206{width:2.952000px;}
._b_c00206{width:4.728024px;}
._c_c00206{width:6.563736px;}
._a_c00206{width:11.736000px;}
._7_c00206{width:13.260024px;}
._8_c00206{width:14.531976px;}
._9_c00206{width:15.647904px;}
._2_c00206{width:29.160000px;}
._4_c00206{width:30.312000px;}
._6_c00206{width:31.680000px;}
.fc0_c00206{color:rgb(0,0,0);}
.fs0_c00206{font-size:72.000000px;}
.y0_c00206{bottom:0.000000px;}
.y3_c00206{bottom:4.320000px;}
.y5_c00206{bottom:25.200000px;}
.y4_c00206{bottom:32.040000px;}
.y1_c00206{bottom:57.240000px;}
.y18_c00206{bottom:460.905000px;}
.y17_c00206{bottom:500.910000px;}
.y16_c00206{bottom:541.230000px;}
.y15_c00206{bottom:581.190000px;}
.y14_c00206{bottom:621.180000px;}
.y13_c00206{bottom:661.140000px;}
.y12_c00206{bottom:701.460000px;}
.y11_c00206{bottom:741.450000px;}
.y10_c00206{bottom:781.410000px;}
.yf_c00206{bottom:821.370000px;}
.ye_c00206{bottom:861.735000px;}
.yd_c00206{bottom:892.695000px;}
.yc_c00206{bottom:923.655000px;}
.yb_c00206{bottom:954.615000px;}
.ya_c00206{bottom:994.965000px;}
.y9_c00206{bottom:1025.925000px;}
.y8_c00206{bottom:1056.885000px;}
.y7_c00206{bottom:1087.890000px;}
.y6_c00206{bottom:1119.210000px;}
.y2_c00206{bottom:1189.050000px;}
.h3_c00206{height:20.550000px;}
.h4_c00206{height:41.395500px;}
.h2_c00206{height:64.546875px;}
.h5_c00206{height:70.664062px;}
.h0_c00206{height:1262.880000px;}
.h1_c00206{height:1263.000000px;}
.w2_c00206{width:8.310000px;}
.w3_c00206{width:638.190000px;}
.w0_c00206{width:893.160000px;}
.w1_c00206{width:893.250000px;}
.x0_c00206{left:0.000000px;}
.x3_c00206{left:127.489500px;}
.x1_c00206{left:154.515000px;}
.x4_c00206{left:178.635000px;}
.x2_c00206{left:757.365000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls2_c00206{letter-spacing:-0.832000pt;}
.ls1_c00206{letter-spacing:-0.576000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws1_c00206{word-spacing:-64.000000pt;}
.ws0_c00206{word-spacing:-16.000000pt;}
.ws2_c00206{word-spacing:-15.424000pt;}
.ws3_c00206{word-spacing:-15.168000pt;}
.ws4_c00206{word-spacing:0.000000pt;}
._0_c00206{margin-left:-2.304000pt;}
._3_c00206{margin-left:-1.280000pt;}
._1_c00206{width:1.344000pt;}
._5_c00206{width:2.624000pt;}
._b_c00206{width:4.202688pt;}
._c_c00206{width:5.834432pt;}
._a_c00206{width:10.432000pt;}
._7_c00206{width:11.786688pt;}
._8_c00206{width:12.917312pt;}
._9_c00206{width:13.909248pt;}
._2_c00206{width:25.920000pt;}
._4_c00206{width:26.944000pt;}
._6_c00206{width:28.160000pt;}
.fs0_c00206{font-size:64.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y3_c00206{bottom:3.840000pt;}
.y5_c00206{bottom:22.400000pt;}
.y4_c00206{bottom:28.480000pt;}
.y1_c00206{bottom:50.880000pt;}
.y18_c00206{bottom:409.693333pt;}
.y17_c00206{bottom:445.253333pt;}
.y16_c00206{bottom:481.093333pt;}
.y15_c00206{bottom:516.613333pt;}
.y14_c00206{bottom:552.160000pt;}
.y13_c00206{bottom:587.680000pt;}
.y12_c00206{bottom:623.520000pt;}
.y11_c00206{bottom:659.066667pt;}
.y10_c00206{bottom:694.586667pt;}
.yf_c00206{bottom:730.106667pt;}
.ye_c00206{bottom:765.986667pt;}
.yd_c00206{bottom:793.506667pt;}
.yc_c00206{bottom:821.026667pt;}
.yb_c00206{bottom:848.546667pt;}
.ya_c00206{bottom:884.413333pt;}
.y9_c00206{bottom:911.933333pt;}
.y8_c00206{bottom:939.453333pt;}
.y7_c00206{bottom:967.013333pt;}
.y6_c00206{bottom:994.853333pt;}
.y2_c00206{bottom:1056.933333pt;}
.h3_c00206{height:18.266667pt;}
.h4_c00206{height:36.796000pt;}
.h2_c00206{height:57.375000pt;}
.h5_c00206{height:62.812500pt;}
.h0_c00206{height:1122.560000pt;}
.h1_c00206{height:1122.666667pt;}
.w2_c00206{width:7.386667pt;}
.w3_c00206{width:567.280000pt;}
.w0_c00206{width:793.920000pt;}
.w1_c00206{width:794.000000pt;}
.x0_c00206{left:0.000000pt;}
.x3_c00206{left:113.324000pt;}
.x1_c00206{left:137.346667pt;}
.x4_c00206{left:158.786667pt;}
.x2_c00206{left:673.213333pt;}
}





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

.ir_c00207:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00207;src:url('chunks/assets/font_ae6ca1b4105b28267c1d3745.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00207;src:url('chunks/assets/font_e6107c31e65a6eabdfffba7a.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_21d7e3439b3286dc3ab71b05.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;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_c00207;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;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_c00207;src:url('chunks/assets/font_950965a99ef19357dacdb22f.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00207;src:url('chunks/assets/font_f6cc4e291bc8a7e2dd6fb426.woff2')format("woff");}.ff6_c00207{font-family:ff6_c00207;line-height:1.104004;font-style:normal;font-weight: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_c00207;src:url('chunks/assets/font_c06405801cc4cb1866d84422.woff2')format("woff");}.ff7_c00207{font-family:ff7_c00207;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls5_c00207{letter-spacing:-1.416000px;}
.ls6_c00207{letter-spacing:-0.720000px;}
.ls3_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:0.020160px;}
.ls4_c00207{letter-spacing:0.022800px;}
.ls7_c00207{letter-spacing:0.313800px;}
.ls8_c00207{letter-spacing:0.325200px;}
.ls9_c00207{letter-spacing:0.529800px;}
.ls2_c00207{letter-spacing:0.720000px;}
.ls1_c00207{letter-spacing:0.900000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00207{word-spacing:-18.000000px;}
.ws2_c00207{word-spacing:-15.433800px;}
.ws1_c00207{word-spacing:-15.120000px;}
.ws3_c00207{word-spacing:0.000000px;}
._4_c00207{margin-left:-2.736000px;}
._1_c00207{margin-left:-1.584000px;}
._0_c00207{width:1.416024px;}
._2_c00207{width:2.543832px;}
._3_c00207{width:3.792024px;}
._6_c00207{width:5.544288px;}
._5_c00207{width:6.588144px;}
._7_c00207{width:8.531496px;}
._9_c00207{width:9.661464px;}
._8_c00207{width:12.057624px;}
.fc0_c00207{color:rgb(0,0,0);}
.fs1_c00207{font-size:60.480000px;}
.fs0_c00207{font-size:72.000000px;}
.y0_c00207{bottom:0.000000px;}
.y3_c00207{bottom:4.320000px;}
.y6_c00207{bottom:4.680000px;}
.y19_c00207{bottom:21.229500px;}
.y13_c00207{bottom:21.240000px;}
.y5_c00207{bottom:25.236000px;}
.y1e_c00207{bottom:30.229500px;}
.y4_c00207{bottom:32.040000px;}
.y18_c00207{bottom:56.149500px;}
.y1_c00207{bottom:57.636000px;}
.y1d_c00207{bottom:65.149500px;}
.y17_c00207{bottom:91.099500px;}
.y1c_c00207{bottom:100.099500px;}
.y16_c00207{bottom:126.019500px;}
.y1b_c00207{bottom:135.019500px;}
.y14_c00207{bottom:141.205500px;}
.y15_c00207{bottom:160.939500px;}
.y1a_c00207{bottom:169.939500px;}
.y12_c00207{bottom:325.230000px;}
.y11_c00207{bottom:393.630000px;}
.y10_c00207{bottom:424.620000px;}
.yf_c00207{bottom:464.940000px;}
.ye_c00207{bottom:495.930000px;}
.yd_c00207{bottom:526.890000px;}
.yc_c00207{bottom:566.850000px;}
.yb_c00207{bottom:607.215000px;}
.ya_c00207{bottom:638.175000px;}
.y9_c00207{bottom:669.135000px;}
.y8_c00207{bottom:709.125000px;}
.y7_c00207{bottom:749.445000px;}
.y2_c00207{bottom:819.330000px;}
.h3_c00207{height:20.505000px;}
.h4_c00207{height:41.436000px;}
.h7_c00207{height:43.905000px;}
.ha_c00207{height:59.357813px;}
.h8_c00207{height:60.952500px;}
.h2_c00207{height:64.546875px;}
.h6_c00207{height:70.628906px;}
.h5_c00207{height:70.664062px;}
.h9_c00207{height:183.285000px;}
.h0_c00207{height:893.160000px;}
.h1_c00207{height:893.250000px;}
.w2_c00207{width:8.265000px;}
.w6_c00207{width:301.050000px;}
.w5_c00207{width:310.035000px;}
.w4_c00207{width:336.330000px;}
.w3_c00207{width:1008.270000px;}
.w0_c00207{width:1262.880000px;}
.w1_c00207{width:1263.000000px;}
.x0_c00207{left:0.000000px;}
.x7_c00207{left:7.546500px;}
.x6_c00207{left:119.929500px;}
.x3_c00207{left:127.489500px;}
.x1_c00207{left:154.470000px;}
.x5_c00207{left:178.590000px;}
.x4_c00207{left:180.795000px;}
.x8_c00207{left:456.990000px;}
.x9_c00207{left:767.745000px;}
.x2_c00207{left:1127.490000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls5_c00207{letter-spacing:-1.258667pt;}
.ls6_c00207{letter-spacing:-0.640000pt;}
.ls3_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:0.017920pt;}
.ls4_c00207{letter-spacing:0.020267pt;}
.ls7_c00207{letter-spacing:0.278933pt;}
.ls8_c00207{letter-spacing:0.289067pt;}
.ls9_c00207{letter-spacing:0.470933pt;}
.ls2_c00207{letter-spacing:0.640000pt;}
.ls1_c00207{letter-spacing:0.800000pt;}
.ws0_c00207{word-spacing:-16.000000pt;}
.ws2_c00207{word-spacing:-13.718933pt;}
.ws1_c00207{word-spacing:-13.440000pt;}
.ws3_c00207{word-spacing:0.000000pt;}
._4_c00207{margin-left:-2.432000pt;}
._1_c00207{margin-left:-1.408000pt;}
._0_c00207{width:1.258688pt;}
._2_c00207{width:2.261184pt;}
._3_c00207{width:3.370688pt;}
._6_c00207{width:4.928256pt;}
._5_c00207{width:5.856128pt;}
._7_c00207{width:7.583552pt;}
._9_c00207{width:8.587968pt;}
._8_c00207{width:10.717888pt;}
.fs1_c00207{font-size:53.760000pt;}
.fs0_c00207{font-size:64.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y3_c00207{bottom:3.840000pt;}
.y6_c00207{bottom:4.160000pt;}
.y19_c00207{bottom:18.870667pt;}
.y13_c00207{bottom:18.880000pt;}
.y5_c00207{bottom:22.432000pt;}
.y1e_c00207{bottom:26.870667pt;}
.y4_c00207{bottom:28.480000pt;}
.y18_c00207{bottom:49.910667pt;}
.y1_c00207{bottom:51.232000pt;}
.y1d_c00207{bottom:57.910667pt;}
.y17_c00207{bottom:80.977333pt;}
.y1c_c00207{bottom:88.977333pt;}
.y16_c00207{bottom:112.017333pt;}
.y1b_c00207{bottom:120.017333pt;}
.y14_c00207{bottom:125.516000pt;}
.y15_c00207{bottom:143.057333pt;}
.y1a_c00207{bottom:151.057333pt;}
.y12_c00207{bottom:289.093333pt;}
.y11_c00207{bottom:349.893333pt;}
.y10_c00207{bottom:377.440000pt;}
.yf_c00207{bottom:413.280000pt;}
.ye_c00207{bottom:440.826667pt;}
.yd_c00207{bottom:468.346667pt;}
.yc_c00207{bottom:503.866667pt;}
.yb_c00207{bottom:539.746667pt;}
.ya_c00207{bottom:567.266667pt;}
.y9_c00207{bottom:594.786667pt;}
.y8_c00207{bottom:630.333333pt;}
.y7_c00207{bottom:666.173333pt;}
.y2_c00207{bottom:728.293333pt;}
.h3_c00207{height:18.226667pt;}
.h4_c00207{height:36.832000pt;}
.h7_c00207{height:39.026667pt;}
.ha_c00207{height:52.762500pt;}
.h8_c00207{height:54.180000pt;}
.h2_c00207{height:57.375000pt;}
.h6_c00207{height:62.781250pt;}
.h5_c00207{height:62.812500pt;}
.h9_c00207{height:162.920000pt;}
.h0_c00207{height:793.920000pt;}
.h1_c00207{height:794.000000pt;}
.w2_c00207{width:7.346667pt;}
.w6_c00207{width:267.600000pt;}
.w5_c00207{width:275.586667pt;}
.w4_c00207{width:298.960000pt;}
.w3_c00207{width:896.240000pt;}
.w0_c00207{width:1122.560000pt;}
.w1_c00207{width:1122.666667pt;}
.x0_c00207{left:0.000000pt;}
.x7_c00207{left:6.708000pt;}
.x6_c00207{left:106.604000pt;}
.x3_c00207{left:113.324000pt;}
.x1_c00207{left:137.306667pt;}
.x5_c00207{left:158.746667pt;}
.x4_c00207{left:160.706667pt;}
.x8_c00207{left:406.213333pt;}
.x9_c00207{left:682.440000pt;}
.x2_c00207{left:1002.213333pt;}
}





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

.ir_c00208:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00208;src:url('chunks/assets/font_81b56b5255234d14ab8a184c.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_059acf4f6058ff02b2ca0d35.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_719c21f738a6f1992b1cad2c.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_dd4ec5f9792f7a73dac40249.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00208;src:url('chunks/assets/font_89f976c5adc2879f10499f5a.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;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_c00208;src:url('chunks/assets/font_63960805f0898fac4d80dd3d.woff2')format("woff");}.ff6_c00208{font-family:ff6_c00208;line-height:1.104004;font-style:normal;font-weight: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_c00208;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00208{font-family:ff7_c00208;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.lsc_c00208{letter-spacing:-1.416000px;}
.ls7_c00208{letter-spacing:-0.918000px;}
.lsb_c00208{letter-spacing:-0.912000px;}
.ls9_c00208{letter-spacing:-0.810000px;}
.lsa_c00208{letter-spacing:-0.532800px;}
.ls8_c00208{letter-spacing:-0.241800px;}
.ls6_c00208{letter-spacing:0.000000px;}
.ls4_c00208{letter-spacing:0.020160px;}
.lsf_c00208{letter-spacing:0.022800px;}
.ls2_c00208{letter-spacing:0.048960px;}
.lse_c00208{letter-spacing:0.060600px;}
.ls11_c00208{letter-spacing:0.219000px;}
.ls12_c00208{letter-spacing:0.325200px;}
.lsd_c00208{letter-spacing:0.529800px;}
.ls0_c00208{letter-spacing:0.696000px;}
.ls1_c00208{letter-spacing:0.720000px;}
.ls5_c00208{letter-spacing:0.840000px;}
.ls10_c00208{letter-spacing:1.140000px;}
.ls3_c00208{letter-spacing:72.840000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00208{word-spacing:-16.260000px;}
.ws7_c00208{word-spacing:-15.339000px;}
.ws5_c00208{word-spacing:-15.180600px;}
.ws2_c00208{word-spacing:-15.120000px;}
.ws1_c00208{word-spacing:-14.878200px;}
.ws4_c00208{word-spacing:-14.587200px;}
.ws3_c00208{word-spacing:-14.310000px;}
.ws0_c00208{word-spacing:-14.202000px;}
.ws8_c00208{word-spacing:0.000000px;}
._1_c00208{margin-left:-2.300162px;}
._0_c00208{margin-left:-1.148999px;}
._2_c00208{width:1.453563px;}
._3_c00208{width:2.501637px;}
._6_c00208{width:70.839961px;}
._5_c00208{width:72.613440px;}
._4_c00208{width:73.677961px;}
.fc0_c00208{color:rgb(0,0,0);}
.fs1_c00208{font-size:60.480000px;}
.fs0_c00208{font-size:72.000000px;}
.y0_c00208{bottom:0.000000px;}
.y3_c00208{bottom:4.320000px;}
.y6_c00208{bottom:4.680000px;}
.y19_c00208{bottom:21.589500px;}
.y5_c00208{bottom:25.236000px;}
.y4_c00208{bottom:32.040000px;}
.y18_c00208{bottom:56.509500px;}
.y1_c00208{bottom:57.636000px;}
.y17_c00208{bottom:91.459500px;}
.y16_c00208{bottom:126.019500px;}
.y7_c00208{bottom:136.885500px;}
.y15_c00208{bottom:160.939500px;}
.y14_c00208{bottom:195.904500px;}
.y23_c00208{bottom:196.984500px;}
.y13_c00208{bottom:230.824500px;}
.y22_c00208{bottom:231.904500px;}
.y12_c00208{bottom:265.744500px;}
.y21_c00208{bottom:266.854500px;}
.y24_c00208{bottom:300.334500px;}
.y11_c00208{bottom:300.694500px;}
.y20_c00208{bottom:301.774500px;}
.y1f_c00208{bottom:327.694500px;}
.y10_c00208{bottom:335.614500px;}
.y1e_c00208{bottom:353.614500px;}
.yf_c00208{bottom:370.204500px;}
.y1d_c00208{bottom:388.204500px;}
.ye_c00208{bottom:405.124500px;}
.y1c_c00208{bottom:423.124500px;}
.yd_c00208{bottom:440.044500px;}
.y1b_c00208{bottom:458.089500px;}
.yc_c00208{bottom:475.009500px;}
.y1a_c00208{bottom:484.009500px;}
.yb_c00208{bottom:509.929500px;}
.ya_c00208{bottom:544.879500px;}
.y9_c00208{bottom:579.799500px;}
.y8_c00208{bottom:614.719500px;}
.y2_c00208{bottom:819.330000px;}
.h3_c00208{height:20.505000px;}
.h4_c00208{height:41.436000px;}
.h7_c00208{height:59.328281px;}
.h6_c00208{height:59.357813px;}
.h8_c00208{height:60.952500px;}
.h2_c00208{height:64.546875px;}
.h5_c00208{height:628.065000px;}
.h0_c00208{height:893.160000px;}
.h1_c00208{height:893.250000px;}
.w2_c00208{width:8.265000px;}
.w6_c00208{width:301.050000px;}
.w5_c00208{width:310.035000px;}
.w4_c00208{width:336.330000px;}
.w3_c00208{width:1008.270000px;}
.w0_c00208{width:1262.880000px;}
.w1_c00208{width:1263.000000px;}
.x0_c00208{left:0.000000px;}
.x5_c00208{left:7.546500px;}
.x4_c00208{left:119.929500px;}
.x3_c00208{left:127.489500px;}
.x1_c00208{left:154.470000px;}
.x6_c00208{left:456.990000px;}
.x7_c00208{left:767.745000px;}
.x2_c00208{left:1127.490000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.lsc_c00208{letter-spacing:-1.258667pt;}
.ls7_c00208{letter-spacing:-0.816000pt;}
.lsb_c00208{letter-spacing:-0.810667pt;}
.ls9_c00208{letter-spacing:-0.720000pt;}
.lsa_c00208{letter-spacing:-0.473600pt;}
.ls8_c00208{letter-spacing:-0.214933pt;}
.ls6_c00208{letter-spacing:0.000000pt;}
.ls4_c00208{letter-spacing:0.017920pt;}
.lsf_c00208{letter-spacing:0.020267pt;}
.ls2_c00208{letter-spacing:0.043520pt;}
.lse_c00208{letter-spacing:0.053867pt;}
.ls11_c00208{letter-spacing:0.194667pt;}
.ls12_c00208{letter-spacing:0.289067pt;}
.lsd_c00208{letter-spacing:0.470933pt;}
.ls0_c00208{letter-spacing:0.618667pt;}
.ls1_c00208{letter-spacing:0.640000pt;}
.ls5_c00208{letter-spacing:0.746667pt;}
.ls10_c00208{letter-spacing:1.013333pt;}
.ls3_c00208{letter-spacing:64.746667pt;}
.ws6_c00208{word-spacing:-14.453333pt;}
.ws7_c00208{word-spacing:-13.634667pt;}
.ws5_c00208{word-spacing:-13.493867pt;}
.ws2_c00208{word-spacing:-13.440000pt;}
.ws1_c00208{word-spacing:-13.225067pt;}
.ws4_c00208{word-spacing:-12.966400pt;}
.ws3_c00208{word-spacing:-12.720000pt;}
.ws0_c00208{word-spacing:-12.624000pt;}
.ws8_c00208{word-spacing:0.000000pt;}
._1_c00208{margin-left:-2.044588pt;}
._0_c00208{margin-left:-1.021332pt;}
._2_c00208{width:1.292056pt;}
._3_c00208{width:2.223677pt;}
._6_c00208{width:62.968854pt;}
._5_c00208{width:64.545280pt;}
._4_c00208{width:65.491521pt;}
.fs1_c00208{font-size:53.760000pt;}
.fs0_c00208{font-size:64.000000pt;}
.y0_c00208{bottom:0.000000pt;}
.y3_c00208{bottom:3.840000pt;}
.y6_c00208{bottom:4.160000pt;}
.y19_c00208{bottom:19.190667pt;}
.y5_c00208{bottom:22.432000pt;}
.y4_c00208{bottom:28.480000pt;}
.y18_c00208{bottom:50.230667pt;}
.y1_c00208{bottom:51.232000pt;}
.y17_c00208{bottom:81.297333pt;}
.y16_c00208{bottom:112.017333pt;}
.y7_c00208{bottom:121.676000pt;}
.y15_c00208{bottom:143.057333pt;}
.y14_c00208{bottom:174.137333pt;}
.y23_c00208{bottom:175.097333pt;}
.y13_c00208{bottom:205.177333pt;}
.y22_c00208{bottom:206.137333pt;}
.y12_c00208{bottom:236.217333pt;}
.y21_c00208{bottom:237.204000pt;}
.y24_c00208{bottom:266.964000pt;}
.y11_c00208{bottom:267.284000pt;}
.y20_c00208{bottom:268.244000pt;}
.y1f_c00208{bottom:291.284000pt;}
.y10_c00208{bottom:298.324000pt;}
.y1e_c00208{bottom:314.324000pt;}
.yf_c00208{bottom:329.070667pt;}
.y1d_c00208{bottom:345.070667pt;}
.ye_c00208{bottom:360.110667pt;}
.y1c_c00208{bottom:376.110667pt;}
.yd_c00208{bottom:391.150667pt;}
.y1b_c00208{bottom:407.190667pt;}
.yc_c00208{bottom:422.230667pt;}
.y1a_c00208{bottom:430.230667pt;}
.yb_c00208{bottom:453.270667pt;}
.ya_c00208{bottom:484.337333pt;}
.y9_c00208{bottom:515.377333pt;}
.y8_c00208{bottom:546.417333pt;}
.y2_c00208{bottom:728.293333pt;}
.h3_c00208{height:18.226667pt;}
.h4_c00208{height:36.832000pt;}
.h7_c00208{height:52.736250pt;}
.h6_c00208{height:52.762500pt;}
.h8_c00208{height:54.180000pt;}
.h2_c00208{height:57.375000pt;}
.h5_c00208{height:558.280000pt;}
.h0_c00208{height:793.920000pt;}
.h1_c00208{height:794.000000pt;}
.w2_c00208{width:7.346667pt;}
.w6_c00208{width:267.600000pt;}
.w5_c00208{width:275.586667pt;}
.w4_c00208{width:298.960000pt;}
.w3_c00208{width:896.240000pt;}
.w0_c00208{width:1122.560000pt;}
.w1_c00208{width:1122.666667pt;}
.x0_c00208{left:0.000000pt;}
.x5_c00208{left:6.708000pt;}
.x4_c00208{left:106.604000pt;}
.x3_c00208{left:113.324000pt;}
.x1_c00208{left:137.306667pt;}
.x6_c00208{left:406.213333pt;}
.x7_c00208{left:682.440000pt;}
.x2_c00208{left:1002.213333pt;}
}





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

.ir_c00209:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00209;src:url('chunks/assets/font_76145577a34e450a5a4f580b.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00209;src:url('chunks/assets/font_ef04ffb0ea5159311309fbda.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_19d8d25b4c2cac6a881ef9f4.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;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_c00209;src:url('chunks/assets/font_fed08655f2b61e7b32a11519.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00209;src:url('chunks/assets/font_c4a89ce201495b5571e16856.woff2')format("woff");}.ff5_c00209{font-family:ff5_c00209;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00209;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00209{font-family:ff6_c00209;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls2_c00209{letter-spacing:-0.720000px;}
.ls5_c00209{letter-spacing:-0.532800px;}
.ls4_c00209{letter-spacing:-0.241800px;}
.ls1_c00209{letter-spacing:0.000000px;}
.ls3_c00209{letter-spacing:0.022800px;}
.ls0_c00209{letter-spacing:0.720000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00209{word-spacing:-60.480000px;}
.ws2_c00209{word-spacing:-15.142800px;}
.ws0_c00209{word-spacing:-15.120000px;}
.ws3_c00209{word-spacing:-14.878200px;}
.ws4_c00209{word-spacing:-14.587200px;}
.ws5_c00209{word-spacing:0.000000px;}
._0_c00209{margin-left:-1.935602px;}
._1_c00209{width:1.138322px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs1_c00209{font-size:60.480000px;}
.fs0_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y3_c00209{bottom:4.320000px;}
.y6_c00209{bottom:4.680000px;}
.y15_c00209{bottom:21.600000px;}
.y5_c00209{bottom:25.236000px;}
.y4_c00209{bottom:32.040000px;}
.y14_c00209{bottom:56.565000px;}
.y1_c00209{bottom:57.636000px;}
.y13_c00209{bottom:91.485000px;}
.y12_c00209{bottom:126.405000px;}
.y11_c00209{bottom:161.355000px;}
.y18_c00209{bottom:170.355000px;}
.y10_c00209{bottom:196.275000px;}
.y17_c00209{bottom:210.315000px;}
.yf_c00209{bottom:230.865000px;}
.y16_c00209{bottom:250.305000px;}
.ye_c00209{bottom:265.785000px;}
.y7_c00209{bottom:276.225000px;}
.yd_c00209{bottom:300.705000px;}
.yc_c00209{bottom:335.670000px;}
.yb_c00209{bottom:370.590000px;}
.ya_c00209{bottom:405.540000px;}
.y9_c00209{bottom:440.460000px;}
.y8_c00209{bottom:475.380000px;}
.y2_c00209{bottom:819.330000px;}
.h3_c00209{height:20.505000px;}
.h4_c00209{height:41.436000px;}
.h6_c00209{height:59.357813px;}
.h7_c00209{height:60.952500px;}
.h2_c00209{height:64.546875px;}
.h8_c00209{height:70.664062px;}
.h5_c00209{height:488.730000px;}
.h0_c00209{height:893.160000px;}
.h1_c00209{height:893.250000px;}
.w2_c00209{width:8.265000px;}
.w4_c00209{width:336.330000px;}
.w3_c00209{width:1008.270000px;}
.w0_c00209{width:1262.880000px;}
.w1_c00209{width:1263.000000px;}
.x0_c00209{left:0.000000px;}
.x5_c00209{left:7.546500px;}
.x4_c00209{left:119.929500px;}
.x3_c00209{left:127.489500px;}
.x1_c00209{left:154.470000px;}
.x2_c00209{left:1127.490000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls2_c00209{letter-spacing:-0.640000pt;}
.ls5_c00209{letter-spacing:-0.473600pt;}
.ls4_c00209{letter-spacing:-0.214933pt;}
.ls1_c00209{letter-spacing:0.000000pt;}
.ls3_c00209{letter-spacing:0.020267pt;}
.ls0_c00209{letter-spacing:0.640000pt;}
.ws1_c00209{word-spacing:-53.760000pt;}
.ws2_c00209{word-spacing:-13.460267pt;}
.ws0_c00209{word-spacing:-13.440000pt;}
.ws3_c00209{word-spacing:-13.225067pt;}
.ws4_c00209{word-spacing:-12.966400pt;}
.ws5_c00209{word-spacing:0.000000pt;}
._0_c00209{margin-left:-1.720535pt;}
._1_c00209{width:1.011842pt;}
.fs1_c00209{font-size:53.760000pt;}
.fs0_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y3_c00209{bottom:3.840000pt;}
.y6_c00209{bottom:4.160000pt;}
.y15_c00209{bottom:19.200000pt;}
.y5_c00209{bottom:22.432000pt;}
.y4_c00209{bottom:28.480000pt;}
.y14_c00209{bottom:50.280000pt;}
.y1_c00209{bottom:51.232000pt;}
.y13_c00209{bottom:81.320000pt;}
.y12_c00209{bottom:112.360000pt;}
.y11_c00209{bottom:143.426667pt;}
.y18_c00209{bottom:151.426667pt;}
.y10_c00209{bottom:174.466667pt;}
.y17_c00209{bottom:186.946667pt;}
.yf_c00209{bottom:205.213333pt;}
.y16_c00209{bottom:222.493333pt;}
.ye_c00209{bottom:236.253333pt;}
.y7_c00209{bottom:245.533333pt;}
.yd_c00209{bottom:267.293333pt;}
.yc_c00209{bottom:298.373333pt;}
.yb_c00209{bottom:329.413333pt;}
.ya_c00209{bottom:360.480000pt;}
.y9_c00209{bottom:391.520000pt;}
.y8_c00209{bottom:422.560000pt;}
.y2_c00209{bottom:728.293333pt;}
.h3_c00209{height:18.226667pt;}
.h4_c00209{height:36.832000pt;}
.h6_c00209{height:52.762500pt;}
.h7_c00209{height:54.180000pt;}
.h2_c00209{height:57.375000pt;}
.h8_c00209{height:62.812500pt;}
.h5_c00209{height:434.426667pt;}
.h0_c00209{height:793.920000pt;}
.h1_c00209{height:794.000000pt;}
.w2_c00209{width:7.346667pt;}
.w4_c00209{width:298.960000pt;}
.w3_c00209{width:896.240000pt;}
.w0_c00209{width:1122.560000pt;}
.w1_c00209{width:1122.666667pt;}
.x0_c00209{left:0.000000pt;}
.x5_c00209{left:6.708000pt;}
.x4_c00209{left:106.604000pt;}
.x3_c00209{left:113.324000pt;}
.x1_c00209{left:137.306667pt;}
.x2_c00209{left:1002.213333pt;}
}





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

.ir_c00210:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00210;src:url('chunks/assets/font_f88c9d8bf2b739ce0dd3daee.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_6312cbe989a2c04ecdd41ed5.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_8db044ee46c6b77207c0cdbd.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00210;src:url('chunks/assets/font_97db0dc904936988a8a85d03.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00210;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00210;src:url('chunks/assets/font_023b3da38156cd9847df3979.woff2')format("woff");}.ff6_c00210{font-family:ff6_c00210;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls4_c00210{letter-spacing:-1.416000px;}
.ls3_c00210{letter-spacing:0.000000px;}
.ls6_c00210{letter-spacing:0.325200px;}
.ls1_c00210{letter-spacing:0.466560px;}
.ls2_c00210{letter-spacing:0.518400px;}
.ls5_c00210{letter-spacing:0.702000px;}
.ls0_c00210{letter-spacing:0.720000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00210{word-spacing:-15.822000px;}
.ws2_c00210{word-spacing:-15.445200px;}
.ws0_c00210{word-spacing:-15.120000px;}
.ws3_c00210{word-spacing:0.000000px;}
._2_c00210{margin-left:-3.024000px;}
._1_c00210{margin-left:-1.332000px;}
._0_c00210{width:1.008000px;}
._3_c00210{width:2.016000px;}
.fc0_c00210{color:rgb(0,0,0);}
.fs1_c00210{font-size:60.480000px;}
.fs0_c00210{font-size:72.000000px;}
.y0_c00210{bottom:0.000000px;}
.y3_c00210{bottom:4.320000px;}
.y6_c00210{bottom:4.680000px;}
.y19_c00210{bottom:21.589500px;}
.y9_c00210{bottom:21.600000px;}
.y5_c00210{bottom:25.236000px;}
.y4_c00210{bottom:32.040000px;}
.y18_c00210{bottom:56.509500px;}
.y1_c00210{bottom:57.636000px;}
.y17_c00210{bottom:91.459500px;}
.y16_c00210{bottom:126.379500px;}
.ya_c00210{bottom:147.685500px;}
.y15_c00210{bottom:161.299500px;}
.y14_c00210{bottom:196.264500px;}
.y13_c00210{bottom:230.824500px;}
.y12_c00210{bottom:265.774500px;}
.y11_c00210{bottom:300.694500px;}
.y10_c00210{bottom:335.614500px;}
.yf_c00210{bottom:370.564500px;}
.ye_c00210{bottom:405.484500px;}
.yd_c00210{bottom:440.449500px;}
.yc_c00210{bottom:475.009500px;}
.yb_c00210{bottom:509.929500px;}
.y8_c00210{bottom:680.685000px;}
.y7_c00210{bottom:749.445000px;}
.y2_c00210{bottom:819.330000px;}
.h3_c00210{height:20.505000px;}
.h4_c00210{height:41.436000px;}
.h6_c00210{height:43.905000px;}
.h7_c00210{height:59.357813px;}
.h9_c00210{height:60.952500px;}
.h2_c00210{height:64.546875px;}
.h5_c00210{height:70.664062px;}
.h8_c00210{height:532.260000px;}
.h0_c00210{height:893.160000px;}
.h1_c00210{height:893.250000px;}
.w2_c00210{width:8.265000px;}
.w5_c00210{width:478.935000px;}
.w4_c00210{width:543.735000px;}
.w3_c00210{width:1008.270000px;}
.w0_c00210{width:1262.880000px;}
.w1_c00210{width:1263.000000px;}
.x0_c00210{left:0.000000px;}
.x9_c00210{left:7.546500px;}
.x5_c00210{left:119.929500px;}
.x3_c00210{left:127.489500px;}
.x1_c00210{left:154.470000px;}
.x4_c00210{left:178.590000px;}
.x8_c00210{left:194.475000px;}
.x6_c00210{left:226.855500px;}
.x7_c00210{left:664.380000px;}
.x2_c00210{left:1127.490000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls4_c00210{letter-spacing:-1.258667pt;}
.ls3_c00210{letter-spacing:0.000000pt;}
.ls6_c00210{letter-spacing:0.289067pt;}
.ls1_c00210{letter-spacing:0.414720pt;}
.ls2_c00210{letter-spacing:0.460800pt;}
.ls5_c00210{letter-spacing:0.624000pt;}
.ls0_c00210{letter-spacing:0.640000pt;}
.ws1_c00210{word-spacing:-14.064000pt;}
.ws2_c00210{word-spacing:-13.729067pt;}
.ws0_c00210{word-spacing:-13.440000pt;}
.ws3_c00210{word-spacing:0.000000pt;}
._2_c00210{margin-left:-2.688000pt;}
._1_c00210{margin-left:-1.184000pt;}
._0_c00210{width:0.896000pt;}
._3_c00210{width:1.792000pt;}
.fs1_c00210{font-size:53.760000pt;}
.fs0_c00210{font-size:64.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y3_c00210{bottom:3.840000pt;}
.y6_c00210{bottom:4.160000pt;}
.y19_c00210{bottom:19.190667pt;}
.y9_c00210{bottom:19.200000pt;}
.y5_c00210{bottom:22.432000pt;}
.y4_c00210{bottom:28.480000pt;}
.y18_c00210{bottom:50.230667pt;}
.y1_c00210{bottom:51.232000pt;}
.y17_c00210{bottom:81.297333pt;}
.y16_c00210{bottom:112.337333pt;}
.ya_c00210{bottom:131.276000pt;}
.y15_c00210{bottom:143.377333pt;}
.y14_c00210{bottom:174.457333pt;}
.y13_c00210{bottom:205.177333pt;}
.y12_c00210{bottom:236.244000pt;}
.y11_c00210{bottom:267.284000pt;}
.y10_c00210{bottom:298.324000pt;}
.yf_c00210{bottom:329.390667pt;}
.ye_c00210{bottom:360.430667pt;}
.yd_c00210{bottom:391.510667pt;}
.yc_c00210{bottom:422.230667pt;}
.yb_c00210{bottom:453.270667pt;}
.y8_c00210{bottom:605.053333pt;}
.y7_c00210{bottom:666.173333pt;}
.y2_c00210{bottom:728.293333pt;}
.h3_c00210{height:18.226667pt;}
.h4_c00210{height:36.832000pt;}
.h6_c00210{height:39.026667pt;}
.h7_c00210{height:52.762500pt;}
.h9_c00210{height:54.180000pt;}
.h2_c00210{height:57.375000pt;}
.h5_c00210{height:62.812500pt;}
.h8_c00210{height:473.120000pt;}
.h0_c00210{height:793.920000pt;}
.h1_c00210{height:794.000000pt;}
.w2_c00210{width:7.346667pt;}
.w5_c00210{width:425.720000pt;}
.w4_c00210{width:483.320000pt;}
.w3_c00210{width:896.240000pt;}
.w0_c00210{width:1122.560000pt;}
.w1_c00210{width:1122.666667pt;}
.x0_c00210{left:0.000000pt;}
.x9_c00210{left:6.708000pt;}
.x5_c00210{left:106.604000pt;}
.x3_c00210{left:113.324000pt;}
.x1_c00210{left:137.306667pt;}
.x4_c00210{left:158.746667pt;}
.x8_c00210{left:172.866667pt;}
.x6_c00210{left:201.649333pt;}
.x7_c00210{left:590.560000pt;}
.x2_c00210{left:1002.213333pt;}
}





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

.ir_c00211:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00211;src:url('chunks/assets/font_1d2e80780505eec9e60e591d.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_99123ddd663bcc1f5fb7612b.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_160570533feecdaa2f6abc6f.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_50881301db582be147d61650.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00211;src:url('chunks/assets/font_89f976c5adc2879f10499f5a.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;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_c00211;src:url('chunks/assets/font_fbb33e1f69fc2cb5aee64c57.woff2')format("woff");}.ff6_c00211{font-family:ff6_c00211;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.lsa_c00211{letter-spacing:-0.912000px;}
.lsd_c00211{letter-spacing:-0.532800px;}
.ls6_c00211{letter-spacing:-0.241800px;}
.ls8_c00211{letter-spacing:-0.230400px;}
.ls4_c00211{letter-spacing:0.000000px;}
.ls3_c00211{letter-spacing:0.020160px;}
.ls5_c00211{letter-spacing:0.022800px;}
.lsb_c00211{letter-spacing:0.166800px;}
.ls9_c00211{letter-spacing:0.423600px;}
.ls7_c00211{letter-spacing:0.529800px;}
.lse_c00211{letter-spacing:0.630000px;}
.ls2_c00211{letter-spacing:0.696000px;}
.lsc_c00211{letter-spacing:0.702000px;}
.ls1_c00211{letter-spacing:0.720000px;}
.ls0_c00211{letter-spacing:0.900000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00211{word-spacing:-60.480000px;}
.ws7_c00211{word-spacing:-15.822000px;}
.ws9_c00211{word-spacing:-15.750000px;}
.ws2_c00211{word-spacing:-15.649800px;}
.ws3_c00211{word-spacing:-15.543600px;}
.ws6_c00211{word-spacing:-15.286800px;}
.ws0_c00211{word-spacing:-15.142800px;}
.ws1_c00211{word-spacing:-15.120000px;}
.ws5_c00211{word-spacing:-14.878200px;}
.ws8_c00211{word-spacing:-14.587200px;}
.wsa_c00211{word-spacing:0.000000px;}
._3_c00211{margin-left:-4.536966px;}
._2_c00211{margin-left:-2.690517px;}
._0_c00211{margin-left:-1.440000px;}
._1_c00211{width:1.148999px;}
.fc0_c00211{color:rgb(0,0,0);}
.fs1_c00211{font-size:60.480000px;}
.fs0_c00211{font-size:72.000000px;}
.y0_c00211{bottom:0.000000px;}
.y3_c00211{bottom:4.320000px;}
.y6_c00211{bottom:4.680000px;}
.y19_c00211{bottom:21.589500px;}
.y5_c00211{bottom:25.236000px;}
.y4_c00211{bottom:32.040000px;}
.y18_c00211{bottom:56.509500px;}
.y1_c00211{bottom:57.636000px;}
.y17_c00211{bottom:91.459500px;}
.y16_c00211{bottom:126.019500px;}
.y7_c00211{bottom:136.885500px;}
.y15_c00211{bottom:160.939500px;}
.y14_c00211{bottom:195.904500px;}
.y13_c00211{bottom:230.824500px;}
.y12_c00211{bottom:265.744500px;}
.y11_c00211{bottom:300.694500px;}
.y10_c00211{bottom:335.614500px;}
.yf_c00211{bottom:370.204500px;}
.ye_c00211{bottom:405.124500px;}
.yd_c00211{bottom:440.044500px;}
.yc_c00211{bottom:475.009500px;}
.yb_c00211{bottom:509.929500px;}
.ya_c00211{bottom:544.879500px;}
.y9_c00211{bottom:579.799500px;}
.y8_c00211{bottom:614.719500px;}
.y2_c00211{bottom:819.330000px;}
.h3_c00211{height:20.505000px;}
.h4_c00211{height:41.436000px;}
.h6_c00211{height:59.357813px;}
.h2_c00211{height:64.546875px;}
.h5_c00211{height:628.065000px;}
.h0_c00211{height:893.160000px;}
.h1_c00211{height:893.250000px;}
.w2_c00211{width:8.265000px;}
.w4_c00211{width:543.735000px;}
.w3_c00211{width:1008.270000px;}
.w0_c00211{width:1262.880000px;}
.w1_c00211{width:1263.000000px;}
.x0_c00211{left:0.000000px;}
.x5_c00211{left:7.546500px;}
.x4_c00211{left:119.929500px;}
.x3_c00211{left:127.489500px;}
.x1_c00211{left:154.470000px;}
.x2_c00211{left:1127.490000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.lsa_c00211{letter-spacing:-0.810667pt;}
.lsd_c00211{letter-spacing:-0.473600pt;}
.ls6_c00211{letter-spacing:-0.214933pt;}
.ls8_c00211{letter-spacing:-0.204800pt;}
.ls4_c00211{letter-spacing:0.000000pt;}
.ls3_c00211{letter-spacing:0.017920pt;}
.ls5_c00211{letter-spacing:0.020267pt;}
.lsb_c00211{letter-spacing:0.148267pt;}
.ls9_c00211{letter-spacing:0.376533pt;}
.ls7_c00211{letter-spacing:0.470933pt;}
.lse_c00211{letter-spacing:0.560000pt;}
.ls2_c00211{letter-spacing:0.618667pt;}
.lsc_c00211{letter-spacing:0.624000pt;}
.ls1_c00211{letter-spacing:0.640000pt;}
.ls0_c00211{letter-spacing:0.800000pt;}
.ws4_c00211{word-spacing:-53.760000pt;}
.ws7_c00211{word-spacing:-14.064000pt;}
.ws9_c00211{word-spacing:-14.000000pt;}
.ws2_c00211{word-spacing:-13.910933pt;}
.ws3_c00211{word-spacing:-13.816533pt;}
.ws6_c00211{word-spacing:-13.588267pt;}
.ws0_c00211{word-spacing:-13.460267pt;}
.ws1_c00211{word-spacing:-13.440000pt;}
.ws5_c00211{word-spacing:-13.225067pt;}
.ws8_c00211{word-spacing:-12.966400pt;}
.wsa_c00211{word-spacing:0.000000pt;}
._3_c00211{margin-left:-4.032858pt;}
._2_c00211{margin-left:-2.391571pt;}
._0_c00211{margin-left:-1.280000pt;}
._1_c00211{width:1.021332pt;}
.fs1_c00211{font-size:53.760000pt;}
.fs0_c00211{font-size:64.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y3_c00211{bottom:3.840000pt;}
.y6_c00211{bottom:4.160000pt;}
.y19_c00211{bottom:19.190667pt;}
.y5_c00211{bottom:22.432000pt;}
.y4_c00211{bottom:28.480000pt;}
.y18_c00211{bottom:50.230667pt;}
.y1_c00211{bottom:51.232000pt;}
.y17_c00211{bottom:81.297333pt;}
.y16_c00211{bottom:112.017333pt;}
.y7_c00211{bottom:121.676000pt;}
.y15_c00211{bottom:143.057333pt;}
.y14_c00211{bottom:174.137333pt;}
.y13_c00211{bottom:205.177333pt;}
.y12_c00211{bottom:236.217333pt;}
.y11_c00211{bottom:267.284000pt;}
.y10_c00211{bottom:298.324000pt;}
.yf_c00211{bottom:329.070667pt;}
.ye_c00211{bottom:360.110667pt;}
.yd_c00211{bottom:391.150667pt;}
.yc_c00211{bottom:422.230667pt;}
.yb_c00211{bottom:453.270667pt;}
.ya_c00211{bottom:484.337333pt;}
.y9_c00211{bottom:515.377333pt;}
.y8_c00211{bottom:546.417333pt;}
.y2_c00211{bottom:728.293333pt;}
.h3_c00211{height:18.226667pt;}
.h4_c00211{height:36.832000pt;}
.h6_c00211{height:52.762500pt;}
.h2_c00211{height:57.375000pt;}
.h5_c00211{height:558.280000pt;}
.h0_c00211{height:793.920000pt;}
.h1_c00211{height:794.000000pt;}
.w2_c00211{width:7.346667pt;}
.w4_c00211{width:483.320000pt;}
.w3_c00211{width:896.240000pt;}
.w0_c00211{width:1122.560000pt;}
.w1_c00211{width:1122.666667pt;}
.x0_c00211{left:0.000000pt;}
.x5_c00211{left:6.708000pt;}
.x4_c00211{left:106.604000pt;}
.x3_c00211{left:113.324000pt;}
.x1_c00211{left:137.306667pt;}
.x2_c00211{left:1002.213333pt;}
}





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

.ir_c00212:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00212;src:url('chunks/assets/font_1d2e80780505eec9e60e591d.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_feecdb30ff14f064abaa5b66.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;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_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls1_c00212{letter-spacing:0.000000px;}
.ls2_c00212{letter-spacing:0.521400px;}
.ls0_c00212{letter-spacing:0.720000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:-15.641400px;}
.ws1_c00212{word-spacing:-15.120000px;}
.ws2_c00212{word-spacing:0.000000px;}
._0_c00212{margin-left:-1.042318px;}
.fc1_c00212{color:rgb(255,0,0);}
.fc0_c00212{color:rgb(0,0,0);}
.fs1_c00212{font-size:60.480000px;}
.fs0_c00212{font-size:72.000000px;}
.y0_c00212{bottom:0.000000px;}
.y3_c00212{bottom:4.320000px;}
.y6_c00212{bottom:4.680000px;}
.y9_c00212{bottom:21.600000px;}
.y5_c00212{bottom:25.236000px;}
.y4_c00212{bottom:32.040000px;}
.y8_c00212{bottom:56.520000px;}
.y1_c00212{bottom:57.636000px;}
.y13_c00212{bottom:308.625000px;}
.y12_c00212{bottom:348.630000px;}
.y11_c00212{bottom:388.590000px;}
.y10_c00212{bottom:428.580000px;}
.yf_c00212{bottom:468.900000px;}
.ye_c00212{bottom:508.890000px;}
.yd_c00212{bottom:548.850000px;}
.yc_c00212{bottom:588.855000px;}
.yb_c00212{bottom:628.815000px;}
.ya_c00212{bottom:669.135000px;}
.y7_c00212{bottom:695.085000px;}
.y2_c00212{bottom:819.330000px;}
.h3_c00212{height:20.505000px;}
.h4_c00212{height:41.436000px;}
.h6_c00212{height:59.357813px;}
.h2_c00212{height:64.546875px;}
.h5_c00212{height:69.870000px;}
.h8_c00212{height:70.628906px;}
.h7_c00212{height:70.664062px;}
.h0_c00212{height:893.160000px;}
.h1_c00212{height:893.250000px;}
.w2_c00212{width:8.265000px;}
.w4_c00212{width:543.735000px;}
.w3_c00212{width:1008.270000px;}
.w0_c00212{width:1262.880000px;}
.w1_c00212{width:1263.000000px;}
.x0_c00212{left:0.000000px;}
.x5_c00212{left:7.546500px;}
.x4_c00212{left:119.929500px;}
.x3_c00212{left:127.489500px;}
.x1_c00212{left:154.470000px;}
.x6_c00212{left:180.795000px;}
.x2_c00212{left:1127.490000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls1_c00212{letter-spacing:0.000000pt;}
.ls2_c00212{letter-spacing:0.463467pt;}
.ls0_c00212{letter-spacing:0.640000pt;}
.ws0_c00212{word-spacing:-13.903467pt;}
.ws1_c00212{word-spacing:-13.440000pt;}
.ws2_c00212{word-spacing:0.000000pt;}
._0_c00212{margin-left:-0.926505pt;}
.fs1_c00212{font-size:53.760000pt;}
.fs0_c00212{font-size:64.000000pt;}
.y0_c00212{bottom:0.000000pt;}
.y3_c00212{bottom:3.840000pt;}
.y6_c00212{bottom:4.160000pt;}
.y9_c00212{bottom:19.200000pt;}
.y5_c00212{bottom:22.432000pt;}
.y4_c00212{bottom:28.480000pt;}
.y8_c00212{bottom:50.240000pt;}
.y1_c00212{bottom:51.232000pt;}
.y13_c00212{bottom:274.333333pt;}
.y12_c00212{bottom:309.893333pt;}
.y11_c00212{bottom:345.413333pt;}
.y10_c00212{bottom:380.960000pt;}
.yf_c00212{bottom:416.800000pt;}
.ye_c00212{bottom:452.346667pt;}
.yd_c00212{bottom:487.866667pt;}
.yc_c00212{bottom:523.426667pt;}
.yb_c00212{bottom:558.946667pt;}
.ya_c00212{bottom:594.786667pt;}
.y7_c00212{bottom:617.853333pt;}
.y2_c00212{bottom:728.293333pt;}
.h3_c00212{height:18.226667pt;}
.h4_c00212{height:36.832000pt;}
.h6_c00212{height:52.762500pt;}
.h2_c00212{height:57.375000pt;}
.h5_c00212{height:62.106667pt;}
.h8_c00212{height:62.781250pt;}
.h7_c00212{height:62.812500pt;}
.h0_c00212{height:793.920000pt;}
.h1_c00212{height:794.000000pt;}
.w2_c00212{width:7.346667pt;}
.w4_c00212{width:483.320000pt;}
.w3_c00212{width:896.240000pt;}
.w0_c00212{width:1122.560000pt;}
.w1_c00212{width:1122.666667pt;}
.x0_c00212{left:0.000000pt;}
.x5_c00212{left:6.708000pt;}
.x4_c00212{left:106.604000pt;}
.x3_c00212{left:113.324000pt;}
.x1_c00212{left:137.306667pt;}
.x6_c00212{left:160.706667pt;}
.x2_c00212{left:1002.213333pt;}
}





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

.ir_c00213:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00213;src:url('chunks/assets/font_84f15573d4325742a1ce2279.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_ffe44e78e88ba7315085f9a1.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_d4a72e435fb02e7460ce68c9.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_e409edf659ec4373cf740267.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_cc355c9c02b208f1a8614588.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00213;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00213{font-family:ff6_c00213;line-height:1.311035;font-style:normal;font-weight: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_c00213;src:url('chunks/assets/font_2ba3d12b22cd5ba0e71af24b.woff2')format("woff");}.ff7_c00213{font-family:ff7_c00213;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls2_c00213{letter-spacing:-0.972000px;}
.ls3_c00213{letter-spacing:-0.912000px;}
.ls5_c00213{letter-spacing:-0.230400px;}
.ls1_c00213{letter-spacing:0.000000px;}
.ls6_c00213{letter-spacing:0.267600px;}
.ls4_c00213{letter-spacing:0.466800px;}
.ls0_c00213{letter-spacing:0.720000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00213{word-spacing:-60.747600px;}
.ws1_c00213{word-spacing:-60.480000px;}
.ws0_c00213{word-spacing:-18.000000px;}
.ws2_c00213{word-spacing:-15.120000px;}
.ws3_c00213{word-spacing:-14.889600px;}
.ws5_c00213{word-spacing:0.000000px;}
._5_c00213{margin-left:-2.688000px;}
._1_c00213{margin-left:-1.440000px;}
._0_c00213{width:1.296000px;}
._7_c00213{width:2.328000px;}
._b_c00213{width:3.504000px;}
._10_c00213{width:5.520000px;}
._f_c00213{width:6.840000px;}
._6_c00213{width:7.872000px;}
._2_c00213{width:9.864000px;}
._3_c00213{width:11.448000px;}
._4_c00213{width:12.780000px;}
._d_c00213{width:15.648000px;}
._c_c00213{width:16.656000px;}
._e_c00213{width:19.944000px;}
._9_c00213{width:55.080000px;}
._8_c00213{width:56.736000px;}
._a_c00213{width:58.368000px;}
.fc2_c00213{color:transparent;}
.fc1_c00213{color:rgb(255,0,0);}
.fc0_c00213{color:rgb(0,0,0);}
.fs3_c00213{font-size:38.880000px;}
.fs1_c00213{font-size:47.520000px;}
.fs2_c00213{font-size:60.480000px;}
.fs0_c00213{font-size:72.000000px;}
.y0_c00213{bottom:0.000000px;}
.y3_c00213{bottom:4.320000px;}
.y20_c00213{bottom:21.585000px;}
.y1d_c00213{bottom:21.600000px;}
.y1b_c00213{bottom:21.645000px;}
.y5_c00213{bottom:25.200000px;}
.y4_c00213{bottom:32.040000px;}
.y1_c00213{bottom:57.240000px;}
.y2a_c00213{bottom:151.590000px;}
.y29_c00213{bottom:168.870000px;}
.y28_c00213{bottom:186.150000px;}
.y27_c00213{bottom:192.990000px;}
.y26_c00213{bottom:203.430000px;}
.y25_c00213{bottom:220.710000px;}
.y24_c00213{bottom:238.035000px;}
.y23_c00213{bottom:255.315000px;}
.y22_c00213{bottom:262.155000px;}
.y21_c00213{bottom:272.955000px;}
.y1f_c00213{bottom:331.650000px;}
.y1e_c00213{bottom:377.025000px;}
.y1c_c00213{bottom:422.385000px;}
.y1a_c00213{bottom:467.745000px;}
.y18_c00213{bottom:536.910000px;}
.y19_c00213{bottom:545.190000px;}
.y17_c00213{bottom:577.230000px;}
.y16_c00213{bottom:617.220000px;}
.y15_c00213{bottom:648.180000px;}
.y14_c00213{bottom:679.140000px;}
.y13_c00213{bottom:710.460000px;}
.y12_c00213{bottom:741.450000px;}
.y11_c00213{bottom:772.410000px;}
.yf_c00213{bottom:812.370000px;}
.y10_c00213{bottom:820.650000px;}
.ye_c00213{bottom:843.735000px;}
.yd_c00213{bottom:874.695000px;}
.yc_c00213{bottom:905.655000px;}
.yb_c00213{bottom:945.615000px;}
.ya_c00213{bottom:976.965000px;}
.y9_c00213{bottom:1007.925000px;}
.y8_c00213{bottom:1038.885000px;}
.y7_c00213{bottom:1078.845000px;}
.y6_c00213{bottom:1119.210000px;}
.y2_c00213{bottom:1189.050000px;}
.h3_c00213{height:20.550000px;}
.hf_c00213{height:38.158594px;}
.h4_c00213{height:41.395500px;}
.hc_c00213{height:43.905000px;}
.he_c00213{height:43.920000px;}
.ha_c00213{height:43.950000px;}
.h9_c00213{height:46.615078px;}
.h8_c00213{height:46.638281px;}
.hb_c00213{height:59.357813px;}
.hd_c00213{height:60.952500px;}
.h2_c00213{height:64.546875px;}
.h5_c00213{height:70.628906px;}
.h6_c00213{height:70.664062px;}
.h7_c00213{height:1262.875500px;}
.h0_c00213{height:1262.880000px;}
.h1_c00213{height:1263.000000px;}
.w2_c00213{width:8.310000px;}
.wa_c00213{width:10.830000px;}
.w5_c00213{width:25.222500px;}
.w6_c00213{width:48.585000px;}
.w9_c00213{width:51.465000px;}
.w7_c00213{width:61.200000px;}
.w8_c00213{width:432.885000px;}
.w3_c00213{width:638.190000px;}
.w4_c00213{width:893.157000px;}
.w0_c00213{width:893.160000px;}
.w1_c00213{width:893.250000px;}
.x0_c00213{left:0.000000px;}
.x3_c00213{left:127.489500px;}
.xf_c00213{left:142.632000px;}
.x1_c00213{left:154.515000px;}
.x5_c00213{left:178.635000px;}
.x4_c00213{left:180.795000px;}
.xa_c00213{left:204.930000px;}
.x8_c00213{left:209.592000px;}
.x9_c00213{left:227.985000px;}
.xb_c00213{left:267.585000px;}
.xe_c00213{left:343.590000px;}
.x6_c00213{left:361.587000px;}
.x7_c00213{left:379.950000px;}
.xc_c00213{left:701.925000px;}
.xd_c00213{left:754.845000px;}
.x2_c00213{left:757.365000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls2_c00213{letter-spacing:-0.864000pt;}
.ls3_c00213{letter-spacing:-0.810667pt;}
.ls5_c00213{letter-spacing:-0.204800pt;}
.ls1_c00213{letter-spacing:0.000000pt;}
.ls6_c00213{letter-spacing:0.237867pt;}
.ls4_c00213{letter-spacing:0.414933pt;}
.ls0_c00213{letter-spacing:0.640000pt;}
.ws4_c00213{word-spacing:-53.997867pt;}
.ws1_c00213{word-spacing:-53.760000pt;}
.ws0_c00213{word-spacing:-16.000000pt;}
.ws2_c00213{word-spacing:-13.440000pt;}
.ws3_c00213{word-spacing:-13.235200pt;}
.ws5_c00213{word-spacing:0.000000pt;}
._5_c00213{margin-left:-2.389333pt;}
._1_c00213{margin-left:-1.280000pt;}
._0_c00213{width:1.152000pt;}
._7_c00213{width:2.069333pt;}
._b_c00213{width:3.114667pt;}
._10_c00213{width:4.906667pt;}
._f_c00213{width:6.080000pt;}
._6_c00213{width:6.997333pt;}
._2_c00213{width:8.768000pt;}
._3_c00213{width:10.176000pt;}
._4_c00213{width:11.360000pt;}
._d_c00213{width:13.909333pt;}
._c_c00213{width:14.805333pt;}
._e_c00213{width:17.728000pt;}
._9_c00213{width:48.960000pt;}
._8_c00213{width:50.432000pt;}
._a_c00213{width:51.882667pt;}
.fs3_c00213{font-size:34.560000pt;}
.fs1_c00213{font-size:42.240000pt;}
.fs2_c00213{font-size:53.760000pt;}
.fs0_c00213{font-size:64.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y3_c00213{bottom:3.840000pt;}
.y20_c00213{bottom:19.186667pt;}
.y1d_c00213{bottom:19.200000pt;}
.y1b_c00213{bottom:19.240000pt;}
.y5_c00213{bottom:22.400000pt;}
.y4_c00213{bottom:28.480000pt;}
.y1_c00213{bottom:50.880000pt;}
.y2a_c00213{bottom:134.746667pt;}
.y29_c00213{bottom:150.106667pt;}
.y28_c00213{bottom:165.466667pt;}
.y27_c00213{bottom:171.546667pt;}
.y26_c00213{bottom:180.826667pt;}
.y25_c00213{bottom:196.186667pt;}
.y24_c00213{bottom:211.586667pt;}
.y23_c00213{bottom:226.946667pt;}
.y22_c00213{bottom:233.026667pt;}
.y21_c00213{bottom:242.626667pt;}
.y1f_c00213{bottom:294.800000pt;}
.y1e_c00213{bottom:335.133333pt;}
.y1c_c00213{bottom:375.453333pt;}
.y1a_c00213{bottom:415.773333pt;}
.y18_c00213{bottom:477.253333pt;}
.y19_c00213{bottom:484.613333pt;}
.y17_c00213{bottom:513.093333pt;}
.y16_c00213{bottom:548.640000pt;}
.y15_c00213{bottom:576.160000pt;}
.y14_c00213{bottom:603.680000pt;}
.y13_c00213{bottom:631.520000pt;}
.y12_c00213{bottom:659.066667pt;}
.y11_c00213{bottom:686.586667pt;}
.yf_c00213{bottom:722.106667pt;}
.y10_c00213{bottom:729.466667pt;}
.ye_c00213{bottom:749.986667pt;}
.yd_c00213{bottom:777.506667pt;}
.yc_c00213{bottom:805.026667pt;}
.yb_c00213{bottom:840.546667pt;}
.ya_c00213{bottom:868.413333pt;}
.y9_c00213{bottom:895.933333pt;}
.y8_c00213{bottom:923.453333pt;}
.y7_c00213{bottom:958.973333pt;}
.y6_c00213{bottom:994.853333pt;}
.y2_c00213{bottom:1056.933333pt;}
.h3_c00213{height:18.266667pt;}
.hf_c00213{height:33.918750pt;}
.h4_c00213{height:36.796000pt;}
.hc_c00213{height:39.026667pt;}
.he_c00213{height:39.040000pt;}
.ha_c00213{height:39.066667pt;}
.h9_c00213{height:41.435625pt;}
.h8_c00213{height:41.456250pt;}
.hb_c00213{height:52.762500pt;}
.hd_c00213{height:54.180000pt;}
.h2_c00213{height:57.375000pt;}
.h5_c00213{height:62.781250pt;}
.h6_c00213{height:62.812500pt;}
.h7_c00213{height:1122.556000pt;}
.h0_c00213{height:1122.560000pt;}
.h1_c00213{height:1122.666667pt;}
.w2_c00213{width:7.386667pt;}
.wa_c00213{width:9.626667pt;}
.w5_c00213{width:22.420000pt;}
.w6_c00213{width:43.186667pt;}
.w9_c00213{width:45.746667pt;}
.w7_c00213{width:54.400000pt;}
.w8_c00213{width:384.786667pt;}
.w3_c00213{width:567.280000pt;}
.w4_c00213{width:793.917333pt;}
.w0_c00213{width:793.920000pt;}
.w1_c00213{width:794.000000pt;}
.x0_c00213{left:0.000000pt;}
.x3_c00213{left:113.324000pt;}
.xf_c00213{left:126.784000pt;}
.x1_c00213{left:137.346667pt;}
.x5_c00213{left:158.786667pt;}
.x4_c00213{left:160.706667pt;}
.xa_c00213{left:182.160000pt;}
.x8_c00213{left:186.304000pt;}
.x9_c00213{left:202.653333pt;}
.xb_c00213{left:237.853333pt;}
.xe_c00213{left:305.413333pt;}
.x6_c00213{left:321.410667pt;}
.x7_c00213{left:337.733333pt;}
.xc_c00213{left:623.933333pt;}
.xd_c00213{left:670.973333pt;}
.x2_c00213{left:673.213333pt;}
}





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

.ir_c00214:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00214;src:url('chunks/assets/font_893fffa2dd3be52f6819d7a1.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_10628ce217acf8cb05e471c1.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_643e20927420aac4ca5e3f8c.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_e10855354c4e9c8f36bac561.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00214;src:url('chunks/assets/font_8ca4758a948a019773a37ed9.woff2')format("woff");}.ff6_c00214{font-family:ff6_c00214;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_c00214;src:url('chunks/assets/font_1cb4ea9dee3a9f78dedb1b34.woff2')format("woff");}.ff7_c00214{font-family:ff7_c00214;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.lsb_c00214{letter-spacing:-1.416000px;}
.ls9_c00214{letter-spacing:-1.128000px;}
.lsd_c00214{letter-spacing:-0.912000px;}
.ls8_c00214{letter-spacing:-0.720000px;}
.ls12_c00214{letter-spacing:-0.648000px;}
.ls5_c00214{letter-spacing:-0.532800px;}
.ls4_c00214{letter-spacing:-0.241800px;}
.ls3_c00214{letter-spacing:0.000000px;}
.lsf_c00214{letter-spacing:0.022800px;}
.ls1_c00214{letter-spacing:0.095040px;}
.ls6_c00214{letter-spacing:0.219000px;}
.ls7_c00214{letter-spacing:0.325200px;}
.ls10_c00214{letter-spacing:0.449400px;}
.lse_c00214{letter-spacing:0.466800px;}
.lsc_c00214{letter-spacing:0.529800px;}
.ls0_c00214{letter-spacing:0.720000px;}
.ls2_c00214{letter-spacing:0.840000px;}
.lsa_c00214{letter-spacing:1.140000px;}
.ls11_c00214{letter-spacing:2.160000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00214{word-spacing:-72.000000px;}
.ws9_c00214{word-spacing:-18.000000px;}
.ws6_c00214{word-spacing:-16.260000px;}
.ws7_c00214{word-spacing:-15.586800px;}
.ws4_c00214{word-spacing:-15.445200px;}
.ws3_c00214{word-spacing:-15.339000px;}
.ws8_c00214{word-spacing:-15.142800px;}
.ws0_c00214{word-spacing:-15.120000px;}
.ws1_c00214{word-spacing:-14.878200px;}
.ws2_c00214{word-spacing:-14.587200px;}
.ws5_c00214{word-spacing:-13.992000px;}
.wsb_c00214{word-spacing:0.000000px;}
._2_c00214{margin-left:-3.606123px;}
._7_c00214{margin-left:-2.520072px;}
._0_c00214{margin-left:-1.451399px;}
._1_c00214{width:1.390798px;}
._9_c00214{width:2.678230px;}
._4_c00214{width:3.794049px;}
._b_c00214{width:5.550123px;}
._a_c00214{width:7.165875px;}
._6_c00214{width:8.568625px;}
._8_c00214{width:9.613803px;}
._3_c00214{width:11.304000px;}
._5_c00214{width:13.003373px;}
._d_c00214{width:19.080000px;}
._c_c00214{width:20.293298px;}
._e_c00214{width:21.698476px;}
._10_c00214{width:22.896000px;}
._f_c00214{width:24.121693px;}
.fc1_c00214{color:transparent;}
.fc0_c00214{color:rgb(0,0,0);}
.fs3_c00214{font-size:38.880000px;}
.fs2_c00214{font-size:47.520000px;}
.fs1_c00214{font-size:60.480000px;}
.fs0_c00214{font-size:72.000000px;}
.y0_c00214{bottom:0.000000px;}
.y3_c00214{bottom:4.320000px;}
.y7_c00214{bottom:21.240000px;}
.y10_c00214{bottom:21.585000px;}
.yb_c00214{bottom:21.600000px;}
.y1b_c00214{bottom:21.630000px;}
.y5_c00214{bottom:25.200000px;}
.y4_c00214{bottom:32.040000px;}
.y9_c00214{bottom:34.200000px;}
.ye_c00214{bottom:34.545000px;}
.y18_c00214{bottom:34.560000px;}
.y15_c00214{bottom:34.590000px;}
.yf_c00214{bottom:47.145000px;}
.ya_c00214{bottom:47.160000px;}
.y16_c00214{bottom:47.190000px;}
.y19_c00214{bottom:47.520000px;}
.y1_c00214{bottom:57.240000px;}
.y2a_c00214{bottom:151.590000px;}
.y29_c00214{bottom:168.870000px;}
.y28_c00214{bottom:186.150000px;}
.y27_c00214{bottom:192.990000px;}
.y26_c00214{bottom:204.150000px;}
.y25_c00214{bottom:253.515000px;}
.y23_c00214{bottom:284.475000px;}
.y24_c00214{bottom:292.755000px;}
.y22_c00214{bottom:315.795000px;}
.y21_c00214{bottom:346.755000px;}
.y20_c00214{bottom:377.745000px;}
.y1f_c00214{bottom:408.705000px;}
.y1e_c00214{bottom:439.665000px;}
.y1d_c00214{bottom:480.030000px;}
.y1c_c00214{bottom:506.670000px;}
.y1a_c00214{bottom:577.950000px;}
.y17_c00214{bottom:623.340000px;}
.y14_c00214{bottom:694.620000px;}
.y13_c00214{bottom:765.945000px;}
.y12_c00214{bottom:811.305000px;}
.y11_c00214{bottom:856.710000px;}
.yd_c00214{bottom:902.070000px;}
.yc_c00214{bottom:973.365000px;}
.y8_c00214{bottom:1018.725000px;}
.y6_c00214{bottom:1090.050000px;}
.y2_c00214{bottom:1189.050000px;}
.h3_c00214{height:20.550000px;}
.h13_c00214{height:38.158594px;}
.h4_c00214{height:41.395500px;}
.h5_c00214{height:43.545000px;}
.h8_c00214{height:43.905000px;}
.hb_c00214{height:43.941000px;}
.he_c00214{height:43.950000px;}
.h12_c00214{height:46.638281px;}
.h6_c00214{height:59.357813px;}
.h9_c00214{height:60.952500px;}
.h2_c00214{height:64.546875px;}
.ha_c00214{height:69.480000px;}
.h7_c00214{height:69.510000px;}
.hc_c00214{height:69.516000px;}
.hf_c00214{height:69.825000px;}
.hd_c00214{height:69.840000px;}
.h10_c00214{height:70.664062px;}
.h11_c00214{height:1262.875500px;}
.h0_c00214{height:1262.880000px;}
.h1_c00214{height:1263.000000px;}
.w2_c00214{width:8.310000px;}
.w9_c00214{width:10.830000px;}
.w4_c00214{width:25.222500px;}
.w5_c00214{width:48.585000px;}
.w8_c00214{width:51.465000px;}
.w6_c00214{width:61.200000px;}
.w7_c00214{width:432.885000px;}
.w3_c00214{width:638.190000px;}
.wa_c00214{width:893.157000px;}
.w0_c00214{width:893.160000px;}
.w1_c00214{width:893.250000px;}
.x0_c00214{left:0.000000px;}
.x3_c00214{left:127.489500px;}
.xc_c00214{left:142.632000px;}
.x1_c00214{left:154.515000px;}
.x8_c00214{left:178.635000px;}
.x4_c00214{left:204.930000px;}
.x5_c00214{left:267.585000px;}
.xb_c00214{left:343.590000px;}
.x9_c00214{left:396.507000px;}
.xa_c00214{left:414.900000px;}
.x6_c00214{left:701.925000px;}
.x7_c00214{left:754.845000px;}
.x2_c00214{left:757.365000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.lsb_c00214{letter-spacing:-1.258667pt;}
.ls9_c00214{letter-spacing:-1.002667pt;}
.lsd_c00214{letter-spacing:-0.810667pt;}
.ls8_c00214{letter-spacing:-0.640000pt;}
.ls12_c00214{letter-spacing:-0.576000pt;}
.ls5_c00214{letter-spacing:-0.473600pt;}
.ls4_c00214{letter-spacing:-0.214933pt;}
.ls3_c00214{letter-spacing:0.000000pt;}
.lsf_c00214{letter-spacing:0.020267pt;}
.ls1_c00214{letter-spacing:0.084480pt;}
.ls6_c00214{letter-spacing:0.194667pt;}
.ls7_c00214{letter-spacing:0.289067pt;}
.ls10_c00214{letter-spacing:0.399467pt;}
.lse_c00214{letter-spacing:0.414933pt;}
.lsc_c00214{letter-spacing:0.470933pt;}
.ls0_c00214{letter-spacing:0.640000pt;}
.ls2_c00214{letter-spacing:0.746667pt;}
.lsa_c00214{letter-spacing:1.013333pt;}
.ls11_c00214{letter-spacing:1.920000pt;}
.wsa_c00214{word-spacing:-64.000000pt;}
.ws9_c00214{word-spacing:-16.000000pt;}
.ws6_c00214{word-spacing:-14.453333pt;}
.ws7_c00214{word-spacing:-13.854933pt;}
.ws4_c00214{word-spacing:-13.729067pt;}
.ws3_c00214{word-spacing:-13.634667pt;}
.ws8_c00214{word-spacing:-13.460267pt;}
.ws0_c00214{word-spacing:-13.440000pt;}
.ws1_c00214{word-spacing:-13.225067pt;}
.ws2_c00214{word-spacing:-12.966400pt;}
.ws5_c00214{word-spacing:-12.437333pt;}
.wsb_c00214{word-spacing:0.000000pt;}
._2_c00214{margin-left:-3.205443pt;}
._7_c00214{margin-left:-2.240064pt;}
._0_c00214{margin-left:-1.290132pt;}
._1_c00214{width:1.236265pt;}
._9_c00214{width:2.380649pt;}
._4_c00214{width:3.372488pt;}
._b_c00214{width:4.933443pt;}
._a_c00214{width:6.369667pt;}
._6_c00214{width:7.616556pt;}
._8_c00214{width:8.545603pt;}
._3_c00214{width:10.048000pt;}
._5_c00214{width:11.558554pt;}
._d_c00214{width:16.960000pt;}
._c_c00214{width:18.038487pt;}
._e_c00214{width:19.287534pt;}
._10_c00214{width:20.352000pt;}
._f_c00214{width:21.441505pt;}
.fs3_c00214{font-size:34.560000pt;}
.fs2_c00214{font-size:42.240000pt;}
.fs1_c00214{font-size:53.760000pt;}
.fs0_c00214{font-size:64.000000pt;}
.y0_c00214{bottom:0.000000pt;}
.y3_c00214{bottom:3.840000pt;}
.y7_c00214{bottom:18.880000pt;}
.y10_c00214{bottom:19.186667pt;}
.yb_c00214{bottom:19.200000pt;}
.y1b_c00214{bottom:19.226667pt;}
.y5_c00214{bottom:22.400000pt;}
.y4_c00214{bottom:28.480000pt;}
.y9_c00214{bottom:30.400000pt;}
.ye_c00214{bottom:30.706667pt;}
.y18_c00214{bottom:30.720000pt;}
.y15_c00214{bottom:30.746667pt;}
.yf_c00214{bottom:41.906667pt;}
.ya_c00214{bottom:41.920000pt;}
.y16_c00214{bottom:41.946667pt;}
.y19_c00214{bottom:42.240000pt;}
.y1_c00214{bottom:50.880000pt;}
.y2a_c00214{bottom:134.746667pt;}
.y29_c00214{bottom:150.106667pt;}
.y28_c00214{bottom:165.466667pt;}
.y27_c00214{bottom:171.546667pt;}
.y26_c00214{bottom:181.466667pt;}
.y25_c00214{bottom:225.346667pt;}
.y23_c00214{bottom:252.866667pt;}
.y24_c00214{bottom:260.226667pt;}
.y22_c00214{bottom:280.706667pt;}
.y21_c00214{bottom:308.226667pt;}
.y20_c00214{bottom:335.773333pt;}
.y1f_c00214{bottom:363.293333pt;}
.y1e_c00214{bottom:390.813333pt;}
.y1d_c00214{bottom:426.693333pt;}
.y1c_c00214{bottom:450.373333pt;}
.y1a_c00214{bottom:513.733333pt;}
.y17_c00214{bottom:554.080000pt;}
.y14_c00214{bottom:617.440000pt;}
.y13_c00214{bottom:680.840000pt;}
.y12_c00214{bottom:721.160000pt;}
.y11_c00214{bottom:761.520000pt;}
.yd_c00214{bottom:801.840000pt;}
.yc_c00214{bottom:865.213333pt;}
.y8_c00214{bottom:905.533333pt;}
.y6_c00214{bottom:968.933333pt;}
.y2_c00214{bottom:1056.933333pt;}
.h3_c00214{height:18.266667pt;}
.h13_c00214{height:33.918750pt;}
.h4_c00214{height:36.796000pt;}
.h5_c00214{height:38.706667pt;}
.h8_c00214{height:39.026667pt;}
.hb_c00214{height:39.058667pt;}
.he_c00214{height:39.066667pt;}
.h12_c00214{height:41.456250pt;}
.h6_c00214{height:52.762500pt;}
.h9_c00214{height:54.180000pt;}
.h2_c00214{height:57.375000pt;}
.ha_c00214{height:61.760000pt;}
.h7_c00214{height:61.786667pt;}
.hc_c00214{height:61.792000pt;}
.hf_c00214{height:62.066667pt;}
.hd_c00214{height:62.080000pt;}
.h10_c00214{height:62.812500pt;}
.h11_c00214{height:1122.556000pt;}
.h0_c00214{height:1122.560000pt;}
.h1_c00214{height:1122.666667pt;}
.w2_c00214{width:7.386667pt;}
.w9_c00214{width:9.626667pt;}
.w4_c00214{width:22.420000pt;}
.w5_c00214{width:43.186667pt;}
.w8_c00214{width:45.746667pt;}
.w6_c00214{width:54.400000pt;}
.w7_c00214{width:384.786667pt;}
.w3_c00214{width:567.280000pt;}
.wa_c00214{width:793.917333pt;}
.w0_c00214{width:793.920000pt;}
.w1_c00214{width:794.000000pt;}
.x0_c00214{left:0.000000pt;}
.x3_c00214{left:113.324000pt;}
.xc_c00214{left:126.784000pt;}
.x1_c00214{left:137.346667pt;}
.x8_c00214{left:158.786667pt;}
.x4_c00214{left:182.160000pt;}
.x5_c00214{left:237.853333pt;}
.xb_c00214{left:305.413333pt;}
.x9_c00214{left:352.450667pt;}
.xa_c00214{left:368.800000pt;}
.x6_c00214{left:623.933333pt;}
.x7_c00214{left:670.973333pt;}
.x2_c00214{left:673.213333pt;}
}





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

.ir_c00215:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00215;src:url('chunks/assets/font_f3e3061a2de3a0d479951f0c.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_d20285a25898bed45a1ee25a.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_56eb6c95acb6fff009a0e2e8.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;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_c00215;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00215;src:url('chunks/assets/font_67c6c611ba4ff60d09e22a28.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00215;src:url('chunks/assets/font_2e5902a9723bd89bd140e490.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:1.104004;font-style:normal;font-weight: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_c00215;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00215{font-family:ff7_c00215;line-height:1.311035;font-style:normal;font-weight: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_c00215;src:url('chunks/assets/font_4e1830f9b5779e4a931dd4a4.woff2')format("woff");}.ff8_c00215{font-family:ff8_c00215;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls6_c00215{letter-spacing:-1.296000px;}
.lsb_c00215{letter-spacing:-0.912000px;}
.ls5_c00215{letter-spacing:-0.648000px;}
.lsa_c00215{letter-spacing:-0.532800px;}
.lsc_c00215{letter-spacing:-0.241800px;}
.ls4_c00215{letter-spacing:0.000000px;}
.ls9_c00215{letter-spacing:0.022800px;}
.ls7_c00215{letter-spacing:0.060600px;}
.ls8_c00215{letter-spacing:0.397200px;}
.ls0_c00215{letter-spacing:0.504000px;}
.ls2_c00215{letter-spacing:0.720000px;}
.ls1_c00215{letter-spacing:1.560000px;}
.ls3_c00215{letter-spacing:2.160000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:-72.000000px;}
.ws0_c00215{word-spacing:-18.000000px;}
.ws3_c00215{word-spacing:-15.180600px;}
.ws2_c00215{word-spacing:-15.120000px;}
.ws5_c00215{word-spacing:-14.878200px;}
.ws4_c00215{word-spacing:-14.587200px;}
.ws6_c00215{word-spacing:0.000000px;}
._4_c00215{margin-left:-2.736000px;}
._0_c00215{margin-left:-1.224000px;}
._2_c00215{width:1.067976px;}
._3_c00215{width:2.316024px;}
._12_c00215{width:3.360384px;}
._13_c00215{width:4.595400px;}
._5_c00215{width:5.928048px;}
._7_c00215{width:7.079904px;}
._6_c00215{width:8.112024px;}
._11_c00215{width:9.995832px;}
._10_c00215{width:11.616048px;}
._1_c00215{width:13.320000px;}
._8_c00215{width:14.544000px;}
._9_c00215{width:15.576048px;}
._a_c00215{width:16.740072px;}
._e_c00215{width:19.152000px;}
._f_c00215{width:21.012048px;}
._d_c00215{width:24.899976px;}
._b_c00215{width:25.932024px;}
._c_c00215{width:27.276000px;}
.fc1_c00215{color:transparent;}
.fc0_c00215{color:rgb(0,0,0);}
.fs3_c00215{font-size:38.880000px;}
.fs1_c00215{font-size:47.520000px;}
.fs2_c00215{font-size:60.480000px;}
.fs0_c00215{font-size:72.000000px;}
.y0_c00215{bottom:0.000000px;}
.y3_c00215{bottom:4.320000px;}
.y22_c00215{bottom:20.895000px;}
.y1e_c00215{bottom:21.240000px;}
.y26_c00215{bottom:21.585000px;}
.y19_c00215{bottom:21.600000px;}
.y5_c00215{bottom:25.200000px;}
.y4_c00215{bottom:32.040000px;}
.y1c_c00215{bottom:34.200000px;}
.y20_c00215{bottom:34.215000px;}
.y24_c00215{bottom:34.545000px;}
.y25_c00215{bottom:47.145000px;}
.y1d_c00215{bottom:47.160000px;}
.y21_c00215{bottom:47.175000px;}
.y1_c00215{bottom:57.240000px;}
.y2b_c00215{bottom:151.590000px;}
.y2a_c00215{bottom:168.870000px;}
.y29_c00215{bottom:175.710000px;}
.y28_c00215{bottom:186.870000px;}
.y27_c00215{bottom:240.195000px;}
.y23_c00215{bottom:266.850000px;}
.y1f_c00215{bottom:338.130000px;}
.y1b_c00215{bottom:409.425000px;}
.y1a_c00215{bottom:480.390000px;}
.y18_c00215{bottom:525.750000px;}
.y17_c00215{bottom:595.230000px;}
.y16_c00215{bottom:635.220000px;}
.y15_c00215{bottom:675.180000px;}
.y14_c00215{bottom:706.140000px;}
.y13_c00215{bottom:737.490000px;}
.y12_c00215{bottom:768.450000px;}
.y11_c00215{bottom:799.410000px;}
.y10_c00215{bottom:830.370000px;}
.yf_c00215{bottom:861.735000px;}
.ye_c00215{bottom:901.695000px;}
.yd_c00215{bottom:932.655000px;}
.yc_c00215{bottom:963.645000px;}
.yb_c00215{bottom:994.965000px;}
.y9_c00215{bottom:1025.925000px;}
.ya_c00215{bottom:1034.205000px;}
.y8_c00215{bottom:1056.885000px;}
.y7_c00215{bottom:1087.890000px;}
.y6_c00215{bottom:1119.210000px;}
.y2_c00215{bottom:1189.050000px;}
.h3_c00215{height:20.550000px;}
.he_c00215{height:34.855313px;}
.h4_c00215{height:41.395500px;}
.h8_c00215{height:43.905000px;}
.h7_c00215{height:46.638281px;}
.h9_c00215{height:59.357813px;}
.hc_c00215{height:60.952500px;}
.h2_c00215{height:64.546875px;}
.hd_c00215{height:69.465000px;}
.hb_c00215{height:69.480000px;}
.ha_c00215{height:69.510000px;}
.h5_c00215{height:70.664062px;}
.h6_c00215{height:1262.875500px;}
.h0_c00215{height:1262.880000px;}
.h1_c00215{height:1263.000000px;}
.w2_c00215{width:8.310000px;}
.w5_c00215{width:48.622500px;}
.w6_c00215{width:61.920000px;}
.w7_c00215{width:524.010000px;}
.w3_c00215{width:638.190000px;}
.w4_c00215{width:893.157000px;}
.w0_c00215{width:893.160000px;}
.w1_c00215{width:893.250000px;}
.x0_c00215{left:0.000000px;}
.x3_c00215{left:127.489500px;}
.x9_c00215{left:142.632000px;}
.x1_c00215{left:154.515000px;}
.x6_c00215{left:178.635000px;}
.x7_c00215{left:241.665000px;}
.x8_c00215{left:343.590000px;}
.x4_c00215{left:536.967000px;}
.x5_c00215{left:555.330000px;}
.x2_c00215{left:757.365000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls6_c00215{letter-spacing:-1.152000pt;}
.lsb_c00215{letter-spacing:-0.810667pt;}
.ls5_c00215{letter-spacing:-0.576000pt;}
.lsa_c00215{letter-spacing:-0.473600pt;}
.lsc_c00215{letter-spacing:-0.214933pt;}
.ls4_c00215{letter-spacing:0.000000pt;}
.ls9_c00215{letter-spacing:0.020267pt;}
.ls7_c00215{letter-spacing:0.053867pt;}
.ls8_c00215{letter-spacing:0.353067pt;}
.ls0_c00215{letter-spacing:0.448000pt;}
.ls2_c00215{letter-spacing:0.640000pt;}
.ls1_c00215{letter-spacing:1.386667pt;}
.ls3_c00215{letter-spacing:1.920000pt;}
.ws1_c00215{word-spacing:-64.000000pt;}
.ws0_c00215{word-spacing:-16.000000pt;}
.ws3_c00215{word-spacing:-13.493867pt;}
.ws2_c00215{word-spacing:-13.440000pt;}
.ws5_c00215{word-spacing:-13.225067pt;}
.ws4_c00215{word-spacing:-12.966400pt;}
.ws6_c00215{word-spacing:0.000000pt;}
._4_c00215{margin-left:-2.432000pt;}
._0_c00215{margin-left:-1.088000pt;}
._2_c00215{width:0.949312pt;}
._3_c00215{width:2.058688pt;}
._12_c00215{width:2.987008pt;}
._13_c00215{width:4.084800pt;}
._5_c00215{width:5.269376pt;}
._7_c00215{width:6.293248pt;}
._6_c00215{width:7.210688pt;}
._11_c00215{width:8.885184pt;}
._10_c00215{width:10.325376pt;}
._1_c00215{width:11.840000pt;}
._8_c00215{width:12.928000pt;}
._9_c00215{width:13.845376pt;}
._a_c00215{width:14.880064pt;}
._e_c00215{width:17.024000pt;}
._f_c00215{width:18.677376pt;}
._d_c00215{width:22.133312pt;}
._b_c00215{width:23.050688pt;}
._c_c00215{width:24.245333pt;}
.fs3_c00215{font-size:34.560000pt;}
.fs1_c00215{font-size:42.240000pt;}
.fs2_c00215{font-size:53.760000pt;}
.fs0_c00215{font-size:64.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y3_c00215{bottom:3.840000pt;}
.y22_c00215{bottom:18.573333pt;}
.y1e_c00215{bottom:18.880000pt;}
.y26_c00215{bottom:19.186667pt;}
.y19_c00215{bottom:19.200000pt;}
.y5_c00215{bottom:22.400000pt;}
.y4_c00215{bottom:28.480000pt;}
.y1c_c00215{bottom:30.400000pt;}
.y20_c00215{bottom:30.413333pt;}
.y24_c00215{bottom:30.706667pt;}
.y25_c00215{bottom:41.906667pt;}
.y1d_c00215{bottom:41.920000pt;}
.y21_c00215{bottom:41.933333pt;}
.y1_c00215{bottom:50.880000pt;}
.y2b_c00215{bottom:134.746667pt;}
.y2a_c00215{bottom:150.106667pt;}
.y29_c00215{bottom:156.186667pt;}
.y28_c00215{bottom:166.106667pt;}
.y27_c00215{bottom:213.506667pt;}
.y23_c00215{bottom:237.200000pt;}
.y1f_c00215{bottom:300.560000pt;}
.y1b_c00215{bottom:363.933333pt;}
.y1a_c00215{bottom:427.013333pt;}
.y18_c00215{bottom:467.333333pt;}
.y17_c00215{bottom:529.093333pt;}
.y16_c00215{bottom:564.640000pt;}
.y15_c00215{bottom:600.160000pt;}
.y14_c00215{bottom:627.680000pt;}
.y13_c00215{bottom:655.546667pt;}
.y12_c00215{bottom:683.066667pt;}
.y11_c00215{bottom:710.586667pt;}
.y10_c00215{bottom:738.106667pt;}
.yf_c00215{bottom:765.986667pt;}
.ye_c00215{bottom:801.506667pt;}
.yd_c00215{bottom:829.026667pt;}
.yc_c00215{bottom:856.573333pt;}
.yb_c00215{bottom:884.413333pt;}
.y9_c00215{bottom:911.933333pt;}
.ya_c00215{bottom:919.293333pt;}
.y8_c00215{bottom:939.453333pt;}
.y7_c00215{bottom:967.013333pt;}
.y6_c00215{bottom:994.853333pt;}
.y2_c00215{bottom:1056.933333pt;}
.h3_c00215{height:18.266667pt;}
.he_c00215{height:30.982500pt;}
.h4_c00215{height:36.796000pt;}
.h8_c00215{height:39.026667pt;}
.h7_c00215{height:41.456250pt;}
.h9_c00215{height:52.762500pt;}
.hc_c00215{height:54.180000pt;}
.h2_c00215{height:57.375000pt;}
.hd_c00215{height:61.746667pt;}
.hb_c00215{height:61.760000pt;}
.ha_c00215{height:61.786667pt;}
.h5_c00215{height:62.812500pt;}
.h6_c00215{height:1122.556000pt;}
.h0_c00215{height:1122.560000pt;}
.h1_c00215{height:1122.666667pt;}
.w2_c00215{width:7.386667pt;}
.w5_c00215{width:43.220000pt;}
.w6_c00215{width:55.040000pt;}
.w7_c00215{width:465.786667pt;}
.w3_c00215{width:567.280000pt;}
.w4_c00215{width:793.917333pt;}
.w0_c00215{width:793.920000pt;}
.w1_c00215{width:794.000000pt;}
.x0_c00215{left:0.000000pt;}
.x3_c00215{left:113.324000pt;}
.x9_c00215{left:126.784000pt;}
.x1_c00215{left:137.346667pt;}
.x6_c00215{left:158.786667pt;}
.x7_c00215{left:214.813333pt;}
.x8_c00215{left:305.413333pt;}
.x4_c00215{left:477.304000pt;}
.x5_c00215{left:493.626667pt;}
.x2_c00215{left:673.213333pt;}
}





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

.ir_c00216:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00216;src:url('chunks/assets/font_3533d5bd3c8e0079db5600fd.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_f38e30bc590d4a02a149c63d.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_9998b2b42cf441deea4f1bcb.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_860aa38503907b34195a0c73.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;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_c00216;src:url('chunks/assets/font_9da753c69157ce7e9aa19a96.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls6_c00216{letter-spacing:-0.288000px;}
.ls5_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:0.504000px;}
.ls3_c00216{letter-spacing:0.516000px;}
.ls4_c00216{letter-spacing:0.720000px;}
.ls2_c00216{letter-spacing:1.440000px;}
.ls1_c00216{letter-spacing:9.360000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:-18.000000px;}
.ws1_c00216{word-spacing:-17.712000px;}
.ws2_c00216{word-spacing:0.000000px;}
._c_c00216{margin-left:-3.240000px;}
._0_c00216{margin-left:-1.872000px;}
._1_c00216{width:1.368000px;}
._3_c00216{width:2.880000px;}
._f_c00216{width:4.752000px;}
._b_c00216{width:6.120000px;}
._8_c00216{width:7.128000px;}
._9_c00216{width:8.136000px;}
._a_c00216{width:9.144000px;}
._2_c00216{width:10.728000px;}
._4_c00216{width:11.952000px;}
._10_c00216{width:13.872000px;}
._12_c00216{width:15.048000px;}
._13_c00216{width:16.248000px;}
._11_c00216{width:19.368000px;}
._5_c00216{width:20.376000px;}
._6_c00216{width:21.600000px;}
._7_c00216{width:23.112000px;}
._14_c00216{width:28.584000px;}
._d_c00216{width:30.540000px;}
._e_c00216{width:31.944000px;}
.fc0_c00216{color:rgb(0,0,0);}
.fs2_c00216{font-size:38.880000px;}
.fs1_c00216{font-size:47.520000px;}
.fs3_c00216{font-size:60.480000px;}
.fs0_c00216{font-size:72.000000px;}
.y0_c00216{bottom:0.000000px;}
.y3_c00216{bottom:4.320000px;}
.y5_c00216{bottom:25.200000px;}
.y4_c00216{bottom:32.040000px;}
.y1_c00216{bottom:57.240000px;}
.y2d_c00216{bottom:151.590000px;}
.y2c_c00216{bottom:168.870000px;}
.y2b_c00216{bottom:186.150000px;}
.y2a_c00216{bottom:203.430000px;}
.y29_c00216{bottom:220.710000px;}
.y28_c00216{bottom:227.550000px;}
.y27_c00216{bottom:238.035000px;}
.y26_c00216{bottom:255.315000px;}
.y25_c00216{bottom:272.595000px;}
.y24_c00216{bottom:289.875000px;}
.y23_c00216{bottom:307.155000px;}
.y22_c00216{bottom:313.995000px;}
.y21_c00216{bottom:324.795000px;}
.y20_c00216{bottom:355.785000px;}
.y1f_c00216{bottom:386.745000px;}
.y1e_c00216{bottom:417.705000px;}
.y1d_c00216{bottom:449.025000px;}
.y1b_c00216{bottom:489.030000px;}
.y1c_c00216{bottom:497.310000px;}
.y1a_c00216{bottom:519.990000px;}
.y19_c00216{bottom:550.950000px;}
.y18_c00216{bottom:581.910000px;}
.y17_c00216{bottom:613.260000px;}
.y16_c00216{bottom:644.220000px;}
.y15_c00216{bottom:675.180000px;}
.y14_c00216{bottom:706.140000px;}
.y13_c00216{bottom:737.490000px;}
.y11_c00216{bottom:768.450000px;}
.y12_c00216{bottom:776.730000px;}
.y10_c00216{bottom:799.410000px;}
.yf_c00216{bottom:830.370000px;}
.ye_c00216{bottom:861.735000px;}
.yd_c00216{bottom:892.695000px;}
.yc_c00216{bottom:923.655000px;}
.yb_c00216{bottom:963.645000px;}
.ya_c00216{bottom:994.965000px;}
.y9_c00216{bottom:1025.925000px;}
.y8_c00216{bottom:1056.885000px;}
.y7_c00216{bottom:1087.890000px;}
.y6_c00216{bottom:1119.210000px;}
.y2_c00216{bottom:1189.050000px;}
.h3_c00216{height:20.550000px;}
.h8_c00216{height:38.158594px;}
.h4_c00216{height:41.395500px;}
.h7_c00216{height:46.638281px;}
.h9_c00216{height:59.357813px;}
.h2_c00216{height:64.546875px;}
.h5_c00216{height:70.664062px;}
.h6_c00216{height:1262.875500px;}
.h0_c00216{height:1262.880000px;}
.h1_c00216{height:1263.000000px;}
.w2_c00216{width:8.310000px;}
.w3_c00216{width:638.190000px;}
.w4_c00216{width:893.157000px;}
.w0_c00216{width:893.160000px;}
.w1_c00216{width:893.250000px;}
.x0_c00216{left:0.000000px;}
.x3_c00216{left:127.489500px;}
.xa_c00216{left:142.632000px;}
.x1_c00216{left:154.515000px;}
.x4_c00216{left:178.635000px;}
.x7_c00216{left:296.022000px;}
.x8_c00216{left:314.430000px;}
.x9_c00216{left:343.590000px;}
.x5_c00216{left:616.932000px;}
.x6_c00216{left:635.295000px;}
.x2_c00216{left:757.365000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls6_c00216{letter-spacing:-0.256000pt;}
.ls5_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.448000pt;}
.ls3_c00216{letter-spacing:0.458667pt;}
.ls4_c00216{letter-spacing:0.640000pt;}
.ls2_c00216{letter-spacing:1.280000pt;}
.ls1_c00216{letter-spacing:8.320000pt;}
.ws0_c00216{word-spacing:-16.000000pt;}
.ws1_c00216{word-spacing:-15.744000pt;}
.ws2_c00216{word-spacing:0.000000pt;}
._c_c00216{margin-left:-2.880000pt;}
._0_c00216{margin-left:-1.664000pt;}
._1_c00216{width:1.216000pt;}
._3_c00216{width:2.560000pt;}
._f_c00216{width:4.224000pt;}
._b_c00216{width:5.440000pt;}
._8_c00216{width:6.336000pt;}
._9_c00216{width:7.232000pt;}
._a_c00216{width:8.128000pt;}
._2_c00216{width:9.536000pt;}
._4_c00216{width:10.624000pt;}
._10_c00216{width:12.330667pt;}
._12_c00216{width:13.376000pt;}
._13_c00216{width:14.442667pt;}
._11_c00216{width:17.216000pt;}
._5_c00216{width:18.112000pt;}
._6_c00216{width:19.200000pt;}
._7_c00216{width:20.544000pt;}
._14_c00216{width:25.408000pt;}
._d_c00216{width:27.146667pt;}
._e_c00216{width:28.394667pt;}
.fs2_c00216{font-size:34.560000pt;}
.fs1_c00216{font-size:42.240000pt;}
.fs3_c00216{font-size:53.760000pt;}
.fs0_c00216{font-size:64.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y3_c00216{bottom:3.840000pt;}
.y5_c00216{bottom:22.400000pt;}
.y4_c00216{bottom:28.480000pt;}
.y1_c00216{bottom:50.880000pt;}
.y2d_c00216{bottom:134.746667pt;}
.y2c_c00216{bottom:150.106667pt;}
.y2b_c00216{bottom:165.466667pt;}
.y2a_c00216{bottom:180.826667pt;}
.y29_c00216{bottom:196.186667pt;}
.y28_c00216{bottom:202.266667pt;}
.y27_c00216{bottom:211.586667pt;}
.y26_c00216{bottom:226.946667pt;}
.y25_c00216{bottom:242.306667pt;}
.y24_c00216{bottom:257.666667pt;}
.y23_c00216{bottom:273.026667pt;}
.y22_c00216{bottom:279.106667pt;}
.y21_c00216{bottom:288.706667pt;}
.y20_c00216{bottom:316.253333pt;}
.y1f_c00216{bottom:343.773333pt;}
.y1e_c00216{bottom:371.293333pt;}
.y1d_c00216{bottom:399.133333pt;}
.y1b_c00216{bottom:434.693333pt;}
.y1c_c00216{bottom:442.053333pt;}
.y1a_c00216{bottom:462.213333pt;}
.y19_c00216{bottom:489.733333pt;}
.y18_c00216{bottom:517.253333pt;}
.y17_c00216{bottom:545.120000pt;}
.y16_c00216{bottom:572.640000pt;}
.y15_c00216{bottom:600.160000pt;}
.y14_c00216{bottom:627.680000pt;}
.y13_c00216{bottom:655.546667pt;}
.y11_c00216{bottom:683.066667pt;}
.y12_c00216{bottom:690.426667pt;}
.y10_c00216{bottom:710.586667pt;}
.yf_c00216{bottom:738.106667pt;}
.ye_c00216{bottom:765.986667pt;}
.yd_c00216{bottom:793.506667pt;}
.yc_c00216{bottom:821.026667pt;}
.yb_c00216{bottom:856.573333pt;}
.ya_c00216{bottom:884.413333pt;}
.y9_c00216{bottom:911.933333pt;}
.y8_c00216{bottom:939.453333pt;}
.y7_c00216{bottom:967.013333pt;}
.y6_c00216{bottom:994.853333pt;}
.y2_c00216{bottom:1056.933333pt;}
.h3_c00216{height:18.266667pt;}
.h8_c00216{height:33.918750pt;}
.h4_c00216{height:36.796000pt;}
.h7_c00216{height:41.456250pt;}
.h9_c00216{height:52.762500pt;}
.h2_c00216{height:57.375000pt;}
.h5_c00216{height:62.812500pt;}
.h6_c00216{height:1122.556000pt;}
.h0_c00216{height:1122.560000pt;}
.h1_c00216{height:1122.666667pt;}
.w2_c00216{width:7.386667pt;}
.w3_c00216{width:567.280000pt;}
.w4_c00216{width:793.917333pt;}
.w0_c00216{width:793.920000pt;}
.w1_c00216{width:794.000000pt;}
.x0_c00216{left:0.000000pt;}
.x3_c00216{left:113.324000pt;}
.xa_c00216{left:126.784000pt;}
.x1_c00216{left:137.346667pt;}
.x4_c00216{left:158.786667pt;}
.x7_c00216{left:263.130667pt;}
.x8_c00216{left:279.493333pt;}
.x9_c00216{left:305.413333pt;}
.x5_c00216{left:548.384000pt;}
.x6_c00216{left:564.706667pt;}
.x2_c00216{left:673.213333pt;}
}





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

.ir_c00217:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00217;src:url('chunks/assets/font_2854c15ee5692f7db5582117.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_cac878ce63d308ccfed772c1.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_137f510638f012e94e75a20f.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;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_c00217;src:url('chunks/assets/font_8503aff42478db5e1963a8b7.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_5db89d57fbac50640d3d9ece.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00217;src:url('chunks/assets/font_fadd31db88ed957c594ccc75.woff2')format("woff");}.ff6_c00217{font-family:ff6_c00217;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls6_c00217{letter-spacing:-1.440000px;}
.ls5_c00217{letter-spacing:-0.648000px;}
.ls4_c00217{letter-spacing:-0.288000px;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls2_c00217{letter-spacing:0.720000px;}
.ls0_c00217{letter-spacing:1.440000px;}
.ls1_c00217{letter-spacing:28.080000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00217{word-spacing:-72.000000px;}
.ws0_c00217{word-spacing:-18.000000px;}
.ws2_c00217{word-spacing:-17.352000px;}
.ws4_c00217{word-spacing:-15.120000px;}
.ws3_c00217{word-spacing:-13.680000px;}
.ws5_c00217{word-spacing:0.000000px;}
._3_c00217{margin-left:-3.240000px;}
._0_c00217{margin-left:-2.232000px;}
._4_c00217{margin-left:-1.224000px;}
._1_c00217{width:1.512000px;}
._2_c00217{width:3.096000px;}
._6_c00217{width:4.320000px;}
._7_c00217{width:5.544000px;}
._8_c00217{width:6.840000px;}
._9_c00217{width:8.352000px;}
._b_c00217{width:9.936000px;}
._a_c00217{width:11.232000px;}
._c_c00217{width:12.384000px;}
._12_c00217{width:14.092174px;}
._5_c00217{width:19.500000px;}
._10_c00217{width:21.336024px;}
._e_c00217{width:25.632000px;}
._d_c00217{width:27.000000px;}
._f_c00217{width:28.224024px;}
._11_c00217{width:30.143904px;}
.fc1_c00217{color:rgb(255,0,0);}
.fc0_c00217{color:rgb(0,0,0);}
.fs2_c00217{font-size:38.880000px;}
.fs1_c00217{font-size:47.520000px;}
.fs3_c00217{font-size:60.480000px;}
.fs0_c00217{font-size:72.000000px;}
.y0_c00217{bottom:0.000000px;}
.y3_c00217{bottom:4.320000px;}
.y5_c00217{bottom:25.200000px;}
.y4_c00217{bottom:32.040000px;}
.y1_c00217{bottom:57.240000px;}
.y2e_c00217{bottom:151.590000px;}
.y2d_c00217{bottom:168.870000px;}
.y2c_c00217{bottom:186.150000px;}
.y2b_c00217{bottom:203.430000px;}
.y2a_c00217{bottom:210.270000px;}
.y29_c00217{bottom:220.710000px;}
.y28_c00217{bottom:238.035000px;}
.y27_c00217{bottom:255.315000px;}
.y26_c00217{bottom:272.595000px;}
.y25_c00217{bottom:289.875000px;}
.y24_c00217{bottom:307.155000px;}
.y23_c00217{bottom:324.435000px;}
.y22_c00217{bottom:341.355000px;}
.y21_c00217{bottom:358.665000px;}
.y20_c00217{bottom:375.945000px;}
.y1f_c00217{bottom:382.785000px;}
.y1e_c00217{bottom:393.945000px;}
.y1d_c00217{bottom:431.025000px;}
.y1c_c00217{bottom:470.985000px;}
.y1b_c00217{bottom:501.990000px;}
.y1a_c00217{bottom:532.950000px;}
.y19_c00217{bottom:563.910000px;}
.y18_c00217{bottom:604.260000px;}
.y16_c00217{bottom:644.220000px;}
.y17_c00217{bottom:652.500000px;}
.y15_c00217{bottom:675.180000px;}
.y14_c00217{bottom:706.140000px;}
.y13_c00217{bottom:737.490000px;}
.y12_c00217{bottom:768.450000px;}
.y11_c00217{bottom:799.410000px;}
.y10_c00217{bottom:830.370000px;}
.yf_c00217{bottom:861.735000px;}
.ye_c00217{bottom:892.695000px;}
.yd_c00217{bottom:932.655000px;}
.yc_c00217{bottom:963.645000px;}
.yb_c00217{bottom:994.965000px;}
.ya_c00217{bottom:1025.925000px;}
.y9_c00217{bottom:1056.885000px;}
.y7_c00217{bottom:1087.890000px;}
.y8_c00217{bottom:1096.170000px;}
.y6_c00217{bottom:1119.210000px;}
.y2_c00217{bottom:1189.050000px;}
.h3_c00217{height:20.550000px;}
.hb_c00217{height:34.855313px;}
.h9_c00217{height:38.158594px;}
.h4_c00217{height:41.395500px;}
.h7_c00217{height:46.638281px;}
.hc_c00217{height:54.219375px;}
.ha_c00217{height:59.357813px;}
.h2_c00217{height:64.546875px;}
.h8_c00217{height:70.628906px;}
.h5_c00217{height:70.664062px;}
.h6_c00217{height:1262.875500px;}
.h0_c00217{height:1262.880000px;}
.h1_c00217{height:1263.000000px;}
.w2_c00217{width:8.310000px;}
.w3_c00217{width:638.190000px;}
.w4_c00217{width:893.157000px;}
.w0_c00217{width:893.160000px;}
.w1_c00217{width:893.250000px;}
.x0_c00217{left:0.000000px;}
.x3_c00217{left:127.489500px;}
.xb_c00217{left:142.632000px;}
.x1_c00217{left:154.515000px;}
.x7_c00217{left:171.432000px;}
.x6_c00217{left:178.635000px;}
.x9_c00217{left:180.795000px;}
.x8_c00217{left:189.795000px;}
.xa_c00217{left:343.590000px;}
.x4_c00217{left:363.747000px;}
.x5_c00217{left:382.110000px;}
.x2_c00217{left:757.365000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls6_c00217{letter-spacing:-1.280000pt;}
.ls5_c00217{letter-spacing:-0.576000pt;}
.ls4_c00217{letter-spacing:-0.256000pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls2_c00217{letter-spacing:0.640000pt;}
.ls0_c00217{letter-spacing:1.280000pt;}
.ls1_c00217{letter-spacing:24.960000pt;}
.ws1_c00217{word-spacing:-64.000000pt;}
.ws0_c00217{word-spacing:-16.000000pt;}
.ws2_c00217{word-spacing:-15.424000pt;}
.ws4_c00217{word-spacing:-13.440000pt;}
.ws3_c00217{word-spacing:-12.160000pt;}
.ws5_c00217{word-spacing:0.000000pt;}
._3_c00217{margin-left:-2.880000pt;}
._0_c00217{margin-left:-1.984000pt;}
._4_c00217{margin-left:-1.088000pt;}
._1_c00217{width:1.344000pt;}
._2_c00217{width:2.752000pt;}
._6_c00217{width:3.840000pt;}
._7_c00217{width:4.928000pt;}
._8_c00217{width:6.080000pt;}
._9_c00217{width:7.424000pt;}
._b_c00217{width:8.832000pt;}
._a_c00217{width:9.984000pt;}
._c_c00217{width:11.008000pt;}
._12_c00217{width:12.526377pt;}
._5_c00217{width:17.333333pt;}
._10_c00217{width:18.965355pt;}
._e_c00217{width:22.784000pt;}
._d_c00217{width:24.000000pt;}
._f_c00217{width:25.088021pt;}
._11_c00217{width:26.794581pt;}
.fs2_c00217{font-size:34.560000pt;}
.fs1_c00217{font-size:42.240000pt;}
.fs3_c00217{font-size:53.760000pt;}
.fs0_c00217{font-size:64.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y3_c00217{bottom:3.840000pt;}
.y5_c00217{bottom:22.400000pt;}
.y4_c00217{bottom:28.480000pt;}
.y1_c00217{bottom:50.880000pt;}
.y2e_c00217{bottom:134.746667pt;}
.y2d_c00217{bottom:150.106667pt;}
.y2c_c00217{bottom:165.466667pt;}
.y2b_c00217{bottom:180.826667pt;}
.y2a_c00217{bottom:186.906667pt;}
.y29_c00217{bottom:196.186667pt;}
.y28_c00217{bottom:211.586667pt;}
.y27_c00217{bottom:226.946667pt;}
.y26_c00217{bottom:242.306667pt;}
.y25_c00217{bottom:257.666667pt;}
.y24_c00217{bottom:273.026667pt;}
.y23_c00217{bottom:288.386667pt;}
.y22_c00217{bottom:303.426667pt;}
.y21_c00217{bottom:318.813333pt;}
.y20_c00217{bottom:334.173333pt;}
.y1f_c00217{bottom:340.253333pt;}
.y1e_c00217{bottom:350.173333pt;}
.y1d_c00217{bottom:383.133333pt;}
.y1c_c00217{bottom:418.653333pt;}
.y1b_c00217{bottom:446.213333pt;}
.y1a_c00217{bottom:473.733333pt;}
.y19_c00217{bottom:501.253333pt;}
.y18_c00217{bottom:537.120000pt;}
.y16_c00217{bottom:572.640000pt;}
.y17_c00217{bottom:580.000000pt;}
.y15_c00217{bottom:600.160000pt;}
.y14_c00217{bottom:627.680000pt;}
.y13_c00217{bottom:655.546667pt;}
.y12_c00217{bottom:683.066667pt;}
.y11_c00217{bottom:710.586667pt;}
.y10_c00217{bottom:738.106667pt;}
.yf_c00217{bottom:765.986667pt;}
.ye_c00217{bottom:793.506667pt;}
.yd_c00217{bottom:829.026667pt;}
.yc_c00217{bottom:856.573333pt;}
.yb_c00217{bottom:884.413333pt;}
.ya_c00217{bottom:911.933333pt;}
.y9_c00217{bottom:939.453333pt;}
.y7_c00217{bottom:967.013333pt;}
.y8_c00217{bottom:974.373333pt;}
.y6_c00217{bottom:994.853333pt;}
.y2_c00217{bottom:1056.933333pt;}
.h3_c00217{height:18.266667pt;}
.hb_c00217{height:30.982500pt;}
.h9_c00217{height:33.918750pt;}
.h4_c00217{height:36.796000pt;}
.h7_c00217{height:41.456250pt;}
.hc_c00217{height:48.195000pt;}
.ha_c00217{height:52.762500pt;}
.h2_c00217{height:57.375000pt;}
.h8_c00217{height:62.781250pt;}
.h5_c00217{height:62.812500pt;}
.h6_c00217{height:1122.556000pt;}
.h0_c00217{height:1122.560000pt;}
.h1_c00217{height:1122.666667pt;}
.w2_c00217{width:7.386667pt;}
.w3_c00217{width:567.280000pt;}
.w4_c00217{width:793.917333pt;}
.w0_c00217{width:793.920000pt;}
.w1_c00217{width:794.000000pt;}
.x0_c00217{left:0.000000pt;}
.x3_c00217{left:113.324000pt;}
.xb_c00217{left:126.784000pt;}
.x1_c00217{left:137.346667pt;}
.x7_c00217{left:152.384000pt;}
.x6_c00217{left:158.786667pt;}
.x9_c00217{left:160.706667pt;}
.x8_c00217{left:168.706667pt;}
.xa_c00217{left:305.413333pt;}
.x4_c00217{left:323.330667pt;}
.x5_c00217{left:339.653333pt;}
.x2_c00217{left:673.213333pt;}
}





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

.ir_c00218:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00218;src:url('chunks/assets/font_455fdb239e80d477fb6cf471.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_b457bbb84d6c03ee576ae830.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_7871909637fa97bd1b97abbf.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_bc42649ce000ce849f0e4d67.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00218;src:url('chunks/assets/font_8bfd6f206f0aa1f74ccf2a4e.woff2')format("woff");}.ff6_c00218{font-family:ff6_c00218;line-height:1.117188;font-style:normal;font-weight: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_c00218;src:url('chunks/assets/font_c1dc2e0934b3f86523151143.woff2')format("woff");}.ff7_c00218{font-family:ff7_c00218;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_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.lsf_c00218{letter-spacing:-1.680000px;}
.lsa_c00218{letter-spacing:-1.416000px;}
.ls8_c00218{letter-spacing:-0.912000px;}
.ls12_c00218{letter-spacing:-0.532800px;}
.lse_c00218{letter-spacing:-0.507000px;}
.lsc_c00218{letter-spacing:-0.230400px;}
.ls6_c00218{letter-spacing:0.000000px;}
.ls3_c00218{letter-spacing:0.020160px;}
.ls7_c00218{letter-spacing:0.022800px;}
.ls10_c00218{letter-spacing:0.166800px;}
.lsb_c00218{letter-spacing:0.325200px;}
.lsd_c00218{letter-spacing:0.423600px;}
.ls1_c00218{letter-spacing:0.466560px;}
.ls2_c00218{letter-spacing:0.518400px;}
.ls9_c00218{letter-spacing:0.529800px;}
.ls11_c00218{letter-spacing:0.702000px;}
.ls0_c00218{letter-spacing:0.720000px;}
.ls5_c00218{letter-spacing:1.440000px;}
.ls4_c00218{letter-spacing:18.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00218{word-spacing:-18.000000px;}
.ws5_c00218{word-spacing:-15.822000px;}
.ws1_c00218{word-spacing:-15.543600px;}
.ws4_c00218{word-spacing:-15.286800px;}
.ws0_c00218{word-spacing:-15.120000px;}
.ws2_c00218{word-spacing:-14.613000px;}
.ws6_c00218{word-spacing:-14.587200px;}
.ws3_c00218{word-spacing:-13.440000px;}
.ws8_c00218{word-spacing:0.000000px;}
._2_c00218{margin-left:-2.662560px;}
._0_c00218{margin-left:-1.451399px;}
._1_c00218{width:1.390798px;}
._3_c00218{width:2.886720px;}
._e_c00218{width:4.824000px;}
._c_c00218{width:6.336000px;}
._d_c00218{width:8.011591px;}
._b_c00218{width:10.310916px;}
._9_c00218{width:11.460000px;}
._a_c00218{width:13.069202px;}
._f_c00218{width:14.112601px;}
._7_c00218{width:15.635399px;}
._8_c00218{width:16.666434px;}
._4_c00218{width:20.088000px;}
._5_c00218{width:21.735840px;}
._6_c00218{width:23.700730px;}
.fc0_c00218{color:rgb(0,0,0);}
.fs1_c00218{font-size:60.480000px;}
.fs0_c00218{font-size:72.000000px;}
.y0_c00218{bottom:0.000000px;}
.y3_c00218{bottom:4.320000px;}
.y7_c00218{bottom:21.240000px;}
.yc_c00218{bottom:21.585000px;}
.y18_c00218{bottom:21.600000px;}
.y16_c00218{bottom:21.630000px;}
.y5_c00218{bottom:25.200000px;}
.y4_c00218{bottom:32.040000px;}
.y10_c00218{bottom:38.865000px;}
.ye_c00218{bottom:43.575000px;}
.y14_c00218{bottom:47.550000px;}
.y11_c00218{bottom:56.505000px;}
.ya_c00218{bottom:56.535000px;}
.y1_c00218{bottom:57.240000px;}
.yd_c00218{bottom:69.135000px;}
.y15_c00218{bottom:73.470000px;}
.yb_c00218{bottom:91.095000px;}
.y28_c00218{bottom:150.510000px;}
.y27_c00218{bottom:181.470000px;}
.y26_c00218{bottom:212.790000px;}
.y25_c00218{bottom:243.795000px;}
.y24_c00218{bottom:274.755000px;}
.y23_c00218{bottom:305.715000px;}
.y22_c00218{bottom:337.035000px;}
.y21_c00218{bottom:368.025000px;}
.y20_c00218{bottom:398.985000px;}
.y1f_c00218{bottom:429.945000px;}
.y1e_c00218{bottom:470.265000px;}
.y1d_c00218{bottom:501.270000px;}
.y1c_c00218{bottom:532.230000px;}
.y1b_c00218{bottom:563.190000px;}
.y1a_c00218{bottom:594.510000px;}
.y19_c00218{bottom:634.500000px;}
.y17_c00218{bottom:661.140000px;}
.y13_c00218{bottom:706.500000px;}
.y12_c00218{bottom:803.745000px;}
.yf_c00218{bottom:849.150000px;}
.y9_c00218{bottom:929.430000px;}
.y8_c00218{bottom:1044.645000px;}
.y6_c00218{bottom:1090.050000px;}
.y2_c00218{bottom:1189.050000px;}
.h3_c00218{height:20.550000px;}
.h4_c00218{height:41.395500px;}
.h5_c00218{height:43.545000px;}
.h8_c00218{height:43.590000px;}
.hd_c00218{height:43.920000px;}
.hb_c00218{height:43.941000px;}
.h6_c00218{height:59.357813px;}
.h7_c00218{height:60.952500px;}
.h2_c00218{height:64.546875px;}
.he_c00218{height:70.664062px;}
.ha_c00218{height:78.825000px;}
.hc_c00218{height:95.796000px;}
.h9_c00218{height:113.400000px;}
.h0_c00218{height:1262.880000px;}
.h1_c00218{height:1263.000000px;}
.w2_c00218{width:8.310000px;}
.w4_c00218{width:41.062500px;}
.w8_c00218{width:61.590000px;}
.w5_c00218{width:62.280000px;}
.w7_c00218{width:105.120000px;}
.w6_c00218{width:370.590000px;}
.w3_c00218{width:638.190000px;}
.w0_c00218{width:893.160000px;}
.w1_c00218{width:893.250000px;}
.x0_c00218{left:0.000000px;}
.x3_c00218{left:127.489500px;}
.x1_c00218{left:154.515000px;}
.x4_c00218{left:171.090000px;}
.x8_c00218{left:178.635000px;}
.x5_c00218{left:234.825000px;}
.x6_c00218{left:606.870000px;}
.x7_c00218{left:713.445000px;}
.x2_c00218{left:757.365000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.lsf_c00218{letter-spacing:-1.493333pt;}
.lsa_c00218{letter-spacing:-1.258667pt;}
.ls8_c00218{letter-spacing:-0.810667pt;}
.ls12_c00218{letter-spacing:-0.473600pt;}
.lse_c00218{letter-spacing:-0.450667pt;}
.lsc_c00218{letter-spacing:-0.204800pt;}
.ls6_c00218{letter-spacing:0.000000pt;}
.ls3_c00218{letter-spacing:0.017920pt;}
.ls7_c00218{letter-spacing:0.020267pt;}
.ls10_c00218{letter-spacing:0.148267pt;}
.lsb_c00218{letter-spacing:0.289067pt;}
.lsd_c00218{letter-spacing:0.376533pt;}
.ls1_c00218{letter-spacing:0.414720pt;}
.ls2_c00218{letter-spacing:0.460800pt;}
.ls9_c00218{letter-spacing:0.470933pt;}
.ls11_c00218{letter-spacing:0.624000pt;}
.ls0_c00218{letter-spacing:0.640000pt;}
.ls5_c00218{letter-spacing:1.280000pt;}
.ls4_c00218{letter-spacing:16.000000pt;}
.ws7_c00218{word-spacing:-16.000000pt;}
.ws5_c00218{word-spacing:-14.064000pt;}
.ws1_c00218{word-spacing:-13.816533pt;}
.ws4_c00218{word-spacing:-13.588267pt;}
.ws0_c00218{word-spacing:-13.440000pt;}
.ws2_c00218{word-spacing:-12.989333pt;}
.ws6_c00218{word-spacing:-12.966400pt;}
.ws3_c00218{word-spacing:-11.946667pt;}
.ws8_c00218{word-spacing:0.000000pt;}
._2_c00218{margin-left:-2.366720pt;}
._0_c00218{margin-left:-1.290132pt;}
._1_c00218{width:1.236265pt;}
._3_c00218{width:2.565973pt;}
._e_c00218{width:4.288000pt;}
._c_c00218{width:5.632000pt;}
._d_c00218{width:7.121414pt;}
._b_c00218{width:9.165258pt;}
._9_c00218{width:10.186667pt;}
._a_c00218{width:11.617068pt;}
._f_c00218{width:12.544534pt;}
._7_c00218{width:13.898132pt;}
._8_c00218{width:14.814608pt;}
._4_c00218{width:17.856000pt;}
._5_c00218{width:19.320747pt;}
._6_c00218{width:21.067315pt;}
.fs1_c00218{font-size:53.760000pt;}
.fs0_c00218{font-size:64.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y3_c00218{bottom:3.840000pt;}
.y7_c00218{bottom:18.880000pt;}
.yc_c00218{bottom:19.186667pt;}
.y18_c00218{bottom:19.200000pt;}
.y16_c00218{bottom:19.226667pt;}
.y5_c00218{bottom:22.400000pt;}
.y4_c00218{bottom:28.480000pt;}
.y10_c00218{bottom:34.546667pt;}
.ye_c00218{bottom:38.733333pt;}
.y14_c00218{bottom:42.266667pt;}
.y11_c00218{bottom:50.226667pt;}
.ya_c00218{bottom:50.253333pt;}
.y1_c00218{bottom:50.880000pt;}
.yd_c00218{bottom:61.453333pt;}
.y15_c00218{bottom:65.306667pt;}
.yb_c00218{bottom:80.973333pt;}
.y28_c00218{bottom:133.786667pt;}
.y27_c00218{bottom:161.306667pt;}
.y26_c00218{bottom:189.146667pt;}
.y25_c00218{bottom:216.706667pt;}
.y24_c00218{bottom:244.226667pt;}
.y23_c00218{bottom:271.746667pt;}
.y22_c00218{bottom:299.586667pt;}
.y21_c00218{bottom:327.133333pt;}
.y20_c00218{bottom:354.653333pt;}
.y1f_c00218{bottom:382.173333pt;}
.y1e_c00218{bottom:418.013333pt;}
.y1d_c00218{bottom:445.573333pt;}
.y1c_c00218{bottom:473.093333pt;}
.y1b_c00218{bottom:500.613333pt;}
.y1a_c00218{bottom:528.453333pt;}
.y19_c00218{bottom:564.000000pt;}
.y17_c00218{bottom:587.680000pt;}
.y13_c00218{bottom:628.000000pt;}
.y12_c00218{bottom:714.440000pt;}
.yf_c00218{bottom:754.800000pt;}
.y9_c00218{bottom:826.160000pt;}
.y8_c00218{bottom:928.573333pt;}
.y6_c00218{bottom:968.933333pt;}
.y2_c00218{bottom:1056.933333pt;}
.h3_c00218{height:18.266667pt;}
.h4_c00218{height:36.796000pt;}
.h5_c00218{height:38.706667pt;}
.h8_c00218{height:38.746667pt;}
.hd_c00218{height:39.040000pt;}
.hb_c00218{height:39.058667pt;}
.h6_c00218{height:52.762500pt;}
.h7_c00218{height:54.180000pt;}
.h2_c00218{height:57.375000pt;}
.he_c00218{height:62.812500pt;}
.ha_c00218{height:70.066667pt;}
.hc_c00218{height:85.152000pt;}
.h9_c00218{height:100.800000pt;}
.h0_c00218{height:1122.560000pt;}
.h1_c00218{height:1122.666667pt;}
.w2_c00218{width:7.386667pt;}
.w4_c00218{width:36.500000pt;}
.w8_c00218{width:54.746667pt;}
.w5_c00218{width:55.360000pt;}
.w7_c00218{width:93.440000pt;}
.w6_c00218{width:329.413333pt;}
.w3_c00218{width:567.280000pt;}
.w0_c00218{width:793.920000pt;}
.w1_c00218{width:794.000000pt;}
.x0_c00218{left:0.000000pt;}
.x3_c00218{left:113.324000pt;}
.x1_c00218{left:137.346667pt;}
.x4_c00218{left:152.080000pt;}
.x8_c00218{left:158.786667pt;}
.x5_c00218{left:208.733333pt;}
.x6_c00218{left:539.440000pt;}
.x7_c00218{left:634.173333pt;}
.x2_c00218{left:673.213333pt;}
}





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

.ir_c00219:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00219;src:url('chunks/assets/font_4a056728ad74bad911c0aa74.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_aec8e8728163b733162e78c0.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_e6541ddd957bcbeb2e85a4cd.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_4f0dbe23e8dc11d85356453d.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;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_c00219;src:url('chunks/assets/font_0f8c5bed95f48746f5cb46da.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls5_c00219{letter-spacing:-1.416000px;}
.ls3_c00219{letter-spacing:-1.296000px;}
.ls4_c00219{letter-spacing:-0.241800px;}
.ls1_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:0.720000px;}
.ls2_c00219{letter-spacing:1.944000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:-19.944000px;}
.ws1_c00219{word-spacing:-18.000000px;}
.ws3_c00219{word-spacing:-15.120000px;}
.ws2_c00219{word-spacing:-14.878200px;}
.ws4_c00219{word-spacing:0.000000px;}
._2_c00219{margin-left:-2.592000px;}
._1_c00219{margin-left:-1.296000px;}
._0_c00219{width:1.224000px;}
._3_c00219{width:2.808000px;}
._9_c00219{width:4.320000px;}
._8_c00219{width:5.904000px;}
._7_c00219{width:7.140024px;}
._12_c00219{width:8.147880px;}
._e_c00219{width:9.288000px;}
._b_c00219{width:10.584000px;}
._a_c00219{width:11.664000px;}
._4_c00219{width:13.104000px;}
._5_c00219{width:14.495976px;}
._6_c00219{width:15.720120px;}
._d_c00219{width:16.992000px;}
._c_c00219{width:20.160000px;}
._10_c00219{width:21.888000px;}
._f_c00219{width:22.896000px;}
._11_c00219{width:25.032024px;}
._13_c00219{width:26.568000px;}
._14_c00219{width:27.936000px;}
.fc0_c00219{color:rgb(0,0,0);}
.fs1_c00219{font-size:60.480000px;}
.fs0_c00219{font-size:72.000000px;}
.y0_c00219{bottom:0.000000px;}
.y3_c00219{bottom:4.320000px;}
.y25_c00219{bottom:21.589500px;}
.y5_c00219{bottom:25.200000px;}
.y4_c00219{bottom:32.040000px;}
.y23_c00219{bottom:34.549500px;}
.y24_c00219{bottom:47.509500px;}
.y1_c00219{bottom:57.240000px;}
.y22_c00219{bottom:149.440500px;}
.y21_c00219{bottom:244.515000px;}
.y20_c00219{bottom:284.475000px;}
.y1f_c00219{bottom:324.795000px;}
.y1e_c00219{bottom:355.785000px;}
.y1d_c00219{bottom:386.745000px;}
.y1c_c00219{bottom:417.705000px;}
.y1b_c00219{bottom:449.025000px;}
.y1a_c00219{bottom:480.030000px;}
.y19_c00219{bottom:510.990000px;}
.y18_c00219{bottom:541.950000px;}
.y17_c00219{bottom:581.910000px;}
.y16_c00219{bottom:613.260000px;}
.y15_c00219{bottom:644.220000px;}
.y14_c00219{bottom:675.180000px;}
.y13_c00219{bottom:706.140000px;}
.y12_c00219{bottom:746.490000px;}
.y11_c00219{bottom:777.450000px;}
.y10_c00219{bottom:808.410000px;}
.yf_c00219{bottom:839.370000px;}
.ye_c00219{bottom:870.735000px;}
.yd_c00219{bottom:901.695000px;}
.yc_c00219{bottom:932.655000px;}
.yb_c00219{bottom:963.645000px;}
.ya_c00219{bottom:994.965000px;}
.y9_c00219{bottom:1025.925000px;}
.y8_c00219{bottom:1056.885000px;}
.y7_c00219{bottom:1087.890000px;}
.y6_c00219{bottom:1119.210000px;}
.y2_c00219{bottom:1189.050000px;}
.h3_c00219{height:20.550000px;}
.h4_c00219{height:41.395500px;}
.h8_c00219{height:59.357813px;}
.h2_c00219{height:64.546875px;}
.h7_c00219{height:69.835500px;}
.h6_c00219{height:70.628906px;}
.h5_c00219{height:70.664062px;}
.h0_c00219{height:1262.880000px;}
.h1_c00219{height:1263.000000px;}
.w2_c00219{width:8.310000px;}
.w8_c00219{width:122.400000px;}
.w7_c00219{width:122.421000px;}
.w5_c00219{width:122.430000px;}
.w4_c00219{width:122.445000px;}
.w6_c00219{width:122.472000px;}
.w3_c00219{width:638.190000px;}
.w0_c00219{width:893.160000px;}
.w1_c00219{width:893.250000px;}
.x0_c00219{left:0.000000px;}
.x3_c00219{left:127.489500px;}
.x1_c00219{left:154.515000px;}
.x4_c00219{left:178.635000px;}
.x5_c00219{left:180.795000px;}
.x6_c00219{left:251.385000px;}
.x7_c00219{left:375.270000px;}
.x8_c00219{left:499.185000px;}
.x9_c00219{left:623.070000px;}
.x2_c00219{left:757.365000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls5_c00219{letter-spacing:-1.258667pt;}
.ls3_c00219{letter-spacing:-1.152000pt;}
.ls4_c00219{letter-spacing:-0.214933pt;}
.ls1_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:0.640000pt;}
.ls2_c00219{letter-spacing:1.728000pt;}
.ws0_c00219{word-spacing:-17.728000pt;}
.ws1_c00219{word-spacing:-16.000000pt;}
.ws3_c00219{word-spacing:-13.440000pt;}
.ws2_c00219{word-spacing:-13.225067pt;}
.ws4_c00219{word-spacing:0.000000pt;}
._2_c00219{margin-left:-2.304000pt;}
._1_c00219{margin-left:-1.152000pt;}
._0_c00219{width:1.088000pt;}
._3_c00219{width:2.496000pt;}
._9_c00219{width:3.840000pt;}
._8_c00219{width:5.248000pt;}
._7_c00219{width:6.346688pt;}
._12_c00219{width:7.242560pt;}
._e_c00219{width:8.256000pt;}
._b_c00219{width:9.408000pt;}
._a_c00219{width:10.368000pt;}
._4_c00219{width:11.648000pt;}
._5_c00219{width:12.885312pt;}
._6_c00219{width:13.973440pt;}
._d_c00219{width:15.104000pt;}
._c_c00219{width:17.920000pt;}
._10_c00219{width:19.456000pt;}
._f_c00219{width:20.352000pt;}
._11_c00219{width:22.250688pt;}
._13_c00219{width:23.616000pt;}
._14_c00219{width:24.832000pt;}
.fs1_c00219{font-size:53.760000pt;}
.fs0_c00219{font-size:64.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y3_c00219{bottom:3.840000pt;}
.y25_c00219{bottom:19.190667pt;}
.y5_c00219{bottom:22.400000pt;}
.y4_c00219{bottom:28.480000pt;}
.y23_c00219{bottom:30.710667pt;}
.y24_c00219{bottom:42.230667pt;}
.y1_c00219{bottom:50.880000pt;}
.y22_c00219{bottom:132.836000pt;}
.y21_c00219{bottom:217.346667pt;}
.y20_c00219{bottom:252.866667pt;}
.y1f_c00219{bottom:288.706667pt;}
.y1e_c00219{bottom:316.253333pt;}
.y1d_c00219{bottom:343.773333pt;}
.y1c_c00219{bottom:371.293333pt;}
.y1b_c00219{bottom:399.133333pt;}
.y1a_c00219{bottom:426.693333pt;}
.y19_c00219{bottom:454.213333pt;}
.y18_c00219{bottom:481.733333pt;}
.y17_c00219{bottom:517.253333pt;}
.y16_c00219{bottom:545.120000pt;}
.y15_c00219{bottom:572.640000pt;}
.y14_c00219{bottom:600.160000pt;}
.y13_c00219{bottom:627.680000pt;}
.y12_c00219{bottom:663.546667pt;}
.y11_c00219{bottom:691.066667pt;}
.y10_c00219{bottom:718.586667pt;}
.yf_c00219{bottom:746.106667pt;}
.ye_c00219{bottom:773.986667pt;}
.yd_c00219{bottom:801.506667pt;}
.yc_c00219{bottom:829.026667pt;}
.yb_c00219{bottom:856.573333pt;}
.ya_c00219{bottom:884.413333pt;}
.y9_c00219{bottom:911.933333pt;}
.y8_c00219{bottom:939.453333pt;}
.y7_c00219{bottom:967.013333pt;}
.y6_c00219{bottom:994.853333pt;}
.y2_c00219{bottom:1056.933333pt;}
.h3_c00219{height:18.266667pt;}
.h4_c00219{height:36.796000pt;}
.h8_c00219{height:52.762500pt;}
.h2_c00219{height:57.375000pt;}
.h7_c00219{height:62.076000pt;}
.h6_c00219{height:62.781250pt;}
.h5_c00219{height:62.812500pt;}
.h0_c00219{height:1122.560000pt;}
.h1_c00219{height:1122.666667pt;}
.w2_c00219{width:7.386667pt;}
.w8_c00219{width:108.800000pt;}
.w7_c00219{width:108.818667pt;}
.w5_c00219{width:108.826667pt;}
.w4_c00219{width:108.840000pt;}
.w6_c00219{width:108.864000pt;}
.w3_c00219{width:567.280000pt;}
.w0_c00219{width:793.920000pt;}
.w1_c00219{width:794.000000pt;}
.x0_c00219{left:0.000000pt;}
.x3_c00219{left:113.324000pt;}
.x1_c00219{left:137.346667pt;}
.x4_c00219{left:158.786667pt;}
.x5_c00219{left:160.706667pt;}
.x6_c00219{left:223.453333pt;}
.x7_c00219{left:333.573333pt;}
.x8_c00219{left:443.720000pt;}
.x9_c00219{left:553.840000pt;}
.x2_c00219{left:673.213333pt;}
}





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

.ir_c00220:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00220;src:url('chunks/assets/font_0f37a932608fb5848dc10d2c.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_2bc9a806d3d8788fb865bd3f.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_5d6064defa2574b1ed3eecab.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_cfdc01801392f361c38d7077.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_c4efeb744c9fad80b17320de.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;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_c00220;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff6_c00220{font-family:ff6_c00220;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls4_c00220{letter-spacing:0.000000px;}
.ls3_c00220{letter-spacing:0.180000px;}
.ls0_c00220{letter-spacing:0.720000px;}
.ls1_c00220{letter-spacing:6.480000px;}
.ls2_c00220{letter-spacing:9.360000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00220{word-spacing:-72.000000px;}
.ws0_c00220{word-spacing:-60.480000px;}
.ws2_c00220{word-spacing:-18.000000px;}
.ws1_c00220{word-spacing:-15.120000px;}
.ws4_c00220{word-spacing:0.000000px;}
._18_c00220{margin-left:-3.427419px;}
._1_c00220{margin-left:-2.358599px;}
._2_c00220{margin-left:-1.285319px;}
._0_c00220{width:1.390798px;}
._6_c00220{width:2.767801px;}
._d_c00220{width:3.928942px;}
._12_c00220{width:4.994644px;}
._b_c00220{width:6.090147px;}
._e_c00220{width:7.209589px;}
._c_c00220{width:8.455801px;}
._16_c00220{width:10.782599px;}
._17_c00220{width:12.101938px;}
._3_c00220{width:13.237226px;}
._4_c00220{width:14.485150px;}
._5_c00220{width:15.752434px;}
._15_c00220{width:19.936683px;}
._7_c00220{width:23.853120px;}
._f_c00220{width:27.565319px;}
._10_c00220{width:28.661042px;}
._11_c00220{width:29.754521px;}
._9_c00220{width:42.088804px;}
._8_c00220{width:43.405319px;}
._a_c00220{width:44.422322px;}
._14_c00220{width:152.076024px;}
._13_c00220{width:878.136000px;}
.fc1_c00220{color:rgb(255,0,0);}
.fc0_c00220{color:rgb(0,0,0);}
.fs1_c00220{font-size:60.480000px;}
.fs0_c00220{font-size:72.000000px;}
.y0_c00220{bottom:0.000000px;}
.y3_c00220{bottom:4.320000px;}
.yb_c00220{bottom:21.600000px;}
.y5_c00220{bottom:25.200000px;}
.y4_c00220{bottom:32.040000px;}
.ya_c00220{bottom:47.520000px;}
.y1_c00220{bottom:57.240000px;}
.y7_c00220{bottom:64.800000px;}
.y9_c00220{bottom:82.485000px;}
.y8_c00220{bottom:108.045000px;}
.y26_c00220{bottom:133.236000px;}
.y25_c00220{bottom:164.190000px;}
.y24_c00220{bottom:195.150000px;}
.y23_c00220{bottom:226.110000px;}
.y22_c00220{bottom:257.115000px;}
.y21_c00220{bottom:288.435000px;}
.y20_c00220{bottom:319.395000px;}
.y1f_c00220{bottom:359.385000px;}
.y1e_c00220{bottom:399.345000px;}
.y1d_c00220{bottom:439.665000px;}
.y1c_c00220{bottom:470.625000px;}
.y1b_c00220{bottom:501.630000px;}
.y1a_c00220{bottom:532.590000px;}
.y19_c00220{bottom:563.910000px;}
.y18_c00220{bottom:594.870000px;}
.y17_c00220{bottom:625.860000px;}
.y16_c00220{bottom:656.820000px;}
.y15_c00220{bottom:688.140000px;}
.y14_c00220{bottom:728.130000px;}
.y13_c00220{bottom:759.090000px;}
.y12_c00220{bottom:790.050000px;}
.y11_c00220{bottom:821.370000px;}
.y10_c00220{bottom:852.375000px;}
.yf_c00220{bottom:883.335000px;}
.ye_c00220{bottom:914.295000px;}
.yd_c00220{bottom:945.615000px;}
.yc_c00220{bottom:976.605000px;}
.y6_c00220{bottom:1003.245000px;}
.y2_c00220{bottom:1189.050000px;}
.h3_c00220{height:20.550000px;}
.h4_c00220{height:41.395500px;}
.h6_c00220{height:59.357813px;}
.h2_c00220{height:64.546875px;}
.h7_c00220{height:70.664062px;}
.h5_c00220{height:130.350000px;}
.h0_c00220{height:1262.880000px;}
.h1_c00220{height:1263.000000px;}
.w2_c00220{width:8.310000px;}
.w7_c00220{width:122.421000px;}
.w5_c00220{width:122.430000px;}
.w4_c00220{width:122.445000px;}
.w6_c00220{width:122.472000px;}
.w8_c00220{width:142.605000px;}
.w3_c00220{width:638.190000px;}
.w0_c00220{width:893.160000px;}
.w1_c00220{width:893.250000px;}
.x0_c00220{left:0.000000px;}
.x3_c00220{left:127.489500px;}
.x1_c00220{left:154.515000px;}
.x8_c00220{left:178.635000px;}
.x4_c00220{left:251.385000px;}
.x5_c00220{left:375.270000px;}
.x6_c00220{left:499.185000px;}
.x7_c00220{left:623.070000px;}
.x2_c00220{left:757.365000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls4_c00220{letter-spacing:0.000000pt;}
.ls3_c00220{letter-spacing:0.160000pt;}
.ls0_c00220{letter-spacing:0.640000pt;}
.ls1_c00220{letter-spacing:5.760000pt;}
.ls2_c00220{letter-spacing:8.320000pt;}
.ws3_c00220{word-spacing:-64.000000pt;}
.ws0_c00220{word-spacing:-53.760000pt;}
.ws2_c00220{word-spacing:-16.000000pt;}
.ws1_c00220{word-spacing:-13.440000pt;}
.ws4_c00220{word-spacing:0.000000pt;}
._18_c00220{margin-left:-3.046595pt;}
._1_c00220{margin-left:-2.096532pt;}
._2_c00220{margin-left:-1.142506pt;}
._0_c00220{width:1.236265pt;}
._6_c00220{width:2.460268pt;}
._d_c00220{width:3.492393pt;}
._12_c00220{width:4.439683pt;}
._b_c00220{width:5.413464pt;}
._e_c00220{width:6.408524pt;}
._c_c00220{width:7.516268pt;}
._16_c00220{width:9.584532pt;}
._17_c00220{width:10.757278pt;}
._3_c00220{width:11.766423pt;}
._4_c00220{width:12.875689pt;}
._5_c00220{width:14.002163pt;}
._15_c00220{width:17.721496pt;}
._7_c00220{width:21.202773pt;}
._f_c00220{width:24.502506pt;}
._10_c00220{width:25.476482pt;}
._11_c00220{width:26.448463pt;}
._9_c00220{width:37.412270pt;}
._8_c00220{width:38.582506pt;}
._a_c00220{width:39.486508pt;}
._14_c00220{width:135.178688pt;}
._13_c00220{width:780.565333pt;}
.fs1_c00220{font-size:53.760000pt;}
.fs0_c00220{font-size:64.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.y3_c00220{bottom:3.840000pt;}
.yb_c00220{bottom:19.200000pt;}
.y5_c00220{bottom:22.400000pt;}
.y4_c00220{bottom:28.480000pt;}
.ya_c00220{bottom:42.240000pt;}
.y1_c00220{bottom:50.880000pt;}
.y7_c00220{bottom:57.600000pt;}
.y9_c00220{bottom:73.320000pt;}
.y8_c00220{bottom:96.040000pt;}
.y26_c00220{bottom:118.432000pt;}
.y25_c00220{bottom:145.946667pt;}
.y24_c00220{bottom:173.466667pt;}
.y23_c00220{bottom:200.986667pt;}
.y22_c00220{bottom:228.546667pt;}
.y21_c00220{bottom:256.386667pt;}
.y20_c00220{bottom:283.906667pt;}
.y1f_c00220{bottom:319.453333pt;}
.y1e_c00220{bottom:354.973333pt;}
.y1d_c00220{bottom:390.813333pt;}
.y1c_c00220{bottom:418.333333pt;}
.y1b_c00220{bottom:445.893333pt;}
.y1a_c00220{bottom:473.413333pt;}
.y19_c00220{bottom:501.253333pt;}
.y18_c00220{bottom:528.773333pt;}
.y17_c00220{bottom:556.320000pt;}
.y16_c00220{bottom:583.840000pt;}
.y15_c00220{bottom:611.680000pt;}
.y14_c00220{bottom:647.226667pt;}
.y13_c00220{bottom:674.746667pt;}
.y12_c00220{bottom:702.266667pt;}
.y11_c00220{bottom:730.106667pt;}
.y10_c00220{bottom:757.666667pt;}
.yf_c00220{bottom:785.186667pt;}
.ye_c00220{bottom:812.706667pt;}
.yd_c00220{bottom:840.546667pt;}
.yc_c00220{bottom:868.093333pt;}
.y6_c00220{bottom:891.773333pt;}
.y2_c00220{bottom:1056.933333pt;}
.h3_c00220{height:18.266667pt;}
.h4_c00220{height:36.796000pt;}
.h6_c00220{height:52.762500pt;}
.h2_c00220{height:57.375000pt;}
.h7_c00220{height:62.812500pt;}
.h5_c00220{height:115.866667pt;}
.h0_c00220{height:1122.560000pt;}
.h1_c00220{height:1122.666667pt;}
.w2_c00220{width:7.386667pt;}
.w7_c00220{width:108.818667pt;}
.w5_c00220{width:108.826667pt;}
.w4_c00220{width:108.840000pt;}
.w6_c00220{width:108.864000pt;}
.w8_c00220{width:126.760000pt;}
.w3_c00220{width:567.280000pt;}
.w0_c00220{width:793.920000pt;}
.w1_c00220{width:794.000000pt;}
.x0_c00220{left:0.000000pt;}
.x3_c00220{left:113.324000pt;}
.x1_c00220{left:137.346667pt;}
.x8_c00220{left:158.786667pt;}
.x4_c00220{left:223.453333pt;}
.x5_c00220{left:333.573333pt;}
.x6_c00220{left:443.720000pt;}
.x7_c00220{left:553.840000pt;}
.x2_c00220{left:673.213333pt;}
}





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

.ir_c00221:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00221;src:url('chunks/assets/font_1d2e80780505eec9e60e591d.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_6ad40d3366708b236a1ccb4f.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_7163772119ddc9d84f3efea9.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_bd85429f14fed5788ed5b1dd.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;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_c00221;src:url('chunks/assets/font_b6944dcef5698e3560f97e9e.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00221;src:url('chunks/assets/font_72817b645973a183922f407e.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls5_c00221{letter-spacing:-1.416000px;}
.ls4_c00221{letter-spacing:-0.241800px;}
.ls2_c00221{letter-spacing:0.000000px;}
.ls6_c00221{letter-spacing:0.022800px;}
.ls3_c00221{letter-spacing:0.521400px;}
.ls0_c00221{letter-spacing:0.720000px;}
.ls1_c00221{letter-spacing:0.732000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00221{word-spacing:-60.480000px;}
.ws0_c00221{word-spacing:-18.000000px;}
.ws3_c00221{word-spacing:-15.641400px;}
.ws1_c00221{word-spacing:-15.120000px;}
.ws4_c00221{word-spacing:-14.878200px;}
.ws5_c00221{word-spacing:0.000000px;}
._2_c00221{margin-left:-2.880000px;}
._0_c00221{margin-left:-1.296000px;}
._4_c00221{width:1.656000px;}
._3_c00221{width:3.528000px;}
._1_c00221{width:5.412000px;}
._8_c00221{width:7.416000px;}
._a_c00221{width:9.996024px;}
._7_c00221{width:11.016000px;}
._9_c00221{width:12.192000px;}
._6_c00221{width:13.488000px;}
._5_c00221{width:15.048000px;}
._f_c00221{width:16.632000px;}
._b_c00221{width:30.312000px;}
._c_c00221{width:31.320000px;}
._d_c00221{width:32.616000px;}
._10_c00221{width:38.016000px;}
._11_c00221{width:41.904000px;}
._12_c00221{width:42.971976px;}
._e_c00221{width:152.076024px;}
.fc0_c00221{color:rgb(0,0,0);}
.fs1_c00221{font-size:60.480000px;}
.fs0_c00221{font-size:72.000000px;}
.y0_c00221{bottom:0.000000px;}
.y3_c00221{bottom:4.320000px;}
.y20_c00221{bottom:21.225000px;}
.y24_c00221{bottom:21.589500px;}
.y5_c00221{bottom:25.200000px;}
.y4_c00221{bottom:32.040000px;}
.y23_c00221{bottom:56.149500px;}
.y1_c00221{bottom:57.240000px;}
.y22_c00221{bottom:91.069500px;}
.y21_c00221{bottom:135.400500px;}
.y1f_c00221{bottom:250.650000px;}
.y1e_c00221{bottom:319.755000px;}
.y1d_c00221{bottom:359.745000px;}
.y1c_c00221{bottom:390.705000px;}
.y1b_c00221{bottom:422.025000px;}
.y1a_c00221{bottom:452.985000px;}
.y19_c00221{bottom:492.990000px;}
.y18_c00221{bottom:523.950000px;}
.y17_c00221{bottom:563.910000px;}
.y16_c00221{bottom:604.260000px;}
.y15_c00221{bottom:635.220000px;}
.y14_c00221{bottom:666.180000px;}
.y13_c00221{bottom:697.140000px;}
.y12_c00221{bottom:728.490000px;}
.y11_c00221{bottom:768.450000px;}
.y10_c00221{bottom:799.410000px;}
.yf_c00221{bottom:830.370000px;}
.ye_c00221{bottom:861.735000px;}
.yd_c00221{bottom:892.695000px;}
.yc_c00221{bottom:923.655000px;}
.yb_c00221{bottom:954.615000px;}
.ya_c00221{bottom:994.965000px;}
.y9_c00221{bottom:1025.925000px;}
.y8_c00221{bottom:1056.885000px;}
.y7_c00221{bottom:1087.890000px;}
.y6_c00221{bottom:1119.210000px;}
.y2_c00221{bottom:1189.050000px;}
.h3_c00221{height:20.550000px;}
.h4_c00221{height:41.395500px;}
.h7_c00221{height:43.545000px;}
.h8_c00221{height:59.357813px;}
.h2_c00221{height:64.546875px;}
.h6_c00221{height:70.628906px;}
.h5_c00221{height:70.664062px;}
.h9_c00221{height:113.431500px;}
.h0_c00221{height:1262.880000px;}
.h1_c00221{height:1263.000000px;}
.w2_c00221{width:8.310000px;}
.w4_c00221{width:322.695000px;}
.w3_c00221{width:638.190000px;}
.w0_c00221{width:893.160000px;}
.w1_c00221{width:893.250000px;}
.x0_c00221{left:0.000000px;}
.x3_c00221{left:127.489500px;}
.x1_c00221{left:154.515000px;}
.x4_c00221{left:178.635000px;}
.x5_c00221{left:180.795000px;}
.x6_c00221{left:452.340000px;}
.x2_c00221{left:757.365000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls5_c00221{letter-spacing:-1.258667pt;}
.ls4_c00221{letter-spacing:-0.214933pt;}
.ls2_c00221{letter-spacing:0.000000pt;}
.ls6_c00221{letter-spacing:0.020267pt;}
.ls3_c00221{letter-spacing:0.463467pt;}
.ls0_c00221{letter-spacing:0.640000pt;}
.ls1_c00221{letter-spacing:0.650667pt;}
.ws2_c00221{word-spacing:-53.760000pt;}
.ws0_c00221{word-spacing:-16.000000pt;}
.ws3_c00221{word-spacing:-13.903467pt;}
.ws1_c00221{word-spacing:-13.440000pt;}
.ws4_c00221{word-spacing:-13.225067pt;}
.ws5_c00221{word-spacing:0.000000pt;}
._2_c00221{margin-left:-2.560000pt;}
._0_c00221{margin-left:-1.152000pt;}
._4_c00221{width:1.472000pt;}
._3_c00221{width:3.136000pt;}
._1_c00221{width:4.810667pt;}
._8_c00221{width:6.592000pt;}
._a_c00221{width:8.885355pt;}
._7_c00221{width:9.792000pt;}
._9_c00221{width:10.837333pt;}
._6_c00221{width:11.989333pt;}
._5_c00221{width:13.376000pt;}
._f_c00221{width:14.784000pt;}
._b_c00221{width:26.944000pt;}
._c_c00221{width:27.840000pt;}
._d_c00221{width:28.992000pt;}
._10_c00221{width:33.792000pt;}
._11_c00221{width:37.248000pt;}
._12_c00221{width:38.197312pt;}
._e_c00221{width:135.178688pt;}
.fs1_c00221{font-size:53.760000pt;}
.fs0_c00221{font-size:64.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y3_c00221{bottom:3.840000pt;}
.y20_c00221{bottom:18.866667pt;}
.y24_c00221{bottom:19.190667pt;}
.y5_c00221{bottom:22.400000pt;}
.y4_c00221{bottom:28.480000pt;}
.y23_c00221{bottom:49.910667pt;}
.y1_c00221{bottom:50.880000pt;}
.y22_c00221{bottom:80.950667pt;}
.y21_c00221{bottom:120.356000pt;}
.y1f_c00221{bottom:222.800000pt;}
.y1e_c00221{bottom:284.226667pt;}
.y1d_c00221{bottom:319.773333pt;}
.y1c_c00221{bottom:347.293333pt;}
.y1b_c00221{bottom:375.133333pt;}
.y1a_c00221{bottom:402.653333pt;}
.y19_c00221{bottom:438.213333pt;}
.y18_c00221{bottom:465.733333pt;}
.y17_c00221{bottom:501.253333pt;}
.y16_c00221{bottom:537.120000pt;}
.y15_c00221{bottom:564.640000pt;}
.y14_c00221{bottom:592.160000pt;}
.y13_c00221{bottom:619.680000pt;}
.y12_c00221{bottom:647.546667pt;}
.y11_c00221{bottom:683.066667pt;}
.y10_c00221{bottom:710.586667pt;}
.yf_c00221{bottom:738.106667pt;}
.ye_c00221{bottom:765.986667pt;}
.yd_c00221{bottom:793.506667pt;}
.yc_c00221{bottom:821.026667pt;}
.yb_c00221{bottom:848.546667pt;}
.ya_c00221{bottom:884.413333pt;}
.y9_c00221{bottom:911.933333pt;}
.y8_c00221{bottom:939.453333pt;}
.y7_c00221{bottom:967.013333pt;}
.y6_c00221{bottom:994.853333pt;}
.y2_c00221{bottom:1056.933333pt;}
.h3_c00221{height:18.266667pt;}
.h4_c00221{height:36.796000pt;}
.h7_c00221{height:38.706667pt;}
.h8_c00221{height:52.762500pt;}
.h2_c00221{height:57.375000pt;}
.h6_c00221{height:62.781250pt;}
.h5_c00221{height:62.812500pt;}
.h9_c00221{height:100.828000pt;}
.h0_c00221{height:1122.560000pt;}
.h1_c00221{height:1122.666667pt;}
.w2_c00221{width:7.386667pt;}
.w4_c00221{width:286.840000pt;}
.w3_c00221{width:567.280000pt;}
.w0_c00221{width:793.920000pt;}
.w1_c00221{width:794.000000pt;}
.x0_c00221{left:0.000000pt;}
.x3_c00221{left:113.324000pt;}
.x1_c00221{left:137.346667pt;}
.x4_c00221{left:158.786667pt;}
.x5_c00221{left:160.706667pt;}
.x6_c00221{left:402.080000pt;}
.x2_c00221{left:673.213333pt;}
}





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

.ir_c00222:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00222;src:url('chunks/assets/font_725bec5abc92be85863c075f.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_ed0240fa98f22a4f83bd352c.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_bdcfc486559332fd286389b2.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_a41648ff19b0ac39590186e5.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;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_c00222;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00222;src:url('chunks/assets/font_8e33232c371d594759d5d310.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:1.117188;font-style:normal;font-weight: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_c00222;src:url('chunks/assets/font_83e170b0960d0c462145e60f.woff2')format("woff");}.ff7_c00222{font-family:ff7_c00222;line-height:1.117188;font-style:normal;font-weight: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_c00222;src:url('chunks/assets/font_7c5a0f90d34f47fc590ae045.woff2')format("woff");}.ff8_c00222{font-family:ff8_c00222;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls6_c00222{letter-spacing:-0.912000px;}
.ls8_c00222{letter-spacing:-0.302400px;}
.ls7_c00222{letter-spacing:-0.241800px;}
.ls4_c00222{letter-spacing:0.000000px;}
.ls9_c00222{letter-spacing:0.022800px;}
.ls5_c00222{letter-spacing:0.166800px;}
.ls2_c00222{letter-spacing:0.504000px;}
.lsb_c00222{letter-spacing:0.648000px;}
.ls0_c00222{letter-spacing:0.720000px;}
.lsa_c00222{letter-spacing:1.152000px;}
.ls1_c00222{letter-spacing:2.160000px;}
.ls3_c00222{letter-spacing:16.572000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00222{word-spacing:-72.000000px;}
.ws5_c00222{word-spacing:-19.152000px;}
.ws8_c00222{word-spacing:-18.648000px;}
.ws6_c00222{word-spacing:-18.000000px;}
.ws1_c00222{word-spacing:-15.286800px;}
.ws4_c00222{word-spacing:-15.142800px;}
.ws0_c00222{word-spacing:-15.120000px;}
.ws2_c00222{word-spacing:-14.878200px;}
.ws3_c00222{word-spacing:-14.817600px;}
.ws9_c00222{word-spacing:0.000000px;}
._7_c00222{margin-left:-3.744000px;}
._1_c00222{margin-left:-2.220000px;}
._0_c00222{margin-left:-1.148999px;}
._2_c00222{width:1.461479px;}
._6_c00222{width:3.080999px;}
._3_c00222{width:4.104000px;}
._5_c00222{width:5.138521px;}
._4_c00222{width:6.590521px;}
._8_c00222{width:7.920000px;}
._e_c00222{width:9.513124px;}
._12_c00222{width:11.359563px;}
._11_c00222{width:12.372000px;}
._a_c00222{width:16.721042px;}
._9_c00222{width:19.111208px;}
._f_c00222{width:20.341210px;}
._10_c00222{width:21.782521px;}
._15_c00222{width:23.184000px;}
._14_c00222{width:27.293042px;}
._13_c00222{width:29.261042px;}
._d_c00222{width:30.556437px;}
._b_c00222{width:32.333042px;}
._c_c00222{width:33.498958px;}
.fc1_c00222{color:rgb(255,0,0);}
.fc0_c00222{color:rgb(0,0,0);}
.fs3_c00222{font-size:38.880000px;}
.fs2_c00222{font-size:47.520000px;}
.fs1_c00222{font-size:60.480000px;}
.fs0_c00222{font-size:72.000000px;}
.y0_c00222{bottom:0.000000px;}
.y3_c00222{bottom:4.320000px;}
.yc_c00222{bottom:21.585000px;}
.y5_c00222{bottom:25.200000px;}
.y4_c00222{bottom:32.040000px;}
.yb_c00222{bottom:56.535000px;}
.y1_c00222{bottom:57.240000px;}
.ya_c00222{bottom:91.455000px;}
.y9_c00222{bottom:126.375000px;}
.y27_c00222{bottom:151.590000px;}
.y8_c00222{bottom:161.340000px;}
.y26_c00222{bottom:168.870000px;}
.y25_c00222{bottom:175.710000px;}
.y24_c00222{bottom:186.870000px;}
.y7_c00222{bottom:195.900000px;}
.y23_c00222{bottom:227.550000px;}
.y22_c00222{bottom:258.555000px;}
.y21_c00222{bottom:289.515000px;}
.y20_c00222{bottom:320.835000px;}
.y1f_c00222{bottom:351.795000px;}
.y1e_c00222{bottom:382.785000px;}
.y1d_c00222{bottom:413.745000px;}
.y1c_c00222{bottom:445.065000px;}
.y1b_c00222{bottom:476.070000px;}
.y1a_c00222{bottom:507.030000px;}
.y19_c00222{bottom:537.990000px;}
.y18_c00222{bottom:569.310000px;}
.y17_c00222{bottom:600.300000px;}
.y16_c00222{bottom:640.260000px;}
.y15_c00222{bottom:671.220000px;}
.y14_c00222{bottom:702.540000px;}
.y13_c00222{bottom:733.530000px;}
.y12_c00222{bottom:764.490000px;}
.y11_c00222{bottom:795.450000px;}
.yf_c00222{bottom:826.770000px;}
.y10_c00222{bottom:835.050000px;}
.ye_c00222{bottom:857.775000px;}
.yd_c00222{bottom:897.735000px;}
.y6_c00222{bottom:924.390000px;}
.y2_c00222{bottom:1189.050000px;}
.h3_c00222{height:20.550000px;}
.ha_c00222{height:34.855313px;}
.h4_c00222{height:41.395500px;}
.h9_c00222{height:46.638281px;}
.hb_c00222{height:54.219375px;}
.h6_c00222{height:59.357813px;}
.h2_c00222{height:64.546875px;}
.h7_c00222{height:70.664062px;}
.h5_c00222{height:209.205000px;}
.h8_c00222{height:1262.875500px;}
.h0_c00222{height:1262.880000px;}
.h1_c00222{height:1263.000000px;}
.w2_c00222{width:8.310000px;}
.w4_c00222{width:322.695000px;}
.w3_c00222{width:638.190000px;}
.w5_c00222{width:893.157000px;}
.w0_c00222{width:893.160000px;}
.w1_c00222{width:893.250000px;}
.x0_c00222{left:0.000000px;}
.x3_c00222{left:127.489500px;}
.x9_c00222{left:142.632000px;}
.x1_c00222{left:154.515000px;}
.x5_c00222{left:178.635000px;}
.x8_c00222{left:343.590000px;}
.x4_c00222{left:452.340000px;}
.x6_c00222{left:477.897000px;}
.x7_c00222{left:496.290000px;}
.x2_c00222{left:757.365000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls6_c00222{letter-spacing:-0.810667pt;}
.ls8_c00222{letter-spacing:-0.268800pt;}
.ls7_c00222{letter-spacing:-0.214933pt;}
.ls4_c00222{letter-spacing:0.000000pt;}
.ls9_c00222{letter-spacing:0.020267pt;}
.ls5_c00222{letter-spacing:0.148267pt;}
.ls2_c00222{letter-spacing:0.448000pt;}
.lsb_c00222{letter-spacing:0.576000pt;}
.ls0_c00222{letter-spacing:0.640000pt;}
.lsa_c00222{letter-spacing:1.024000pt;}
.ls1_c00222{letter-spacing:1.920000pt;}
.ls3_c00222{letter-spacing:14.730667pt;}
.ws7_c00222{word-spacing:-64.000000pt;}
.ws5_c00222{word-spacing:-17.024000pt;}
.ws8_c00222{word-spacing:-16.576000pt;}
.ws6_c00222{word-spacing:-16.000000pt;}
.ws1_c00222{word-spacing:-13.588267pt;}
.ws4_c00222{word-spacing:-13.460267pt;}
.ws0_c00222{word-spacing:-13.440000pt;}
.ws2_c00222{word-spacing:-13.225067pt;}
.ws3_c00222{word-spacing:-13.171200pt;}
.ws9_c00222{word-spacing:0.000000pt;}
._7_c00222{margin-left:-3.328000pt;}
._1_c00222{margin-left:-1.973333pt;}
._0_c00222{margin-left:-1.021332pt;}
._2_c00222{width:1.299092pt;}
._6_c00222{width:2.738666pt;}
._3_c00222{width:3.648000pt;}
._5_c00222{width:4.567574pt;}
._4_c00222{width:5.858241pt;}
._8_c00222{width:7.040000pt;}
._e_c00222{width:8.456110pt;}
._12_c00222{width:10.097389pt;}
._11_c00222{width:10.997333pt;}
._a_c00222{width:14.863148pt;}
._9_c00222{width:16.987740pt;}
._f_c00222{width:18.081075pt;}
._10_c00222{width:19.362241pt;}
._15_c00222{width:20.608000pt;}
._14_c00222{width:24.260482pt;}
._13_c00222{width:26.009815pt;}
._d_c00222{width:27.161277pt;}
._b_c00222{width:28.740482pt;}
._c_c00222{width:29.776852pt;}
.fs3_c00222{font-size:34.560000pt;}
.fs2_c00222{font-size:42.240000pt;}
.fs1_c00222{font-size:53.760000pt;}
.fs0_c00222{font-size:64.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y3_c00222{bottom:3.840000pt;}
.yc_c00222{bottom:19.186667pt;}
.y5_c00222{bottom:22.400000pt;}
.y4_c00222{bottom:28.480000pt;}
.yb_c00222{bottom:50.253333pt;}
.y1_c00222{bottom:50.880000pt;}
.ya_c00222{bottom:81.293333pt;}
.y9_c00222{bottom:112.333333pt;}
.y27_c00222{bottom:134.746667pt;}
.y8_c00222{bottom:143.413333pt;}
.y26_c00222{bottom:150.106667pt;}
.y25_c00222{bottom:156.186667pt;}
.y24_c00222{bottom:166.106667pt;}
.y7_c00222{bottom:174.133333pt;}
.y23_c00222{bottom:202.266667pt;}
.y22_c00222{bottom:229.826667pt;}
.y21_c00222{bottom:257.346667pt;}
.y20_c00222{bottom:285.186667pt;}
.y1f_c00222{bottom:312.706667pt;}
.y1e_c00222{bottom:340.253333pt;}
.y1d_c00222{bottom:367.773333pt;}
.y1c_c00222{bottom:395.613333pt;}
.y1b_c00222{bottom:423.173333pt;}
.y1a_c00222{bottom:450.693333pt;}
.y19_c00222{bottom:478.213333pt;}
.y18_c00222{bottom:506.053333pt;}
.y17_c00222{bottom:533.600000pt;}
.y16_c00222{bottom:569.120000pt;}
.y15_c00222{bottom:596.640000pt;}
.y14_c00222{bottom:624.480000pt;}
.y13_c00222{bottom:652.026667pt;}
.y12_c00222{bottom:679.546667pt;}
.y11_c00222{bottom:707.066667pt;}
.yf_c00222{bottom:734.906667pt;}
.y10_c00222{bottom:742.266667pt;}
.ye_c00222{bottom:762.466667pt;}
.yd_c00222{bottom:797.986667pt;}
.y6_c00222{bottom:821.680000pt;}
.y2_c00222{bottom:1056.933333pt;}
.h3_c00222{height:18.266667pt;}
.ha_c00222{height:30.982500pt;}
.h4_c00222{height:36.796000pt;}
.h9_c00222{height:41.456250pt;}
.hb_c00222{height:48.195000pt;}
.h6_c00222{height:52.762500pt;}
.h2_c00222{height:57.375000pt;}
.h7_c00222{height:62.812500pt;}
.h5_c00222{height:185.960000pt;}
.h8_c00222{height:1122.556000pt;}
.h0_c00222{height:1122.560000pt;}
.h1_c00222{height:1122.666667pt;}
.w2_c00222{width:7.386667pt;}
.w4_c00222{width:286.840000pt;}
.w3_c00222{width:567.280000pt;}
.w5_c00222{width:793.917333pt;}
.w0_c00222{width:793.920000pt;}
.w1_c00222{width:794.000000pt;}
.x0_c00222{left:0.000000pt;}
.x3_c00222{left:113.324000pt;}
.x9_c00222{left:126.784000pt;}
.x1_c00222{left:137.346667pt;}
.x5_c00222{left:158.786667pt;}
.x8_c00222{left:305.413333pt;}
.x4_c00222{left:402.080000pt;}
.x6_c00222{left:424.797333pt;}
.x7_c00222{left:441.146667pt;}
.x2_c00222{left:673.213333pt;}
}





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

.ir_c00223:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00223;src:url('chunks/assets/font_8d3c8bbb4daacd6acb1a3a4b.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_37cb6b687a3e55b0ffb2798e.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_2416d4ea11c4cfd866456bc7.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;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_c00223;src:url('chunks/assets/font_1f1b537c60c6887aacdca1d9.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls7_c00223{letter-spacing:-0.648000px;}
.ls6_c00223{letter-spacing:-0.288000px;}
.ls5_c00223{letter-spacing:0.000000px;}
.ls4_c00223{letter-spacing:0.020400px;}
.ls3_c00223{letter-spacing:0.720000px;}
.ls1_c00223{letter-spacing:1.440000px;}
.ls2_c00223{letter-spacing:1.560000px;}
.ls0_c00223{letter-spacing:2.280000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00223{word-spacing:-72.000000px;}
.ws0_c00223{word-spacing:-18.000000px;}
.ws2_c00223{word-spacing:-17.352000px;}
.ws4_c00223{word-spacing:-15.140400px;}
.ws3_c00223{word-spacing:-15.120000px;}
.ws5_c00223{word-spacing:0.000000px;}
._9_c00223{margin-left:-3.672000px;}
._6_c00223{margin-left:-2.592000px;}
._1_c00223{margin-left:-1.296000px;}
._0_c00223{width:1.080000px;}
._5_c00223{width:2.088000px;}
._7_c00223{width:3.672000px;}
._b_c00223{width:5.472000px;}
._d_c00223{width:7.068000px;}
._e_c00223{width:8.772000px;}
._11_c00223{width:10.296000px;}
._f_c00223{width:13.104000px;}
._10_c00223{width:14.760000px;}
._a_c00223{width:15.768000px;}
._8_c00223{width:16.992000px;}
._c_c00223{width:19.008000px;}
._4_c00223{width:20.088000px;}
._2_c00223{width:21.600000px;}
._3_c00223{width:23.184000px;}
._12_c00223{width:24.480000px;}
.fc0_c00223{color:rgb(0,0,0);}
.fs3_c00223{font-size:38.880000px;}
.fs1_c00223{font-size:47.520000px;}
.fs2_c00223{font-size:60.480000px;}
.fs0_c00223{font-size:72.000000px;}
.y0_c00223{bottom:0.000000px;}
.y3_c00223{bottom:4.320000px;}
.y5_c00223{bottom:25.200000px;}
.y4_c00223{bottom:32.040000px;}
.y1_c00223{bottom:57.240000px;}
.y28_c00223{bottom:151.590000px;}
.y27_c00223{bottom:168.870000px;}
.y26_c00223{bottom:186.150000px;}
.y25_c00223{bottom:203.430000px;}
.y24_c00223{bottom:210.270000px;}
.y23_c00223{bottom:221.430000px;}
.y22_c00223{bottom:247.395000px;}
.y21_c00223{bottom:284.475000px;}
.y20_c00223{bottom:315.795000px;}
.y1f_c00223{bottom:346.755000px;}
.y1e_c00223{bottom:377.745000px;}
.y1d_c00223{bottom:408.705000px;}
.y1c_c00223{bottom:440.025000px;}
.y1b_c00223{bottom:470.985000px;}
.y1a_c00223{bottom:501.990000px;}
.y19_c00223{bottom:541.950000px;}
.y18_c00223{bottom:572.910000px;}
.y17_c00223{bottom:604.260000px;}
.y16_c00223{bottom:635.220000px;}
.y15_c00223{bottom:666.180000px;}
.y14_c00223{bottom:697.140000px;}
.y12_c00223{bottom:728.490000px;}
.y13_c00223{bottom:736.770000px;}
.y11_c00223{bottom:759.450000px;}
.y10_c00223{bottom:799.410000px;}
.yf_c00223{bottom:830.370000px;}
.ye_c00223{bottom:861.735000px;}
.yd_c00223{bottom:892.695000px;}
.yc_c00223{bottom:923.655000px;}
.yb_c00223{bottom:954.615000px;}
.ya_c00223{bottom:985.965000px;}
.y9_c00223{bottom:1016.925000px;}
.y8_c00223{bottom:1056.885000px;}
.y7_c00223{bottom:1087.890000px;}
.y6_c00223{bottom:1119.210000px;}
.y2_c00223{bottom:1189.050000px;}
.h3_c00223{height:20.550000px;}
.h9_c00223{height:38.158594px;}
.h4_c00223{height:41.395500px;}
.h7_c00223{height:46.638281px;}
.h8_c00223{height:59.357813px;}
.h2_c00223{height:64.546875px;}
.h5_c00223{height:70.664062px;}
.h6_c00223{height:1262.875500px;}
.h0_c00223{height:1262.880000px;}
.h1_c00223{height:1263.000000px;}
.w2_c00223{width:8.310000px;}
.w3_c00223{width:638.190000px;}
.w4_c00223{width:893.157000px;}
.w0_c00223{width:893.160000px;}
.w1_c00223{width:893.250000px;}
.x0_c00223{left:0.000000px;}
.x3_c00223{left:127.489500px;}
.x9_c00223{left:142.632000px;}
.x1_c00223{left:154.515000px;}
.x7_c00223{left:169.995000px;}
.x4_c00223{left:178.635000px;}
.x8_c00223{left:343.590000px;}
.x5_c00223{left:747.282000px;}
.x2_c00223{left:757.365000px;}
.x6_c00223{left:765.690000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls7_c00223{letter-spacing:-0.576000pt;}
.ls6_c00223{letter-spacing:-0.256000pt;}
.ls5_c00223{letter-spacing:0.000000pt;}
.ls4_c00223{letter-spacing:0.018133pt;}
.ls3_c00223{letter-spacing:0.640000pt;}
.ls1_c00223{letter-spacing:1.280000pt;}
.ls2_c00223{letter-spacing:1.386667pt;}
.ls0_c00223{letter-spacing:2.026667pt;}
.ws1_c00223{word-spacing:-64.000000pt;}
.ws0_c00223{word-spacing:-16.000000pt;}
.ws2_c00223{word-spacing:-15.424000pt;}
.ws4_c00223{word-spacing:-13.458133pt;}
.ws3_c00223{word-spacing:-13.440000pt;}
.ws5_c00223{word-spacing:0.000000pt;}
._9_c00223{margin-left:-3.264000pt;}
._6_c00223{margin-left:-2.304000pt;}
._1_c00223{margin-left:-1.152000pt;}
._0_c00223{width:0.960000pt;}
._5_c00223{width:1.856000pt;}
._7_c00223{width:3.264000pt;}
._b_c00223{width:4.864000pt;}
._d_c00223{width:6.282667pt;}
._e_c00223{width:7.797333pt;}
._11_c00223{width:9.152000pt;}
._f_c00223{width:11.648000pt;}
._10_c00223{width:13.120000pt;}
._a_c00223{width:14.016000pt;}
._8_c00223{width:15.104000pt;}
._c_c00223{width:16.896000pt;}
._4_c00223{width:17.856000pt;}
._2_c00223{width:19.200000pt;}
._3_c00223{width:20.608000pt;}
._12_c00223{width:21.760000pt;}
.fs3_c00223{font-size:34.560000pt;}
.fs1_c00223{font-size:42.240000pt;}
.fs2_c00223{font-size:53.760000pt;}
.fs0_c00223{font-size:64.000000pt;}
.y0_c00223{bottom:0.000000pt;}
.y3_c00223{bottom:3.840000pt;}
.y5_c00223{bottom:22.400000pt;}
.y4_c00223{bottom:28.480000pt;}
.y1_c00223{bottom:50.880000pt;}
.y28_c00223{bottom:134.746667pt;}
.y27_c00223{bottom:150.106667pt;}
.y26_c00223{bottom:165.466667pt;}
.y25_c00223{bottom:180.826667pt;}
.y24_c00223{bottom:186.906667pt;}
.y23_c00223{bottom:196.826667pt;}
.y22_c00223{bottom:219.906667pt;}
.y21_c00223{bottom:252.866667pt;}
.y20_c00223{bottom:280.706667pt;}
.y1f_c00223{bottom:308.226667pt;}
.y1e_c00223{bottom:335.773333pt;}
.y1d_c00223{bottom:363.293333pt;}
.y1c_c00223{bottom:391.133333pt;}
.y1b_c00223{bottom:418.653333pt;}
.y1a_c00223{bottom:446.213333pt;}
.y19_c00223{bottom:481.733333pt;}
.y18_c00223{bottom:509.253333pt;}
.y17_c00223{bottom:537.120000pt;}
.y16_c00223{bottom:564.640000pt;}
.y15_c00223{bottom:592.160000pt;}
.y14_c00223{bottom:619.680000pt;}
.y12_c00223{bottom:647.546667pt;}
.y13_c00223{bottom:654.906667pt;}
.y11_c00223{bottom:675.066667pt;}
.y10_c00223{bottom:710.586667pt;}
.yf_c00223{bottom:738.106667pt;}
.ye_c00223{bottom:765.986667pt;}
.yd_c00223{bottom:793.506667pt;}
.yc_c00223{bottom:821.026667pt;}
.yb_c00223{bottom:848.546667pt;}
.ya_c00223{bottom:876.413333pt;}
.y9_c00223{bottom:903.933333pt;}
.y8_c00223{bottom:939.453333pt;}
.y7_c00223{bottom:967.013333pt;}
.y6_c00223{bottom:994.853333pt;}
.y2_c00223{bottom:1056.933333pt;}
.h3_c00223{height:18.266667pt;}
.h9_c00223{height:33.918750pt;}
.h4_c00223{height:36.796000pt;}
.h7_c00223{height:41.456250pt;}
.h8_c00223{height:52.762500pt;}
.h2_c00223{height:57.375000pt;}
.h5_c00223{height:62.812500pt;}
.h6_c00223{height:1122.556000pt;}
.h0_c00223{height:1122.560000pt;}
.h1_c00223{height:1122.666667pt;}
.w2_c00223{width:7.386667pt;}
.w3_c00223{width:567.280000pt;}
.w4_c00223{width:793.917333pt;}
.w0_c00223{width:793.920000pt;}
.w1_c00223{width:794.000000pt;}
.x0_c00223{left:0.000000pt;}
.x3_c00223{left:113.324000pt;}
.x9_c00223{left:126.784000pt;}
.x1_c00223{left:137.346667pt;}
.x7_c00223{left:151.106667pt;}
.x4_c00223{left:158.786667pt;}
.x8_c00223{left:305.413333pt;}
.x5_c00223{left:664.250667pt;}
.x2_c00223{left:673.213333pt;}
.x6_c00223{left:680.613333pt;}
}





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

.ir_c00224:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00224;src:url('chunks/assets/font_452efd2a39e32aad6711cf10.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_25b18106caa806fee68b7f46.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_735bfd0191c693fb38bc6fa0.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00224;src:url('chunks/assets/font_62d2b1184950e1efa4a3a4ff.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_1e4a38f301aa106b3f9e7d08.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;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_c00224;src:url('chunks/assets/font_bd5b6a18b15ac6ec2467b697.woff2')format("woff");}.ff6_c00224{font-family:ff6_c00224;line-height:1.104004;font-style:normal;font-weight: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_c00224;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00224{font-family:ff7_c00224;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls17_c00224{letter-spacing:-1.512000px;}
.ls13_c00224{letter-spacing:-1.440000px;}
.ls19_c00224{letter-spacing:-1.416000px;}
.ls10_c00224{letter-spacing:-0.954000px;}
.ls18_c00224{letter-spacing:-0.912000px;}
.ls14_c00224{letter-spacing:-0.648000px;}
.lse_c00224{letter-spacing:-0.241800px;}
.ls16_c00224{letter-spacing:-0.230400px;}
.ls15_c00224{letter-spacing:-0.169800px;}
.lsd_c00224{letter-spacing:0.000000px;}
.ls11_c00224{letter-spacing:0.060600px;}
.ls8_c00224{letter-spacing:0.180000px;}
.ls5_c00224{letter-spacing:0.302400px;}
.ls6_c00224{letter-spacing:0.313800px;}
.ls4_c00224{letter-spacing:0.518400px;}
.lsc_c00224{letter-spacing:0.524160px;}
.lsf_c00224{letter-spacing:0.529800px;}
.ls12_c00224{letter-spacing:0.702000px;}
.lsa_c00224{letter-spacing:0.720000px;}
.ls7_c00224{letter-spacing:1.440000px;}
.ls2_c00224{letter-spacing:1.464000px;}
.ls3_c00224{letter-spacing:2.180204px;}
.ls1_c00224{letter-spacing:3.600000px;}
.ls0_c00224{letter-spacing:6.480000px;}
.ls9_c00224{letter-spacing:7.920000px;}
.lsb_c00224{letter-spacing:47.520000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00224{word-spacing:-60.480000px;}
.ws5_c00224{word-spacing:-18.000000px;}
.ws3_c00224{word-spacing:-15.822000px;}
.ws9_c00224{word-spacing:-15.638400px;}
.ws4_c00224{word-spacing:-15.433800px;}
.ws1_c00224{word-spacing:-15.120000px;}
.ws7_c00224{word-spacing:-14.950200px;}
.ws8_c00224{word-spacing:-14.889600px;}
.ws0_c00224{word-spacing:-14.878200px;}
.ws2_c00224{word-spacing:-14.166000px;}
.wsa_c00224{word-spacing:0.000000px;}
._d_c00224{margin-left:-3.600000px;}
._6_c00224{margin-left:-2.367213px;}
._1_c00224{margin-left:-1.126776px;}
._2_c00224{width:1.476448px;}
._4_c00224{width:3.000415px;}
._5_c00224{width:4.165480px;}
._7_c00224{width:5.314857px;}
._0_c00224{width:6.471602px;}
._3_c00224{width:7.497979px;}
._a_c00224{width:8.547072px;}
._e_c00224{width:9.779930px;}
._12_c00224{width:11.126138px;}
._f_c00224{width:12.145782px;}
._10_c00224{width:14.309530px;}
._11_c00224{width:15.677665px;}
._13_c00224{width:20.860633px;}
._b_c00224{width:21.960000px;}
._c_c00224{width:23.438633px;}
._8_c00224{width:26.110776px;}
._9_c00224{width:27.365857px;}
._14_c00224{width:45.658716px;}
.fc0_c00224{color:rgb(0,0,0);}
.fs1_c00224{font-size:60.480000px;}
.fs0_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y3_c00224{bottom:4.320000px;}
.y26_c00224{bottom:12.235500px;}
.y23_c00224{bottom:21.585000px;}
.y5_c00224{bottom:25.200000px;}
.y4_c00224{bottom:32.040000px;}
.y25_c00224{bottom:38.149500px;}
.y1_c00224{bottom:57.240000px;}
.y24_c00224{bottom:135.400500px;}
.y22_c00224{bottom:196.605000px;}
.y21_c00224{bottom:265.395000px;}
.y20_c00224{bottom:305.355000px;}
.y1f_c00224{bottom:336.315000px;}
.y1e_c00224{bottom:367.305000px;}
.y1d_c00224{bottom:398.625000px;}
.y1c_c00224{bottom:429.585000px;}
.y1b_c00224{bottom:460.545000px;}
.y1a_c00224{bottom:491.550000px;}
.y19_c00224{bottom:522.870000px;}
.y18_c00224{bottom:562.830000px;}
.y17_c00224{bottom:593.790000px;}
.y16_c00224{bottom:624.780000px;}
.y15_c00224{bottom:655.740000px;}
.y14_c00224{bottom:687.060000px;}
.y13_c00224{bottom:718.020000px;}
.y12_c00224{bottom:749.010000px;}
.y11_c00224{bottom:788.970000px;}
.y10_c00224{bottom:820.290000px;}
.yf_c00224{bottom:851.295000px;}
.ye_c00224{bottom:882.255000px;}
.yd_c00224{bottom:913.215000px;}
.yc_c00224{bottom:944.535000px;}
.yb_c00224{bottom:975.525000px;}
.ya_c00224{bottom:1006.485000px;}
.y9_c00224{bottom:1044.285000px;}
.y8_c00224{bottom:1070.205000px;}
.y7_c00224{bottom:1096.170000px;}
.y6_c00224{bottom:1122.090000px;}
.y2_c00224{bottom:1189.050000px;}
.h3_c00224{height:20.550000px;}
.h4_c00224{height:41.395500px;}
.h8_c00224{height:43.941000px;}
.ha_c00224{height:54.219375px;}
.h5_c00224{height:59.357813px;}
.h9_c00224{height:60.475500px;}
.hb_c00224{height:60.952500px;}
.h2_c00224{height:64.546875px;}
.h7_c00224{height:70.628906px;}
.h6_c00224{height:70.664062px;}
.h0_c00224{height:1262.880000px;}
.h1_c00224{height:1263.000000px;}
.w2_c00224{width:8.310000px;}
.w4_c00224{width:325.215000px;}
.w5_c00224{width:327.735000px;}
.w3_c00224{width:638.190000px;}
.w0_c00224{width:893.160000px;}
.w1_c00224{width:893.250000px;}
.x0_c00224{left:0.000000px;}
.x7_c00224{left:7.546500px;}
.x6_c00224{left:119.929500px;}
.x3_c00224{left:127.489500px;}
.x1_c00224{left:154.515000px;}
.x4_c00224{left:169.995000px;}
.x5_c00224{left:178.635000px;}
.x8_c00224{left:445.860000px;}
.x2_c00224{left:757.365000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls17_c00224{letter-spacing:-1.344000pt;}
.ls13_c00224{letter-spacing:-1.280000pt;}
.ls19_c00224{letter-spacing:-1.258667pt;}
.ls10_c00224{letter-spacing:-0.848000pt;}
.ls18_c00224{letter-spacing:-0.810667pt;}
.ls14_c00224{letter-spacing:-0.576000pt;}
.lse_c00224{letter-spacing:-0.214933pt;}
.ls16_c00224{letter-spacing:-0.204800pt;}
.ls15_c00224{letter-spacing:-0.150933pt;}
.lsd_c00224{letter-spacing:0.000000pt;}
.ls11_c00224{letter-spacing:0.053867pt;}
.ls8_c00224{letter-spacing:0.160000pt;}
.ls5_c00224{letter-spacing:0.268800pt;}
.ls6_c00224{letter-spacing:0.278933pt;}
.ls4_c00224{letter-spacing:0.460800pt;}
.lsc_c00224{letter-spacing:0.465920pt;}
.lsf_c00224{letter-spacing:0.470933pt;}
.ls12_c00224{letter-spacing:0.624000pt;}
.lsa_c00224{letter-spacing:0.640000pt;}
.ls7_c00224{letter-spacing:1.280000pt;}
.ls2_c00224{letter-spacing:1.301333pt;}
.ls3_c00224{letter-spacing:1.937959pt;}
.ls1_c00224{letter-spacing:3.200000pt;}
.ls0_c00224{letter-spacing:5.760000pt;}
.ls9_c00224{letter-spacing:7.040000pt;}
.lsb_c00224{letter-spacing:42.240000pt;}
.ws6_c00224{word-spacing:-53.760000pt;}
.ws5_c00224{word-spacing:-16.000000pt;}
.ws3_c00224{word-spacing:-14.064000pt;}
.ws9_c00224{word-spacing:-13.900800pt;}
.ws4_c00224{word-spacing:-13.718933pt;}
.ws1_c00224{word-spacing:-13.440000pt;}
.ws7_c00224{word-spacing:-13.289067pt;}
.ws8_c00224{word-spacing:-13.235200pt;}
.ws0_c00224{word-spacing:-13.225067pt;}
.ws2_c00224{word-spacing:-12.592000pt;}
.wsa_c00224{word-spacing:0.000000pt;}
._d_c00224{margin-left:-3.200000pt;}
._6_c00224{margin-left:-2.104189pt;}
._1_c00224{margin-left:-1.001579pt;}
._2_c00224{width:1.312399pt;}
._4_c00224{width:2.667035pt;}
._5_c00224{width:3.702649pt;}
._7_c00224{width:4.724317pt;}
._0_c00224{width:5.752535pt;}
._3_c00224{width:6.664870pt;}
._a_c00224{width:7.597397pt;}
._e_c00224{width:8.693271pt;}
._12_c00224{width:9.889900pt;}
._f_c00224{width:10.796250pt;}
._10_c00224{width:12.719582pt;}
._11_c00224{width:13.935702pt;}
._13_c00224{width:18.542785pt;}
._b_c00224{width:19.520000pt;}
._c_c00224{width:20.834341pt;}
._8_c00224{width:23.209579pt;}
._9_c00224{width:24.325206pt;}
._14_c00224{width:40.585526pt;}
.fs1_c00224{font-size:53.760000pt;}
.fs0_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y3_c00224{bottom:3.840000pt;}
.y26_c00224{bottom:10.876000pt;}
.y23_c00224{bottom:19.186667pt;}
.y5_c00224{bottom:22.400000pt;}
.y4_c00224{bottom:28.480000pt;}
.y25_c00224{bottom:33.910667pt;}
.y1_c00224{bottom:50.880000pt;}
.y24_c00224{bottom:120.356000pt;}
.y22_c00224{bottom:174.760000pt;}
.y21_c00224{bottom:235.906667pt;}
.y20_c00224{bottom:271.426667pt;}
.y1f_c00224{bottom:298.946667pt;}
.y1e_c00224{bottom:326.493333pt;}
.y1d_c00224{bottom:354.333333pt;}
.y1c_c00224{bottom:381.853333pt;}
.y1b_c00224{bottom:409.373333pt;}
.y1a_c00224{bottom:436.933333pt;}
.y19_c00224{bottom:464.773333pt;}
.y18_c00224{bottom:500.293333pt;}
.y17_c00224{bottom:527.813333pt;}
.y16_c00224{bottom:555.360000pt;}
.y15_c00224{bottom:582.880000pt;}
.y14_c00224{bottom:610.720000pt;}
.y13_c00224{bottom:638.240000pt;}
.y12_c00224{bottom:665.786667pt;}
.y11_c00224{bottom:701.306667pt;}
.y10_c00224{bottom:729.146667pt;}
.yf_c00224{bottom:756.706667pt;}
.ye_c00224{bottom:784.226667pt;}
.yd_c00224{bottom:811.746667pt;}
.yc_c00224{bottom:839.586667pt;}
.yb_c00224{bottom:867.133333pt;}
.ya_c00224{bottom:894.653333pt;}
.y9_c00224{bottom:928.253333pt;}
.y8_c00224{bottom:951.293333pt;}
.y7_c00224{bottom:974.373333pt;}
.y6_c00224{bottom:997.413333pt;}
.y2_c00224{bottom:1056.933333pt;}
.h3_c00224{height:18.266667pt;}
.h4_c00224{height:36.796000pt;}
.h8_c00224{height:39.058667pt;}
.ha_c00224{height:48.195000pt;}
.h5_c00224{height:52.762500pt;}
.h9_c00224{height:53.756000pt;}
.hb_c00224{height:54.180000pt;}
.h2_c00224{height:57.375000pt;}
.h7_c00224{height:62.781250pt;}
.h6_c00224{height:62.812500pt;}
.h0_c00224{height:1122.560000pt;}
.h1_c00224{height:1122.666667pt;}
.w2_c00224{width:7.386667pt;}
.w4_c00224{width:289.080000pt;}
.w5_c00224{width:291.320000pt;}
.w3_c00224{width:567.280000pt;}
.w0_c00224{width:793.920000pt;}
.w1_c00224{width:794.000000pt;}
.x0_c00224{left:0.000000pt;}
.x7_c00224{left:6.708000pt;}
.x6_c00224{left:106.604000pt;}
.x3_c00224{left:113.324000pt;}
.x1_c00224{left:137.346667pt;}
.x4_c00224{left:151.106667pt;}
.x5_c00224{left:158.786667pt;}
.x8_c00224{left:396.320000pt;}
.x2_c00224{left:673.213333pt;}
}





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

.ir_c00225:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00225;src:url('chunks/assets/font_35f33d285e47ecd44fb4b636.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_2b5c06b1280320406506cb6d.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_4d6fec7be98f3e14ea65d89a.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;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_c00225;src:url('chunks/assets/font_80404fcf6c2950961d689f13.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00225;src:url('chunks/assets/font_cf59a2a259b1bff687433f01.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.lsf_c00225{letter-spacing:-2.880000px;}
.lsa_c00225{letter-spacing:-1.416000px;}
.ls10_c00225{letter-spacing:-0.954000px;}
.ls7_c00225{letter-spacing:-0.912000px;}
.lsb_c00225{letter-spacing:-0.720000px;}
.lsd_c00225{letter-spacing:-0.507000px;}
.ls5_c00225{letter-spacing:0.000000px;}
.ls2_c00225{letter-spacing:0.020160px;}
.ls6_c00225{letter-spacing:0.022800px;}
.ls8_c00225{letter-spacing:0.302400px;}
.ls9_c00225{letter-spacing:0.466800px;}
.lse_c00225{letter-spacing:0.486600px;}
.ls1_c00225{letter-spacing:0.720000px;}
.lsc_c00225{letter-spacing:1.440000px;}
.ls4_c00225{letter-spacing:5.040000px;}
.ls0_c00225{letter-spacing:46.080000px;}
.ls3_c00225{letter-spacing:47.520000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00225{word-spacing:-18.000000px;}
.ws5_c00225{word-spacing:-15.606600px;}
.ws1_c00225{word-spacing:-15.422400px;}
.ws0_c00225{word-spacing:-15.120000px;}
.ws4_c00225{word-spacing:-14.613000px;}
.ws6_c00225{word-spacing:-14.166000px;}
.ws2_c00225{word-spacing:-13.704000px;}
.ws7_c00225{word-spacing:0.000000px;}
._3_c00225{margin-left:-2.691243px;}
._0_c00225{margin-left:-1.281362px;}
._1_c00225{width:1.469050px;}
._9_c00225{width:2.664000px;}
._a_c00225{width:3.816000px;}
._14_c00225{width:4.946461px;}
._b_c00225{width:5.989484px;}
._7_c00225{width:7.469117px;}
._6_c00225{width:8.566193px;}
._8_c00225{width:10.150193px;}
._12_c00225{width:13.355508px;}
._11_c00225{width:14.772000px;}
._d_c00225{width:15.825362px;}
._c_c00225{width:16.990193px;}
._10_c00225{width:19.191279px;}
._f_c00225{width:20.649362px;}
._e_c00225{width:21.988312px;}
._13_c00225{width:22.994662px;}
._4_c00225{width:45.916195px;}
._5_c00225{width:47.261510px;}
._2_c00225{width:48.304328px;}
.fc1_c00225{color:rgb(0,16,238);}
.fc0_c00225{color:rgb(0,0,0);}
.fs3_c00225{font-size:38.880000px;}
.fs2_c00225{font-size:47.520000px;}
.fs1_c00225{font-size:60.480000px;}
.fs0_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y3_c00225{bottom:4.320000px;}
.y22_c00225{bottom:21.585000px;}
.y9_c00225{bottom:21.600000px;}
.y5_c00225{bottom:25.200000px;}
.y4_c00225{bottom:32.040000px;}
.y8_c00225{bottom:47.565000px;}
.y1_c00225{bottom:57.240000px;}
.y7_c00225{bottom:73.485000px;}
.y28_c00225{bottom:151.590000px;}
.y27_c00225{bottom:168.870000px;}
.y26_c00225{bottom:186.150000px;}
.y25_c00225{bottom:203.430000px;}
.y24_c00225{bottom:210.270000px;}
.y23_c00225{bottom:221.430000px;}
.y21_c00225{bottom:273.330000px;}
.y20_c00225{bottom:342.795000px;}
.y1f_c00225{bottom:382.785000px;}
.y1e_c00225{bottom:413.745000px;}
.y1d_c00225{bottom:444.705000px;}
.y1c_c00225{bottom:485.070000px;}
.y1b_c00225{bottom:516.030000px;}
.y1a_c00225{bottom:555.990000px;}
.y19_c00225{bottom:586.950000px;}
.y18_c00225{bottom:618.300000px;}
.y17_c00225{bottom:649.260000px;}
.y16_c00225{bottom:680.220000px;}
.y15_c00225{bottom:711.180000px;}
.y14_c00225{bottom:742.530000px;}
.y13_c00225{bottom:773.490000px;}
.y12_c00225{bottom:804.450000px;}
.y11_c00225{bottom:835.410000px;}
.y10_c00225{bottom:866.775000px;}
.yf_c00225{bottom:897.735000px;}
.ye_c00225{bottom:928.695000px;}
.yd_c00225{bottom:959.655000px;}
.yb_c00225{bottom:991.005000px;}
.yc_c00225{bottom:999.285000px;}
.ya_c00225{bottom:1021.965000px;}
.y6_c00225{bottom:1047.885000px;}
.y2_c00225{bottom:1189.050000px;}
.h3_c00225{height:20.550000px;}
.hc_c00225{height:34.855313px;}
.h4_c00225{height:41.395500px;}
.hb_c00225{height:43.905000px;}
.ha_c00225{height:46.638281px;}
.h6_c00225{height:59.357813px;}
.h2_c00225{height:64.546875px;}
.h7_c00225{height:70.628906px;}
.h8_c00225{height:70.664062px;}
.h5_c00225{height:86.790000px;}
.h9_c00225{height:1262.875500px;}
.h0_c00225{height:1262.880000px;}
.h1_c00225{height:1263.000000px;}
.w2_c00225{width:8.310000px;}
.w7_c00225{width:322.695000px;}
.w4_c00225{width:325.215000px;}
.w5_c00225{width:327.735000px;}
.w3_c00225{width:638.190000px;}
.w6_c00225{width:893.157000px;}
.w0_c00225{width:893.160000px;}
.w1_c00225{width:893.250000px;}
.x0_c00225{left:0.000000px;}
.x5_c00225{left:7.546500px;}
.x4_c00225{left:119.929500px;}
.x3_c00225{left:127.489500px;}
.xd_c00225{left:142.632000px;}
.x1_c00225{left:154.515000px;}
.xa_c00225{left:178.635000px;}
.x9_c00225{left:180.795000px;}
.xc_c00225{left:343.590000px;}
.x6_c00225{left:445.860000px;}
.xb_c00225{left:452.340000px;}
.x7_c00225{left:742.962000px;}
.x2_c00225{left:757.365000px;}
.x8_c00225{left:761.370000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.lsf_c00225{letter-spacing:-2.560000pt;}
.lsa_c00225{letter-spacing:-1.258667pt;}
.ls10_c00225{letter-spacing:-0.848000pt;}
.ls7_c00225{letter-spacing:-0.810667pt;}
.lsb_c00225{letter-spacing:-0.640000pt;}
.lsd_c00225{letter-spacing:-0.450667pt;}
.ls5_c00225{letter-spacing:0.000000pt;}
.ls2_c00225{letter-spacing:0.017920pt;}
.ls6_c00225{letter-spacing:0.020267pt;}
.ls8_c00225{letter-spacing:0.268800pt;}
.ls9_c00225{letter-spacing:0.414933pt;}
.lse_c00225{letter-spacing:0.432533pt;}
.ls1_c00225{letter-spacing:0.640000pt;}
.lsc_c00225{letter-spacing:1.280000pt;}
.ls4_c00225{letter-spacing:4.480000pt;}
.ls0_c00225{letter-spacing:40.960000pt;}
.ls3_c00225{letter-spacing:42.240000pt;}
.ws3_c00225{word-spacing:-16.000000pt;}
.ws5_c00225{word-spacing:-13.872533pt;}
.ws1_c00225{word-spacing:-13.708800pt;}
.ws0_c00225{word-spacing:-13.440000pt;}
.ws4_c00225{word-spacing:-12.989333pt;}
.ws6_c00225{word-spacing:-12.592000pt;}
.ws2_c00225{word-spacing:-12.181333pt;}
.ws7_c00225{word-spacing:0.000000pt;}
._3_c00225{margin-left:-2.392216pt;}
._0_c00225{margin-left:-1.138988pt;}
._1_c00225{width:1.305822pt;}
._9_c00225{width:2.368000pt;}
._a_c00225{width:3.392000pt;}
._14_c00225{width:4.396855pt;}
._b_c00225{width:5.323986pt;}
._7_c00225{width:6.639215pt;}
._6_c00225{width:7.614394pt;}
._8_c00225{width:9.022394pt;}
._12_c00225{width:11.871563pt;}
._11_c00225{width:13.130667pt;}
._d_c00225{width:14.066988pt;}
._c_c00225{width:15.102394pt;}
._10_c00225{width:17.058915pt;}
._f_c00225{width:18.354988pt;}
._e_c00225{width:19.545167pt;}
._13_c00225{width:20.439700pt;}
._4_c00225{width:40.814396pt;}
._5_c00225{width:42.010231pt;}
._2_c00225{width:42.937180pt;}
.fs3_c00225{font-size:34.560000pt;}
.fs2_c00225{font-size:42.240000pt;}
.fs1_c00225{font-size:53.760000pt;}
.fs0_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y3_c00225{bottom:3.840000pt;}
.y22_c00225{bottom:19.186667pt;}
.y9_c00225{bottom:19.200000pt;}
.y5_c00225{bottom:22.400000pt;}
.y4_c00225{bottom:28.480000pt;}
.y8_c00225{bottom:42.280000pt;}
.y1_c00225{bottom:50.880000pt;}
.y7_c00225{bottom:65.320000pt;}
.y28_c00225{bottom:134.746667pt;}
.y27_c00225{bottom:150.106667pt;}
.y26_c00225{bottom:165.466667pt;}
.y25_c00225{bottom:180.826667pt;}
.y24_c00225{bottom:186.906667pt;}
.y23_c00225{bottom:196.826667pt;}
.y21_c00225{bottom:242.960000pt;}
.y20_c00225{bottom:304.706667pt;}
.y1f_c00225{bottom:340.253333pt;}
.y1e_c00225{bottom:367.773333pt;}
.y1d_c00225{bottom:395.293333pt;}
.y1c_c00225{bottom:431.173333pt;}
.y1b_c00225{bottom:458.693333pt;}
.y1a_c00225{bottom:494.213333pt;}
.y19_c00225{bottom:521.733333pt;}
.y18_c00225{bottom:549.600000pt;}
.y17_c00225{bottom:577.120000pt;}
.y16_c00225{bottom:604.640000pt;}
.y15_c00225{bottom:632.160000pt;}
.y14_c00225{bottom:660.026667pt;}
.y13_c00225{bottom:687.546667pt;}
.y12_c00225{bottom:715.066667pt;}
.y11_c00225{bottom:742.586667pt;}
.y10_c00225{bottom:770.466667pt;}
.yf_c00225{bottom:797.986667pt;}
.ye_c00225{bottom:825.506667pt;}
.yd_c00225{bottom:853.026667pt;}
.yb_c00225{bottom:880.893333pt;}
.yc_c00225{bottom:888.253333pt;}
.ya_c00225{bottom:908.413333pt;}
.y6_c00225{bottom:931.453333pt;}
.y2_c00225{bottom:1056.933333pt;}
.h3_c00225{height:18.266667pt;}
.hc_c00225{height:30.982500pt;}
.h4_c00225{height:36.796000pt;}
.hb_c00225{height:39.026667pt;}
.ha_c00225{height:41.456250pt;}
.h6_c00225{height:52.762500pt;}
.h2_c00225{height:57.375000pt;}
.h7_c00225{height:62.781250pt;}
.h8_c00225{height:62.812500pt;}
.h5_c00225{height:77.146667pt;}
.h9_c00225{height:1122.556000pt;}
.h0_c00225{height:1122.560000pt;}
.h1_c00225{height:1122.666667pt;}
.w2_c00225{width:7.386667pt;}
.w7_c00225{width:286.840000pt;}
.w4_c00225{width:289.080000pt;}
.w5_c00225{width:291.320000pt;}
.w3_c00225{width:567.280000pt;}
.w6_c00225{width:793.917333pt;}
.w0_c00225{width:793.920000pt;}
.w1_c00225{width:794.000000pt;}
.x0_c00225{left:0.000000pt;}
.x5_c00225{left:6.708000pt;}
.x4_c00225{left:106.604000pt;}
.x3_c00225{left:113.324000pt;}
.xd_c00225{left:126.784000pt;}
.x1_c00225{left:137.346667pt;}
.xa_c00225{left:158.786667pt;}
.x9_c00225{left:160.706667pt;}
.xc_c00225{left:305.413333pt;}
.x6_c00225{left:396.320000pt;}
.xb_c00225{left:402.080000pt;}
.x7_c00225{left:660.410667pt;}
.x2_c00225{left:673.213333pt;}
.x8_c00225{left:676.773333pt;}
}





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

.ir_c00226:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00226;src:url('chunks/assets/font_5d95430668fc8f854c24c60d.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_8530ae44f080ad1ce32b8bd7.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_d7c8d9454cc2fa2106e3481e.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_cccfdd751a3863d5a24b266c.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00226;src:url('chunks/assets/font_26bc896c9698d659c7c00f6d.woff2')format("woff");}.ff6_c00226{font-family:ff6_c00226;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_c00226;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff7_c00226{font-family:ff7_c00226;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls4_c00226{letter-spacing:-1.416000px;}
.ls7_c00226{letter-spacing:-1.116000px;}
.ls5_c00226{letter-spacing:-0.241800px;}
.ls3_c00226{letter-spacing:0.000000px;}
.ls1_c00226{letter-spacing:0.207360px;}
.ls8_c00226{letter-spacing:0.504000px;}
.ls0_c00226{letter-spacing:0.720000px;}
.ls2_c00226{letter-spacing:0.864000px;}
.ls6_c00226{letter-spacing:1.140000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00226{word-spacing:-72.000000px;}
.ws4_c00226{word-spacing:-18.504000px;}
.ws2_c00226{word-spacing:-18.000000px;}
.ws1_c00226{word-spacing:-16.260000px;}
.ws0_c00226{word-spacing:-15.120000px;}
.ws5_c00226{word-spacing:0.000000px;}
._10_c00226{margin-left:-3.535932px;}
._3_c00226{margin-left:-2.442607px;}
._0_c00226{margin-left:-1.390798px;}
._1_c00226{width:1.208995px;}
._2_c00226{width:2.681401px;}
._11_c00226{width:3.751447px;}
._4_c00226{width:5.688000px;}
._5_c00226{width:6.839422px;}
._6_c00226{width:7.867188px;}
._b_c00226{width:9.871222px;}
._a_c00226{width:10.887009px;}
._9_c00226{width:12.177612px;}
._8_c00226{width:14.998802px;}
._7_c00226{width:16.200000px;}
._e_c00226{width:20.645433px;}
._d_c00226{width:21.995390px;}
._c_c00226{width:23.052024px;}
._f_c00226{width:24.417612px;}
.fc0_c00226{color:rgb(0,0,0);}
.fs1_c00226{font-size:60.480000px;}
.fs0_c00226{font-size:72.000000px;}
.y0_c00226{bottom:0.000000px;}
.y3_c00226{bottom:4.320000px;}
.yf_c00226{bottom:21.585000px;}
.y9_c00226{bottom:21.600000px;}
.y5_c00226{bottom:25.200000px;}
.y4_c00226{bottom:32.040000px;}
.y10_c00226{bottom:38.865000px;}
.yb_c00226{bottom:38.880000px;}
.ye_c00226{bottom:56.505000px;}
.y8_c00226{bottom:56.520000px;}
.y1_c00226{bottom:57.240000px;}
.ya_c00226{bottom:73.845000px;}
.y7_c00226{bottom:91.125000px;}
.y27_c00226{bottom:166.350000px;}
.y26_c00226{bottom:197.670000px;}
.y25_c00226{bottom:228.630000px;}
.y24_c00226{bottom:259.635000px;}
.y23_c00226{bottom:290.595000px;}
.y22_c00226{bottom:321.915000px;}
.y21_c00226{bottom:352.875000px;}
.y20_c00226{bottom:383.865000px;}
.y1f_c00226{bottom:414.825000px;}
.y1e_c00226{bottom:446.145000px;}
.y1d_c00226{bottom:477.150000px;}
.y1c_c00226{bottom:508.110000px;}
.y1b_c00226{bottom:539.070000px;}
.y1a_c00226{bottom:579.390000px;}
.y19_c00226{bottom:610.380000px;}
.y18_c00226{bottom:641.340000px;}
.y17_c00226{bottom:672.300000px;}
.y16_c00226{bottom:703.620000px;}
.y15_c00226{bottom:734.610000px;}
.y14_c00226{bottom:765.570000px;}
.y13_c00226{bottom:796.530000px;}
.y12_c00226{bottom:827.850000px;}
.y11_c00226{bottom:867.495000px;}
.yd_c00226{bottom:894.510000px;}
.yc_c00226{bottom:974.805000px;}
.y6_c00226{bottom:1020.165000px;}
.y2_c00226{bottom:1189.050000px;}
.h3_c00226{height:20.550000px;}
.h4_c00226{height:41.395500px;}
.h8_c00226{height:43.905000px;}
.h6_c00226{height:59.357813px;}
.h7_c00226{height:60.952500px;}
.h2_c00226{height:64.546875px;}
.hb_c00226{height:70.664062px;}
.ha_c00226{height:72.562500px;}
.h9_c00226{height:78.840000px;}
.h5_c00226{height:113.430000px;}
.h0_c00226{height:1262.880000px;}
.h1_c00226{height:1263.000000px;}
.w2_c00226{width:8.310000px;}
.w4_c00226{width:322.695000px;}
.w3_c00226{width:638.190000px;}
.w0_c00226{width:893.160000px;}
.w1_c00226{width:893.250000px;}
.x0_c00226{left:0.000000px;}
.x3_c00226{left:127.489500px;}
.x1_c00226{left:154.515000px;}
.x5_c00226{left:178.635000px;}
.x4_c00226{left:452.340000px;}
.x2_c00226{left:757.365000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls4_c00226{letter-spacing:-1.258667pt;}
.ls7_c00226{letter-spacing:-0.992000pt;}
.ls5_c00226{letter-spacing:-0.214933pt;}
.ls3_c00226{letter-spacing:0.000000pt;}
.ls1_c00226{letter-spacing:0.184320pt;}
.ls8_c00226{letter-spacing:0.448000pt;}
.ls0_c00226{letter-spacing:0.640000pt;}
.ls2_c00226{letter-spacing:0.768000pt;}
.ls6_c00226{letter-spacing:1.013333pt;}
.ws3_c00226{word-spacing:-64.000000pt;}
.ws4_c00226{word-spacing:-16.448000pt;}
.ws2_c00226{word-spacing:-16.000000pt;}
.ws1_c00226{word-spacing:-14.453333pt;}
.ws0_c00226{word-spacing:-13.440000pt;}
.ws5_c00226{word-spacing:0.000000pt;}
._10_c00226{margin-left:-3.143051pt;}
._3_c00226{margin-left:-2.171206pt;}
._0_c00226{margin-left:-1.236265pt;}
._1_c00226{width:1.074662pt;}
._2_c00226{width:2.383468pt;}
._11_c00226{width:3.334619pt;}
._4_c00226{width:5.056000pt;}
._5_c00226{width:6.079486pt;}
._6_c00226{width:6.993056pt;}
._b_c00226{width:8.774420pt;}
._a_c00226{width:9.677341pt;}
._9_c00226{width:10.824544pt;}
._8_c00226{width:13.332268pt;}
._7_c00226{width:14.400000pt;}
._e_c00226{width:18.351496pt;}
._d_c00226{width:19.551458pt;}
._c_c00226{width:20.490688pt;}
._f_c00226{width:21.704544pt;}
.fs1_c00226{font-size:53.760000pt;}
.fs0_c00226{font-size:64.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y3_c00226{bottom:3.840000pt;}
.yf_c00226{bottom:19.186667pt;}
.y9_c00226{bottom:19.200000pt;}
.y5_c00226{bottom:22.400000pt;}
.y4_c00226{bottom:28.480000pt;}
.y10_c00226{bottom:34.546667pt;}
.yb_c00226{bottom:34.560000pt;}
.ye_c00226{bottom:50.226667pt;}
.y8_c00226{bottom:50.240000pt;}
.y1_c00226{bottom:50.880000pt;}
.ya_c00226{bottom:65.640000pt;}
.y7_c00226{bottom:81.000000pt;}
.y27_c00226{bottom:147.866667pt;}
.y26_c00226{bottom:175.706667pt;}
.y25_c00226{bottom:203.226667pt;}
.y24_c00226{bottom:230.786667pt;}
.y23_c00226{bottom:258.306667pt;}
.y22_c00226{bottom:286.146667pt;}
.y21_c00226{bottom:313.666667pt;}
.y20_c00226{bottom:341.213333pt;}
.y1f_c00226{bottom:368.733333pt;}
.y1e_c00226{bottom:396.573333pt;}
.y1d_c00226{bottom:424.133333pt;}
.y1c_c00226{bottom:451.653333pt;}
.y1b_c00226{bottom:479.173333pt;}
.y1a_c00226{bottom:515.013333pt;}
.y19_c00226{bottom:542.560000pt;}
.y18_c00226{bottom:570.080000pt;}
.y17_c00226{bottom:597.600000pt;}
.y16_c00226{bottom:625.440000pt;}
.y15_c00226{bottom:652.986667pt;}
.y14_c00226{bottom:680.506667pt;}
.y13_c00226{bottom:708.026667pt;}
.y12_c00226{bottom:735.866667pt;}
.y11_c00226{bottom:771.106667pt;}
.yd_c00226{bottom:795.120000pt;}
.yc_c00226{bottom:866.493333pt;}
.y6_c00226{bottom:906.813333pt;}
.y2_c00226{bottom:1056.933333pt;}
.h3_c00226{height:18.266667pt;}
.h4_c00226{height:36.796000pt;}
.h8_c00226{height:39.026667pt;}
.h6_c00226{height:52.762500pt;}
.h7_c00226{height:54.180000pt;}
.h2_c00226{height:57.375000pt;}
.hb_c00226{height:62.812500pt;}
.ha_c00226{height:64.500000pt;}
.h9_c00226{height:70.080000pt;}
.h5_c00226{height:100.826667pt;}
.h0_c00226{height:1122.560000pt;}
.h1_c00226{height:1122.666667pt;}
.w2_c00226{width:7.386667pt;}
.w4_c00226{width:286.840000pt;}
.w3_c00226{width:567.280000pt;}
.w0_c00226{width:793.920000pt;}
.w1_c00226{width:794.000000pt;}
.x0_c00226{left:0.000000pt;}
.x3_c00226{left:113.324000pt;}
.x1_c00226{left:137.346667pt;}
.x5_c00226{left:158.786667pt;}
.x4_c00226{left:402.080000pt;}
.x2_c00226{left:673.213333pt;}
}





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

.ir_c00227:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00227;src:url('chunks/assets/font_f5f19d1e357c8fe49cf546a4.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_f669d3bedb67cc63dabf4827.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_23a3b9165db81d84e763f66a.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;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_c00227;src:url('chunks/assets/font_e63058b95f38a0f4405b7e87.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls0_c00227{letter-spacing:0.000000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:-18.000000px;}
.ws1_c00227{word-spacing:0.000000px;}
._f_c00227{margin-left:-3.816000px;}
._3_c00227{margin-left:-2.520000px;}
._0_c00227{margin-left:-1.224000px;}
._2_c00227{width:1.152000px;}
._4_c00227{width:2.232000px;}
._1_c00227{width:3.240000px;}
._5_c00227{width:4.260024px;}
._9_c00227{width:6.264000px;}
._a_c00227{width:7.776000px;}
._c_c00227{width:8.784000px;}
._10_c00227{width:10.008000px;}
._e_c00227{width:11.016000px;}
._d_c00227{width:13.608000px;}
._b_c00227{width:14.760000px;}
._7_c00227{width:16.488000px;}
._6_c00227{width:19.008000px;}
._8_c00227{width:20.160000px;}
._14_c00227{width:25.128000px;}
._15_c00227{width:26.843976px;}
._16_c00227{width:28.464024px;}
._11_c00227{width:38.736000px;}
._13_c00227{width:39.960000px;}
._12_c00227{width:41.472000px;}
.fc0_c00227{color:rgb(0,0,0);}
.fs0_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y3_c00227{bottom:4.320000px;}
.y5_c00227{bottom:25.200000px;}
.y4_c00227{bottom:32.040000px;}
.y1_c00227{bottom:57.240000px;}
.y25_c00227{bottom:147.276000px;}
.y24_c00227{bottom:178.230000px;}
.y23_c00227{bottom:209.550000px;}
.y22_c00227{bottom:240.555000px;}
.y21_c00227{bottom:271.515000px;}
.y20_c00227{bottom:302.475000px;}
.y1f_c00227{bottom:333.795000px;}
.y1e_c00227{bottom:364.785000px;}
.y1d_c00227{bottom:395.745000px;}
.y1c_c00227{bottom:426.705000px;}
.y1b_c00227{bottom:458.025000px;}
.y1a_c00227{bottom:489.030000px;}
.y19_c00227{bottom:519.990000px;}
.y18_c00227{bottom:550.950000px;}
.y17_c00227{bottom:581.910000px;}
.y16_c00227{bottom:622.260000px;}
.y15_c00227{bottom:653.220000px;}
.y14_c00227{bottom:684.180000px;}
.y13_c00227{bottom:715.140000px;}
.y12_c00227{bottom:746.490000px;}
.y11_c00227{bottom:777.450000px;}
.y10_c00227{bottom:808.410000px;}
.yf_c00227{bottom:839.370000px;}
.ye_c00227{bottom:870.735000px;}
.yd_c00227{bottom:901.695000px;}
.yc_c00227{bottom:932.655000px;}
.yb_c00227{bottom:963.645000px;}
.ya_c00227{bottom:994.965000px;}
.y9_c00227{bottom:1025.925000px;}
.y8_c00227{bottom:1056.885000px;}
.y7_c00227{bottom:1087.890000px;}
.y6_c00227{bottom:1119.210000px;}
.y2_c00227{bottom:1189.050000px;}
.h3_c00227{height:20.550000px;}
.h4_c00227{height:41.395500px;}
.h2_c00227{height:64.546875px;}
.h5_c00227{height:70.664062px;}
.h0_c00227{height:1262.880000px;}
.h1_c00227{height:1263.000000px;}
.w2_c00227{width:8.310000px;}
.w3_c00227{width:638.190000px;}
.w0_c00227{width:893.160000px;}
.w1_c00227{width:893.250000px;}
.x0_c00227{left:0.000000px;}
.x3_c00227{left:127.489500px;}
.x1_c00227{left:154.515000px;}
.x4_c00227{left:178.635000px;}
.x2_c00227{left:757.365000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:-16.000000pt;}
.ws1_c00227{word-spacing:0.000000pt;}
._f_c00227{margin-left:-3.392000pt;}
._3_c00227{margin-left:-2.240000pt;}
._0_c00227{margin-left:-1.088000pt;}
._2_c00227{width:1.024000pt;}
._4_c00227{width:1.984000pt;}
._1_c00227{width:2.880000pt;}
._5_c00227{width:3.786688pt;}
._9_c00227{width:5.568000pt;}
._a_c00227{width:6.912000pt;}
._c_c00227{width:7.808000pt;}
._10_c00227{width:8.896000pt;}
._e_c00227{width:9.792000pt;}
._d_c00227{width:12.096000pt;}
._b_c00227{width:13.120000pt;}
._7_c00227{width:14.656000pt;}
._6_c00227{width:16.896000pt;}
._8_c00227{width:17.920000pt;}
._14_c00227{width:22.336000pt;}
._15_c00227{width:23.861312pt;}
._16_c00227{width:25.301355pt;}
._11_c00227{width:34.432000pt;}
._13_c00227{width:35.520000pt;}
._12_c00227{width:36.864000pt;}
.fs0_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y3_c00227{bottom:3.840000pt;}
.y5_c00227{bottom:22.400000pt;}
.y4_c00227{bottom:28.480000pt;}
.y1_c00227{bottom:50.880000pt;}
.y25_c00227{bottom:130.912000pt;}
.y24_c00227{bottom:158.426667pt;}
.y23_c00227{bottom:186.266667pt;}
.y22_c00227{bottom:213.826667pt;}
.y21_c00227{bottom:241.346667pt;}
.y20_c00227{bottom:268.866667pt;}
.y1f_c00227{bottom:296.706667pt;}
.y1e_c00227{bottom:324.253333pt;}
.y1d_c00227{bottom:351.773333pt;}
.y1c_c00227{bottom:379.293333pt;}
.y1b_c00227{bottom:407.133333pt;}
.y1a_c00227{bottom:434.693333pt;}
.y19_c00227{bottom:462.213333pt;}
.y18_c00227{bottom:489.733333pt;}
.y17_c00227{bottom:517.253333pt;}
.y16_c00227{bottom:553.120000pt;}
.y15_c00227{bottom:580.640000pt;}
.y14_c00227{bottom:608.160000pt;}
.y13_c00227{bottom:635.680000pt;}
.y12_c00227{bottom:663.546667pt;}
.y11_c00227{bottom:691.066667pt;}
.y10_c00227{bottom:718.586667pt;}
.yf_c00227{bottom:746.106667pt;}
.ye_c00227{bottom:773.986667pt;}
.yd_c00227{bottom:801.506667pt;}
.yc_c00227{bottom:829.026667pt;}
.yb_c00227{bottom:856.573333pt;}
.ya_c00227{bottom:884.413333pt;}
.y9_c00227{bottom:911.933333pt;}
.y8_c00227{bottom:939.453333pt;}
.y7_c00227{bottom:967.013333pt;}
.y6_c00227{bottom:994.853333pt;}
.y2_c00227{bottom:1056.933333pt;}
.h3_c00227{height:18.266667pt;}
.h4_c00227{height:36.796000pt;}
.h2_c00227{height:57.375000pt;}
.h5_c00227{height:62.812500pt;}
.h0_c00227{height:1122.560000pt;}
.h1_c00227{height:1122.666667pt;}
.w2_c00227{width:7.386667pt;}
.w3_c00227{width:567.280000pt;}
.w0_c00227{width:793.920000pt;}
.w1_c00227{width:794.000000pt;}
.x0_c00227{left:0.000000pt;}
.x3_c00227{left:113.324000pt;}
.x1_c00227{left:137.346667pt;}
.x4_c00227{left:158.786667pt;}
.x2_c00227{left:673.213333pt;}
}





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

.ir_c00228:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00228;src:url('chunks/assets/font_b504a0f473ec1d4da3a61de5.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_8d168438680a3d1e23021bd6.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_0e0f0ce1496145ce7035dada.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;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_c00228;src:url('chunks/assets/font_d3017a2edc72aae01fb7568d.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00228;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls1_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.720000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:-15.120000px;}
.ws1_c00228{word-spacing:0.000000px;}
._2_c00228{margin-left:-3.096000px;}
._0_c00228{margin-left:-1.728000px;}
._1_c00228{width:1.368000px;}
._3_c00228{width:2.592000px;}
._4_c00228{width:3.684024px;}
._f_c00228{width:4.968000px;}
._10_c00228{width:6.984000px;}
._11_c00228{width:8.567976px;}
._9_c00228{width:10.740004px;}
._7_c00228{width:12.092999px;}
._8_c00228{width:13.093206px;}
._b_c00228{width:14.432383px;}
._a_c00228{width:16.005588px;}
._12_c00228{width:19.008000px;}
._5_c00228{width:20.473799px;}
._6_c00228{width:21.690369px;}
._e_c00228{width:22.896000px;}
._d_c00228{width:25.848000px;}
._c_c00228{width:27.432000px;}
._13_c00228{width:67.764000px;}
.fc1_c00228{color:transparent;}
.fc0_c00228{color:rgb(0,0,0);}
.fs3_c00228{font-size:38.880000px;}
.fs2_c00228{font-size:47.520000px;}
.fs1_c00228{font-size:60.480000px;}
.fs0_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y3_c00228{bottom:4.320000px;}
.ye_c00228{bottom:21.585000px;}
.yc_c00228{bottom:21.615000px;}
.y12_c00228{bottom:21.630000px;}
.y5_c00228{bottom:25.200000px;}
.y4_c00228{bottom:32.040000px;}
.ya_c00228{bottom:34.575000px;}
.y10_c00228{bottom:34.590000px;}
.y14_c00228{bottom:47.505000px;}
.yb_c00228{bottom:47.535000px;}
.y11_c00228{bottom:47.550000px;}
.y1_c00228{bottom:57.240000px;}
.y15_c00228{bottom:73.425000px;}
.y2b_c00228{bottom:151.590000px;}
.y2a_c00228{bottom:168.870000px;}
.y29_c00228{bottom:186.150000px;}
.y28_c00228{bottom:203.430000px;}
.y27_c00228{bottom:220.710000px;}
.y26_c00228{bottom:227.550000px;}
.y25_c00228{bottom:238.755000px;}
.y24_c00228{bottom:272.595000px;}
.y23_c00228{bottom:312.195000px;}
.y22_c00228{bottom:352.515000px;}
.y21_c00228{bottom:383.865000px;}
.y20_c00228{bottom:414.825000px;}
.y1f_c00228{bottom:445.785000px;}
.y1e_c00228{bottom:476.790000px;}
.y1d_c00228{bottom:508.110000px;}
.y1c_c00228{bottom:539.070000px;}
.y1a_c00228{bottom:570.030000px;}
.y1b_c00228{bottom:578.310000px;}
.y19_c00228{bottom:601.020000px;}
.y18_c00228{bottom:632.340000px;}
.y17_c00228{bottom:663.300000px;}
.y16_c00228{bottom:703.260000px;}
.y13_c00228{bottom:729.945000px;}
.yf_c00228{bottom:827.145000px;}
.yd_c00228{bottom:898.470000px;}
.y9_c00228{bottom:943.830000px;}
.y8_c00228{bottom:1038.885000px;}
.y7_c00228{bottom:1078.845000px;}
.y6_c00228{bottom:1119.210000px;}
.y2_c00228{bottom:1189.050000px;}
.h3_c00228{height:20.550000px;}
.hf_c00228{height:34.855313px;}
.h4_c00228{height:41.395500px;}
.h9_c00228{height:43.905000px;}
.hd_c00228{height:46.638281px;}
.h10_c00228{height:54.219375px;}
.h8_c00228{height:59.357813px;}
.h2_c00228{height:64.546875px;}
.h7_c00228{height:69.840000px;}
.ha_c00228{height:69.861000px;}
.h6_c00228{height:70.628906px;}
.h5_c00228{height:70.664062px;}
.he_c00228{height:72.562500px;}
.hb_c00228{height:95.745000px;}
.hc_c00228{height:1262.875500px;}
.h0_c00228{height:1262.880000px;}
.h1_c00228{height:1263.000000px;}
.w2_c00228{width:8.310000px;}
.w4_c00228{width:126.405000px;}
.w5_c00228{width:518.970000px;}
.w3_c00228{width:638.190000px;}
.w6_c00228{width:893.157000px;}
.w0_c00228{width:893.160000px;}
.w1_c00228{width:893.250000px;}
.x0_c00228{left:0.000000px;}
.x3_c00228{left:127.489500px;}
.x9_c00228{left:142.632000px;}
.x1_c00228{left:154.515000px;}
.x4_c00228{left:178.635000px;}
.x5_c00228{left:256.065000px;}
.x6_c00228{left:330.627000px;}
.x8_c00228{left:343.590000px;}
.x7_c00228{left:348.990000px;}
.x2_c00228{left:757.365000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls1_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.640000pt;}
.ws0_c00228{word-spacing:-13.440000pt;}
.ws1_c00228{word-spacing:0.000000pt;}
._2_c00228{margin-left:-2.752000pt;}
._0_c00228{margin-left:-1.536000pt;}
._1_c00228{width:1.216000pt;}
._3_c00228{width:2.304000pt;}
._4_c00228{width:3.274688pt;}
._f_c00228{width:4.416000pt;}
._10_c00228{width:6.208000pt;}
._11_c00228{width:7.615979pt;}
._9_c00228{width:9.546670pt;}
._7_c00228{width:10.749332pt;}
._8_c00228{width:11.638405pt;}
._b_c00228{width:12.828785pt;}
._a_c00228{width:14.227190pt;}
._12_c00228{width:16.896000pt;}
._5_c00228{width:18.198932pt;}
._6_c00228{width:19.280328pt;}
._e_c00228{width:20.352000pt;}
._d_c00228{width:22.976000pt;}
._c_c00228{width:24.384000pt;}
._13_c00228{width:60.234667pt;}
.fs3_c00228{font-size:34.560000pt;}
.fs2_c00228{font-size:42.240000pt;}
.fs1_c00228{font-size:53.760000pt;}
.fs0_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y3_c00228{bottom:3.840000pt;}
.ye_c00228{bottom:19.186667pt;}
.yc_c00228{bottom:19.213333pt;}
.y12_c00228{bottom:19.226667pt;}
.y5_c00228{bottom:22.400000pt;}
.y4_c00228{bottom:28.480000pt;}
.ya_c00228{bottom:30.733333pt;}
.y10_c00228{bottom:30.746667pt;}
.y14_c00228{bottom:42.226667pt;}
.yb_c00228{bottom:42.253333pt;}
.y11_c00228{bottom:42.266667pt;}
.y1_c00228{bottom:50.880000pt;}
.y15_c00228{bottom:65.266667pt;}
.y2b_c00228{bottom:134.746667pt;}
.y2a_c00228{bottom:150.106667pt;}
.y29_c00228{bottom:165.466667pt;}
.y28_c00228{bottom:180.826667pt;}
.y27_c00228{bottom:196.186667pt;}
.y26_c00228{bottom:202.266667pt;}
.y25_c00228{bottom:212.226667pt;}
.y24_c00228{bottom:242.306667pt;}
.y23_c00228{bottom:277.506667pt;}
.y22_c00228{bottom:313.346667pt;}
.y21_c00228{bottom:341.213333pt;}
.y20_c00228{bottom:368.733333pt;}
.y1f_c00228{bottom:396.253333pt;}
.y1e_c00228{bottom:423.813333pt;}
.y1d_c00228{bottom:451.653333pt;}
.y1c_c00228{bottom:479.173333pt;}
.y1a_c00228{bottom:506.693333pt;}
.y1b_c00228{bottom:514.053333pt;}
.y19_c00228{bottom:534.240000pt;}
.y18_c00228{bottom:562.080000pt;}
.y17_c00228{bottom:589.600000pt;}
.y16_c00228{bottom:625.120000pt;}
.y13_c00228{bottom:648.840000pt;}
.yf_c00228{bottom:735.240000pt;}
.yd_c00228{bottom:798.640000pt;}
.y9_c00228{bottom:838.960000pt;}
.y8_c00228{bottom:923.453333pt;}
.y7_c00228{bottom:958.973333pt;}
.y6_c00228{bottom:994.853333pt;}
.y2_c00228{bottom:1056.933333pt;}
.h3_c00228{height:18.266667pt;}
.hf_c00228{height:30.982500pt;}
.h4_c00228{height:36.796000pt;}
.h9_c00228{height:39.026667pt;}
.hd_c00228{height:41.456250pt;}
.h10_c00228{height:48.195000pt;}
.h8_c00228{height:52.762500pt;}
.h2_c00228{height:57.375000pt;}
.h7_c00228{height:62.080000pt;}
.ha_c00228{height:62.098667pt;}
.h6_c00228{height:62.781250pt;}
.h5_c00228{height:62.812500pt;}
.he_c00228{height:64.500000pt;}
.hb_c00228{height:85.106667pt;}
.hc_c00228{height:1122.556000pt;}
.h0_c00228{height:1122.560000pt;}
.h1_c00228{height:1122.666667pt;}
.w2_c00228{width:7.386667pt;}
.w4_c00228{width:112.360000pt;}
.w5_c00228{width:461.306667pt;}
.w3_c00228{width:567.280000pt;}
.w6_c00228{width:793.917333pt;}
.w0_c00228{width:793.920000pt;}
.w1_c00228{width:794.000000pt;}
.x0_c00228{left:0.000000pt;}
.x3_c00228{left:113.324000pt;}
.x9_c00228{left:126.784000pt;}
.x1_c00228{left:137.346667pt;}
.x4_c00228{left:158.786667pt;}
.x5_c00228{left:227.613333pt;}
.x6_c00228{left:293.890667pt;}
.x8_c00228{left:305.413333pt;}
.x7_c00228{left:310.213333pt;}
.x2_c00228{left:673.213333pt;}
}





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

.ir_c00229:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00229;src:url('chunks/assets/font_c89d9525b242984a2914e3eb.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_953ac2a98341fe592dbaf9f5.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_c31cdde6408069ec06099498.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_b363194732c4642ca15c1be9.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00229;src:url('chunks/assets/font_b1d3a47f3d5c8bdb9478fdf2.woff2')format("woff");}.ff5_c00229{font-family:ff5_c00229;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00229;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00229{font-family:ff6_c00229;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls12_c00229{letter-spacing:-1.692000px;}
.ls19_c00229{letter-spacing:-1.512000px;}
.ls10_c00229{letter-spacing:-1.386000px;}
.ls17_c00229{letter-spacing:-0.942000px;}
.lsc_c00229{letter-spacing:-0.720000px;}
.ls14_c00229{letter-spacing:-0.696000px;}
.ls1b_c00229{letter-spacing:-0.618000px;}
.ls16_c00229{letter-spacing:-0.529800px;}
.lsf_c00229{letter-spacing:-0.397200px;}
.ls1c_c00229{letter-spacing:-0.319800px;}
.lsb_c00229{letter-spacing:-0.313800px;}
.ls15_c00229{letter-spacing:-0.273600px;}
.lse_c00229{letter-spacing:-0.253200px;}
.ls11_c00229{letter-spacing:-0.219000px;}
.lsd_c00229{letter-spacing:-0.069000px;}
.lsa_c00229{letter-spacing:0.000000px;}
.ls18_c00229{letter-spacing:0.054600px;}
.ls2_c00229{letter-spacing:0.057600px;}
.ls4_c00229{letter-spacing:0.126720px;}
.ls1a_c00229{letter-spacing:0.147000px;}
.ls7_c00229{letter-spacing:0.181440px;}
.ls13_c00229{letter-spacing:0.184200px;}
.ls3_c00229{letter-spacing:0.193440px;}
.ls9_c00229{letter-spacing:0.273600px;}
.ls5_c00229{letter-spacing:0.498240px;}
.ls1_c00229{letter-spacing:0.720000px;}
.ls6_c00229{letter-spacing:0.732000px;}
.ls0_c00229{letter-spacing:0.864000px;}
.ls8_c00229{letter-spacing:0.900000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00229{word-spacing:-13.864200px;}
.wsb_c00229{word-spacing:-13.827000px;}
.ws0_c00229{word-spacing:-13.680000px;}
.ws9_c00229{word-spacing:-13.461000px;}
.wsd_c00229{word-spacing:-13.426800px;}
.ws7_c00229{word-spacing:-13.406400px;}
.ws1_c00229{word-spacing:-13.366200px;}
.wse_c00229{word-spacing:-13.360200px;}
.ws2_c00229{word-spacing:-13.282800px;}
.ws8_c00229{word-spacing:-13.150200px;}
.wsc_c00229{word-spacing:-13.062000px;}
.ws6_c00229{word-spacing:-12.984000px;}
.ws3_c00229{word-spacing:-12.294000px;}
.wsa_c00229{word-spacing:-12.168000px;}
.ws4_c00229{word-spacing:-11.988000px;}
.wsf_c00229{word-spacing:0.000000px;}
._5_c00229{margin-left:-2.665415px;}
._2_c00229{margin-left:-1.626939px;}
._1_c00229{width:1.008000px;}
._4_c00229{width:2.172791px;}
._3_c00229{width:31.223697px;}
._0_c00229{width:152.076024px;}
.fc0_c00229{color:rgb(0,0,0);}
.fs1_c00229{font-size:54.720000px;}
.fs0_c00229{font-size:72.000000px;}
.y0_c00229{bottom:0.000000px;}
.y3_c00229{bottom:4.320000px;}
.y8_c00229{bottom:20.160000px;}
.y25_c00229{bottom:20.509500px;}
.y5_c00229{bottom:25.200000px;}
.y4_c00229{bottom:32.040000px;}
.y24_c00229{bottom:52.909500px;}
.y1_c00229{bottom:57.240000px;}
.y23_c00229{bottom:84.949500px;}
.y22_c00229{bottom:117.394500px;}
.y9_c00229{bottom:137.560500px;}
.y21_c00229{bottom:149.794500px;}
.y20_c00229{bottom:181.834500px;}
.y1f_c00229{bottom:214.234500px;}
.y1e_c00229{bottom:246.664500px;}
.y1d_c00229{bottom:278.704500px;}
.y1c_c00229{bottom:311.104500px;}
.y1b_c00229{bottom:343.549500px;}
.y1a_c00229{bottom:375.589500px;}
.y19_c00229{bottom:407.989500px;}
.y18_c00229{bottom:440.389500px;}
.y17_c00229{bottom:472.819500px;}
.y16_c00229{bottom:504.859500px;}
.y15_c00229{bottom:537.259500px;}
.y14_c00229{bottom:569.659500px;}
.y13_c00229{bottom:601.729500px;}
.y12_c00229{bottom:634.129500px;}
.y11_c00229{bottom:666.529500px;}
.y10_c00229{bottom:698.569500px;}
.yf_c00229{bottom:731.014500px;}
.ye_c00229{bottom:763.414500px;}
.yd_c00229{bottom:795.454500px;}
.yc_c00229{bottom:827.884500px;}
.yb_c00229{bottom:860.284500px;}
.ya_c00229{bottom:892.324500px;}
.y7_c00229{bottom:1052.565000px;}
.y6_c00229{bottom:1119.210000px;}
.y2_c00229{bottom:1189.050000px;}
.h3_c00229{height:20.550000px;}
.h6_c00229{height:41.070000px;}
.h4_c00229{height:41.395500px;}
.h7_c00229{height:53.704687px;}
.h9_c00229{height:55.147500px;}
.h2_c00229{height:64.546875px;}
.h5_c00229{height:70.628906px;}
.h8_c00229{height:913.185000px;}
.h0_c00229{height:1262.880000px;}
.h1_c00229{height:1263.000000px;}
.w2_c00229{width:8.310000px;}
.w4_c00229{width:322.695000px;}
.w3_c00229{width:638.190000px;}
.w0_c00229{width:893.160000px;}
.w1_c00229{width:893.250000px;}
.x0_c00229{left:0.000000px;}
.x3_c00229{left:127.489500px;}
.x1_c00229{left:154.515000px;}
.x4_c00229{left:452.340000px;}
.x2_c00229{left:757.365000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls12_c00229{letter-spacing:-1.504000pt;}
.ls19_c00229{letter-spacing:-1.344000pt;}
.ls10_c00229{letter-spacing:-1.232000pt;}
.ls17_c00229{letter-spacing:-0.837333pt;}
.lsc_c00229{letter-spacing:-0.640000pt;}
.ls14_c00229{letter-spacing:-0.618667pt;}
.ls1b_c00229{letter-spacing:-0.549333pt;}
.ls16_c00229{letter-spacing:-0.470933pt;}
.lsf_c00229{letter-spacing:-0.353067pt;}
.ls1c_c00229{letter-spacing:-0.284267pt;}
.lsb_c00229{letter-spacing:-0.278933pt;}
.ls15_c00229{letter-spacing:-0.243200pt;}
.lse_c00229{letter-spacing:-0.225067pt;}
.ls11_c00229{letter-spacing:-0.194667pt;}
.lsd_c00229{letter-spacing:-0.061333pt;}
.lsa_c00229{letter-spacing:0.000000pt;}
.ls18_c00229{letter-spacing:0.048533pt;}
.ls2_c00229{letter-spacing:0.051200pt;}
.ls4_c00229{letter-spacing:0.112640pt;}
.ls1a_c00229{letter-spacing:0.130667pt;}
.ls7_c00229{letter-spacing:0.161280pt;}
.ls13_c00229{letter-spacing:0.163733pt;}
.ls3_c00229{letter-spacing:0.171947pt;}
.ls9_c00229{letter-spacing:0.243200pt;}
.ls5_c00229{letter-spacing:0.442880pt;}
.ls1_c00229{letter-spacing:0.640000pt;}
.ls6_c00229{letter-spacing:0.650667pt;}
.ls0_c00229{letter-spacing:0.768000pt;}
.ls8_c00229{letter-spacing:0.800000pt;}
.ws5_c00229{word-spacing:-12.323733pt;}
.wsb_c00229{word-spacing:-12.290667pt;}
.ws0_c00229{word-spacing:-12.160000pt;}
.ws9_c00229{word-spacing:-11.965333pt;}
.wsd_c00229{word-spacing:-11.934933pt;}
.ws7_c00229{word-spacing:-11.916800pt;}
.ws1_c00229{word-spacing:-11.881067pt;}
.wse_c00229{word-spacing:-11.875733pt;}
.ws2_c00229{word-spacing:-11.806933pt;}
.ws8_c00229{word-spacing:-11.689067pt;}
.wsc_c00229{word-spacing:-11.610667pt;}
.ws6_c00229{word-spacing:-11.541333pt;}
.ws3_c00229{word-spacing:-10.928000pt;}
.wsa_c00229{word-spacing:-10.816000pt;}
.ws4_c00229{word-spacing:-10.656000pt;}
.wsf_c00229{word-spacing:0.000000pt;}
._5_c00229{margin-left:-2.369258pt;}
._2_c00229{margin-left:-1.446168pt;}
._1_c00229{width:0.896000pt;}
._4_c00229{width:1.931370pt;}
._3_c00229{width:27.754397pt;}
._0_c00229{width:135.178688pt;}
.fs1_c00229{font-size:48.640000pt;}
.fs0_c00229{font-size:64.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y3_c00229{bottom:3.840000pt;}
.y8_c00229{bottom:17.920000pt;}
.y25_c00229{bottom:18.230667pt;}
.y5_c00229{bottom:22.400000pt;}
.y4_c00229{bottom:28.480000pt;}
.y24_c00229{bottom:47.030667pt;}
.y1_c00229{bottom:50.880000pt;}
.y23_c00229{bottom:75.510667pt;}
.y22_c00229{bottom:104.350667pt;}
.y9_c00229{bottom:122.276000pt;}
.y21_c00229{bottom:133.150667pt;}
.y20_c00229{bottom:161.630667pt;}
.y1f_c00229{bottom:190.430667pt;}
.y1e_c00229{bottom:219.257333pt;}
.y1d_c00229{bottom:247.737333pt;}
.y1c_c00229{bottom:276.537333pt;}
.y1b_c00229{bottom:305.377333pt;}
.y1a_c00229{bottom:333.857333pt;}
.y19_c00229{bottom:362.657333pt;}
.y18_c00229{bottom:391.457333pt;}
.y17_c00229{bottom:420.284000pt;}
.y16_c00229{bottom:448.764000pt;}
.y15_c00229{bottom:477.564000pt;}
.y14_c00229{bottom:506.364000pt;}
.y13_c00229{bottom:534.870667pt;}
.y12_c00229{bottom:563.670667pt;}
.y11_c00229{bottom:592.470667pt;}
.y10_c00229{bottom:620.950667pt;}
.yf_c00229{bottom:649.790667pt;}
.ye_c00229{bottom:678.590667pt;}
.yd_c00229{bottom:707.070667pt;}
.yc_c00229{bottom:735.897333pt;}
.yb_c00229{bottom:764.697333pt;}
.ya_c00229{bottom:793.177333pt;}
.y7_c00229{bottom:935.613333pt;}
.y6_c00229{bottom:994.853333pt;}
.y2_c00229{bottom:1056.933333pt;}
.h3_c00229{height:18.266667pt;}
.h6_c00229{height:36.506667pt;}
.h4_c00229{height:36.796000pt;}
.h7_c00229{height:47.737500pt;}
.h9_c00229{height:49.020000pt;}
.h2_c00229{height:57.375000pt;}
.h5_c00229{height:62.781250pt;}
.h8_c00229{height:811.720000pt;}
.h0_c00229{height:1122.560000pt;}
.h1_c00229{height:1122.666667pt;}
.w2_c00229{width:7.386667pt;}
.w4_c00229{width:286.840000pt;}
.w3_c00229{width:567.280000pt;}
.w0_c00229{width:793.920000pt;}
.w1_c00229{width:794.000000pt;}
.x0_c00229{left:0.000000pt;}
.x3_c00229{left:113.324000pt;}
.x1_c00229{left:137.346667pt;}
.x4_c00229{left:402.080000pt;}
.x2_c00229{left:673.213333pt;}
}





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

.ir_c00230:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00230;src:url('chunks/assets/font_a58e950984c3e474c8e890a1.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_31b5d77222eb51786ba4cfe1.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_2c3f97e81eea14cba1d4cd7d.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_3dc89fea709da7cbaa928a80.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00230;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.lse_c00230{letter-spacing:-1.716000px;}
.ls10_c00230{letter-spacing:-1.692000px;}
.ls15_c00230{letter-spacing:-1.656000px;}
.ls11_c00230{letter-spacing:-1.512000px;}
.ls1b_c00230{letter-spacing:-1.386000px;}
.ls16_c00230{letter-spacing:-0.942000px;}
.ls1a_c00230{letter-spacing:-0.720000px;}
.ls12_c00230{letter-spacing:-0.696000px;}
.ls13_c00230{letter-spacing:-0.618000px;}
.ls18_c00230{letter-spacing:-0.529800px;}
.lsb_c00230{letter-spacing:-0.492600px;}
.ls19_c00230{letter-spacing:-0.397200px;}
.lsf_c00230{letter-spacing:-0.273600px;}
.lsd_c00230{letter-spacing:-0.253200px;}
.ls14_c00230{letter-spacing:-0.219000px;}
.lsc_c00230{letter-spacing:-0.069000px;}
.lsa_c00230{letter-spacing:0.000000px;}
.ls6_c00230{letter-spacing:0.057600px;}
.ls2_c00230{letter-spacing:0.126720px;}
.ls17_c00230{letter-spacing:0.147000px;}
.ls3_c00230{letter-spacing:0.181440px;}
.ls7_c00230{letter-spacing:0.273600px;}
.ls8_c00230{letter-spacing:0.498240px;}
.ls1_c00230{letter-spacing:0.720000px;}
.ls4_c00230{letter-spacing:0.732000px;}
.ls5_c00230{letter-spacing:0.840000px;}
.ls0_c00230{letter-spacing:0.864000px;}
.ls9_c00230{letter-spacing:0.900000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00230{word-spacing:-13.827000px;}
.ws0_c00230{word-spacing:-13.680000px;}
.wsc_c00230{word-spacing:-13.611000px;}
.ws6_c00230{word-spacing:-13.461000px;}
.ws8_c00230{word-spacing:-13.426800px;}
.ws3_c00230{word-spacing:-13.406400px;}
.wsd_c00230{word-spacing:-13.282800px;}
.ws1_c00230{word-spacing:-13.187400px;}
.wsb_c00230{word-spacing:-13.150200px;}
.ws5_c00230{word-spacing:-13.062000px;}
.ws4_c00230{word-spacing:-12.984000px;}
.ws9_c00230{word-spacing:-12.738000px;}
.ws7_c00230{word-spacing:-12.168000px;}
.wse_c00230{word-spacing:-12.024000px;}
.ws2_c00230{word-spacing:-11.964000px;}
.wsf_c00230{word-spacing:0.000000px;}
._3_c00230{margin-left:-2.937339px;}
._0_c00230{margin-left:-1.696211px;}
._1_c00230{width:1.258232px;}
._2_c00230{width:2.334173px;}
.fc0_c00230{color:rgb(0,0,0);}
.fs1_c00230{font-size:54.720000px;}
.fs0_c00230{font-size:72.000000px;}
.y0_c00230{bottom:0.000000px;}
.y3_c00230{bottom:4.320000px;}
.y24_c00230{bottom:20.505000px;}
.y5_c00230{bottom:25.200000px;}
.y4_c00230{bottom:32.040000px;}
.y23_c00230{bottom:52.545000px;}
.y1_c00230{bottom:57.240000px;}
.y22_c00230{bottom:84.990000px;}
.y21_c00230{bottom:117.390000px;}
.y25_c00230{bottom:138.276000px;}
.y20_c00230{bottom:149.430000px;}
.y6_c00230{bottom:164.925000px;}
.y1f_c00230{bottom:181.830000px;}
.y1e_c00230{bottom:214.260000px;}
.y1d_c00230{bottom:246.300000px;}
.y1c_c00230{bottom:278.700000px;}
.y1b_c00230{bottom:311.145000px;}
.y1a_c00230{bottom:343.185000px;}
.y19_c00230{bottom:375.585000px;}
.y18_c00230{bottom:407.985000px;}
.y17_c00230{bottom:440.415000px;}
.y16_c00230{bottom:472.455000px;}
.y15_c00230{bottom:504.855000px;}
.y14_c00230{bottom:537.255000px;}
.y13_c00230{bottom:569.325000px;}
.y12_c00230{bottom:601.725000px;}
.y11_c00230{bottom:634.125000px;}
.y10_c00230{bottom:666.165000px;}
.yf_c00230{bottom:698.610000px;}
.ye_c00230{bottom:731.010000px;}
.yd_c00230{bottom:763.050000px;}
.yc_c00230{bottom:795.450000px;}
.yb_c00230{bottom:827.880000px;}
.ya_c00230{bottom:859.920000px;}
.y9_c00230{bottom:892.320000px;}
.y8_c00230{bottom:924.765000px;}
.y7_c00230{bottom:956.805000px;}
.y2_c00230{bottom:1189.050000px;}
.h3_c00230{height:20.550000px;}
.h4_c00230{height:41.395500px;}
.h6_c00230{height:53.704687px;}
.h7_c00230{height:55.147500px;}
.h2_c00230{height:64.546875px;}
.h8_c00230{height:70.664062px;}
.h5_c00230{height:968.670000px;}
.h0_c00230{height:1262.880000px;}
.h1_c00230{height:1263.000000px;}
.w2_c00230{width:8.310000px;}
.w4_c00230{width:322.695000px;}
.w3_c00230{width:638.190000px;}
.w0_c00230{width:893.160000px;}
.w1_c00230{width:893.250000px;}
.x0_c00230{left:0.000000px;}
.x3_c00230{left:127.489500px;}
.x1_c00230{left:154.515000px;}
.x4_c00230{left:452.340000px;}
.x2_c00230{left:757.365000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.lse_c00230{letter-spacing:-1.525333pt;}
.ls10_c00230{letter-spacing:-1.504000pt;}
.ls15_c00230{letter-spacing:-1.472000pt;}
.ls11_c00230{letter-spacing:-1.344000pt;}
.ls1b_c00230{letter-spacing:-1.232000pt;}
.ls16_c00230{letter-spacing:-0.837333pt;}
.ls1a_c00230{letter-spacing:-0.640000pt;}
.ls12_c00230{letter-spacing:-0.618667pt;}
.ls13_c00230{letter-spacing:-0.549333pt;}
.ls18_c00230{letter-spacing:-0.470933pt;}
.lsb_c00230{letter-spacing:-0.437867pt;}
.ls19_c00230{letter-spacing:-0.353067pt;}
.lsf_c00230{letter-spacing:-0.243200pt;}
.lsd_c00230{letter-spacing:-0.225067pt;}
.ls14_c00230{letter-spacing:-0.194667pt;}
.lsc_c00230{letter-spacing:-0.061333pt;}
.lsa_c00230{letter-spacing:0.000000pt;}
.ls6_c00230{letter-spacing:0.051200pt;}
.ls2_c00230{letter-spacing:0.112640pt;}
.ls17_c00230{letter-spacing:0.130667pt;}
.ls3_c00230{letter-spacing:0.161280pt;}
.ls7_c00230{letter-spacing:0.243200pt;}
.ls8_c00230{letter-spacing:0.442880pt;}
.ls1_c00230{letter-spacing:0.640000pt;}
.ls4_c00230{letter-spacing:0.650667pt;}
.ls5_c00230{letter-spacing:0.746667pt;}
.ls0_c00230{letter-spacing:0.768000pt;}
.ls9_c00230{letter-spacing:0.800000pt;}
.wsa_c00230{word-spacing:-12.290667pt;}
.ws0_c00230{word-spacing:-12.160000pt;}
.wsc_c00230{word-spacing:-12.098667pt;}
.ws6_c00230{word-spacing:-11.965333pt;}
.ws8_c00230{word-spacing:-11.934933pt;}
.ws3_c00230{word-spacing:-11.916800pt;}
.wsd_c00230{word-spacing:-11.806933pt;}
.ws1_c00230{word-spacing:-11.722133pt;}
.wsb_c00230{word-spacing:-11.689067pt;}
.ws5_c00230{word-spacing:-11.610667pt;}
.ws4_c00230{word-spacing:-11.541333pt;}
.ws9_c00230{word-spacing:-11.322667pt;}
.ws7_c00230{word-spacing:-10.816000pt;}
.wse_c00230{word-spacing:-10.688000pt;}
.ws2_c00230{word-spacing:-10.634667pt;}
.wsf_c00230{word-spacing:0.000000pt;}
._3_c00230{margin-left:-2.610968pt;}
._0_c00230{margin-left:-1.507743pt;}
._1_c00230{width:1.118428pt;}
._2_c00230{width:2.074820pt;}
.fs1_c00230{font-size:48.640000pt;}
.fs0_c00230{font-size:64.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y3_c00230{bottom:3.840000pt;}
.y24_c00230{bottom:18.226667pt;}
.y5_c00230{bottom:22.400000pt;}
.y4_c00230{bottom:28.480000pt;}
.y23_c00230{bottom:46.706667pt;}
.y1_c00230{bottom:50.880000pt;}
.y22_c00230{bottom:75.546667pt;}
.y21_c00230{bottom:104.346667pt;}
.y25_c00230{bottom:122.912000pt;}
.y20_c00230{bottom:132.826667pt;}
.y6_c00230{bottom:146.600000pt;}
.y1f_c00230{bottom:161.626667pt;}
.y1e_c00230{bottom:190.453333pt;}
.y1d_c00230{bottom:218.933333pt;}
.y1c_c00230{bottom:247.733333pt;}
.y1b_c00230{bottom:276.573333pt;}
.y1a_c00230{bottom:305.053333pt;}
.y19_c00230{bottom:333.853333pt;}
.y18_c00230{bottom:362.653333pt;}
.y17_c00230{bottom:391.480000pt;}
.y16_c00230{bottom:419.960000pt;}
.y15_c00230{bottom:448.760000pt;}
.y14_c00230{bottom:477.560000pt;}
.y13_c00230{bottom:506.066667pt;}
.y12_c00230{bottom:534.866667pt;}
.y11_c00230{bottom:563.666667pt;}
.y10_c00230{bottom:592.146667pt;}
.yf_c00230{bottom:620.986667pt;}
.ye_c00230{bottom:649.786667pt;}
.yd_c00230{bottom:678.266667pt;}
.yc_c00230{bottom:707.066667pt;}
.yb_c00230{bottom:735.893333pt;}
.ya_c00230{bottom:764.373333pt;}
.y9_c00230{bottom:793.173333pt;}
.y8_c00230{bottom:822.013333pt;}
.y7_c00230{bottom:850.493333pt;}
.y2_c00230{bottom:1056.933333pt;}
.h3_c00230{height:18.266667pt;}
.h4_c00230{height:36.796000pt;}
.h6_c00230{height:47.737500pt;}
.h7_c00230{height:49.020000pt;}
.h2_c00230{height:57.375000pt;}
.h8_c00230{height:62.812500pt;}
.h5_c00230{height:861.040000pt;}
.h0_c00230{height:1122.560000pt;}
.h1_c00230{height:1122.666667pt;}
.w2_c00230{width:7.386667pt;}
.w4_c00230{width:286.840000pt;}
.w3_c00230{width:567.280000pt;}
.w0_c00230{width:793.920000pt;}
.w1_c00230{width:794.000000pt;}
.x0_c00230{left:0.000000pt;}
.x3_c00230{left:113.324000pt;}
.x1_c00230{left:137.346667pt;}
.x4_c00230{left:402.080000pt;}
.x2_c00230{left:673.213333pt;}
}





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

.ir_c00231:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00231;src:url('chunks/assets/font_84f15573d4325742a1ce2279.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_aa38197680c47185795e1dcf.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_953ac2a98341fe592dbaf9f5.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;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_c00231;src:url('chunks/assets/font_07ceaa17e3f0eb5cc9108d4f.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls3_c00231{letter-spacing:-0.720000px;}
.ls2_c00231{letter-spacing:0.000000px;}
.ls1_c00231{letter-spacing:0.022800px;}
.ls0_c00231{letter-spacing:0.720000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:-15.120000px;}
.ws1_c00231{word-spacing:0.000000px;}
._2_c00231{margin-left:-2.736000px;}
._5_c00231{margin-left:-1.584000px;}
._1_c00231{width:1.080000px;}
._3_c00231{width:2.376000px;}
._0_c00231{width:5.544000px;}
._4_c00231{width:6.984000px;}
._6_c00231{width:8.352000px;}
._7_c00231{width:15.480000px;}
._8_c00231{width:16.632000px;}
.fc0_c00231{color:rgb(0,0,0);}
.fs1_c00231{font-size:60.480000px;}
.fs0_c00231{font-size:72.000000px;}
.y0_c00231{bottom:0.000000px;}
.y3_c00231{bottom:4.320000px;}
.yc_c00231{bottom:21.585000px;}
.y23_c00231{bottom:21.589500px;}
.y15_c00231{bottom:21.600000px;}
.y13_c00231{bottom:21.630000px;}
.y5_c00231{bottom:25.200000px;}
.y4_c00231{bottom:32.040000px;}
.yf_c00231{bottom:34.545000px;}
.y1f_c00231{bottom:34.590000px;}
.ye_c00231{bottom:47.505000px;}
.y20_c00231{bottom:47.550000px;}
.y1_c00231{bottom:57.240000px;}
.y1d_c00231{bottom:73.455000px;}
.y22_c00231{bottom:132.160500px;}
.y21_c00231{bottom:177.525000px;}
.y1e_c00231{bottom:222.885000px;}
.y1c_c00231{bottom:294.210000px;}
.y1b_c00231{bottom:391.425000px;}
.y1a_c00231{bottom:436.785000px;}
.y19_c00231{bottom:482.190000px;}
.y18_c00231{bottom:527.550000px;}
.y17_c00231{bottom:572.910000px;}
.y16_c00231{bottom:618.300000px;}
.y14_c00231{bottom:663.660000px;}
.y12_c00231{bottom:709.020000px;}
.y11_c00231{bottom:754.425000px;}
.y10_c00231{bottom:799.785000px;}
.yd_c00231{bottom:845.190000px;}
.yb_c00231{bottom:916.470000px;}
.ya_c00231{bottom:985.965000px;}
.y9_c00231{bottom:1025.925000px;}
.y8_c00231{bottom:1056.885000px;}
.y7_c00231{bottom:1087.890000px;}
.y6_c00231{bottom:1119.210000px;}
.y2_c00231{bottom:1189.050000px;}
.h3_c00231{height:20.550000px;}
.h4_c00231{height:41.395500px;}
.h7_c00231{height:43.905000px;}
.h12_c00231{height:43.915500px;}
.hd_c00231{height:43.920000px;}
.hb_c00231{height:43.941000px;}
.he_c00231{height:43.950000px;}
.hc_c00231{height:43.956000px;}
.h10_c00231{height:54.219375px;}
.h8_c00231{height:59.328281px;}
.h9_c00231{height:59.357813px;}
.h2_c00231{height:64.546875px;}
.ha_c00231{height:69.825000px;}
.h11_c00231{height:69.861000px;}
.h6_c00231{height:70.628906px;}
.h5_c00231{height:70.664062px;}
.hf_c00231{height:95.760000px;}
.h0_c00231{height:1262.880000px;}
.h1_c00231{height:1263.000000px;}
.w2_c00231{width:8.310000px;}
.w4_c00231{width:181.845000px;}
.w6_c00231{width:226.530000px;}
.w5_c00231{width:226.905000px;}
.w3_c00231{width:638.190000px;}
.w0_c00231{width:893.160000px;}
.w1_c00231{width:893.250000px;}
.x0_c00231{left:0.000000px;}
.x3_c00231{left:127.489500px;}
.x1_c00231{left:154.515000px;}
.x4_c00231{left:310.785000px;}
.x5_c00231{left:539.145000px;}
.x2_c00231{left:757.365000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls3_c00231{letter-spacing:-0.640000pt;}
.ls2_c00231{letter-spacing:0.000000pt;}
.ls1_c00231{letter-spacing:0.020267pt;}
.ls0_c00231{letter-spacing:0.640000pt;}
.ws0_c00231{word-spacing:-13.440000pt;}
.ws1_c00231{word-spacing:0.000000pt;}
._2_c00231{margin-left:-2.432000pt;}
._5_c00231{margin-left:-1.408000pt;}
._1_c00231{width:0.960000pt;}
._3_c00231{width:2.112000pt;}
._0_c00231{width:4.928000pt;}
._4_c00231{width:6.208000pt;}
._6_c00231{width:7.424000pt;}
._7_c00231{width:13.760000pt;}
._8_c00231{width:14.784000pt;}
.fs1_c00231{font-size:53.760000pt;}
.fs0_c00231{font-size:64.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y3_c00231{bottom:3.840000pt;}
.yc_c00231{bottom:19.186667pt;}
.y23_c00231{bottom:19.190667pt;}
.y15_c00231{bottom:19.200000pt;}
.y13_c00231{bottom:19.226667pt;}
.y5_c00231{bottom:22.400000pt;}
.y4_c00231{bottom:28.480000pt;}
.yf_c00231{bottom:30.706667pt;}
.y1f_c00231{bottom:30.746667pt;}
.ye_c00231{bottom:42.226667pt;}
.y20_c00231{bottom:42.266667pt;}
.y1_c00231{bottom:50.880000pt;}
.y1d_c00231{bottom:65.293333pt;}
.y22_c00231{bottom:117.476000pt;}
.y21_c00231{bottom:157.800000pt;}
.y1e_c00231{bottom:198.120000pt;}
.y1c_c00231{bottom:261.520000pt;}
.y1b_c00231{bottom:347.933333pt;}
.y1a_c00231{bottom:388.253333pt;}
.y19_c00231{bottom:428.613333pt;}
.y18_c00231{bottom:468.933333pt;}
.y17_c00231{bottom:509.253333pt;}
.y16_c00231{bottom:549.600000pt;}
.y14_c00231{bottom:589.920000pt;}
.y12_c00231{bottom:630.240000pt;}
.y11_c00231{bottom:670.600000pt;}
.y10_c00231{bottom:710.920000pt;}
.yd_c00231{bottom:751.280000pt;}
.yb_c00231{bottom:814.640000pt;}
.ya_c00231{bottom:876.413333pt;}
.y9_c00231{bottom:911.933333pt;}
.y8_c00231{bottom:939.453333pt;}
.y7_c00231{bottom:967.013333pt;}
.y6_c00231{bottom:994.853333pt;}
.y2_c00231{bottom:1056.933333pt;}
.h3_c00231{height:18.266667pt;}
.h4_c00231{height:36.796000pt;}
.h7_c00231{height:39.026667pt;}
.h12_c00231{height:39.036000pt;}
.hd_c00231{height:39.040000pt;}
.hb_c00231{height:39.058667pt;}
.he_c00231{height:39.066667pt;}
.hc_c00231{height:39.072000pt;}
.h10_c00231{height:48.195000pt;}
.h8_c00231{height:52.736250pt;}
.h9_c00231{height:52.762500pt;}
.h2_c00231{height:57.375000pt;}
.ha_c00231{height:62.066667pt;}
.h11_c00231{height:62.098667pt;}
.h6_c00231{height:62.781250pt;}
.h5_c00231{height:62.812500pt;}
.hf_c00231{height:85.120000pt;}
.h0_c00231{height:1122.560000pt;}
.h1_c00231{height:1122.666667pt;}
.w2_c00231{width:7.386667pt;}
.w4_c00231{width:161.640000pt;}
.w6_c00231{width:201.360000pt;}
.w5_c00231{width:201.693333pt;}
.w3_c00231{width:567.280000pt;}
.w0_c00231{width:793.920000pt;}
.w1_c00231{width:794.000000pt;}
.x0_c00231{left:0.000000pt;}
.x3_c00231{left:113.324000pt;}
.x1_c00231{left:137.346667pt;}
.x4_c00231{left:276.253333pt;}
.x5_c00231{left:479.240000pt;}
.x2_c00231{left:673.213333pt;}
}





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

.ir_c00232:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00232;src:url('chunks/assets/font_8d3c8bbb4daacd6acb1a3a4b.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_4d59ec0cd9af6275887e22ea.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_86220211c0a574be5c2dd9cd.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls1_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:1.620000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-40.608000px;}
.ws1_c00232{word-spacing:-18.000000px;}
.ws2_c00232{word-spacing:0.000000px;}
._5_c00232{margin-left:-3.600000px;}
._0_c00232{margin-left:-2.160000px;}
._2_c00232{margin-left:-1.008000px;}
._1_c00232{width:1.152000px;}
._4_c00232{width:2.304000px;}
._6_c00232{width:4.224024px;}
._e_c00232{width:5.279904px;}
._7_c00232{width:6.407904px;}
._d_c00232{width:8.496000px;}
._c_c00232{width:9.576000px;}
._b_c00232{width:10.656000px;}
._12_c00232{width:12.168000px;}
._9_c00232{width:13.824000px;}
._a_c00232{width:15.264000px;}
._3_c00232{width:16.560000px;}
._8_c00232{width:19.175976px;}
._14_c00232{width:20.520000px;}
._13_c00232{width:21.744000px;}
._11_c00232{width:23.328000px;}
._10_c00232{width:24.480000px;}
._f_c00232{width:25.704000px;}
.fc0_c00232{color:rgb(0,0,0);}
.fs0_c00232{font-size:72.000000px;}
.y0_c00232{bottom:0.000000px;}
.y3_c00232{bottom:4.320000px;}
.y5_c00232{bottom:25.200000px;}
.y4_c00232{bottom:32.040000px;}
.y1_c00232{bottom:57.240000px;}
.y22_c00232{bottom:231.555000px;}
.y21_c00232{bottom:262.515000px;}
.y20_c00232{bottom:293.475000px;}
.y1f_c00232{bottom:324.795000px;}
.y1e_c00232{bottom:355.785000px;}
.y1d_c00232{bottom:386.745000px;}
.y1c_c00232{bottom:417.705000px;}
.y1b_c00232{bottom:449.025000px;}
.y1a_c00232{bottom:480.030000px;}
.y19_c00232{bottom:510.990000px;}
.y18_c00232{bottom:541.950000px;}
.y17_c00232{bottom:572.910000px;}
.y16_c00232{bottom:604.260000px;}
.y15_c00232{bottom:635.220000px;}
.y14_c00232{bottom:666.180000px;}
.y13_c00232{bottom:706.140000px;}
.y12_c00232{bottom:737.490000px;}
.y11_c00232{bottom:768.450000px;}
.y10_c00232{bottom:799.410000px;}
.yf_c00232{bottom:830.370000px;}
.ye_c00232{bottom:861.735000px;}
.yd_c00232{bottom:892.695000px;}
.yc_c00232{bottom:923.655000px;}
.yb_c00232{bottom:954.615000px;}
.ya_c00232{bottom:985.965000px;}
.y9_c00232{bottom:1016.925000px;}
.y8_c00232{bottom:1047.885000px;}
.y7_c00232{bottom:1078.845000px;}
.y6_c00232{bottom:1119.210000px;}
.y2_c00232{bottom:1189.050000px;}
.h3_c00232{height:20.550000px;}
.h4_c00232{height:41.395500px;}
.h2_c00232{height:64.546875px;}
.h5_c00232{height:70.628906px;}
.h6_c00232{height:70.664062px;}
.h0_c00232{height:1262.880000px;}
.h1_c00232{height:1263.000000px;}
.w2_c00232{width:8.310000px;}
.w3_c00232{width:638.190000px;}
.w0_c00232{width:893.160000px;}
.w1_c00232{width:893.250000px;}
.x0_c00232{left:0.000000px;}
.x3_c00232{left:127.489500px;}
.x1_c00232{left:154.515000px;}
.x4_c00232{left:178.635000px;}
.x2_c00232{left:757.365000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls1_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:1.440000pt;}
.ws0_c00232{word-spacing:-36.096000pt;}
.ws1_c00232{word-spacing:-16.000000pt;}
.ws2_c00232{word-spacing:0.000000pt;}
._5_c00232{margin-left:-3.200000pt;}
._0_c00232{margin-left:-1.920000pt;}
._2_c00232{margin-left:-0.896000pt;}
._1_c00232{width:1.024000pt;}
._4_c00232{width:2.048000pt;}
._6_c00232{width:3.754688pt;}
._e_c00232{width:4.693248pt;}
._7_c00232{width:5.695915pt;}
._d_c00232{width:7.552000pt;}
._c_c00232{width:8.512000pt;}
._b_c00232{width:9.472000pt;}
._12_c00232{width:10.816000pt;}
._9_c00232{width:12.288000pt;}
._a_c00232{width:13.568000pt;}
._3_c00232{width:14.720000pt;}
._8_c00232{width:17.045312pt;}
._14_c00232{width:18.240000pt;}
._13_c00232{width:19.328000pt;}
._11_c00232{width:20.736000pt;}
._10_c00232{width:21.760000pt;}
._f_c00232{width:22.848000pt;}
.fs0_c00232{font-size:64.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y3_c00232{bottom:3.840000pt;}
.y5_c00232{bottom:22.400000pt;}
.y4_c00232{bottom:28.480000pt;}
.y1_c00232{bottom:50.880000pt;}
.y22_c00232{bottom:205.826667pt;}
.y21_c00232{bottom:233.346667pt;}
.y20_c00232{bottom:260.866667pt;}
.y1f_c00232{bottom:288.706667pt;}
.y1e_c00232{bottom:316.253333pt;}
.y1d_c00232{bottom:343.773333pt;}
.y1c_c00232{bottom:371.293333pt;}
.y1b_c00232{bottom:399.133333pt;}
.y1a_c00232{bottom:426.693333pt;}
.y19_c00232{bottom:454.213333pt;}
.y18_c00232{bottom:481.733333pt;}
.y17_c00232{bottom:509.253333pt;}
.y16_c00232{bottom:537.120000pt;}
.y15_c00232{bottom:564.640000pt;}
.y14_c00232{bottom:592.160000pt;}
.y13_c00232{bottom:627.680000pt;}
.y12_c00232{bottom:655.546667pt;}
.y11_c00232{bottom:683.066667pt;}
.y10_c00232{bottom:710.586667pt;}
.yf_c00232{bottom:738.106667pt;}
.ye_c00232{bottom:765.986667pt;}
.yd_c00232{bottom:793.506667pt;}
.yc_c00232{bottom:821.026667pt;}
.yb_c00232{bottom:848.546667pt;}
.ya_c00232{bottom:876.413333pt;}
.y9_c00232{bottom:903.933333pt;}
.y8_c00232{bottom:931.453333pt;}
.y7_c00232{bottom:958.973333pt;}
.y6_c00232{bottom:994.853333pt;}
.y2_c00232{bottom:1056.933333pt;}
.h3_c00232{height:18.266667pt;}
.h4_c00232{height:36.796000pt;}
.h2_c00232{height:57.375000pt;}
.h5_c00232{height:62.781250pt;}
.h6_c00232{height:62.812500pt;}
.h0_c00232{height:1122.560000pt;}
.h1_c00232{height:1122.666667pt;}
.w2_c00232{width:7.386667pt;}
.w3_c00232{width:567.280000pt;}
.w0_c00232{width:793.920000pt;}
.w1_c00232{width:794.000000pt;}
.x0_c00232{left:0.000000pt;}
.x3_c00232{left:113.324000pt;}
.x1_c00232{left:137.346667pt;}
.x4_c00232{left:158.786667pt;}
.x2_c00232{left:673.213333pt;}
}





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

.ir_c00233:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00233;src:url('chunks/assets/font_ee09586a2f216108ce88bd0f.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_6e0735d865f5cda78f0de9d5.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_1872ae94ecbeb95c7895578b.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;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_c00233;src:url('chunks/assets/font_af59168df22d52598f03aa29.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_0740433222126e49fb9a39b1.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00233;src:url('chunks/assets/font_192bb180c7846b9ebc34b3be.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:1.104004;font-style:normal;font-weight: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_c00233;src:url('chunks/assets/font_1247b3081101528b82fdbf61.woff2')format("woff");}.ff7_c00233{font-family:ff7_c00233;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls5_c00233{letter-spacing:-1.416000px;}
.ls3_c00233{letter-spacing:0.000000px;}
.ls4_c00233{letter-spacing:0.022800px;}
.ls6_c00233{letter-spacing:0.325200px;}
.ls2_c00233{letter-spacing:0.648000px;}
.ls0_c00233{letter-spacing:0.720000px;}
.ls1_c00233{letter-spacing:0.840000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00233{word-spacing:-18.000000px;}
.ws1_c00233{word-spacing:-15.142800px;}
.ws0_c00233{word-spacing:-15.120000px;}
.ws3_c00233{word-spacing:0.000000px;}
._3_c00233{margin-left:-2.736000px;}
._1_c00233{margin-left:-1.440000px;}
._0_c00233{width:1.080000px;}
._2_c00233{width:2.448000px;}
._4_c00233{width:3.672000px;}
._e_c00233{width:4.680000px;}
._6_c00233{width:5.976000px;}
._5_c00233{width:7.680000px;}
._7_c00233{width:8.952000px;}
._10_c00233{width:10.693198px;}
._f_c00233{width:12.600000px;}
._8_c00233{width:14.328000px;}
._9_c00233{width:15.480000px;}
._a_c00233{width:19.368000px;}
._c_c00233{width:34.632000px;}
._b_c00233{width:35.712000px;}
._d_c00233{width:37.224000px;}
.fc1_c00233{color:rgb(255,0,0);}
.fc0_c00233{color:rgb(0,0,0);}
.fs3_c00233{font-size:38.880000px;}
.fs1_c00233{font-size:47.520000px;}
.fs2_c00233{font-size:60.480000px;}
.fs0_c00233{font-size:72.000000px;}
.y0_c00233{bottom:0.000000px;}
.y3_c00233{bottom:4.320000px;}
.y15_c00233{bottom:21.240000px;}
.y11_c00233{bottom:21.585000px;}
.y5_c00233{bottom:25.200000px;}
.y4_c00233{bottom:32.040000px;}
.y13_c00233{bottom:38.910000px;}
.y14_c00233{bottom:56.190000px;}
.y1_c00233{bottom:57.240000px;}
.y2b_c00233{bottom:151.590000px;}
.y2a_c00233{bottom:158.430000px;}
.y29_c00233{bottom:168.870000px;}
.y28_c00233{bottom:186.150000px;}
.y27_c00233{bottom:203.430000px;}
.y26_c00233{bottom:220.710000px;}
.y25_c00233{bottom:238.035000px;}
.y24_c00233{bottom:244.875000px;}
.y23_c00233{bottom:256.035000px;}
.y22_c00233{bottom:298.875000px;}
.y21_c00233{bottom:329.835000px;}
.y20_c00233{bottom:369.825000px;}
.y1f_c00233{bottom:400.785000px;}
.y1d_c00233{bottom:432.105000px;}
.y1e_c00233{bottom:440.385000px;}
.y1c_c00233{bottom:463.065000px;}
.y1b_c00233{bottom:494.070000px;}
.y1a_c00233{bottom:525.030000px;}
.y19_c00233{bottom:556.350000px;}
.y18_c00233{bottom:587.310000px;}
.y17_c00233{bottom:618.300000px;}
.y16_c00233{bottom:658.260000px;}
.y12_c00233{bottom:685.260000px;}
.y10_c00233{bottom:765.225000px;}
.yf_c00233{bottom:834.690000px;}
.ye_c00233{bottom:874.695000px;}
.yd_c00233{bottom:905.655000px;}
.yc_c00233{bottom:936.615000px;}
.yb_c00233{bottom:967.965000px;}
.ya_c00233{bottom:1007.925000px;}
.y9_c00233{bottom:1038.885000px;}
.y8_c00233{bottom:1078.845000px;}
.y6_c00233{bottom:1119.210000px;}
.y7_c00233{bottom:1127.490000px;}
.y2_c00233{bottom:1189.050000px;}
.h3_c00233{height:20.550000px;}
.hd_c00233{height:34.855313px;}
.hc_c00233{height:38.158594px;}
.h4_c00233{height:41.395500px;}
.h9_c00233{height:43.905000px;}
.h7_c00233{height:46.638281px;}
.he_c00233{height:54.514688px;}
.ha_c00233{height:59.357813px;}
.h2_c00233{height:64.546875px;}
.h8_c00233{height:70.628906px;}
.h5_c00233{height:70.664062px;}
.hb_c00233{height:78.516000px;}
.h6_c00233{height:1262.875500px;}
.h0_c00233{height:1262.880000px;}
.h1_c00233{height:1263.000000px;}
.w2_c00233{width:8.310000px;}
.w5_c00233{width:322.695000px;}
.w3_c00233{width:638.190000px;}
.w4_c00233{width:893.157000px;}
.w0_c00233{width:893.160000px;}
.w1_c00233{width:893.250000px;}
.x0_c00233{left:0.000000px;}
.x3_c00233{left:127.489500px;}
.xc_c00233{left:142.632000px;}
.x1_c00233{left:154.515000px;}
.x7_c00233{left:178.635000px;}
.x6_c00233{left:180.795000px;}
.x9_c00233{left:185.472000px;}
.xa_c00233{left:203.835000px;}
.xb_c00233{left:343.590000px;}
.x8_c00233{left:452.340000px;}
.x4_c00233{left:709.842000px;}
.x5_c00233{left:728.205000px;}
.x2_c00233{left:757.365000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls5_c00233{letter-spacing:-1.258667pt;}
.ls3_c00233{letter-spacing:0.000000pt;}
.ls4_c00233{letter-spacing:0.020267pt;}
.ls6_c00233{letter-spacing:0.289067pt;}
.ls2_c00233{letter-spacing:0.576000pt;}
.ls0_c00233{letter-spacing:0.640000pt;}
.ls1_c00233{letter-spacing:0.746667pt;}
.ws2_c00233{word-spacing:-16.000000pt;}
.ws1_c00233{word-spacing:-13.460267pt;}
.ws0_c00233{word-spacing:-13.440000pt;}
.ws3_c00233{word-spacing:0.000000pt;}
._3_c00233{margin-left:-2.432000pt;}
._1_c00233{margin-left:-1.280000pt;}
._0_c00233{width:0.960000pt;}
._2_c00233{width:2.176000pt;}
._4_c00233{width:3.264000pt;}
._e_c00233{width:4.160000pt;}
._6_c00233{width:5.312000pt;}
._5_c00233{width:6.826667pt;}
._7_c00233{width:7.957333pt;}
._10_c00233{width:9.505065pt;}
._f_c00233{width:11.200000pt;}
._8_c00233{width:12.736000pt;}
._9_c00233{width:13.760000pt;}
._a_c00233{width:17.216000pt;}
._c_c00233{width:30.784000pt;}
._b_c00233{width:31.744000pt;}
._d_c00233{width:33.088000pt;}
.fs3_c00233{font-size:34.560000pt;}
.fs1_c00233{font-size:42.240000pt;}
.fs2_c00233{font-size:53.760000pt;}
.fs0_c00233{font-size:64.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.y3_c00233{bottom:3.840000pt;}
.y15_c00233{bottom:18.880000pt;}
.y11_c00233{bottom:19.186667pt;}
.y5_c00233{bottom:22.400000pt;}
.y4_c00233{bottom:28.480000pt;}
.y13_c00233{bottom:34.586667pt;}
.y14_c00233{bottom:49.946667pt;}
.y1_c00233{bottom:50.880000pt;}
.y2b_c00233{bottom:134.746667pt;}
.y2a_c00233{bottom:140.826667pt;}
.y29_c00233{bottom:150.106667pt;}
.y28_c00233{bottom:165.466667pt;}
.y27_c00233{bottom:180.826667pt;}
.y26_c00233{bottom:196.186667pt;}
.y25_c00233{bottom:211.586667pt;}
.y24_c00233{bottom:217.666667pt;}
.y23_c00233{bottom:227.586667pt;}
.y22_c00233{bottom:265.666667pt;}
.y21_c00233{bottom:293.186667pt;}
.y20_c00233{bottom:328.733333pt;}
.y1f_c00233{bottom:356.253333pt;}
.y1d_c00233{bottom:384.093333pt;}
.y1e_c00233{bottom:391.453333pt;}
.y1c_c00233{bottom:411.613333pt;}
.y1b_c00233{bottom:439.173333pt;}
.y1a_c00233{bottom:466.693333pt;}
.y19_c00233{bottom:494.533333pt;}
.y18_c00233{bottom:522.053333pt;}
.y17_c00233{bottom:549.600000pt;}
.y16_c00233{bottom:585.120000pt;}
.y12_c00233{bottom:609.120000pt;}
.y10_c00233{bottom:680.200000pt;}
.yf_c00233{bottom:741.946667pt;}
.ye_c00233{bottom:777.506667pt;}
.yd_c00233{bottom:805.026667pt;}
.yc_c00233{bottom:832.546667pt;}
.yb_c00233{bottom:860.413333pt;}
.ya_c00233{bottom:895.933333pt;}
.y9_c00233{bottom:923.453333pt;}
.y8_c00233{bottom:958.973333pt;}
.y6_c00233{bottom:994.853333pt;}
.y7_c00233{bottom:1002.213333pt;}
.y2_c00233{bottom:1056.933333pt;}
.h3_c00233{height:18.266667pt;}
.hd_c00233{height:30.982500pt;}
.hc_c00233{height:33.918750pt;}
.h4_c00233{height:36.796000pt;}
.h9_c00233{height:39.026667pt;}
.h7_c00233{height:41.456250pt;}
.he_c00233{height:48.457500pt;}
.ha_c00233{height:52.762500pt;}
.h2_c00233{height:57.375000pt;}
.h8_c00233{height:62.781250pt;}
.h5_c00233{height:62.812500pt;}
.hb_c00233{height:69.792000pt;}
.h6_c00233{height:1122.556000pt;}
.h0_c00233{height:1122.560000pt;}
.h1_c00233{height:1122.666667pt;}
.w2_c00233{width:7.386667pt;}
.w5_c00233{width:286.840000pt;}
.w3_c00233{width:567.280000pt;}
.w4_c00233{width:793.917333pt;}
.w0_c00233{width:793.920000pt;}
.w1_c00233{width:794.000000pt;}
.x0_c00233{left:0.000000pt;}
.x3_c00233{left:113.324000pt;}
.xc_c00233{left:126.784000pt;}
.x1_c00233{left:137.346667pt;}
.x7_c00233{left:158.786667pt;}
.x6_c00233{left:160.706667pt;}
.x9_c00233{left:164.864000pt;}
.xa_c00233{left:181.186667pt;}
.xb_c00233{left:305.413333pt;}
.x8_c00233{left:402.080000pt;}
.x4_c00233{left:630.970667pt;}
.x5_c00233{left:647.293333pt;}
.x2_c00233{left:673.213333pt;}
}





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

.ir_c00234:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00234;src:url('chunks/assets/font_63880104bf5ca04d56bcc3d8.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_ae29b29195502d87d4c543e7.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_68559bdbe7816f01eb6fdb12.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;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_c00234;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00234;src:url('chunks/assets/font_71f0b82ccebc33986a01a8bd.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00234;src:url('chunks/assets/font_5cac82ac8beb5d80f67cca5b.woff2')format("woff");}.ff6_c00234{font-family:ff6_c00234;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls4_c00234{letter-spacing:0.000000px;}
.ls5_c00234{letter-spacing:0.288000px;}
.ls2_c00234{letter-spacing:0.720000px;}
.ls6_c00234{letter-spacing:0.792000px;}
.ls1_c00234{letter-spacing:6.480000px;}
.ls0_c00234{letter-spacing:8.040000px;}
.ls3_c00234{letter-spacing:13.680000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00234{word-spacing:-72.000000px;}
.ws2_c00234{word-spacing:-18.288000px;}
.ws0_c00234{word-spacing:-18.000000px;}
.ws3_c00234{word-spacing:0.000000px;}
._b_c00234{margin-left:-3.528000px;}
._0_c00234{margin-left:-2.088000px;}
._4_c00234{margin-left:-1.008000px;}
._2_c00234{width:1.080000px;}
._1_c00234{width:2.592000px;}
._3_c00234{width:3.888000px;}
._6_c00234{width:5.184000px;}
._c_c00234{width:6.192000px;}
._5_c00234{width:7.200000px;}
._7_c00234{width:8.352000px;}
._8_c00234{width:9.720000px;}
._11_c00234{width:11.088000px;}
._a_c00234{width:12.816000px;}
._16_c00234{width:14.043001px;}
._9_c00234{width:15.336000px;}
._d_c00234{width:16.488000px;}
._15_c00234{width:20.640000px;}
._13_c00234{width:23.256000px;}
._12_c00234{width:24.264000px;}
._14_c00234{width:26.172000px;}
._10_c00234{width:34.848000px;}
._f_c00234{width:35.856000px;}
._e_c00234{width:37.800000px;}
.fc0_c00234{color:rgb(0,0,0);}
.fs2_c00234{font-size:38.880000px;}
.fs1_c00234{font-size:47.520000px;}
.fs3_c00234{font-size:60.480000px;}
.fs0_c00234{font-size:72.000000px;}
.y0_c00234{bottom:0.000000px;}
.y3_c00234{bottom:4.320000px;}
.y5_c00234{bottom:25.200000px;}
.y4_c00234{bottom:32.040000px;}
.y1_c00234{bottom:57.240000px;}
.y27_c00234{bottom:151.590000px;}
.y26_c00234{bottom:168.870000px;}
.y25_c00234{bottom:175.710000px;}
.y24_c00234{bottom:186.870000px;}
.y23_c00234{bottom:231.555000px;}
.y22_c00234{bottom:262.515000px;}
.y21_c00234{bottom:293.475000px;}
.y20_c00234{bottom:324.795000px;}
.y1f_c00234{bottom:355.785000px;}
.y1e_c00234{bottom:386.745000px;}
.y1d_c00234{bottom:417.705000px;}
.y1c_c00234{bottom:449.025000px;}
.y1b_c00234{bottom:489.030000px;}
.y1a_c00234{bottom:519.990000px;}
.y19_c00234{bottom:550.950000px;}
.y18_c00234{bottom:581.910000px;}
.y17_c00234{bottom:613.260000px;}
.y16_c00234{bottom:644.220000px;}
.y15_c00234{bottom:675.180000px;}
.y13_c00234{bottom:706.140000px;}
.y14_c00234{bottom:714.420000px;}
.y12_c00234{bottom:737.490000px;}
.y11_c00234{bottom:768.450000px;}
.y10_c00234{bottom:799.410000px;}
.yf_c00234{bottom:839.370000px;}
.ye_c00234{bottom:870.735000px;}
.yd_c00234{bottom:901.695000px;}
.yc_c00234{bottom:932.655000px;}
.yb_c00234{bottom:963.645000px;}
.ya_c00234{bottom:994.965000px;}
.y9_c00234{bottom:1025.925000px;}
.y8_c00234{bottom:1056.885000px;}
.y7_c00234{bottom:1087.890000px;}
.y6_c00234{bottom:1119.210000px;}
.y2_c00234{bottom:1189.050000px;}
.h3_c00234{height:20.550000px;}
.h8_c00234{height:34.855313px;}
.h4_c00234{height:41.395500px;}
.h7_c00234{height:46.638281px;}
.h9_c00234{height:54.219375px;}
.h2_c00234{height:64.546875px;}
.h5_c00234{height:70.664062px;}
.h6_c00234{height:1262.875500px;}
.h0_c00234{height:1262.880000px;}
.h1_c00234{height:1263.000000px;}
.w2_c00234{width:8.310000px;}
.w3_c00234{width:638.190000px;}
.w4_c00234{width:893.157000px;}
.w0_c00234{width:893.160000px;}
.w1_c00234{width:893.250000px;}
.x0_c00234{left:0.000000px;}
.x3_c00234{left:127.489500px;}
.x8_c00234{left:142.632000px;}
.x1_c00234{left:154.515000px;}
.x4_c00234{left:178.635000px;}
.x7_c00234{left:343.590000px;}
.x5_c00234{left:347.187000px;}
.x6_c00234{left:365.550000px;}
.x2_c00234{left:757.365000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls4_c00234{letter-spacing:0.000000pt;}
.ls5_c00234{letter-spacing:0.256000pt;}
.ls2_c00234{letter-spacing:0.640000pt;}
.ls6_c00234{letter-spacing:0.704000pt;}
.ls1_c00234{letter-spacing:5.760000pt;}
.ls0_c00234{letter-spacing:7.146667pt;}
.ls3_c00234{letter-spacing:12.160000pt;}
.ws1_c00234{word-spacing:-64.000000pt;}
.ws2_c00234{word-spacing:-16.256000pt;}
.ws0_c00234{word-spacing:-16.000000pt;}
.ws3_c00234{word-spacing:0.000000pt;}
._b_c00234{margin-left:-3.136000pt;}
._0_c00234{margin-left:-1.856000pt;}
._4_c00234{margin-left:-0.896000pt;}
._2_c00234{width:0.960000pt;}
._1_c00234{width:2.304000pt;}
._3_c00234{width:3.456000pt;}
._6_c00234{width:4.608000pt;}
._c_c00234{width:5.504000pt;}
._5_c00234{width:6.400000pt;}
._7_c00234{width:7.424000pt;}
._8_c00234{width:8.640000pt;}
._11_c00234{width:9.856000pt;}
._a_c00234{width:11.392000pt;}
._16_c00234{width:12.482668pt;}
._9_c00234{width:13.632000pt;}
._d_c00234{width:14.656000pt;}
._15_c00234{width:18.346667pt;}
._13_c00234{width:20.672000pt;}
._12_c00234{width:21.568000pt;}
._14_c00234{width:23.264000pt;}
._10_c00234{width:30.976000pt;}
._f_c00234{width:31.872000pt;}
._e_c00234{width:33.600000pt;}
.fs2_c00234{font-size:34.560000pt;}
.fs1_c00234{font-size:42.240000pt;}
.fs3_c00234{font-size:53.760000pt;}
.fs0_c00234{font-size:64.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y3_c00234{bottom:3.840000pt;}
.y5_c00234{bottom:22.400000pt;}
.y4_c00234{bottom:28.480000pt;}
.y1_c00234{bottom:50.880000pt;}
.y27_c00234{bottom:134.746667pt;}
.y26_c00234{bottom:150.106667pt;}
.y25_c00234{bottom:156.186667pt;}
.y24_c00234{bottom:166.106667pt;}
.y23_c00234{bottom:205.826667pt;}
.y22_c00234{bottom:233.346667pt;}
.y21_c00234{bottom:260.866667pt;}
.y20_c00234{bottom:288.706667pt;}
.y1f_c00234{bottom:316.253333pt;}
.y1e_c00234{bottom:343.773333pt;}
.y1d_c00234{bottom:371.293333pt;}
.y1c_c00234{bottom:399.133333pt;}
.y1b_c00234{bottom:434.693333pt;}
.y1a_c00234{bottom:462.213333pt;}
.y19_c00234{bottom:489.733333pt;}
.y18_c00234{bottom:517.253333pt;}
.y17_c00234{bottom:545.120000pt;}
.y16_c00234{bottom:572.640000pt;}
.y15_c00234{bottom:600.160000pt;}
.y13_c00234{bottom:627.680000pt;}
.y14_c00234{bottom:635.040000pt;}
.y12_c00234{bottom:655.546667pt;}
.y11_c00234{bottom:683.066667pt;}
.y10_c00234{bottom:710.586667pt;}
.yf_c00234{bottom:746.106667pt;}
.ye_c00234{bottom:773.986667pt;}
.yd_c00234{bottom:801.506667pt;}
.yc_c00234{bottom:829.026667pt;}
.yb_c00234{bottom:856.573333pt;}
.ya_c00234{bottom:884.413333pt;}
.y9_c00234{bottom:911.933333pt;}
.y8_c00234{bottom:939.453333pt;}
.y7_c00234{bottom:967.013333pt;}
.y6_c00234{bottom:994.853333pt;}
.y2_c00234{bottom:1056.933333pt;}
.h3_c00234{height:18.266667pt;}
.h8_c00234{height:30.982500pt;}
.h4_c00234{height:36.796000pt;}
.h7_c00234{height:41.456250pt;}
.h9_c00234{height:48.195000pt;}
.h2_c00234{height:57.375000pt;}
.h5_c00234{height:62.812500pt;}
.h6_c00234{height:1122.556000pt;}
.h0_c00234{height:1122.560000pt;}
.h1_c00234{height:1122.666667pt;}
.w2_c00234{width:7.386667pt;}
.w3_c00234{width:567.280000pt;}
.w4_c00234{width:793.917333pt;}
.w0_c00234{width:793.920000pt;}
.w1_c00234{width:794.000000pt;}
.x0_c00234{left:0.000000pt;}
.x3_c00234{left:113.324000pt;}
.x8_c00234{left:126.784000pt;}
.x1_c00234{left:137.346667pt;}
.x4_c00234{left:158.786667pt;}
.x7_c00234{left:305.413333pt;}
.x5_c00234{left:308.610667pt;}
.x6_c00234{left:324.933333pt;}
.x2_c00234{left:673.213333pt;}
}





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

.ir_c00235:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00235;src:url('chunks/assets/font_9b0c9de257a847d23b6ef844.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_d5f52d8fcb608d00a74ec421.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_657d3077889f12f17ac68d17.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;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_c00235;src:url('chunks/assets/font_5ae0b4cccf02ee29021068bc.woff2')format("woff");}.ff5_c00235{font-family:ff5_c00235;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00235;src:url('chunks/assets/font_7d22598fb017e3f6203f0a33.woff2')format("woff");}.ff6_c00235{font-family:ff6_c00235;line-height:1.104004;font-style:normal;font-weight: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_c00235;src:url('chunks/assets/font_3e3338f5cd120704111b139c.woff2')format("woff");}.ff7_c00235{font-family:ff7_c00235;line-height:1.117188;font-style:normal;font-weight: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_c00235;src:url('chunks/assets/font_f3881c1b27dded93b5c4f6d4.woff2')format("woff");}.ff8_c00235{font-family:ff8_c00235;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls1a_c00235{letter-spacing:-1.452000px;}
.ls19_c00235{letter-spacing:-1.416000px;}
.ls1c_c00235{letter-spacing:-0.912000px;}
.ls1d_c00235{letter-spacing:-0.720000px;}
.ls16_c00235{letter-spacing:-0.241800px;}
.ls15_c00235{letter-spacing:0.000000px;}
.ls18_c00235{letter-spacing:0.022800px;}
.lse_c00235{letter-spacing:0.048960px;}
.ls1b_c00235{letter-spacing:0.060600px;}
.ls12_c00235{letter-spacing:0.518400px;}
.ls13_c00235{letter-spacing:0.524160px;}
.ls17_c00235{letter-spacing:0.529800px;}
.ls4_c00235{letter-spacing:0.720000px;}
.ls0_c00235{letter-spacing:1.440000px;}
.lsc_c00235{letter-spacing:3.600000px;}
.ls1_c00235{letter-spacing:5.040000px;}
.ls3_c00235{letter-spacing:5.048665px;}
.ls2_c00235{letter-spacing:5.060243px;}
.lsa_c00235{letter-spacing:6.468894px;}
.lsb_c00235{letter-spacing:6.480000px;}
.ls11_c00235{letter-spacing:9.360000px;}
.ls10_c00235{letter-spacing:10.800000px;}
.ls8_c00235{letter-spacing:12.228221px;}
.ls6_c00235{letter-spacing:12.228716px;}
.ls5_c00235{letter-spacing:12.240000px;}
.ls7_c00235{letter-spacing:13.680000px;}
.ls9_c00235{letter-spacing:15.108254px;}
.ls14_c00235{letter-spacing:15.120000px;}
.lsd_c00235{letter-spacing:16.560000px;}
.lsf_c00235{letter-spacing:16.668716px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00235{word-spacing:-72.000000px;}
.ws4_c00235{word-spacing:-60.480000px;}
.ws1_c00235{word-spacing:-18.000000px;}
.ws5_c00235{word-spacing:-15.180600px;}
.ws3_c00235{word-spacing:-15.120000px;}
.ws2_c00235{word-spacing:-14.878200px;}
.ws6_c00235{word-spacing:0.000000px;}
._5_c00235{margin-left:-3.744000px;}
._2_c00235{margin-left:-2.448000px;}
._1_c00235{margin-left:-1.296000px;}
._0_c00235{width:1.368000px;}
._3_c00235{width:2.808000px;}
._a_c00235{width:3.960000px;}
._b_c00235{width:5.328000px;}
._17_c00235{width:6.802776px;}
._7_c00235{width:7.848000px;}
._4_c00235{width:9.576000px;}
._6_c00235{width:11.964000px;}
._10_c00235{width:13.320000px;}
._f_c00235{width:14.556024px;}
._15_c00235{width:16.031952px;}
._18_c00235{width:17.492928px;}
._12_c00235{width:20.448000px;}
._11_c00235{width:21.960000px;}
._13_c00235{width:23.112000px;}
._8_c00235{width:24.696000px;}
._9_c00235{width:26.208000px;}
._16_c00235{width:27.216000px;}
._14_c00235{width:29.448000px;}
._c_c00235{width:30.744000px;}
._d_c00235{width:32.040000px;}
._e_c00235{width:33.048000px;}
.fc0_c00235{color:rgb(0,0,0);}
.fs3_c00235{font-size:38.880000px;}
.fs1_c00235{font-size:47.520000px;}
.fs2_c00235{font-size:60.480000px;}
.fs0_c00235{font-size:72.000000px;}
.y0_c00235{bottom:0.000000px;}
.y3_c00235{bottom:4.320000px;}
.y5_c00235{bottom:25.200000px;}
.y4_c00235{bottom:32.040000px;}
.y1_c00235{bottom:57.240000px;}
.y28_c00235{bottom:151.590000px;}
.y27_c00235{bottom:158.430000px;}
.y26_c00235{bottom:169.590000px;}
.y25_c00235{bottom:205.950000px;}
.y24_c00235{bottom:231.915000px;}
.y23_c00235{bottom:257.835000px;}
.y22_c00235{bottom:283.755000px;}
.y21_c00235{bottom:309.675000px;}
.y20_c00235{bottom:335.235000px;}
.y1f_c00235{bottom:361.185000px;}
.y1e_c00235{bottom:387.105000px;}
.y1d_c00235{bottom:413.025000px;}
.y1c_c00235{bottom:438.945000px;}
.y1b_c00235{bottom:473.865000px;}
.y1a_c00235{bottom:510.990000px;}
.y19_c00235{bottom:541.950000px;}
.y18_c00235{bottom:572.910000px;}
.y17_c00235{bottom:604.260000px;}
.y16_c00235{bottom:635.220000px;}
.y15_c00235{bottom:666.180000px;}
.y14_c00235{bottom:697.140000px;}
.y13_c00235{bottom:737.490000px;}
.y12_c00235{bottom:768.450000px;}
.y11_c00235{bottom:799.410000px;}
.y10_c00235{bottom:830.370000px;}
.yf_c00235{bottom:861.735000px;}
.ye_c00235{bottom:901.695000px;}
.yd_c00235{bottom:932.655000px;}
.yb_c00235{bottom:963.645000px;}
.yc_c00235{bottom:971.925000px;}
.ya_c00235{bottom:994.965000px;}
.y9_c00235{bottom:1025.925000px;}
.y8_c00235{bottom:1056.885000px;}
.y7_c00235{bottom:1087.890000px;}
.y6_c00235{bottom:1119.210000px;}
.y2_c00235{bottom:1189.050000px;}
.h3_c00235{height:20.550000px;}
.h9_c00235{height:34.855313px;}
.h4_c00235{height:41.395500px;}
.h7_c00235{height:46.638281px;}
.ha_c00235{height:54.514688px;}
.h8_c00235{height:59.357813px;}
.h2_c00235{height:64.546875px;}
.h5_c00235{height:70.664062px;}
.h6_c00235{height:1262.875500px;}
.h0_c00235{height:1262.880000px;}
.h1_c00235{height:1263.000000px;}
.w2_c00235{width:8.310000px;}
.w3_c00235{width:638.190000px;}
.w4_c00235{width:893.157000px;}
.w0_c00235{width:893.160000px;}
.w1_c00235{width:893.250000px;}
.x0_c00235{left:0.000000px;}
.x3_c00235{left:127.489500px;}
.x9_c00235{left:142.632000px;}
.x1_c00235{left:154.515000px;}
.x7_c00235{left:169.995000px;}
.x6_c00235{left:178.635000px;}
.x8_c00235{left:343.590000px;}
.x4_c00235{left:700.842000px;}
.x5_c00235{left:719.205000px;}
.x2_c00235{left:757.365000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls1a_c00235{letter-spacing:-1.290667pt;}
.ls19_c00235{letter-spacing:-1.258667pt;}
.ls1c_c00235{letter-spacing:-0.810667pt;}
.ls1d_c00235{letter-spacing:-0.640000pt;}
.ls16_c00235{letter-spacing:-0.214933pt;}
.ls15_c00235{letter-spacing:0.000000pt;}
.ls18_c00235{letter-spacing:0.020267pt;}
.lse_c00235{letter-spacing:0.043520pt;}
.ls1b_c00235{letter-spacing:0.053867pt;}
.ls12_c00235{letter-spacing:0.460800pt;}
.ls13_c00235{letter-spacing:0.465920pt;}
.ls17_c00235{letter-spacing:0.470933pt;}
.ls4_c00235{letter-spacing:0.640000pt;}
.ls0_c00235{letter-spacing:1.280000pt;}
.lsc_c00235{letter-spacing:3.200000pt;}
.ls1_c00235{letter-spacing:4.480000pt;}
.ls3_c00235{letter-spacing:4.487702pt;}
.ls2_c00235{letter-spacing:4.497993pt;}
.lsa_c00235{letter-spacing:5.750128pt;}
.lsb_c00235{letter-spacing:5.760000pt;}
.ls11_c00235{letter-spacing:8.320000pt;}
.ls10_c00235{letter-spacing:9.600000pt;}
.ls8_c00235{letter-spacing:10.869530pt;}
.ls6_c00235{letter-spacing:10.869970pt;}
.ls5_c00235{letter-spacing:10.880000pt;}
.ls7_c00235{letter-spacing:12.160000pt;}
.ls9_c00235{letter-spacing:13.429559pt;}
.ls14_c00235{letter-spacing:13.440000pt;}
.lsd_c00235{letter-spacing:14.720000pt;}
.lsf_c00235{letter-spacing:14.816637pt;}
.ws0_c00235{word-spacing:-64.000000pt;}
.ws4_c00235{word-spacing:-53.760000pt;}
.ws1_c00235{word-spacing:-16.000000pt;}
.ws5_c00235{word-spacing:-13.493867pt;}
.ws3_c00235{word-spacing:-13.440000pt;}
.ws2_c00235{word-spacing:-13.225067pt;}
.ws6_c00235{word-spacing:0.000000pt;}
._5_c00235{margin-left:-3.328000pt;}
._2_c00235{margin-left:-2.176000pt;}
._1_c00235{margin-left:-1.152000pt;}
._0_c00235{width:1.216000pt;}
._3_c00235{width:2.496000pt;}
._a_c00235{width:3.520000pt;}
._b_c00235{width:4.736000pt;}
._17_c00235{width:6.046912pt;}
._7_c00235{width:6.976000pt;}
._4_c00235{width:8.512000pt;}
._6_c00235{width:10.634667pt;}
._10_c00235{width:11.840000pt;}
._f_c00235{width:12.938688pt;}
._15_c00235{width:14.250624pt;}
._18_c00235{width:15.549269pt;}
._12_c00235{width:18.176000pt;}
._11_c00235{width:19.520000pt;}
._13_c00235{width:20.544000pt;}
._8_c00235{width:21.952000pt;}
._9_c00235{width:23.296000pt;}
._16_c00235{width:24.192000pt;}
._14_c00235{width:26.176000pt;}
._c_c00235{width:27.328000pt;}
._d_c00235{width:28.480000pt;}
._e_c00235{width:29.376000pt;}
.fs3_c00235{font-size:34.560000pt;}
.fs1_c00235{font-size:42.240000pt;}
.fs2_c00235{font-size:53.760000pt;}
.fs0_c00235{font-size:64.000000pt;}
.y0_c00235{bottom:0.000000pt;}
.y3_c00235{bottom:3.840000pt;}
.y5_c00235{bottom:22.400000pt;}
.y4_c00235{bottom:28.480000pt;}
.y1_c00235{bottom:50.880000pt;}
.y28_c00235{bottom:134.746667pt;}
.y27_c00235{bottom:140.826667pt;}
.y26_c00235{bottom:150.746667pt;}
.y25_c00235{bottom:183.066667pt;}
.y24_c00235{bottom:206.146667pt;}
.y23_c00235{bottom:229.186667pt;}
.y22_c00235{bottom:252.226667pt;}
.y21_c00235{bottom:275.266667pt;}
.y20_c00235{bottom:297.986667pt;}
.y1f_c00235{bottom:321.053333pt;}
.y1e_c00235{bottom:344.093333pt;}
.y1d_c00235{bottom:367.133333pt;}
.y1c_c00235{bottom:390.173333pt;}
.y1b_c00235{bottom:421.213333pt;}
.y1a_c00235{bottom:454.213333pt;}
.y19_c00235{bottom:481.733333pt;}
.y18_c00235{bottom:509.253333pt;}
.y17_c00235{bottom:537.120000pt;}
.y16_c00235{bottom:564.640000pt;}
.y15_c00235{bottom:592.160000pt;}
.y14_c00235{bottom:619.680000pt;}
.y13_c00235{bottom:655.546667pt;}
.y12_c00235{bottom:683.066667pt;}
.y11_c00235{bottom:710.586667pt;}
.y10_c00235{bottom:738.106667pt;}
.yf_c00235{bottom:765.986667pt;}
.ye_c00235{bottom:801.506667pt;}
.yd_c00235{bottom:829.026667pt;}
.yb_c00235{bottom:856.573333pt;}
.yc_c00235{bottom:863.933333pt;}
.ya_c00235{bottom:884.413333pt;}
.y9_c00235{bottom:911.933333pt;}
.y8_c00235{bottom:939.453333pt;}
.y7_c00235{bottom:967.013333pt;}
.y6_c00235{bottom:994.853333pt;}
.y2_c00235{bottom:1056.933333pt;}
.h3_c00235{height:18.266667pt;}
.h9_c00235{height:30.982500pt;}
.h4_c00235{height:36.796000pt;}
.h7_c00235{height:41.456250pt;}
.ha_c00235{height:48.457500pt;}
.h8_c00235{height:52.762500pt;}
.h2_c00235{height:57.375000pt;}
.h5_c00235{height:62.812500pt;}
.h6_c00235{height:1122.556000pt;}
.h0_c00235{height:1122.560000pt;}
.h1_c00235{height:1122.666667pt;}
.w2_c00235{width:7.386667pt;}
.w3_c00235{width:567.280000pt;}
.w4_c00235{width:793.917333pt;}
.w0_c00235{width:793.920000pt;}
.w1_c00235{width:794.000000pt;}
.x0_c00235{left:0.000000pt;}
.x3_c00235{left:113.324000pt;}
.x9_c00235{left:126.784000pt;}
.x1_c00235{left:137.346667pt;}
.x7_c00235{left:151.106667pt;}
.x6_c00235{left:158.786667pt;}
.x8_c00235{left:305.413333pt;}
.x4_c00235{left:622.970667pt;}
.x5_c00235{left:639.293333pt;}
.x2_c00235{left:673.213333pt;}
}





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

.ir_c00236:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00236;src:url('chunks/assets/font_fcbda93ae2a8eabdbaf5c38f.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_1f914f2f71d6b99b76af3252.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_4ed27eb6e231fe07c8db5839.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_97245d703e25e6e0e0dc086f.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_a2356acb99e409ce66d7b1bf.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls6_c00236{letter-spacing:-2.880000px;}
.ls5_c00236{letter-spacing:-0.936000px;}
.ls4_c00236{letter-spacing:0.000000px;}
.ls7_c00236{letter-spacing:0.792000px;}
.ls3_c00236{letter-spacing:1.440000px;}
.ls2_c00236{letter-spacing:2.160000px;}
.ls0_c00236{letter-spacing:6.480000px;}
.ls1_c00236{letter-spacing:10.800000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00236{word-spacing:-72.000000px;}
.ws0_c00236{word-spacing:-18.000000px;}
.ws2_c00236{word-spacing:0.000000px;}
._1_c00236{margin-left:-2.736000px;}
._3_c00236{margin-left:-1.296000px;}
._0_c00236{width:1.296000px;}
._4_c00236{width:3.024000px;}
._d_c00236{width:4.392000px;}
._f_c00236{width:5.832000px;}
._e_c00236{width:6.984000px;}
._10_c00236{width:8.064000px;}
._15_c00236{width:9.144000px;}
._11_c00236{width:10.296000px;}
._12_c00236{width:11.376000px;}
._13_c00236{width:12.600000px;}
._b_c00236{width:14.112000px;}
._c_c00236{width:15.192000px;}
._14_c00236{width:16.475976px;}
._2_c00236{width:19.368000px;}
._5_c00236{width:20.664000px;}
._16_c00236{width:22.608000px;}
._17_c00236{width:24.624000px;}
._8_c00236{width:25.848000px;}
._6_c00236{width:26.856000px;}
._7_c00236{width:27.936000px;}
._a_c00236{width:52.344000px;}
._9_c00236{width:53.712000px;}
.fc0_c00236{color:rgb(0,0,0);}
.fs0_c00236{font-size:72.000000px;}
.y0_c00236{bottom:0.000000px;}
.y3_c00236{bottom:4.320000px;}
.y5_c00236{bottom:25.200000px;}
.y4_c00236{bottom:32.040000px;}
.y1_c00236{bottom:57.240000px;}
.y24_c00236{bottom:169.230000px;}
.y23_c00236{bottom:200.550000px;}
.y22_c00236{bottom:231.555000px;}
.y21_c00236{bottom:262.515000px;}
.y20_c00236{bottom:293.475000px;}
.y1f_c00236{bottom:324.795000px;}
.y1e_c00236{bottom:355.785000px;}
.y1d_c00236{bottom:386.745000px;}
.y1c_c00236{bottom:417.705000px;}
.y1b_c00236{bottom:449.025000px;}
.y1a_c00236{bottom:480.030000px;}
.y19_c00236{bottom:510.990000px;}
.y18_c00236{bottom:541.950000px;}
.y17_c00236{bottom:581.910000px;}
.y16_c00236{bottom:613.260000px;}
.y15_c00236{bottom:644.220000px;}
.y14_c00236{bottom:675.180000px;}
.y13_c00236{bottom:706.140000px;}
.y12_c00236{bottom:737.490000px;}
.y11_c00236{bottom:768.450000px;}
.y10_c00236{bottom:799.410000px;}
.yf_c00236{bottom:830.370000px;}
.ye_c00236{bottom:861.735000px;}
.yd_c00236{bottom:892.695000px;}
.yc_c00236{bottom:923.655000px;}
.yb_c00236{bottom:954.615000px;}
.ya_c00236{bottom:994.965000px;}
.y9_c00236{bottom:1025.925000px;}
.y8_c00236{bottom:1056.885000px;}
.y7_c00236{bottom:1087.890000px;}
.y6_c00236{bottom:1119.210000px;}
.y2_c00236{bottom:1189.050000px;}
.h3_c00236{height:20.550000px;}
.h4_c00236{height:41.395500px;}
.h2_c00236{height:64.546875px;}
.h5_c00236{height:70.664062px;}
.h0_c00236{height:1262.880000px;}
.h1_c00236{height:1263.000000px;}
.w2_c00236{width:8.310000px;}
.w3_c00236{width:638.190000px;}
.w0_c00236{width:893.160000px;}
.w1_c00236{width:893.250000px;}
.x0_c00236{left:0.000000px;}
.x3_c00236{left:127.489500px;}
.x1_c00236{left:154.515000px;}
.x4_c00236{left:169.995000px;}
.x2_c00236{left:757.365000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls6_c00236{letter-spacing:-2.560000pt;}
.ls5_c00236{letter-spacing:-0.832000pt;}
.ls4_c00236{letter-spacing:0.000000pt;}
.ls7_c00236{letter-spacing:0.704000pt;}
.ls3_c00236{letter-spacing:1.280000pt;}
.ls2_c00236{letter-spacing:1.920000pt;}
.ls0_c00236{letter-spacing:5.760000pt;}
.ls1_c00236{letter-spacing:9.600000pt;}
.ws1_c00236{word-spacing:-64.000000pt;}
.ws0_c00236{word-spacing:-16.000000pt;}
.ws2_c00236{word-spacing:0.000000pt;}
._1_c00236{margin-left:-2.432000pt;}
._3_c00236{margin-left:-1.152000pt;}
._0_c00236{width:1.152000pt;}
._4_c00236{width:2.688000pt;}
._d_c00236{width:3.904000pt;}
._f_c00236{width:5.184000pt;}
._e_c00236{width:6.208000pt;}
._10_c00236{width:7.168000pt;}
._15_c00236{width:8.128000pt;}
._11_c00236{width:9.152000pt;}
._12_c00236{width:10.112000pt;}
._13_c00236{width:11.200000pt;}
._b_c00236{width:12.544000pt;}
._c_c00236{width:13.504000pt;}
._14_c00236{width:14.645312pt;}
._2_c00236{width:17.216000pt;}
._5_c00236{width:18.368000pt;}
._16_c00236{width:20.096000pt;}
._17_c00236{width:21.888000pt;}
._8_c00236{width:22.976000pt;}
._6_c00236{width:23.872000pt;}
._7_c00236{width:24.832000pt;}
._a_c00236{width:46.528000pt;}
._9_c00236{width:47.744000pt;}
.fs0_c00236{font-size:64.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y3_c00236{bottom:3.840000pt;}
.y5_c00236{bottom:22.400000pt;}
.y4_c00236{bottom:28.480000pt;}
.y1_c00236{bottom:50.880000pt;}
.y24_c00236{bottom:150.426667pt;}
.y23_c00236{bottom:178.266667pt;}
.y22_c00236{bottom:205.826667pt;}
.y21_c00236{bottom:233.346667pt;}
.y20_c00236{bottom:260.866667pt;}
.y1f_c00236{bottom:288.706667pt;}
.y1e_c00236{bottom:316.253333pt;}
.y1d_c00236{bottom:343.773333pt;}
.y1c_c00236{bottom:371.293333pt;}
.y1b_c00236{bottom:399.133333pt;}
.y1a_c00236{bottom:426.693333pt;}
.y19_c00236{bottom:454.213333pt;}
.y18_c00236{bottom:481.733333pt;}
.y17_c00236{bottom:517.253333pt;}
.y16_c00236{bottom:545.120000pt;}
.y15_c00236{bottom:572.640000pt;}
.y14_c00236{bottom:600.160000pt;}
.y13_c00236{bottom:627.680000pt;}
.y12_c00236{bottom:655.546667pt;}
.y11_c00236{bottom:683.066667pt;}
.y10_c00236{bottom:710.586667pt;}
.yf_c00236{bottom:738.106667pt;}
.ye_c00236{bottom:765.986667pt;}
.yd_c00236{bottom:793.506667pt;}
.yc_c00236{bottom:821.026667pt;}
.yb_c00236{bottom:848.546667pt;}
.ya_c00236{bottom:884.413333pt;}
.y9_c00236{bottom:911.933333pt;}
.y8_c00236{bottom:939.453333pt;}
.y7_c00236{bottom:967.013333pt;}
.y6_c00236{bottom:994.853333pt;}
.y2_c00236{bottom:1056.933333pt;}
.h3_c00236{height:18.266667pt;}
.h4_c00236{height:36.796000pt;}
.h2_c00236{height:57.375000pt;}
.h5_c00236{height:62.812500pt;}
.h0_c00236{height:1122.560000pt;}
.h1_c00236{height:1122.666667pt;}
.w2_c00236{width:7.386667pt;}
.w3_c00236{width:567.280000pt;}
.w0_c00236{width:793.920000pt;}
.w1_c00236{width:794.000000pt;}
.x0_c00236{left:0.000000pt;}
.x3_c00236{left:113.324000pt;}
.x1_c00236{left:137.346667pt;}
.x4_c00236{left:151.106667pt;}
.x2_c00236{left:673.213333pt;}
}





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

.ir_c00237:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00237;src:url('chunks/assets/font_7d66509668c15a6ab9f04297.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_af5586d1be43fa94f365faf1.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_e24a954592979d9d8e5347b1.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_14a16eb66b6d553910721ba1.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00237;src:url('chunks/assets/font_16df4336a56966c1b7189481.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00237;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00237{font-family:ff6_c00237;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls12_c00237{letter-spacing:-1.680000px;}
.lsa_c00237{letter-spacing:-1.416000px;}
.lsd_c00237{letter-spacing:-1.056000px;}
.lsf_c00237{letter-spacing:-0.912000px;}
.lsb_c00237{letter-spacing:-0.720000px;}
.lse_c00237{letter-spacing:-0.544200px;}
.ls6_c00237{letter-spacing:-0.532800px;}
.ls8_c00237{letter-spacing:-0.337200px;}
.ls11_c00237{letter-spacing:-0.241800px;}
.ls4_c00237{letter-spacing:0.000000px;}
.ls7_c00237{letter-spacing:0.022800px;}
.ls5_c00237{letter-spacing:0.060600px;}
.ls10_c00237{letter-spacing:0.166800px;}
.ls3_c00237{letter-spacing:0.482400px;}
.ls1_c00237{letter-spacing:0.518400px;}
.ls9_c00237{letter-spacing:0.529800px;}
.lsc_c00237{letter-spacing:0.702000px;}
.ls0_c00237{letter-spacing:0.720000px;}
.ls2_c00237{letter-spacing:0.740068px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00237{word-spacing:-60.480000px;}
.ws8_c00237{word-spacing:-15.286800px;}
.ws6_c00237{word-spacing:-15.180600px;}
.ws0_c00237{word-spacing:-15.120000px;}
.ws9_c00237{word-spacing:-14.878200px;}
.ws4_c00237{word-spacing:-14.782800px;}
.ws2_c00237{word-spacing:-14.587200px;}
.ws7_c00237{word-spacing:-14.575800px;}
.ws5_c00237{word-spacing:-13.704000px;}
.ws1_c00237{word-spacing:-12.600000px;}
.wsa_c00237{word-spacing:0.000000px;}
._4_c00237{margin-left:-7.919977px;}
._7_c00237{margin-left:-2.494933px;}
._1_c00237{margin-left:-1.440000px;}
._0_c00237{width:1.296000px;}
._2_c00237{width:2.363976px;}
._9_c00237{width:35.459968px;}
._5_c00237{width:189.359977px;}
._6_c00237{width:449.442000px;}
._3_c00237{width:477.031440px;}
._8_c00237{width:535.514187px;}
.fc0_c00237{color:rgb(0,0,0);}
.fs2_c00237{font-size:47.520000px;}
.fs1_c00237{font-size:60.480000px;}
.fs0_c00237{font-size:72.000000px;}
.y0_c00237{bottom:0.000000px;}
.y3_c00237{bottom:4.320000px;}
.y5_c00237{bottom:25.200000px;}
.y4_c00237{bottom:32.040000px;}
.y1_c00237{bottom:57.240000px;}
.y22_c00237{bottom:135.036000px;}
.y21_c00237{bottom:169.590000px;}
.y20_c00237{bottom:204.510000px;}
.y1f_c00237{bottom:239.475000px;}
.y1e_c00237{bottom:274.395000px;}
.y1d_c00237{bottom:309.315000px;}
.y1c_c00237{bottom:344.235000px;}
.y1b_c00237{bottom:379.185000px;}
.y1a_c00237{bottom:413.745000px;}
.y19_c00237{bottom:448.665000px;}
.y18_c00237{bottom:483.630000px;}
.y17_c00237{bottom:518.550000px;}
.y16_c00237{bottom:553.470000px;}
.y15_c00237{bottom:588.390000px;}
.y14_c00237{bottom:623.340000px;}
.y13_c00237{bottom:658.260000px;}
.y12_c00237{bottom:692.820000px;}
.y11_c00237{bottom:727.770000px;}
.y10_c00237{bottom:762.690000px;}
.yf_c00237{bottom:797.610000px;}
.ye_c00237{bottom:832.530000px;}
.yd_c00237{bottom:867.495000px;}
.yc_c00237{bottom:902.415000px;}
.yb_c00237{bottom:937.335000px;}
.ya_c00237{bottom:971.925000px;}
.y9_c00237{bottom:1006.845000px;}
.y8_c00237{bottom:1041.765000px;}
.y7_c00237{bottom:1078.845000px;}
.y6_c00237{bottom:1119.210000px;}
.y2_c00237{bottom:1189.050000px;}
.h3_c00237{height:20.550000px;}
.h4_c00237{height:41.395500px;}
.h8_c00237{height:59.328281px;}
.h6_c00237{height:59.357813px;}
.h7_c00237{height:60.952500px;}
.h2_c00237{height:64.546875px;}
.h5_c00237{height:70.628906px;}
.h0_c00237{height:1262.880000px;}
.h1_c00237{height:1263.000000px;}
.w2_c00237{width:8.310000px;}
.w3_c00237{width:638.190000px;}
.w0_c00237{width:893.160000px;}
.w1_c00237{width:893.250000px;}
.x0_c00237{left:0.000000px;}
.x3_c00237{left:127.489500px;}
.x1_c00237{left:154.515000px;}
.x5_c00237{left:169.995000px;}
.x4_c00237{left:180.795000px;}
.x2_c00237{left:757.365000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls12_c00237{letter-spacing:-1.493333pt;}
.lsa_c00237{letter-spacing:-1.258667pt;}
.lsd_c00237{letter-spacing:-0.938667pt;}
.lsf_c00237{letter-spacing:-0.810667pt;}
.lsb_c00237{letter-spacing:-0.640000pt;}
.lse_c00237{letter-spacing:-0.483733pt;}
.ls6_c00237{letter-spacing:-0.473600pt;}
.ls8_c00237{letter-spacing:-0.299733pt;}
.ls11_c00237{letter-spacing:-0.214933pt;}
.ls4_c00237{letter-spacing:0.000000pt;}
.ls7_c00237{letter-spacing:0.020267pt;}
.ls5_c00237{letter-spacing:0.053867pt;}
.ls10_c00237{letter-spacing:0.148267pt;}
.ls3_c00237{letter-spacing:0.428800pt;}
.ls1_c00237{letter-spacing:0.460800pt;}
.ls9_c00237{letter-spacing:0.470933pt;}
.lsc_c00237{letter-spacing:0.624000pt;}
.ls0_c00237{letter-spacing:0.640000pt;}
.ls2_c00237{letter-spacing:0.657838pt;}
.ws3_c00237{word-spacing:-53.760000pt;}
.ws8_c00237{word-spacing:-13.588267pt;}
.ws6_c00237{word-spacing:-13.493867pt;}
.ws0_c00237{word-spacing:-13.440000pt;}
.ws9_c00237{word-spacing:-13.225067pt;}
.ws4_c00237{word-spacing:-13.140267pt;}
.ws2_c00237{word-spacing:-12.966400pt;}
.ws7_c00237{word-spacing:-12.956267pt;}
.ws5_c00237{word-spacing:-12.181333pt;}
.ws1_c00237{word-spacing:-11.200000pt;}
.wsa_c00237{word-spacing:0.000000pt;}
._4_c00237{margin-left:-7.039980pt;}
._7_c00237{margin-left:-2.217719pt;}
._1_c00237{margin-left:-1.280000pt;}
._0_c00237{width:1.152000pt;}
._2_c00237{width:2.101312pt;}
._9_c00237{width:31.519972pt;}
._5_c00237{width:168.319980pt;}
._6_c00237{width:399.504000pt;}
._3_c00237{width:424.027947pt;}
._8_c00237{width:476.012611pt;}
.fs2_c00237{font-size:42.240000pt;}
.fs1_c00237{font-size:53.760000pt;}
.fs0_c00237{font-size:64.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y3_c00237{bottom:3.840000pt;}
.y5_c00237{bottom:22.400000pt;}
.y4_c00237{bottom:28.480000pt;}
.y1_c00237{bottom:50.880000pt;}
.y22_c00237{bottom:120.032000pt;}
.y21_c00237{bottom:150.746667pt;}
.y20_c00237{bottom:181.786667pt;}
.y1f_c00237{bottom:212.866667pt;}
.y1e_c00237{bottom:243.906667pt;}
.y1d_c00237{bottom:274.946667pt;}
.y1c_c00237{bottom:305.986667pt;}
.y1b_c00237{bottom:337.053333pt;}
.y1a_c00237{bottom:367.773333pt;}
.y19_c00237{bottom:398.813333pt;}
.y18_c00237{bottom:429.893333pt;}
.y17_c00237{bottom:460.933333pt;}
.y16_c00237{bottom:491.973333pt;}
.y15_c00237{bottom:523.013333pt;}
.y14_c00237{bottom:554.080000pt;}
.y13_c00237{bottom:585.120000pt;}
.y12_c00237{bottom:615.840000pt;}
.y11_c00237{bottom:646.906667pt;}
.y10_c00237{bottom:677.946667pt;}
.yf_c00237{bottom:708.986667pt;}
.ye_c00237{bottom:740.026667pt;}
.yd_c00237{bottom:771.106667pt;}
.yc_c00237{bottom:802.146667pt;}
.yb_c00237{bottom:833.186667pt;}
.ya_c00237{bottom:863.933333pt;}
.y9_c00237{bottom:894.973333pt;}
.y8_c00237{bottom:926.013333pt;}
.y7_c00237{bottom:958.973333pt;}
.y6_c00237{bottom:994.853333pt;}
.y2_c00237{bottom:1056.933333pt;}
.h3_c00237{height:18.266667pt;}
.h4_c00237{height:36.796000pt;}
.h8_c00237{height:52.736250pt;}
.h6_c00237{height:52.762500pt;}
.h7_c00237{height:54.180000pt;}
.h2_c00237{height:57.375000pt;}
.h5_c00237{height:62.781250pt;}
.h0_c00237{height:1122.560000pt;}
.h1_c00237{height:1122.666667pt;}
.w2_c00237{width:7.386667pt;}
.w3_c00237{width:567.280000pt;}
.w0_c00237{width:793.920000pt;}
.w1_c00237{width:794.000000pt;}
.x0_c00237{left:0.000000pt;}
.x3_c00237{left:113.324000pt;}
.x1_c00237{left:137.346667pt;}
.x5_c00237{left:151.106667pt;}
.x4_c00237{left:160.706667pt;}
.x2_c00237{left:673.213333pt;}
}





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

.ir_c00238:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00238;src:url('chunks/assets/font_4b4cad7f37924c015e327547.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_6fc3d11ef4dfc77ce6f06547.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_f42120015f16d02c01645fe9.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00238;src:url('chunks/assets/font_78991d5321d15c5dbd865915.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00238;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00238;src:url('chunks/assets/font_3651e6214af13019ec00157d.woff2')format("woff");}.ff6_c00238{font-family:ff6_c00238;line-height:1.104004;font-style:normal;font-weight: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_c00238;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00238{font-family:ff7_c00238;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls9_c00238{letter-spacing:-1.416000px;}
.ls8_c00238{letter-spacing:-0.532800px;}
.ls6_c00238{letter-spacing:0.000000px;}
.ls3_c00238{letter-spacing:0.020160px;}
.ls5_c00238{letter-spacing:0.524160px;}
.ls4_c00238{letter-spacing:0.720000px;}
.ls7_c00238{letter-spacing:1.152000px;}
.ls0_c00238{letter-spacing:1.440000px;}
.ls2_c00238{letter-spacing:13.680000px;}
.ls1_c00238{letter-spacing:22.320000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00238{word-spacing:-72.000000px;}
.ws4_c00238{word-spacing:-60.480000px;}
.ws0_c00238{word-spacing:-18.000000px;}
.ws2_c00238{word-spacing:-15.120000px;}
.ws3_c00238{word-spacing:-14.587200px;}
.ws5_c00238{word-spacing:0.000000px;}
._3_c00238{margin-left:-3.449393px;}
._0_c00238{margin-left:-2.056199px;}
._2_c00238{margin-left:-1.027797px;}
._1_c00238{width:1.632597px;}
._4_c00238{width:2.952000px;}
._e_c00238{width:4.016995px;}
._6_c00238{width:5.027460px;}
._5_c00238{width:6.729592px;}
._8_c00238{width:8.280043px;}
._7_c00238{width:9.376199px;}
._f_c00238{width:12.131403px;}
._10_c00238{width:13.248000px;}
._11_c00238{width:14.600422px;}
._12_c00238{width:15.684532px;}
._b_c00238{width:16.999816px;}
._a_c00238{width:21.334151px;}
._9_c00238{width:22.392000px;}
._d_c00238{width:23.552398px;}
._c_c00238{width:25.128000px;}
.fc0_c00238{color:rgb(0,0,0);}
.fs1_c00238{font-size:60.480000px;}
.fs0_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y3_c00238{bottom:4.320000px;}
.y1f_c00238{bottom:21.585000px;}
.y1d_c00238{bottom:21.600000px;}
.y22_c00238{bottom:21.630000px;}
.y5_c00238{bottom:25.200000px;}
.y4_c00238{bottom:32.040000px;}
.y1_c00238{bottom:57.240000px;}
.y21_c00238{bottom:229.365000px;}
.y20_c00238{bottom:274.770000px;}
.y1e_c00238{bottom:320.130000px;}
.y1c_c00238{bottom:365.505000px;}
.y1b_c00238{bottom:434.985000px;}
.y1a_c00238{bottom:474.945000px;}
.y19_c00238{bottom:505.950000px;}
.y18_c00238{bottom:536.910000px;}
.y17_c00238{bottom:568.230000px;}
.y16_c00238{bottom:599.220000px;}
.y15_c00238{bottom:630.180000px;}
.y14_c00238{bottom:661.140000px;}
.y13_c00238{bottom:692.460000px;}
.y12_c00238{bottom:723.450000px;}
.y11_c00238{bottom:754.410000px;}
.y10_c00238{bottom:785.370000px;}
.yf_c00238{bottom:816.690000px;}
.ye_c00238{bottom:847.695000px;}
.yd_c00238{bottom:878.655000px;}
.yc_c00238{bottom:909.615000px;}
.yb_c00238{bottom:947.415000px;}
.ya_c00238{bottom:982.365000px;}
.y9_c00238{bottom:1017.285000px;}
.y8_c00238{bottom:1052.205000px;}
.y7_c00238{bottom:1087.170000px;}
.y6_c00238{bottom:1122.090000px;}
.y2_c00238{bottom:1189.050000px;}
.h3_c00238{height:20.550000px;}
.h4_c00238{height:41.395500px;}
.h8_c00238{height:43.905000px;}
.ha_c00238{height:43.920000px;}
.hc_c00238{height:43.941000px;}
.h5_c00238{height:59.328281px;}
.h9_c00238{height:59.357813px;}
.hb_c00238{height:60.952500px;}
.h2_c00238{height:64.546875px;}
.h7_c00238{height:70.628906px;}
.h6_c00238{height:70.664062px;}
.h0_c00238{height:1262.880000px;}
.h1_c00238{height:1263.000000px;}
.w2_c00238{width:8.310000px;}
.w4_c00238{width:322.695000px;}
.w3_c00238{width:638.190000px;}
.w0_c00238{width:893.160000px;}
.w1_c00238{width:893.250000px;}
.x0_c00238{left:0.000000px;}
.x3_c00238{left:127.489500px;}
.x5_c00238{left:140.815500px;}
.x1_c00238{left:154.515000px;}
.x4_c00238{left:169.995000px;}
.x6_c00238{left:452.340000px;}
.x2_c00238{left:757.365000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls9_c00238{letter-spacing:-1.258667pt;}
.ls8_c00238{letter-spacing:-0.473600pt;}
.ls6_c00238{letter-spacing:0.000000pt;}
.ls3_c00238{letter-spacing:0.017920pt;}
.ls5_c00238{letter-spacing:0.465920pt;}
.ls4_c00238{letter-spacing:0.640000pt;}
.ls7_c00238{letter-spacing:1.024000pt;}
.ls0_c00238{letter-spacing:1.280000pt;}
.ls2_c00238{letter-spacing:12.160000pt;}
.ls1_c00238{letter-spacing:19.840000pt;}
.ws1_c00238{word-spacing:-64.000000pt;}
.ws4_c00238{word-spacing:-53.760000pt;}
.ws0_c00238{word-spacing:-16.000000pt;}
.ws2_c00238{word-spacing:-13.440000pt;}
.ws3_c00238{word-spacing:-12.966400pt;}
.ws5_c00238{word-spacing:0.000000pt;}
._3_c00238{margin-left:-3.066127pt;}
._0_c00238{margin-left:-1.827732pt;}
._2_c00238{margin-left:-0.913597pt;}
._1_c00238{width:1.451197pt;}
._4_c00238{width:2.624000pt;}
._e_c00238{width:3.570662pt;}
._6_c00238{width:4.468854pt;}
._5_c00238{width:5.981860pt;}
._8_c00238{width:7.360038pt;}
._7_c00238{width:8.334399pt;}
._f_c00238{width:10.783469pt;}
._10_c00238{width:11.776000pt;}
._11_c00238{width:12.978153pt;}
._12_c00238{width:13.941806pt;}
._b_c00238{width:15.110948pt;}
._a_c00238{width:18.963690pt;}
._9_c00238{width:19.904000pt;}
._d_c00238{width:20.935465pt;}
._c_c00238{width:22.336000pt;}
.fs1_c00238{font-size:53.760000pt;}
.fs0_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y3_c00238{bottom:3.840000pt;}
.y1f_c00238{bottom:19.186667pt;}
.y1d_c00238{bottom:19.200000pt;}
.y22_c00238{bottom:19.226667pt;}
.y5_c00238{bottom:22.400000pt;}
.y4_c00238{bottom:28.480000pt;}
.y1_c00238{bottom:50.880000pt;}
.y21_c00238{bottom:203.880000pt;}
.y20_c00238{bottom:244.240000pt;}
.y1e_c00238{bottom:284.560000pt;}
.y1c_c00238{bottom:324.893333pt;}
.y1b_c00238{bottom:386.653333pt;}
.y1a_c00238{bottom:422.173333pt;}
.y19_c00238{bottom:449.733333pt;}
.y18_c00238{bottom:477.253333pt;}
.y17_c00238{bottom:505.093333pt;}
.y16_c00238{bottom:532.640000pt;}
.y15_c00238{bottom:560.160000pt;}
.y14_c00238{bottom:587.680000pt;}
.y13_c00238{bottom:615.520000pt;}
.y12_c00238{bottom:643.066667pt;}
.y11_c00238{bottom:670.586667pt;}
.y10_c00238{bottom:698.106667pt;}
.yf_c00238{bottom:725.946667pt;}
.ye_c00238{bottom:753.506667pt;}
.yd_c00238{bottom:781.026667pt;}
.yc_c00238{bottom:808.546667pt;}
.yb_c00238{bottom:842.146667pt;}
.ya_c00238{bottom:873.213333pt;}
.y9_c00238{bottom:904.253333pt;}
.y8_c00238{bottom:935.293333pt;}
.y7_c00238{bottom:966.373333pt;}
.y6_c00238{bottom:997.413333pt;}
.y2_c00238{bottom:1056.933333pt;}
.h3_c00238{height:18.266667pt;}
.h4_c00238{height:36.796000pt;}
.h8_c00238{height:39.026667pt;}
.ha_c00238{height:39.040000pt;}
.hc_c00238{height:39.058667pt;}
.h5_c00238{height:52.736250pt;}
.h9_c00238{height:52.762500pt;}
.hb_c00238{height:54.180000pt;}
.h2_c00238{height:57.375000pt;}
.h7_c00238{height:62.781250pt;}
.h6_c00238{height:62.812500pt;}
.h0_c00238{height:1122.560000pt;}
.h1_c00238{height:1122.666667pt;}
.w2_c00238{width:7.386667pt;}
.w4_c00238{width:286.840000pt;}
.w3_c00238{width:567.280000pt;}
.w0_c00238{width:793.920000pt;}
.w1_c00238{width:794.000000pt;}
.x0_c00238{left:0.000000pt;}
.x3_c00238{left:113.324000pt;}
.x5_c00238{left:125.169333pt;}
.x1_c00238{left:137.346667pt;}
.x4_c00238{left:151.106667pt;}
.x6_c00238{left:402.080000pt;}
.x2_c00238{left:673.213333pt;}
}





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

.ir_c00239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00239;src:url('chunks/assets/font_4c7e87e7f1076c340be15a8d.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_d6274af19cbfcd74818e4500.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_d4a851d4e9e2fd6dd7ab2c99.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_e773d4d37ae15a8ea074bc5c.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;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_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.v1_c00239{vertical-align:27.360000px;}
.ls7_c00239{letter-spacing:-1.776000px;}
.lse_c00239{letter-spacing:-1.380000px;}
.ls9_c00239{letter-spacing:-0.954000px;}
.lsc_c00239{letter-spacing:-0.720000px;}
.ls12_c00239{letter-spacing:-0.544200px;}
.ls6_c00239{letter-spacing:-0.337200px;}
.lsf_c00239{letter-spacing:-0.302400px;}
.ls13_c00239{letter-spacing:-0.241800px;}
.ls5_c00239{letter-spacing:0.000000px;}
.ls3_c00239{letter-spacing:0.020160px;}
.lsa_c00239{letter-spacing:0.022800px;}
.ls10_c00239{letter-spacing:0.060600px;}
.lsd_c00239{letter-spacing:0.166800px;}
.ls1_c00239{letter-spacing:0.302400px;}
.ls11_c00239{letter-spacing:0.385800px;}
.ls2_c00239{letter-spacing:0.518400px;}
.ls8_c00239{letter-spacing:0.529800px;}
.ls4_c00239{letter-spacing:0.644160px;}
.lsb_c00239{letter-spacing:0.702000px;}
.ls0_c00239{letter-spacing:0.720000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00239{word-spacing:-18.000000px;}
.ws5_c00239{word-spacing:-15.822000px;}
.ws6_c00239{word-spacing:-15.286800px;}
.ws8_c00239{word-spacing:-15.180600px;}
.ws4_c00239{word-spacing:-15.142800px;}
.ws0_c00239{word-spacing:-15.120000px;}
.wsa_c00239{word-spacing:-14.878200px;}
.ws7_c00239{word-spacing:-14.817600px;}
.ws1_c00239{word-spacing:-14.782800px;}
.ws9_c00239{word-spacing:-14.575800px;}
.ws3_c00239{word-spacing:-14.166000px;}
.ws2_c00239{word-spacing:-13.344000px;}
.wsc_c00239{word-spacing:0.000000px;}
._4_c00239{margin-left:-3.658080px;}
._3_c00239{margin-left:-2.059200px;}
._0_c00239{margin-left:-1.028402px;}
._2_c00239{width:1.221604px;}
._d_c00239{width:2.226228px;}
._1_c00239{width:3.269280px;}
._8_c00239{width:5.100476px;}
._7_c00239{width:6.404394px;}
._9_c00239{width:8.025097px;}
._a_c00239{width:9.038880px;}
._e_c00239{width:10.089141px;}
._6_c00239{width:21.053280px;}
._5_c00239{width:23.042396px;}
._b_c00239{width:30.600000px;}
._c_c00239{width:31.854716px;}
.fc0_c00239{color:rgb(0,0,0);}
.fs2_c00239{font-size:38.880000px;}
.fs1_c00239{font-size:60.480000px;}
.fs0_c00239{font-size:72.000000px;}
.y0_c00239{bottom:0.000000px;}
.y3_c00239{bottom:4.320000px;}
.y12_c00239{bottom:21.225000px;}
.y7_c00239{bottom:21.240000px;}
.yd_c00239{bottom:21.585000px;}
.y14_c00239{bottom:21.600000px;}
.yb_c00239{bottom:21.615000px;}
.y17_c00239{bottom:21.630000px;}
.y1b_c00239{bottom:21.645000px;}
.y5_c00239{bottom:25.200000px;}
.y4_c00239{bottom:32.040000px;}
.y1_c00239{bottom:57.240000px;}
.y26_c00239{bottom:151.590000px;}
.y25_c00239{bottom:168.870000px;}
.y24_c00239{bottom:175.710000px;}
.y23_c00239{bottom:186.870000px;}
.y22_c00239{bottom:209.190000px;}
.y21_c00239{bottom:240.195000px;}
.y20_c00239{bottom:271.515000px;}
.y1f_c00239{bottom:302.475000px;}
.y1e_c00239{bottom:342.435000px;}
.y1d_c00239{bottom:369.105000px;}
.y1c_c00239{bottom:414.465000px;}
.y1a_c00239{bottom:459.825000px;}
.y19_c00239{bottom:505.230000px;}
.y18_c00239{bottom:550.590000px;}
.y16_c00239{bottom:595.950000px;}
.y15_c00239{bottom:641.340000px;}
.y13_c00239{bottom:686.700000px;}
.y11_c00239{bottom:732.465000px;}
.y10_c00239{bottom:801.570000px;}
.yf_c00239{bottom:841.575000px;}
.ye_c00239{bottom:881.535000px;}
.yc_c00239{bottom:908.190000px;}
.ya_c00239{bottom:953.550000px;}
.y9_c00239{bottom:999.285000px;}
.y8_c00239{bottom:1044.645000px;}
.y6_c00239{bottom:1090.050000px;}
.y2_c00239{bottom:1189.050000px;}
.h3_c00239{height:20.550000px;}
.h10_c00239{height:38.158594px;}
.h4_c00239{height:41.395500px;}
.h5_c00239{height:43.545000px;}
.h8_c00239{height:43.590000px;}
.ha_c00239{height:43.905000px;}
.h9_c00239{height:43.920000px;}
.he_c00239{height:43.950000px;}
.hd_c00239{height:43.956000px;}
.h7_c00239{height:59.357813px;}
.h2_c00239{height:64.546875px;}
.h6_c00239{height:65.518594px;}
.hc_c00239{height:70.628906px;}
.hb_c00239{height:70.664062px;}
.hf_c00239{height:1262.875500px;}
.h0_c00239{height:1262.880000px;}
.h1_c00239{height:1263.000000px;}
.w2_c00239{width:8.310000px;}
.w4_c00239{width:322.695000px;}
.w3_c00239{width:638.190000px;}
.w5_c00239{width:893.157000px;}
.w0_c00239{width:893.160000px;}
.w1_c00239{width:893.250000px;}
.x0_c00239{left:0.000000px;}
.x3_c00239{left:127.489500px;}
.x6_c00239{left:137.575500px;}
.x8_c00239{left:142.632000px;}
.x1_c00239{left:154.515000px;}
.x5_c00239{left:178.635000px;}
.x7_c00239{left:343.590000px;}
.x4_c00239{left:452.340000px;}
.x2_c00239{left:757.365000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.v1_c00239{vertical-align:24.320000pt;}
.ls7_c00239{letter-spacing:-1.578667pt;}
.lse_c00239{letter-spacing:-1.226667pt;}
.ls9_c00239{letter-spacing:-0.848000pt;}
.lsc_c00239{letter-spacing:-0.640000pt;}
.ls12_c00239{letter-spacing:-0.483733pt;}
.ls6_c00239{letter-spacing:-0.299733pt;}
.lsf_c00239{letter-spacing:-0.268800pt;}
.ls13_c00239{letter-spacing:-0.214933pt;}
.ls5_c00239{letter-spacing:0.000000pt;}
.ls3_c00239{letter-spacing:0.017920pt;}
.lsa_c00239{letter-spacing:0.020267pt;}
.ls10_c00239{letter-spacing:0.053867pt;}
.lsd_c00239{letter-spacing:0.148267pt;}
.ls1_c00239{letter-spacing:0.268800pt;}
.ls11_c00239{letter-spacing:0.342933pt;}
.ls2_c00239{letter-spacing:0.460800pt;}
.ls8_c00239{letter-spacing:0.470933pt;}
.ls4_c00239{letter-spacing:0.572587pt;}
.lsb_c00239{letter-spacing:0.624000pt;}
.ls0_c00239{letter-spacing:0.640000pt;}
.wsb_c00239{word-spacing:-16.000000pt;}
.ws5_c00239{word-spacing:-14.064000pt;}
.ws6_c00239{word-spacing:-13.588267pt;}
.ws8_c00239{word-spacing:-13.493867pt;}
.ws4_c00239{word-spacing:-13.460267pt;}
.ws0_c00239{word-spacing:-13.440000pt;}
.wsa_c00239{word-spacing:-13.225067pt;}
.ws7_c00239{word-spacing:-13.171200pt;}
.ws1_c00239{word-spacing:-13.140267pt;}
.ws9_c00239{word-spacing:-12.956267pt;}
.ws3_c00239{word-spacing:-12.592000pt;}
.ws2_c00239{word-spacing:-11.861333pt;}
.wsc_c00239{word-spacing:0.000000pt;}
._4_c00239{margin-left:-3.251627pt;}
._3_c00239{margin-left:-1.830400pt;}
._0_c00239{margin-left:-0.914135pt;}
._2_c00239{width:1.085870pt;}
._d_c00239{width:1.978870pt;}
._1_c00239{width:2.906027pt;}
._8_c00239{width:4.533757pt;}
._7_c00239{width:5.692795pt;}
._9_c00239{width:7.133420pt;}
._a_c00239{width:8.034560pt;}
._e_c00239{width:8.968125pt;}
._6_c00239{width:18.714027pt;}
._5_c00239{width:20.482130pt;}
._b_c00239{width:27.200000pt;}
._c_c00239{width:28.315303pt;}
.fs2_c00239{font-size:34.560000pt;}
.fs1_c00239{font-size:53.760000pt;}
.fs0_c00239{font-size:64.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.y3_c00239{bottom:3.840000pt;}
.y12_c00239{bottom:18.866667pt;}
.y7_c00239{bottom:18.880000pt;}
.yd_c00239{bottom:19.186667pt;}
.y14_c00239{bottom:19.200000pt;}
.yb_c00239{bottom:19.213333pt;}
.y17_c00239{bottom:19.226667pt;}
.y1b_c00239{bottom:19.240000pt;}
.y5_c00239{bottom:22.400000pt;}
.y4_c00239{bottom:28.480000pt;}
.y1_c00239{bottom:50.880000pt;}
.y26_c00239{bottom:134.746667pt;}
.y25_c00239{bottom:150.106667pt;}
.y24_c00239{bottom:156.186667pt;}
.y23_c00239{bottom:166.106667pt;}
.y22_c00239{bottom:185.946667pt;}
.y21_c00239{bottom:213.506667pt;}
.y20_c00239{bottom:241.346667pt;}
.y1f_c00239{bottom:268.866667pt;}
.y1e_c00239{bottom:304.386667pt;}
.y1d_c00239{bottom:328.093333pt;}
.y1c_c00239{bottom:368.413333pt;}
.y1a_c00239{bottom:408.733333pt;}
.y19_c00239{bottom:449.093333pt;}
.y18_c00239{bottom:489.413333pt;}
.y16_c00239{bottom:529.733333pt;}
.y15_c00239{bottom:570.080000pt;}
.y13_c00239{bottom:610.400000pt;}
.y11_c00239{bottom:651.080000pt;}
.y10_c00239{bottom:712.506667pt;}
.yf_c00239{bottom:748.066667pt;}
.ye_c00239{bottom:783.586667pt;}
.yc_c00239{bottom:807.280000pt;}
.ya_c00239{bottom:847.600000pt;}
.y9_c00239{bottom:888.253333pt;}
.y8_c00239{bottom:928.573333pt;}
.y6_c00239{bottom:968.933333pt;}
.y2_c00239{bottom:1056.933333pt;}
.h3_c00239{height:18.266667pt;}
.h10_c00239{height:33.918750pt;}
.h4_c00239{height:36.796000pt;}
.h5_c00239{height:38.706667pt;}
.h8_c00239{height:38.746667pt;}
.ha_c00239{height:39.026667pt;}
.h9_c00239{height:39.040000pt;}
.he_c00239{height:39.066667pt;}
.hd_c00239{height:39.072000pt;}
.h7_c00239{height:52.762500pt;}
.h2_c00239{height:57.375000pt;}
.h6_c00239{height:58.238750pt;}
.hc_c00239{height:62.781250pt;}
.hb_c00239{height:62.812500pt;}
.hf_c00239{height:1122.556000pt;}
.h0_c00239{height:1122.560000pt;}
.h1_c00239{height:1122.666667pt;}
.w2_c00239{width:7.386667pt;}
.w4_c00239{width:286.840000pt;}
.w3_c00239{width:567.280000pt;}
.w5_c00239{width:793.917333pt;}
.w0_c00239{width:793.920000pt;}
.w1_c00239{width:794.000000pt;}
.x0_c00239{left:0.000000pt;}
.x3_c00239{left:113.324000pt;}
.x6_c00239{left:122.289333pt;}
.x8_c00239{left:126.784000pt;}
.x1_c00239{left:137.346667pt;}
.x5_c00239{left:158.786667pt;}
.x7_c00239{left:305.413333pt;}
.x4_c00239{left:402.080000pt;}
.x2_c00239{left:673.213333pt;}
}





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

.ir_c00240:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00240;src:url('chunks/assets/font_beab325459747072982a6ad6.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_f6538b46b7dbe77f5ab82363.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_0d6b54c34495ebc6f2d61ba3.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;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_c00240;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_80f94687ee2febe77e92862b.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.lse_c00240{letter-spacing:-1.680000px;}
.lsb_c00240{letter-spacing:-1.440000px;}
.lsf_c00240{letter-spacing:-1.056000px;}
.ls11_c00240{letter-spacing:-0.544200px;}
.lsd_c00240{letter-spacing:-0.241800px;}
.lsa_c00240{letter-spacing:0.000000px;}
.lsc_c00240{letter-spacing:0.060600px;}
.ls8_c00240{letter-spacing:0.302400px;}
.ls3_c00240{letter-spacing:0.518400px;}
.ls4_c00240{letter-spacing:0.524160px;}
.ls10_c00240{letter-spacing:0.529800px;}
.ls2_c00240{letter-spacing:0.720000px;}
.ls0_c00240{letter-spacing:1.440000px;}
.ls9_c00240{letter-spacing:2.160000px;}
.ls5_c00240{letter-spacing:3.600000px;}
.ls6_c00240{letter-spacing:3.620385px;}
.ls7_c00240{letter-spacing:5.040000px;}
.ls1_c00240{letter-spacing:6.480000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00240{word-spacing:-72.000000px;}
.ws0_c00240{word-spacing:-18.000000px;}
.ws2_c00240{word-spacing:-15.180600px;}
.ws3_c00240{word-spacing:-15.120000px;}
.ws4_c00240{word-spacing:-14.878200px;}
.ws5_c00240{word-spacing:-14.575800px;}
.ws6_c00240{word-spacing:0.000000px;}
._7_c00240{margin-left:-3.468000px;}
._3_c00240{margin-left:-2.412000px;}
._0_c00240{margin-left:-1.152000px;}
._2_c00240{width:1.152000px;}
._1_c00240{width:2.808000px;}
._4_c00240{width:3.888000px;}
._5_c00240{width:5.664000px;}
._6_c00240{width:7.032000px;}
._8_c00240{width:8.316000px;}
._9_c00240{width:10.043976px;}
._c_c00240{width:11.184120px;}
._e_c00240{width:14.064000px;}
._d_c00240{width:15.564000px;}
._b_c00240{width:27.828000px;}
._a_c00240{width:30.420000px;}
.fc0_c00240{color:rgb(0,0,0);}
.fs2_c00240{font-size:38.880000px;}
.fs1_c00240{font-size:47.520000px;}
.fs3_c00240{font-size:60.480000px;}
.fs0_c00240{font-size:72.000000px;}
.y0_c00240{bottom:0.000000px;}
.y3_c00240{bottom:4.320000px;}
.y5_c00240{bottom:25.200000px;}
.y4_c00240{bottom:32.040000px;}
.y1_c00240{bottom:57.240000px;}
.y2e_c00240{bottom:151.590000px;}
.y2d_c00240{bottom:168.870000px;}
.y2c_c00240{bottom:186.150000px;}
.y2b_c00240{bottom:203.430000px;}
.y2a_c00240{bottom:210.270000px;}
.y29_c00240{bottom:220.710000px;}
.y28_c00240{bottom:238.035000px;}
.y27_c00240{bottom:255.315000px;}
.y26_c00240{bottom:262.155000px;}
.y25_c00240{bottom:272.595000px;}
.y24_c00240{bottom:289.875000px;}
.y23_c00240{bottom:296.715000px;}
.y22_c00240{bottom:307.515000px;}
.y21_c00240{bottom:337.755000px;}
.y20_c00240{bottom:368.745000px;}
.y1f_c00240{bottom:399.705000px;}
.y1e_c00240{bottom:431.025000px;}
.y1d_c00240{bottom:461.985000px;}
.y1c_c00240{bottom:492.990000px;}
.y1a_c00240{bottom:532.950000px;}
.y1b_c00240{bottom:541.230000px;}
.y19_c00240{bottom:563.910000px;}
.y18_c00240{bottom:595.230000px;}
.y17_c00240{bottom:626.220000px;}
.y16_c00240{bottom:657.180000px;}
.y15_c00240{bottom:688.140000px;}
.y14_c00240{bottom:719.490000px;}
.y13_c00240{bottom:750.450000px;}
.y12_c00240{bottom:781.410000px;}
.y11_c00240{bottom:812.370000px;}
.y10_c00240{bottom:843.735000px;}
.yf_c00240{bottom:883.695000px;}
.ye_c00240{bottom:914.655000px;}
.yc_c00240{bottom:945.615000px;}
.yd_c00240{bottom:953.895000px;}
.yb_c00240{bottom:976.965000px;}
.ya_c00240{bottom:1007.925000px;}
.y9_c00240{bottom:1047.885000px;}
.y8_c00240{bottom:1087.890000px;}
.y6_c00240{bottom:1119.210000px;}
.y7_c00240{bottom:1127.490000px;}
.y2_c00240{bottom:1189.050000px;}
.h3_c00240{height:20.550000px;}
.hb_c00240{height:34.855313px;}
.h9_c00240{height:38.158594px;}
.h4_c00240{height:41.395500px;}
.h7_c00240{height:46.638281px;}
.ha_c00240{height:59.357813px;}
.h2_c00240{height:64.546875px;}
.h8_c00240{height:70.628906px;}
.h5_c00240{height:70.664062px;}
.h6_c00240{height:1262.875500px;}
.h0_c00240{height:1262.880000px;}
.h1_c00240{height:1263.000000px;}
.w2_c00240{width:8.310000px;}
.w3_c00240{width:638.190000px;}
.w4_c00240{width:893.157000px;}
.w0_c00240{width:893.160000px;}
.w1_c00240{width:893.250000px;}
.x0_c00240{left:0.000000px;}
.x3_c00240{left:127.489500px;}
.xd_c00240{left:142.632000px;}
.x1_c00240{left:154.515000px;}
.xa_c00240{left:155.952000px;}
.xb_c00240{left:174.315000px;}
.x7_c00240{left:178.635000px;}
.x6_c00240{left:180.795000px;}
.x4_c00240{left:205.632000px;}
.x5_c00240{left:224.025000px;}
.xc_c00240{left:343.590000px;}
.x8_c00240{left:676.362000px;}
.x9_c00240{left:694.725000px;}
.x2_c00240{left:757.365000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.lse_c00240{letter-spacing:-1.493333pt;}
.lsb_c00240{letter-spacing:-1.280000pt;}
.lsf_c00240{letter-spacing:-0.938667pt;}
.ls11_c00240{letter-spacing:-0.483733pt;}
.lsd_c00240{letter-spacing:-0.214933pt;}
.lsa_c00240{letter-spacing:0.000000pt;}
.lsc_c00240{letter-spacing:0.053867pt;}
.ls8_c00240{letter-spacing:0.268800pt;}
.ls3_c00240{letter-spacing:0.460800pt;}
.ls4_c00240{letter-spacing:0.465920pt;}
.ls10_c00240{letter-spacing:0.470933pt;}
.ls2_c00240{letter-spacing:0.640000pt;}
.ls0_c00240{letter-spacing:1.280000pt;}
.ls9_c00240{letter-spacing:1.920000pt;}
.ls5_c00240{letter-spacing:3.200000pt;}
.ls6_c00240{letter-spacing:3.218120pt;}
.ls7_c00240{letter-spacing:4.480000pt;}
.ls1_c00240{letter-spacing:5.760000pt;}
.ws1_c00240{word-spacing:-64.000000pt;}
.ws0_c00240{word-spacing:-16.000000pt;}
.ws2_c00240{word-spacing:-13.493867pt;}
.ws3_c00240{word-spacing:-13.440000pt;}
.ws4_c00240{word-spacing:-13.225067pt;}
.ws5_c00240{word-spacing:-12.956267pt;}
.ws6_c00240{word-spacing:0.000000pt;}
._7_c00240{margin-left:-3.082667pt;}
._3_c00240{margin-left:-2.144000pt;}
._0_c00240{margin-left:-1.024000pt;}
._2_c00240{width:1.024000pt;}
._1_c00240{width:2.496000pt;}
._4_c00240{width:3.456000pt;}
._5_c00240{width:5.034667pt;}
._6_c00240{width:6.250667pt;}
._8_c00240{width:7.392000pt;}
._9_c00240{width:8.927979pt;}
._c_c00240{width:9.941440pt;}
._e_c00240{width:12.501333pt;}
._d_c00240{width:13.834667pt;}
._b_c00240{width:24.736000pt;}
._a_c00240{width:27.040000pt;}
.fs2_c00240{font-size:34.560000pt;}
.fs1_c00240{font-size:42.240000pt;}
.fs3_c00240{font-size:53.760000pt;}
.fs0_c00240{font-size:64.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y3_c00240{bottom:3.840000pt;}
.y5_c00240{bottom:22.400000pt;}
.y4_c00240{bottom:28.480000pt;}
.y1_c00240{bottom:50.880000pt;}
.y2e_c00240{bottom:134.746667pt;}
.y2d_c00240{bottom:150.106667pt;}
.y2c_c00240{bottom:165.466667pt;}
.y2b_c00240{bottom:180.826667pt;}
.y2a_c00240{bottom:186.906667pt;}
.y29_c00240{bottom:196.186667pt;}
.y28_c00240{bottom:211.586667pt;}
.y27_c00240{bottom:226.946667pt;}
.y26_c00240{bottom:233.026667pt;}
.y25_c00240{bottom:242.306667pt;}
.y24_c00240{bottom:257.666667pt;}
.y23_c00240{bottom:263.746667pt;}
.y22_c00240{bottom:273.346667pt;}
.y21_c00240{bottom:300.226667pt;}
.y20_c00240{bottom:327.773333pt;}
.y1f_c00240{bottom:355.293333pt;}
.y1e_c00240{bottom:383.133333pt;}
.y1d_c00240{bottom:410.653333pt;}
.y1c_c00240{bottom:438.213333pt;}
.y1a_c00240{bottom:473.733333pt;}
.y1b_c00240{bottom:481.093333pt;}
.y19_c00240{bottom:501.253333pt;}
.y18_c00240{bottom:529.093333pt;}
.y17_c00240{bottom:556.640000pt;}
.y16_c00240{bottom:584.160000pt;}
.y15_c00240{bottom:611.680000pt;}
.y14_c00240{bottom:639.546667pt;}
.y13_c00240{bottom:667.066667pt;}
.y12_c00240{bottom:694.586667pt;}
.y11_c00240{bottom:722.106667pt;}
.y10_c00240{bottom:749.986667pt;}
.yf_c00240{bottom:785.506667pt;}
.ye_c00240{bottom:813.026667pt;}
.yc_c00240{bottom:840.546667pt;}
.yd_c00240{bottom:847.906667pt;}
.yb_c00240{bottom:868.413333pt;}
.ya_c00240{bottom:895.933333pt;}
.y9_c00240{bottom:931.453333pt;}
.y8_c00240{bottom:967.013333pt;}
.y6_c00240{bottom:994.853333pt;}
.y7_c00240{bottom:1002.213333pt;}
.y2_c00240{bottom:1056.933333pt;}
.h3_c00240{height:18.266667pt;}
.hb_c00240{height:30.982500pt;}
.h9_c00240{height:33.918750pt;}
.h4_c00240{height:36.796000pt;}
.h7_c00240{height:41.456250pt;}
.ha_c00240{height:52.762500pt;}
.h2_c00240{height:57.375000pt;}
.h8_c00240{height:62.781250pt;}
.h5_c00240{height:62.812500pt;}
.h6_c00240{height:1122.556000pt;}
.h0_c00240{height:1122.560000pt;}
.h1_c00240{height:1122.666667pt;}
.w2_c00240{width:7.386667pt;}
.w3_c00240{width:567.280000pt;}
.w4_c00240{width:793.917333pt;}
.w0_c00240{width:793.920000pt;}
.w1_c00240{width:794.000000pt;}
.x0_c00240{left:0.000000pt;}
.x3_c00240{left:113.324000pt;}
.xd_c00240{left:126.784000pt;}
.x1_c00240{left:137.346667pt;}
.xa_c00240{left:138.624000pt;}
.xb_c00240{left:154.946667pt;}
.x7_c00240{left:158.786667pt;}
.x6_c00240{left:160.706667pt;}
.x4_c00240{left:182.784000pt;}
.x5_c00240{left:199.133333pt;}
.xc_c00240{left:305.413333pt;}
.x8_c00240{left:601.210667pt;}
.x9_c00240{left:617.533333pt;}
.x2_c00240{left:673.213333pt;}
}





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

.ir_c00241:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00241;src:url('chunks/assets/font_893fffa2dd3be52f6819d7a1.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_02c9e8121670d5dfd3f4f950.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_cdfad6daa653a72e806a019a.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_2a0cd2c9d048b8757cdd3d1f.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;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_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls13_c00241{letter-spacing:-1.680000px;}
.ls14_c00241{letter-spacing:-1.416000px;}
.ls16_c00241{letter-spacing:-1.368000px;}
.ls18_c00241{letter-spacing:-0.864000px;}
.ls19_c00241{letter-spacing:-0.144000px;}
.ls10_c00241{letter-spacing:0.000000px;}
.ls11_c00241{letter-spacing:0.022800px;}
.ls0_c00241{letter-spacing:0.048960px;}
.ls17_c00241{letter-spacing:0.072000px;}
.ls15_c00241{letter-spacing:0.166800px;}
.ls3_c00241{letter-spacing:0.302400px;}
.lsc_c00241{letter-spacing:0.504000px;}
.ls2_c00241{letter-spacing:0.518400px;}
.ls1a_c00241{letter-spacing:0.576000px;}
.ls12_c00241{letter-spacing:0.702000px;}
.lsb_c00241{letter-spacing:0.720000px;}
.lse_c00241{letter-spacing:1.440000px;}
.lsf_c00241{letter-spacing:3.600000px;}
.ls5_c00241{letter-spacing:3.620188px;}
.ls4_c00241{letter-spacing:5.040000px;}
.ls1_c00241{letter-spacing:6.480000px;}
.lsa_c00241{letter-spacing:7.920000px;}
.ls7_c00241{letter-spacing:9.360000px;}
.ls8_c00241{letter-spacing:9.369132px;}
.ls6_c00241{letter-spacing:9.379946px;}
.ls9_c00241{letter-spacing:9.480000px;}
.lsd_c00241{letter-spacing:38.160000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:-18.000000px;}
.ws5_c00241{word-spacing:-17.856000px;}
.ws2_c00241{word-spacing:-15.822000px;}
.ws4_c00241{word-spacing:-15.286800px;}
.ws1_c00241{word-spacing:-15.120000px;}
.ws3_c00241{word-spacing:-13.440000px;}
.ws6_c00241{word-spacing:0.000000px;}
._2_c00241{margin-left:-2.880000px;}
._0_c00241{margin-left:-1.296000px;}
._1_c00241{width:1.080000px;}
._3_c00241{width:2.808000px;}
._4_c00241{width:4.668048px;}
._5_c00241{width:6.239808px;}
._7_c00241{width:7.307904px;}
._6_c00241{width:8.532096px;}
._8_c00241{width:9.828096px;}
._e_c00241{width:11.664000px;}
._f_c00241{width:13.608000px;}
._9_c00241{width:19.584000px;}
._a_c00241{width:21.312000px;}
._b_c00241{width:37.140024px;}
._d_c00241{width:38.736000px;}
._c_c00241{width:40.259976px;}
.fc0_c00241{color:rgb(0,0,0);}
.fs1_c00241{font-size:60.480000px;}
.fs0_c00241{font-size:72.000000px;}
.y0_c00241{bottom:0.000000px;}
.y3_c00241{bottom:4.320000px;}
.y5_c00241{bottom:25.200000px;}
.y4_c00241{bottom:32.040000px;}
.y1_c00241{bottom:57.240000px;}
.y26_c00241{bottom:137.196000px;}
.y25_c00241{bottom:168.150000px;}
.y24_c00241{bottom:199.110000px;}
.y23_c00241{bottom:230.430000px;}
.y22_c00241{bottom:261.435000px;}
.y21_c00241{bottom:292.395000px;}
.y20_c00241{bottom:323.355000px;}
.y1f_c00241{bottom:354.705000px;}
.y1e_c00241{bottom:385.665000px;}
.y1d_c00241{bottom:416.625000px;}
.y1c_c00241{bottom:447.585000px;}
.y1b_c00241{bottom:478.950000px;}
.y1a_c00241{bottom:509.910000px;}
.y19_c00241{bottom:547.710000px;}
.y18_c00241{bottom:573.630000px;}
.y17_c00241{bottom:599.220000px;}
.y16_c00241{bottom:625.140000px;}
.y15_c00241{bottom:651.060000px;}
.y14_c00241{bottom:685.980000px;}
.y13_c00241{bottom:711.900000px;}
.y12_c00241{bottom:737.850000px;}
.y11_c00241{bottom:763.770000px;}
.y10_c00241{bottom:789.690000px;}
.yf_c00241{bottom:824.250000px;}
.ye_c00241{bottom:861.735000px;}
.yd_c00241{bottom:892.695000px;}
.yc_c00241{bottom:923.655000px;}
.yb_c00241{bottom:954.615000px;}
.ya_c00241{bottom:985.965000px;}
.y9_c00241{bottom:1016.925000px;}
.y8_c00241{bottom:1047.885000px;}
.y7_c00241{bottom:1087.890000px;}
.y6_c00241{bottom:1119.210000px;}
.y2_c00241{bottom:1189.050000px;}
.h3_c00241{height:20.550000px;}
.h4_c00241{height:41.395500px;}
.h6_c00241{height:59.357813px;}
.h2_c00241{height:64.546875px;}
.h5_c00241{height:70.664062px;}
.h0_c00241{height:1262.880000px;}
.h1_c00241{height:1263.000000px;}
.w2_c00241{width:8.310000px;}
.w3_c00241{width:638.190000px;}
.w0_c00241{width:893.160000px;}
.w1_c00241{width:893.250000px;}
.x0_c00241{left:0.000000px;}
.x3_c00241{left:127.489500px;}
.x1_c00241{left:154.515000px;}
.x4_c00241{left:169.995000px;}
.x2_c00241{left:757.365000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls13_c00241{letter-spacing:-1.493333pt;}
.ls14_c00241{letter-spacing:-1.258667pt;}
.ls16_c00241{letter-spacing:-1.216000pt;}
.ls18_c00241{letter-spacing:-0.768000pt;}
.ls19_c00241{letter-spacing:-0.128000pt;}
.ls10_c00241{letter-spacing:0.000000pt;}
.ls11_c00241{letter-spacing:0.020267pt;}
.ls0_c00241{letter-spacing:0.043520pt;}
.ls17_c00241{letter-spacing:0.064000pt;}
.ls15_c00241{letter-spacing:0.148267pt;}
.ls3_c00241{letter-spacing:0.268800pt;}
.lsc_c00241{letter-spacing:0.448000pt;}
.ls2_c00241{letter-spacing:0.460800pt;}
.ls1a_c00241{letter-spacing:0.512000pt;}
.ls12_c00241{letter-spacing:0.624000pt;}
.lsb_c00241{letter-spacing:0.640000pt;}
.lse_c00241{letter-spacing:1.280000pt;}
.lsf_c00241{letter-spacing:3.200000pt;}
.ls5_c00241{letter-spacing:3.217945pt;}
.ls4_c00241{letter-spacing:4.480000pt;}
.ls1_c00241{letter-spacing:5.760000pt;}
.lsa_c00241{letter-spacing:7.040000pt;}
.ls7_c00241{letter-spacing:8.320000pt;}
.ls8_c00241{letter-spacing:8.328117pt;}
.ls6_c00241{letter-spacing:8.337730pt;}
.ls9_c00241{letter-spacing:8.426667pt;}
.lsd_c00241{letter-spacing:33.920000pt;}
.ws0_c00241{word-spacing:-16.000000pt;}
.ws5_c00241{word-spacing:-15.872000pt;}
.ws2_c00241{word-spacing:-14.064000pt;}
.ws4_c00241{word-spacing:-13.588267pt;}
.ws1_c00241{word-spacing:-13.440000pt;}
.ws3_c00241{word-spacing:-11.946667pt;}
.ws6_c00241{word-spacing:0.000000pt;}
._2_c00241{margin-left:-2.560000pt;}
._0_c00241{margin-left:-1.152000pt;}
._1_c00241{width:0.960000pt;}
._3_c00241{width:2.496000pt;}
._4_c00241{width:4.149376pt;}
._5_c00241{width:5.546496pt;}
._7_c00241{width:6.495915pt;}
._6_c00241{width:7.584085pt;}
._8_c00241{width:8.736085pt;}
._e_c00241{width:10.368000pt;}
._f_c00241{width:12.096000pt;}
._9_c00241{width:17.408000pt;}
._a_c00241{width:18.944000pt;}
._b_c00241{width:33.013355pt;}
._d_c00241{width:34.432000pt;}
._c_c00241{width:35.786645pt;}
.fs1_c00241{font-size:53.760000pt;}
.fs0_c00241{font-size:64.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y3_c00241{bottom:3.840000pt;}
.y5_c00241{bottom:22.400000pt;}
.y4_c00241{bottom:28.480000pt;}
.y1_c00241{bottom:50.880000pt;}
.y26_c00241{bottom:121.952000pt;}
.y25_c00241{bottom:149.466667pt;}
.y24_c00241{bottom:176.986667pt;}
.y23_c00241{bottom:204.826667pt;}
.y22_c00241{bottom:232.386667pt;}
.y21_c00241{bottom:259.906667pt;}
.y20_c00241{bottom:287.426667pt;}
.y1f_c00241{bottom:315.293333pt;}
.y1e_c00241{bottom:342.813333pt;}
.y1d_c00241{bottom:370.333333pt;}
.y1c_c00241{bottom:397.853333pt;}
.y1b_c00241{bottom:425.733333pt;}
.y1a_c00241{bottom:453.253333pt;}
.y19_c00241{bottom:486.853333pt;}
.y18_c00241{bottom:509.893333pt;}
.y17_c00241{bottom:532.640000pt;}
.y16_c00241{bottom:555.680000pt;}
.y15_c00241{bottom:578.720000pt;}
.y14_c00241{bottom:609.760000pt;}
.y13_c00241{bottom:632.800000pt;}
.y12_c00241{bottom:655.866667pt;}
.y11_c00241{bottom:678.906667pt;}
.y10_c00241{bottom:701.946667pt;}
.yf_c00241{bottom:732.666667pt;}
.ye_c00241{bottom:765.986667pt;}
.yd_c00241{bottom:793.506667pt;}
.yc_c00241{bottom:821.026667pt;}
.yb_c00241{bottom:848.546667pt;}
.ya_c00241{bottom:876.413333pt;}
.y9_c00241{bottom:903.933333pt;}
.y8_c00241{bottom:931.453333pt;}
.y7_c00241{bottom:967.013333pt;}
.y6_c00241{bottom:994.853333pt;}
.y2_c00241{bottom:1056.933333pt;}
.h3_c00241{height:18.266667pt;}
.h4_c00241{height:36.796000pt;}
.h6_c00241{height:52.762500pt;}
.h2_c00241{height:57.375000pt;}
.h5_c00241{height:62.812500pt;}
.h0_c00241{height:1122.560000pt;}
.h1_c00241{height:1122.666667pt;}
.w2_c00241{width:7.386667pt;}
.w3_c00241{width:567.280000pt;}
.w0_c00241{width:793.920000pt;}
.w1_c00241{width:794.000000pt;}
.x0_c00241{left:0.000000pt;}
.x3_c00241{left:113.324000pt;}
.x1_c00241{left:137.346667pt;}
.x4_c00241{left:151.106667pt;}
.x2_c00241{left:673.213333pt;}
}





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

.ir_c00242:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00242;src:url('chunks/assets/font_283e044256fd120bfcb32556.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_94b01059c8824ca0e8016978.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_7d965d3f1ffbef663df1d842.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_2a0cd2c9d048b8757cdd3d1f.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;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_c00242;src:url('chunks/assets/font_6c564e96aa5b8a4c8517e336.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls15_c00242{letter-spacing:-1.440000px;}
.ls10_c00242{letter-spacing:-1.152000px;}
.ls14_c00242{letter-spacing:-0.360000px;}
.lsf_c00242{letter-spacing:-0.288000px;}
.ls11_c00242{letter-spacing:-0.144000px;}
.lse_c00242{letter-spacing:0.000000px;}
.lsc_c00242{letter-spacing:0.072000px;}
.ls4_c00242{letter-spacing:0.120000px;}
.ls2_c00242{letter-spacing:0.164160px;}
.ls13_c00242{letter-spacing:0.288000px;}
.ls5_c00242{letter-spacing:0.360000px;}
.ls12_c00242{letter-spacing:0.576000px;}
.lsd_c00242{letter-spacing:0.720000px;}
.ls8_c00242{letter-spacing:3.600000px;}
.ls3_c00242{letter-spacing:5.040000px;}
.ls0_c00242{letter-spacing:7.920000px;}
.ls1_c00242{letter-spacing:9.360000px;}
.ls6_c00242{letter-spacing:12.240000px;}
.ls7_c00242{letter-spacing:12.420000px;}
.lsb_c00242{letter-spacing:16.560000px;}
.ls9_c00242{letter-spacing:26.640000px;}
.lsa_c00242{letter-spacing:59.760000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00242{word-spacing:-18.288000px;}
.ws0_c00242{word-spacing:-18.000000px;}
.ws2_c00242{word-spacing:-17.856000px;}
.ws4_c00242{word-spacing:-17.712000px;}
.ws5_c00242{word-spacing:-17.640000px;}
.ws1_c00242{word-spacing:-16.848000px;}
.ws6_c00242{word-spacing:-15.120000px;}
.ws7_c00242{word-spacing:-13.680000px;}
.ws8_c00242{word-spacing:0.000000px;}
._2_c00242{margin-left:-2.808000px;}
._1_c00242{margin-left:-1.440000px;}
._0_c00242{width:1.080000px;}
._4_c00242{width:2.088000px;}
._9_c00242{width:3.600000px;}
._5_c00242{width:4.824000px;}
._3_c00242{width:5.904000px;}
._b_c00242{width:7.344000px;}
._a_c00242{width:8.568000px;}
._8_c00242{width:10.296000px;}
._7_c00242{width:11.880000px;}
._6_c00242{width:12.888000px;}
._e_c00242{width:14.544000px;}
._10_c00242{width:15.840000px;}
._f_c00242{width:16.848000px;}
._12_c00242{width:19.800000px;}
._15_c00242{width:21.168000px;}
._c_c00242{width:25.056000px;}
._d_c00242{width:26.784000px;}
._11_c00242{width:27.984048px;}
._13_c00242{width:59.760000px;}
._14_c00242{width:61.512000px;}
.fc0_c00242{color:rgb(0,0,0);}
.fs3_c00242{font-size:38.880000px;}
.fs2_c00242{font-size:47.520000px;}
.fs1_c00242{font-size:60.480000px;}
.fs0_c00242{font-size:72.000000px;}
.y0_c00242{bottom:0.000000px;}
.y3_c00242{bottom:4.320000px;}
.y5_c00242{bottom:25.200000px;}
.y4_c00242{bottom:32.040000px;}
.y1_c00242{bottom:57.240000px;}
.y27_c00242{bottom:151.590000px;}
.y26_c00242{bottom:168.870000px;}
.y25_c00242{bottom:175.710000px;}
.y24_c00242{bottom:186.870000px;}
.y23_c00242{bottom:231.555000px;}
.y22_c00242{bottom:262.515000px;}
.y21_c00242{bottom:293.475000px;}
.y20_c00242{bottom:324.795000px;}
.y1f_c00242{bottom:355.785000px;}
.y1d_c00242{bottom:395.745000px;}
.y1e_c00242{bottom:404.025000px;}
.y1c_c00242{bottom:426.705000px;}
.y1b_c00242{bottom:458.025000px;}
.y1a_c00242{bottom:489.030000px;}
.y19_c00242{bottom:519.990000px;}
.y18_c00242{bottom:550.950000px;}
.y17_c00242{bottom:581.910000px;}
.y16_c00242{bottom:613.260000px;}
.y15_c00242{bottom:644.220000px;}
.y14_c00242{bottom:675.180000px;}
.y13_c00242{bottom:706.140000px;}
.y12_c00242{bottom:737.490000px;}
.y11_c00242{bottom:777.450000px;}
.y10_c00242{bottom:808.410000px;}
.yf_c00242{bottom:839.370000px;}
.ye_c00242{bottom:870.735000px;}
.yd_c00242{bottom:901.695000px;}
.yc_c00242{bottom:932.655000px;}
.yb_c00242{bottom:963.645000px;}
.ya_c00242{bottom:994.965000px;}
.y9_c00242{bottom:1025.925000px;}
.y8_c00242{bottom:1056.885000px;}
.y7_c00242{bottom:1087.890000px;}
.y6_c00242{bottom:1119.210000px;}
.y2_c00242{bottom:1189.050000px;}
.h3_c00242{height:20.550000px;}
.h8_c00242{height:34.855313px;}
.h4_c00242{height:41.395500px;}
.h7_c00242{height:46.638281px;}
.h9_c00242{height:54.219375px;}
.ha_c00242{height:54.514688px;}
.h2_c00242{height:64.546875px;}
.h5_c00242{height:70.664062px;}
.h6_c00242{height:1262.875500px;}
.h0_c00242{height:1262.880000px;}
.h1_c00242{height:1263.000000px;}
.w2_c00242{width:8.310000px;}
.w3_c00242{width:638.190000px;}
.w4_c00242{width:893.157000px;}
.w0_c00242{width:893.160000px;}
.w1_c00242{width:893.250000px;}
.x0_c00242{left:0.000000px;}
.x3_c00242{left:127.489500px;}
.x8_c00242{left:142.632000px;}
.x1_c00242{left:154.515000px;}
.x4_c00242{left:169.995000px;}
.x7_c00242{left:343.590000px;}
.x5_c00242{left:634.572000px;}
.x6_c00242{left:652.935000px;}
.x2_c00242{left:757.365000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls15_c00242{letter-spacing:-1.280000pt;}
.ls10_c00242{letter-spacing:-1.024000pt;}
.ls14_c00242{letter-spacing:-0.320000pt;}
.lsf_c00242{letter-spacing:-0.256000pt;}
.ls11_c00242{letter-spacing:-0.128000pt;}
.lse_c00242{letter-spacing:0.000000pt;}
.lsc_c00242{letter-spacing:0.064000pt;}
.ls4_c00242{letter-spacing:0.106667pt;}
.ls2_c00242{letter-spacing:0.145920pt;}
.ls13_c00242{letter-spacing:0.256000pt;}
.ls5_c00242{letter-spacing:0.320000pt;}
.ls12_c00242{letter-spacing:0.512000pt;}
.lsd_c00242{letter-spacing:0.640000pt;}
.ls8_c00242{letter-spacing:3.200000pt;}
.ls3_c00242{letter-spacing:4.480000pt;}
.ls0_c00242{letter-spacing:7.040000pt;}
.ls1_c00242{letter-spacing:8.320000pt;}
.ls6_c00242{letter-spacing:10.880000pt;}
.ls7_c00242{letter-spacing:11.040000pt;}
.lsb_c00242{letter-spacing:14.720000pt;}
.ls9_c00242{letter-spacing:23.680000pt;}
.lsa_c00242{letter-spacing:53.120000pt;}
.ws3_c00242{word-spacing:-16.256000pt;}
.ws0_c00242{word-spacing:-16.000000pt;}
.ws2_c00242{word-spacing:-15.872000pt;}
.ws4_c00242{word-spacing:-15.744000pt;}
.ws5_c00242{word-spacing:-15.680000pt;}
.ws1_c00242{word-spacing:-14.976000pt;}
.ws6_c00242{word-spacing:-13.440000pt;}
.ws7_c00242{word-spacing:-12.160000pt;}
.ws8_c00242{word-spacing:0.000000pt;}
._2_c00242{margin-left:-2.496000pt;}
._1_c00242{margin-left:-1.280000pt;}
._0_c00242{width:0.960000pt;}
._4_c00242{width:1.856000pt;}
._9_c00242{width:3.200000pt;}
._5_c00242{width:4.288000pt;}
._3_c00242{width:5.248000pt;}
._b_c00242{width:6.528000pt;}
._a_c00242{width:7.616000pt;}
._8_c00242{width:9.152000pt;}
._7_c00242{width:10.560000pt;}
._6_c00242{width:11.456000pt;}
._e_c00242{width:12.928000pt;}
._10_c00242{width:14.080000pt;}
._f_c00242{width:14.976000pt;}
._12_c00242{width:17.600000pt;}
._15_c00242{width:18.816000pt;}
._c_c00242{width:22.272000pt;}
._d_c00242{width:23.808000pt;}
._11_c00242{width:24.874709pt;}
._13_c00242{width:53.120000pt;}
._14_c00242{width:54.677333pt;}
.fs3_c00242{font-size:34.560000pt;}
.fs2_c00242{font-size:42.240000pt;}
.fs1_c00242{font-size:53.760000pt;}
.fs0_c00242{font-size:64.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y3_c00242{bottom:3.840000pt;}
.y5_c00242{bottom:22.400000pt;}
.y4_c00242{bottom:28.480000pt;}
.y1_c00242{bottom:50.880000pt;}
.y27_c00242{bottom:134.746667pt;}
.y26_c00242{bottom:150.106667pt;}
.y25_c00242{bottom:156.186667pt;}
.y24_c00242{bottom:166.106667pt;}
.y23_c00242{bottom:205.826667pt;}
.y22_c00242{bottom:233.346667pt;}
.y21_c00242{bottom:260.866667pt;}
.y20_c00242{bottom:288.706667pt;}
.y1f_c00242{bottom:316.253333pt;}
.y1d_c00242{bottom:351.773333pt;}
.y1e_c00242{bottom:359.133333pt;}
.y1c_c00242{bottom:379.293333pt;}
.y1b_c00242{bottom:407.133333pt;}
.y1a_c00242{bottom:434.693333pt;}
.y19_c00242{bottom:462.213333pt;}
.y18_c00242{bottom:489.733333pt;}
.y17_c00242{bottom:517.253333pt;}
.y16_c00242{bottom:545.120000pt;}
.y15_c00242{bottom:572.640000pt;}
.y14_c00242{bottom:600.160000pt;}
.y13_c00242{bottom:627.680000pt;}
.y12_c00242{bottom:655.546667pt;}
.y11_c00242{bottom:691.066667pt;}
.y10_c00242{bottom:718.586667pt;}
.yf_c00242{bottom:746.106667pt;}
.ye_c00242{bottom:773.986667pt;}
.yd_c00242{bottom:801.506667pt;}
.yc_c00242{bottom:829.026667pt;}
.yb_c00242{bottom:856.573333pt;}
.ya_c00242{bottom:884.413333pt;}
.y9_c00242{bottom:911.933333pt;}
.y8_c00242{bottom:939.453333pt;}
.y7_c00242{bottom:967.013333pt;}
.y6_c00242{bottom:994.853333pt;}
.y2_c00242{bottom:1056.933333pt;}
.h3_c00242{height:18.266667pt;}
.h8_c00242{height:30.982500pt;}
.h4_c00242{height:36.796000pt;}
.h7_c00242{height:41.456250pt;}
.h9_c00242{height:48.195000pt;}
.ha_c00242{height:48.457500pt;}
.h2_c00242{height:57.375000pt;}
.h5_c00242{height:62.812500pt;}
.h6_c00242{height:1122.556000pt;}
.h0_c00242{height:1122.560000pt;}
.h1_c00242{height:1122.666667pt;}
.w2_c00242{width:7.386667pt;}
.w3_c00242{width:567.280000pt;}
.w4_c00242{width:793.917333pt;}
.w0_c00242{width:793.920000pt;}
.w1_c00242{width:794.000000pt;}
.x0_c00242{left:0.000000pt;}
.x3_c00242{left:113.324000pt;}
.x8_c00242{left:126.784000pt;}
.x1_c00242{left:137.346667pt;}
.x4_c00242{left:151.106667pt;}
.x7_c00242{left:305.413333pt;}
.x5_c00242{left:564.064000pt;}
.x6_c00242{left:580.386667pt;}
.x2_c00242{left:673.213333pt;}
}





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

.ir_c00243:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00243;src:url('chunks/assets/font_f3ddb91be14d2891e2b92c0a.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_b476e2d191bf09e29ca03202.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_d731c88311959d31ce4f761b.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00243;src:url('chunks/assets/font_cb1e4ed134afd82ed4557ddb.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;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_c00243;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00243;src:url('chunks/assets/font_3a20e2c0afd0fc9e614864cb.woff2')format("woff");}.ff6_c00243{font-family:ff6_c00243;line-height:1.117188;font-style:normal;font-weight: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_c00243;src:url('chunks/assets/font_0c6198854e06f37856e4743d.woff2')format("woff");}.ff7_c00243{font-family:ff7_c00243;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls6_c00243{letter-spacing:-0.792000px;}
.lsb_c00243{letter-spacing:-0.337200px;}
.ls8_c00243{letter-spacing:-0.288000px;}
.ls5_c00243{letter-spacing:0.000000px;}
.lsa_c00243{letter-spacing:0.072000px;}
.ls7_c00243{letter-spacing:0.576000px;}
.ls9_c00243{letter-spacing:0.648000px;}
.ls4_c00243{letter-spacing:0.720000px;}
.ls1_c00243{letter-spacing:2.160000px;}
.ls0_c00243{letter-spacing:3.600000px;}
.ls2_c00243{letter-spacing:9.360000px;}
.ls3_c00243{letter-spacing:10.800000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00243{word-spacing:-60.480000px;}
.ws3_c00243{word-spacing:-18.648000px;}
.ws0_c00243{word-spacing:-18.000000px;}
.ws2_c00243{word-spacing:-17.712000px;}
.ws1_c00243{word-spacing:-17.208000px;}
.ws4_c00243{word-spacing:-15.120000px;}
.ws5_c00243{word-spacing:-14.782800px;}
.ws7_c00243{word-spacing:0.000000px;}
._3_c00243{margin-left:-2.736000px;}
._1_c00243{margin-left:-1.440000px;}
._0_c00243{width:1.080000px;}
._7_c00243{width:2.232000px;}
._2_c00243{width:3.240000px;}
._4_c00243{width:4.608000px;}
._5_c00243{width:6.120000px;}
._b_c00243{width:7.200000px;}
._9_c00243{width:8.352000px;}
._6_c00243{width:9.720000px;}
._a_c00243{width:11.304000px;}
._13_c00243{width:12.312000px;}
._12_c00243{width:13.392000px;}
._11_c00243{width:14.604000px;}
._8_c00243{width:15.996000px;}
._d_c00243{width:22.968000px;}
._e_c00243{width:24.408000px;}
._c_c00243{width:25.920000px;}
._10_c00243{width:28.152000px;}
._f_c00243{width:30.240000px;}
.fc0_c00243{color:rgb(0,0,0);}
.fs1_c00243{font-size:60.480000px;}
.fs0_c00243{font-size:72.000000px;}
.y0_c00243{bottom:0.000000px;}
.y3_c00243{bottom:4.320000px;}
.y5_c00243{bottom:25.200000px;}
.y4_c00243{bottom:32.040000px;}
.y1_c00243{bottom:57.240000px;}
.y24_c00243{bottom:147.996000px;}
.y23_c00243{bottom:182.910000px;}
.y22_c00243{bottom:217.830000px;}
.y21_c00243{bottom:252.435000px;}
.y20_c00243{bottom:287.355000px;}
.y1f_c00243{bottom:324.795000px;}
.y1e_c00243{bottom:355.785000px;}
.y1d_c00243{bottom:386.745000px;}
.y1c_c00243{bottom:417.705000px;}
.y1b_c00243{bottom:449.025000px;}
.y1a_c00243{bottom:480.030000px;}
.y19_c00243{bottom:510.990000px;}
.y18_c00243{bottom:541.950000px;}
.y17_c00243{bottom:581.910000px;}
.y16_c00243{bottom:613.260000px;}
.y15_c00243{bottom:644.220000px;}
.y14_c00243{bottom:675.180000px;}
.y13_c00243{bottom:706.140000px;}
.y12_c00243{bottom:737.490000px;}
.y11_c00243{bottom:768.450000px;}
.y10_c00243{bottom:799.410000px;}
.yf_c00243{bottom:830.370000px;}
.ye_c00243{bottom:861.735000px;}
.yd_c00243{bottom:901.695000px;}
.yc_c00243{bottom:932.655000px;}
.yb_c00243{bottom:963.645000px;}
.ya_c00243{bottom:994.965000px;}
.y9_c00243{bottom:1025.925000px;}
.y8_c00243{bottom:1056.885000px;}
.y7_c00243{bottom:1087.890000px;}
.y6_c00243{bottom:1119.210000px;}
.y2_c00243{bottom:1189.050000px;}
.h3_c00243{height:20.550000px;}
.h4_c00243{height:41.395500px;}
.h7_c00243{height:59.357813px;}
.h6_c00243{height:60.952500px;}
.h2_c00243{height:64.546875px;}
.h5_c00243{height:70.664062px;}
.h0_c00243{height:1262.880000px;}
.h1_c00243{height:1263.000000px;}
.w2_c00243{width:8.310000px;}
.w3_c00243{width:638.190000px;}
.w0_c00243{width:893.160000px;}
.w1_c00243{width:893.250000px;}
.x0_c00243{left:0.000000px;}
.x3_c00243{left:127.489500px;}
.x1_c00243{left:154.515000px;}
.x4_c00243{left:169.995000px;}
.x2_c00243{left:757.365000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls6_c00243{letter-spacing:-0.704000pt;}
.lsb_c00243{letter-spacing:-0.299733pt;}
.ls8_c00243{letter-spacing:-0.256000pt;}
.ls5_c00243{letter-spacing:0.000000pt;}
.lsa_c00243{letter-spacing:0.064000pt;}
.ls7_c00243{letter-spacing:0.512000pt;}
.ls9_c00243{letter-spacing:0.576000pt;}
.ls4_c00243{letter-spacing:0.640000pt;}
.ls1_c00243{letter-spacing:1.920000pt;}
.ls0_c00243{letter-spacing:3.200000pt;}
.ls2_c00243{letter-spacing:8.320000pt;}
.ls3_c00243{letter-spacing:9.600000pt;}
.ws6_c00243{word-spacing:-53.760000pt;}
.ws3_c00243{word-spacing:-16.576000pt;}
.ws0_c00243{word-spacing:-16.000000pt;}
.ws2_c00243{word-spacing:-15.744000pt;}
.ws1_c00243{word-spacing:-15.296000pt;}
.ws4_c00243{word-spacing:-13.440000pt;}
.ws5_c00243{word-spacing:-13.140267pt;}
.ws7_c00243{word-spacing:0.000000pt;}
._3_c00243{margin-left:-2.432000pt;}
._1_c00243{margin-left:-1.280000pt;}
._0_c00243{width:0.960000pt;}
._7_c00243{width:1.984000pt;}
._2_c00243{width:2.880000pt;}
._4_c00243{width:4.096000pt;}
._5_c00243{width:5.440000pt;}
._b_c00243{width:6.400000pt;}
._9_c00243{width:7.424000pt;}
._6_c00243{width:8.640000pt;}
._a_c00243{width:10.048000pt;}
._13_c00243{width:10.944000pt;}
._12_c00243{width:11.904000pt;}
._11_c00243{width:12.981333pt;}
._8_c00243{width:14.218667pt;}
._d_c00243{width:20.416000pt;}
._e_c00243{width:21.696000pt;}
._c_c00243{width:23.040000pt;}
._10_c00243{width:25.024000pt;}
._f_c00243{width:26.880000pt;}
.fs1_c00243{font-size:53.760000pt;}
.fs0_c00243{font-size:64.000000pt;}
.y0_c00243{bottom:0.000000pt;}
.y3_c00243{bottom:3.840000pt;}
.y5_c00243{bottom:22.400000pt;}
.y4_c00243{bottom:28.480000pt;}
.y1_c00243{bottom:50.880000pt;}
.y24_c00243{bottom:131.552000pt;}
.y23_c00243{bottom:162.586667pt;}
.y22_c00243{bottom:193.626667pt;}
.y21_c00243{bottom:224.386667pt;}
.y20_c00243{bottom:255.426667pt;}
.y1f_c00243{bottom:288.706667pt;}
.y1e_c00243{bottom:316.253333pt;}
.y1d_c00243{bottom:343.773333pt;}
.y1c_c00243{bottom:371.293333pt;}
.y1b_c00243{bottom:399.133333pt;}
.y1a_c00243{bottom:426.693333pt;}
.y19_c00243{bottom:454.213333pt;}
.y18_c00243{bottom:481.733333pt;}
.y17_c00243{bottom:517.253333pt;}
.y16_c00243{bottom:545.120000pt;}
.y15_c00243{bottom:572.640000pt;}
.y14_c00243{bottom:600.160000pt;}
.y13_c00243{bottom:627.680000pt;}
.y12_c00243{bottom:655.546667pt;}
.y11_c00243{bottom:683.066667pt;}
.y10_c00243{bottom:710.586667pt;}
.yf_c00243{bottom:738.106667pt;}
.ye_c00243{bottom:765.986667pt;}
.yd_c00243{bottom:801.506667pt;}
.yc_c00243{bottom:829.026667pt;}
.yb_c00243{bottom:856.573333pt;}
.ya_c00243{bottom:884.413333pt;}
.y9_c00243{bottom:911.933333pt;}
.y8_c00243{bottom:939.453333pt;}
.y7_c00243{bottom:967.013333pt;}
.y6_c00243{bottom:994.853333pt;}
.y2_c00243{bottom:1056.933333pt;}
.h3_c00243{height:18.266667pt;}
.h4_c00243{height:36.796000pt;}
.h7_c00243{height:52.762500pt;}
.h6_c00243{height:54.180000pt;}
.h2_c00243{height:57.375000pt;}
.h5_c00243{height:62.812500pt;}
.h0_c00243{height:1122.560000pt;}
.h1_c00243{height:1122.666667pt;}
.w2_c00243{width:7.386667pt;}
.w3_c00243{width:567.280000pt;}
.w0_c00243{width:793.920000pt;}
.w1_c00243{width:794.000000pt;}
.x0_c00243{left:0.000000pt;}
.x3_c00243{left:113.324000pt;}
.x1_c00243{left:137.346667pt;}
.x4_c00243{left:151.106667pt;}
.x2_c00243{left:673.213333pt;}
}





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

.ir_c00244:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00244;src:url('chunks/assets/font_356c5b675b62671e12b11e46.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_fbb8d1d60a26d033c80b6944.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_c8324f4b7e78055844a7b1c2.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_46f537ebd473cf54918170fa.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;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_c00244;src:url('chunks/assets/font_c9c95cc2ed273771cc41e321.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00244;src:url('chunks/assets/font_83e170b0960d0c462145e60f.woff2')format("woff");}.ff6_c00244{font-family:ff6_c00244;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls9_c00244{letter-spacing:-1.416000px;}
.ls6_c00244{letter-spacing:-0.912000px;}
.lsb_c00244{letter-spacing:-0.486600px;}
.ls7_c00244{letter-spacing:-0.302400px;}
.ls8_c00244{letter-spacing:-0.241800px;}
.ls5_c00244{letter-spacing:0.000000px;}
.ls2_c00244{letter-spacing:0.048960px;}
.lsa_c00244{letter-spacing:0.521400px;}
.ls1_c00244{letter-spacing:0.524160px;}
.ls3_c00244{letter-spacing:0.720000px;}
.ls0_c00244{letter-spacing:0.740355px;}
.ls4_c00244{letter-spacing:7.920000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00244{word-spacing:-60.480000px;}
.ws3_c00244{word-spacing:-18.000000px;}
.ws4_c00244{word-spacing:-15.641400px;}
.ws2_c00244{word-spacing:-15.120000px;}
.ws1_c00244{word-spacing:-14.817600px;}
.ws6_c00244{word-spacing:-14.633400px;}
.ws0_c00244{word-spacing:-12.600000px;}
.ws7_c00244{word-spacing:0.000000px;}
._4_c00244{margin-left:-2.706820px;}
._0_c00244{margin-left:-1.425635px;}
._1_c00244{width:1.633920px;}
._8_c00244{width:3.446741px;}
._b_c00244{width:5.328614px;}
._c_c00244{width:6.810820px;}
._9_c00244{width:7.983602px;}
._a_c00244{width:9.494392px;}
._7_c00244{width:11.188800px;}
._5_c00244{width:12.269449px;}
._6_c00244{width:13.479767px;}
._11_c00244{width:24.494147px;}
._10_c00244{width:25.625514px;}
._f_c00244{width:28.606259px;}
._d_c00244{width:29.607429px;}
._e_c00244{width:31.235976px;}
._3_c00244{width:188.074692px;}
._2_c00244{width:189.325226px;}
.fc0_c00244{color:rgb(0,0,0);}
.fs3_c00244{font-size:38.880000px;}
.fs2_c00244{font-size:47.520000px;}
.fs1_c00244{font-size:60.480000px;}
.fs0_c00244{font-size:72.000000px;}
.y0_c00244{bottom:0.000000px;}
.y3_c00244{bottom:4.320000px;}
.y13_c00244{bottom:21.585000px;}
.y15_c00244{bottom:21.600000px;}
.y5_c00244{bottom:25.200000px;}
.y4_c00244{bottom:32.040000px;}
.y1_c00244{bottom:57.240000px;}
.y25_c00244{bottom:151.590000px;}
.y24_c00244{bottom:158.430000px;}
.y23_c00244{bottom:169.590000px;}
.y22_c00244{bottom:253.155000px;}
.y21_c00244{bottom:284.115000px;}
.y20_c00244{bottom:315.435000px;}
.y1f_c00244{bottom:346.395000px;}
.y1e_c00244{bottom:377.385000px;}
.y1d_c00244{bottom:408.345000px;}
.y1c_c00244{bottom:439.665000px;}
.y1b_c00244{bottom:470.625000px;}
.y1a_c00244{bottom:501.630000px;}
.y19_c00244{bottom:532.590000px;}
.y18_c00244{bottom:572.910000px;}
.y17_c00244{bottom:599.580000px;}
.y16_c00244{bottom:644.940000px;}
.y14_c00244{bottom:690.300000px;}
.y12_c00244{bottom:735.705000px;}
.y11_c00244{bottom:804.810000px;}
.yf_c00244{bottom:844.815000px;}
.y10_c00244{bottom:853.095000px;}
.ye_c00244{bottom:876.135000px;}
.yd_c00244{bottom:913.935000px;}
.yc_c00244{bottom:939.495000px;}
.yb_c00244{bottom:965.445000px;}
.ya_c00244{bottom:991.365000px;}
.y9_c00244{bottom:1017.285000px;}
.y8_c00244{bottom:1052.205000px;}
.y7_c00244{bottom:1087.170000px;}
.y6_c00244{bottom:1122.090000px;}
.y2_c00244{bottom:1189.050000px;}
.h3_c00244{height:20.550000px;}
.he_c00244{height:34.855313px;}
.h4_c00244{height:41.395500px;}
.hb_c00244{height:43.905000px;}
.hd_c00244{height:43.920000px;}
.hc_c00244{height:43.956000px;}
.h9_c00244{height:46.638281px;}
.hf_c00244{height:54.514688px;}
.h7_c00244{height:59.328281px;}
.h5_c00244{height:59.357813px;}
.h2_c00244{height:64.546875px;}
.ha_c00244{height:70.628906px;}
.h6_c00244{height:70.664062px;}
.h8_c00244{height:1262.875500px;}
.h0_c00244{height:1262.880000px;}
.h1_c00244{height:1263.000000px;}
.w2_c00244{width:8.310000px;}
.w6_c00244{width:214.635000px;}
.w5_c00244{width:214.650000px;}
.w3_c00244{width:638.190000px;}
.w4_c00244{width:893.157000px;}
.w0_c00244{width:893.160000px;}
.w1_c00244{width:893.250000px;}
.x0_c00244{left:0.000000px;}
.x3_c00244{left:127.489500px;}
.xa_c00244{left:142.632000px;}
.x1_c00244{left:154.515000px;}
.x4_c00244{left:169.995000px;}
.x7_c00244{left:178.635000px;}
.x5_c00244{left:200.592000px;}
.x6_c00244{left:218.955000px;}
.x8_c00244{left:344.310000px;}
.x9_c00244{left:560.385000px;}
.x2_c00244{left:757.365000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls9_c00244{letter-spacing:-1.258667pt;}
.ls6_c00244{letter-spacing:-0.810667pt;}
.lsb_c00244{letter-spacing:-0.432533pt;}
.ls7_c00244{letter-spacing:-0.268800pt;}
.ls8_c00244{letter-spacing:-0.214933pt;}
.ls5_c00244{letter-spacing:0.000000pt;}
.ls2_c00244{letter-spacing:0.043520pt;}
.lsa_c00244{letter-spacing:0.463467pt;}
.ls1_c00244{letter-spacing:0.465920pt;}
.ls3_c00244{letter-spacing:0.640000pt;}
.ls0_c00244{letter-spacing:0.658093pt;}
.ls4_c00244{letter-spacing:7.040000pt;}
.ws5_c00244{word-spacing:-53.760000pt;}
.ws3_c00244{word-spacing:-16.000000pt;}
.ws4_c00244{word-spacing:-13.903467pt;}
.ws2_c00244{word-spacing:-13.440000pt;}
.ws1_c00244{word-spacing:-13.171200pt;}
.ws6_c00244{word-spacing:-13.007467pt;}
.ws0_c00244{word-spacing:-11.200000pt;}
.ws7_c00244{word-spacing:0.000000pt;}
._4_c00244{margin-left:-2.406062pt;}
._0_c00244{margin-left:-1.267231pt;}
._1_c00244{width:1.452373pt;}
._8_c00244{width:3.063770pt;}
._b_c00244{width:4.736546pt;}
._c_c00244{width:6.054062pt;}
._9_c00244{width:7.096535pt;}
._a_c00244{width:8.439460pt;}
._7_c00244{width:9.945600pt;}
._5_c00244{width:10.906177pt;}
._6_c00244{width:11.982015pt;}
._11_c00244{width:21.772575pt;}
._10_c00244{width:22.778235pt;}
._f_c00244{width:25.427785pt;}
._d_c00244{width:26.317715pt;}
._e_c00244{width:27.765312pt;}
._3_c00244{width:167.177504pt;}
._2_c00244{width:168.289090pt;}
.fs3_c00244{font-size:34.560000pt;}
.fs2_c00244{font-size:42.240000pt;}
.fs1_c00244{font-size:53.760000pt;}
.fs0_c00244{font-size:64.000000pt;}
.y0_c00244{bottom:0.000000pt;}
.y3_c00244{bottom:3.840000pt;}
.y13_c00244{bottom:19.186667pt;}
.y15_c00244{bottom:19.200000pt;}
.y5_c00244{bottom:22.400000pt;}
.y4_c00244{bottom:28.480000pt;}
.y1_c00244{bottom:50.880000pt;}
.y25_c00244{bottom:134.746667pt;}
.y24_c00244{bottom:140.826667pt;}
.y23_c00244{bottom:150.746667pt;}
.y22_c00244{bottom:225.026667pt;}
.y21_c00244{bottom:252.546667pt;}
.y20_c00244{bottom:280.386667pt;}
.y1f_c00244{bottom:307.906667pt;}
.y1e_c00244{bottom:335.453333pt;}
.y1d_c00244{bottom:362.973333pt;}
.y1c_c00244{bottom:390.813333pt;}
.y1b_c00244{bottom:418.333333pt;}
.y1a_c00244{bottom:445.893333pt;}
.y19_c00244{bottom:473.413333pt;}
.y18_c00244{bottom:509.253333pt;}
.y17_c00244{bottom:532.960000pt;}
.y16_c00244{bottom:573.280000pt;}
.y14_c00244{bottom:613.600000pt;}
.y12_c00244{bottom:653.960000pt;}
.y11_c00244{bottom:715.386667pt;}
.yf_c00244{bottom:750.946667pt;}
.y10_c00244{bottom:758.306667pt;}
.ye_c00244{bottom:778.786667pt;}
.yd_c00244{bottom:812.386667pt;}
.yc_c00244{bottom:835.106667pt;}
.yb_c00244{bottom:858.173333pt;}
.ya_c00244{bottom:881.213333pt;}
.y9_c00244{bottom:904.253333pt;}
.y8_c00244{bottom:935.293333pt;}
.y7_c00244{bottom:966.373333pt;}
.y6_c00244{bottom:997.413333pt;}
.y2_c00244{bottom:1056.933333pt;}
.h3_c00244{height:18.266667pt;}
.he_c00244{height:30.982500pt;}
.h4_c00244{height:36.796000pt;}
.hb_c00244{height:39.026667pt;}
.hd_c00244{height:39.040000pt;}
.hc_c00244{height:39.072000pt;}
.h9_c00244{height:41.456250pt;}
.hf_c00244{height:48.457500pt;}
.h7_c00244{height:52.736250pt;}
.h5_c00244{height:52.762500pt;}
.h2_c00244{height:57.375000pt;}
.ha_c00244{height:62.781250pt;}
.h6_c00244{height:62.812500pt;}
.h8_c00244{height:1122.556000pt;}
.h0_c00244{height:1122.560000pt;}
.h1_c00244{height:1122.666667pt;}
.w2_c00244{width:7.386667pt;}
.w6_c00244{width:190.786667pt;}
.w5_c00244{width:190.800000pt;}
.w3_c00244{width:567.280000pt;}
.w4_c00244{width:793.917333pt;}
.w0_c00244{width:793.920000pt;}
.w1_c00244{width:794.000000pt;}
.x0_c00244{left:0.000000pt;}
.x3_c00244{left:113.324000pt;}
.xa_c00244{left:126.784000pt;}
.x1_c00244{left:137.346667pt;}
.x4_c00244{left:151.106667pt;}
.x7_c00244{left:158.786667pt;}
.x5_c00244{left:178.304000pt;}
.x6_c00244{left:194.626667pt;}
.x8_c00244{left:306.053333pt;}
.x9_c00244{left:498.120000pt;}
.x2_c00244{left:673.213333pt;}
}





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

.ir_c00245:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00245;src:url('chunks/assets/font_4c907f592a4752553644549d.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_2312d71baa28cc02360e5afc.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_03e5535769d2db50f696ae6f.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_9672d6627a3392c86a156dd7.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;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_c00245;src:url('chunks/assets/font_231e572e4bde3d701770c48f.woff2')format("woff");}.ff5_c00245{font-family:ff5_c00245;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls10_c00245{letter-spacing:-1.416000px;}
.lsd_c00245{letter-spacing:-0.954000px;}
.ls12_c00245{letter-spacing:-0.241800px;}
.lsb_c00245{letter-spacing:0.000000px;}
.lse_c00245{letter-spacing:0.022800px;}
.ls0_c00245{letter-spacing:0.120000px;}
.ls11_c00245{letter-spacing:0.166800px;}
.ls7_c00245{letter-spacing:0.302400px;}
.lsc_c00245{letter-spacing:0.466800px;}
.ls13_c00245{letter-spacing:0.518400px;}
.ls5_c00245{letter-spacing:0.521400px;}
.ls14_c00245{letter-spacing:0.529800px;}
.lsf_c00245{letter-spacing:0.630000px;}
.ls1_c00245{letter-spacing:0.720000px;}
.ls8_c00245{letter-spacing:0.732000px;}
.lsa_c00245{letter-spacing:0.900000px;}
.ls9_c00245{letter-spacing:7.920000px;}
.ls2_c00245{letter-spacing:9.360000px;}
.ls6_c00245{letter-spacing:15.120000px;}
.ls4_c00245{letter-spacing:25.200000px;}
.ls3_c00245{letter-spacing:52.560000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00245{word-spacing:-15.750000px;}
.ws4_c00245{word-spacing:-15.641400px;}
.ws7_c00245{word-spacing:-15.638400px;}
.ws0_c00245{word-spacing:-15.586800px;}
.ws5_c00245{word-spacing:-15.286800px;}
.ws2_c00245{word-spacing:-15.120000px;}
.ws6_c00245{word-spacing:-14.878200px;}
.ws1_c00245{word-spacing:-14.166000px;}
.ws8_c00245{word-spacing:0.000000px;}
._1_c00245{margin-left:-2.736000px;}
._4_c00245{margin-left:-1.296000px;}
._0_c00245{width:1.080000px;}
._3_c00245{width:2.232000px;}
._6_c00245{width:4.104000px;}
._13_c00245{width:5.473236px;}
._17_c00245{width:7.712400px;}
._f_c00245{width:8.928000px;}
._a_c00245{width:10.296000px;}
._9_c00245{width:11.664000px;}
._2_c00245{width:13.608000px;}
._5_c00245{width:15.048000px;}
._7_c00245{width:16.632000px;}
._e_c00245{width:18.385799px;}
._8_c00245{width:19.643976px;}
._b_c00245{width:21.240000px;}
._d_c00245{width:22.824000px;}
._c_c00245{width:23.976000px;}
._16_c00245{width:25.519082px;}
._12_c00245{width:29.952000px;}
._10_c00245{width:31.176000px;}
._11_c00245{width:32.760000px;}
._15_c00245{width:52.559641px;}
._14_c00245{width:54.673799px;}
.fc1_c00245{color:transparent;}
.fc0_c00245{color:rgb(0,0,0);}
.fs3_c00245{font-size:38.880000px;}
.fs1_c00245{font-size:47.520000px;}
.fs2_c00245{font-size:60.480000px;}
.fs0_c00245{font-size:72.000000px;}
.y0_c00245{bottom:0.000000px;}
.y28_c00245{bottom:3.945000px;}
.y3_c00245{bottom:4.320000px;}
.y31_c00245{bottom:12.225000px;}
.y2d_c00245{bottom:20.865000px;}
.y5_c00245{bottom:25.200000px;}
.y30_c00245{bottom:29.505000px;}
.y4_c00245{bottom:32.040000px;}
.y2c_c00245{bottom:38.145000px;}
.y2f_c00245{bottom:46.785000px;}
.y2b_c00245{bottom:55.425000px;}
.y1_c00245{bottom:57.240000px;}
.y2e_c00245{bottom:64.065000px;}
.y2a_c00245{bottom:72.750000px;}
.y32_c00245{bottom:151.590000px;}
.y29_c00245{bottom:166.725000px;}
.y27_c00245{bottom:254.250000px;}
.y26_c00245{bottom:276.915000px;}
.y25_c00245{bottom:294.195000px;}
.y24_c00245{bottom:311.475000px;}
.y23_c00245{bottom:328.755000px;}
.y22_c00245{bottom:335.595000px;}
.y21_c00245{bottom:346.755000px;}
.y20_c00245{bottom:388.185000px;}
.y1f_c00245{bottom:428.145000px;}
.y1e_c00245{bottom:459.105000px;}
.y1d_c00245{bottom:490.470000px;}
.y1c_c00245{bottom:527.910000px;}
.y1b_c00245{bottom:553.830000px;}
.y1a_c00245{bottom:579.750000px;}
.y19_c00245{bottom:605.700000px;}
.y18_c00245{bottom:631.620000px;}
.y17_c00245{bottom:657.540000px;}
.y16_c00245{bottom:683.460000px;}
.y15_c00245{bottom:709.020000px;}
.y14_c00245{bottom:734.970000px;}
.y13_c00245{bottom:760.890000px;}
.y12_c00245{bottom:786.810000px;}
.y11_c00245{bottom:812.730000px;}
.y10_c00245{bottom:838.650000px;}
.yf_c00245{bottom:864.615000px;}
.ye_c00245{bottom:901.695000px;}
.yd_c00245{bottom:932.655000px;}
.yc_c00245{bottom:963.645000px;}
.yb_c00245{bottom:994.965000px;}
.ya_c00245{bottom:1025.925000px;}
.y9_c00245{bottom:1056.885000px;}
.y8_c00245{bottom:1087.890000px;}
.y6_c00245{bottom:1119.210000px;}
.y7_c00245{bottom:1127.490000px;}
.y2_c00245{bottom:1189.050000px;}
.hb_c00245{height:17.265000px;}
.h3_c00245{height:20.550000px;}
.ha_c00245{height:34.855313px;}
.h4_c00245{height:41.395500px;}
.h6_c00245{height:46.638281px;}
.h8_c00245{height:54.219375px;}
.h9_c00245{height:59.357813px;}
.h2_c00245{height:64.546875px;}
.h7_c00245{height:70.664062px;}
.hc_c00245{height:86.061000px;}
.h5_c00245{height:1262.875500px;}
.h0_c00245{height:1262.880000px;}
.h1_c00245{height:1263.000000px;}
.w2_c00245{width:8.310000px;}
.w5_c00245{width:322.695000px;}
.w3_c00245{width:638.190000px;}
.w4_c00245{width:893.157000px;}
.w0_c00245{width:893.160000px;}
.w1_c00245{width:893.250000px;}
.x0_c00245{left:0.000000px;}
.x3_c00245{left:127.489500px;}
.x8_c00245{left:142.632000px;}
.x1_c00245{left:154.515000px;}
.x6_c00245{left:169.995000px;}
.x7_c00245{left:343.590000px;}
.x4_c00245{left:366.627000px;}
.x5_c00245{left:384.990000px;}
.x9_c00245{left:452.340000px;}
.x2_c00245{left:757.365000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls10_c00245{letter-spacing:-1.258667pt;}
.lsd_c00245{letter-spacing:-0.848000pt;}
.ls12_c00245{letter-spacing:-0.214933pt;}
.lsb_c00245{letter-spacing:0.000000pt;}
.lse_c00245{letter-spacing:0.020267pt;}
.ls0_c00245{letter-spacing:0.106667pt;}
.ls11_c00245{letter-spacing:0.148267pt;}
.ls7_c00245{letter-spacing:0.268800pt;}
.lsc_c00245{letter-spacing:0.414933pt;}
.ls13_c00245{letter-spacing:0.460800pt;}
.ls5_c00245{letter-spacing:0.463467pt;}
.ls14_c00245{letter-spacing:0.470933pt;}
.lsf_c00245{letter-spacing:0.560000pt;}
.ls1_c00245{letter-spacing:0.640000pt;}
.ls8_c00245{letter-spacing:0.650667pt;}
.lsa_c00245{letter-spacing:0.800000pt;}
.ls9_c00245{letter-spacing:7.040000pt;}
.ls2_c00245{letter-spacing:8.320000pt;}
.ls6_c00245{letter-spacing:13.440000pt;}
.ls4_c00245{letter-spacing:22.400000pt;}
.ls3_c00245{letter-spacing:46.720000pt;}
.ws3_c00245{word-spacing:-14.000000pt;}
.ws4_c00245{word-spacing:-13.903467pt;}
.ws7_c00245{word-spacing:-13.900800pt;}
.ws0_c00245{word-spacing:-13.854933pt;}
.ws5_c00245{word-spacing:-13.588267pt;}
.ws2_c00245{word-spacing:-13.440000pt;}
.ws6_c00245{word-spacing:-13.225067pt;}
.ws1_c00245{word-spacing:-12.592000pt;}
.ws8_c00245{word-spacing:0.000000pt;}
._1_c00245{margin-left:-2.432000pt;}
._4_c00245{margin-left:-1.152000pt;}
._0_c00245{width:0.960000pt;}
._3_c00245{width:1.984000pt;}
._6_c00245{width:3.648000pt;}
._13_c00245{width:4.865098pt;}
._17_c00245{width:6.855467pt;}
._f_c00245{width:7.936000pt;}
._a_c00245{width:9.152000pt;}
._9_c00245{width:10.368000pt;}
._2_c00245{width:12.096000pt;}
._5_c00245{width:13.376000pt;}
._7_c00245{width:14.784000pt;}
._e_c00245{width:16.342932pt;}
._8_c00245{width:17.461312pt;}
._b_c00245{width:18.880000pt;}
._d_c00245{width:20.288000pt;}
._c_c00245{width:21.312000pt;}
._16_c00245{width:22.683628pt;}
._12_c00245{width:26.624000pt;}
._10_c00245{width:27.712000pt;}
._11_c00245{width:29.120000pt;}
._15_c00245{width:46.719681pt;}
._14_c00245{width:48.598932pt;}
.fs3_c00245{font-size:34.560000pt;}
.fs1_c00245{font-size:42.240000pt;}
.fs2_c00245{font-size:53.760000pt;}
.fs0_c00245{font-size:64.000000pt;}
.y0_c00245{bottom:0.000000pt;}
.y28_c00245{bottom:3.506667pt;}
.y3_c00245{bottom:3.840000pt;}
.y31_c00245{bottom:10.866667pt;}
.y2d_c00245{bottom:18.546667pt;}
.y5_c00245{bottom:22.400000pt;}
.y30_c00245{bottom:26.226667pt;}
.y4_c00245{bottom:28.480000pt;}
.y2c_c00245{bottom:33.906667pt;}
.y2f_c00245{bottom:41.586667pt;}
.y2b_c00245{bottom:49.266667pt;}
.y1_c00245{bottom:50.880000pt;}
.y2e_c00245{bottom:56.946667pt;}
.y2a_c00245{bottom:64.666667pt;}
.y32_c00245{bottom:134.746667pt;}
.y29_c00245{bottom:148.200000pt;}
.y27_c00245{bottom:226.000000pt;}
.y26_c00245{bottom:246.146667pt;}
.y25_c00245{bottom:261.506667pt;}
.y24_c00245{bottom:276.866667pt;}
.y23_c00245{bottom:292.226667pt;}
.y22_c00245{bottom:298.306667pt;}
.y21_c00245{bottom:308.226667pt;}
.y20_c00245{bottom:345.053333pt;}
.y1f_c00245{bottom:380.573333pt;}
.y1e_c00245{bottom:408.093333pt;}
.y1d_c00245{bottom:435.973333pt;}
.y1c_c00245{bottom:469.253333pt;}
.y1b_c00245{bottom:492.293333pt;}
.y1a_c00245{bottom:515.333333pt;}
.y19_c00245{bottom:538.400000pt;}
.y18_c00245{bottom:561.440000pt;}
.y17_c00245{bottom:584.480000pt;}
.y16_c00245{bottom:607.520000pt;}
.y15_c00245{bottom:630.240000pt;}
.y14_c00245{bottom:653.306667pt;}
.y13_c00245{bottom:676.346667pt;}
.y12_c00245{bottom:699.386667pt;}
.y11_c00245{bottom:722.426667pt;}
.y10_c00245{bottom:745.466667pt;}
.yf_c00245{bottom:768.546667pt;}
.ye_c00245{bottom:801.506667pt;}
.yd_c00245{bottom:829.026667pt;}
.yc_c00245{bottom:856.573333pt;}
.yb_c00245{bottom:884.413333pt;}
.ya_c00245{bottom:911.933333pt;}
.y9_c00245{bottom:939.453333pt;}
.y8_c00245{bottom:967.013333pt;}
.y6_c00245{bottom:994.853333pt;}
.y7_c00245{bottom:1002.213333pt;}
.y2_c00245{bottom:1056.933333pt;}
.hb_c00245{height:15.346667pt;}
.h3_c00245{height:18.266667pt;}
.ha_c00245{height:30.982500pt;}
.h4_c00245{height:36.796000pt;}
.h6_c00245{height:41.456250pt;}
.h8_c00245{height:48.195000pt;}
.h9_c00245{height:52.762500pt;}
.h2_c00245{height:57.375000pt;}
.h7_c00245{height:62.812500pt;}
.hc_c00245{height:76.498667pt;}
.h5_c00245{height:1122.556000pt;}
.h0_c00245{height:1122.560000pt;}
.h1_c00245{height:1122.666667pt;}
.w2_c00245{width:7.386667pt;}
.w5_c00245{width:286.840000pt;}
.w3_c00245{width:567.280000pt;}
.w4_c00245{width:793.917333pt;}
.w0_c00245{width:793.920000pt;}
.w1_c00245{width:794.000000pt;}
.x0_c00245{left:0.000000pt;}
.x3_c00245{left:113.324000pt;}
.x8_c00245{left:126.784000pt;}
.x1_c00245{left:137.346667pt;}
.x6_c00245{left:151.106667pt;}
.x7_c00245{left:305.413333pt;}
.x4_c00245{left:325.890667pt;}
.x5_c00245{left:342.213333pt;}
.x9_c00245{left:402.080000pt;}
.x2_c00245{left:673.213333pt;}
}





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

.ir_c00246:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00246;src:url('chunks/assets/font_e83d6102ae1cdff869240668.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_3ba2270e5b090e9c9993aad0.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_d1368614183aa32b2d40f699.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;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_c00246;src:url('chunks/assets/font_dc516b93ed5ce39421c96272.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls6_c00246{letter-spacing:-0.360000px;}
.ls5_c00246{letter-spacing:0.000000px;}
.ls1_c00246{letter-spacing:0.144000px;}
.ls3_c00246{letter-spacing:0.288000px;}
.ls2_c00246{letter-spacing:0.504000px;}
.ls4_c00246{letter-spacing:0.720000px;}
.ls0_c00246{letter-spacing:12.240000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:-18.000000px;}
.ws1_c00246{word-spacing:-17.640000px;}
.ws2_c00246{word-spacing:0.000000px;}
._13_c00246{margin-left:-3.695976px;}
._9_c00246{margin-left:-2.376000px;}
._0_c00246{margin-left:-1.296000px;}
._1_c00246{width:1.368000px;}
._4_c00246{width:2.448000px;}
._2_c00246{width:4.176000px;}
._3_c00246{width:5.328000px;}
._8_c00246{width:6.408000px;}
._7_c00246{width:7.548048px;}
._f_c00246{width:8.807952px;}
._6_c00246{width:10.752000px;}
._5_c00246{width:12.096000px;}
._a_c00246{width:13.152000px;}
._b_c00246{width:14.400000px;}
._11_c00246{width:15.552000px;}
._c_c00246{width:20.520000px;}
._10_c00246{width:21.684000px;}
._14_c00246{width:22.740024px;}
._d_c00246{width:24.984000px;}
._e_c00246{width:26.004024px;}
._12_c00246{width:27.059976px;}
.fc0_c00246{color:rgb(0,0,0);}
.fs0_c00246{font-size:72.000000px;}
.y0_c00246{bottom:0.000000px;}
.y3_c00246{bottom:4.320000px;}
.y5_c00246{bottom:25.200000px;}
.y4_c00246{bottom:32.040000px;}
.y1_c00246{bottom:57.240000px;}
.y25_c00246{bottom:138.276000px;}
.y24_c00246{bottom:169.230000px;}
.y23_c00246{bottom:200.550000px;}
.y22_c00246{bottom:231.555000px;}
.y21_c00246{bottom:262.515000px;}
.y20_c00246{bottom:293.475000px;}
.y1f_c00246{bottom:324.795000px;}
.y1e_c00246{bottom:355.785000px;}
.y1d_c00246{bottom:386.745000px;}
.y1c_c00246{bottom:426.705000px;}
.y1b_c00246{bottom:458.025000px;}
.y1a_c00246{bottom:489.030000px;}
.y19_c00246{bottom:519.990000px;}
.y18_c00246{bottom:550.950000px;}
.y17_c00246{bottom:581.910000px;}
.y16_c00246{bottom:613.260000px;}
.y15_c00246{bottom:644.220000px;}
.y14_c00246{bottom:675.180000px;}
.y13_c00246{bottom:706.140000px;}
.y12_c00246{bottom:737.490000px;}
.y11_c00246{bottom:768.450000px;}
.y10_c00246{bottom:799.410000px;}
.yf_c00246{bottom:839.370000px;}
.ye_c00246{bottom:870.735000px;}
.yd_c00246{bottom:901.695000px;}
.yc_c00246{bottom:932.655000px;}
.yb_c00246{bottom:963.645000px;}
.ya_c00246{bottom:994.965000px;}
.y9_c00246{bottom:1025.925000px;}
.y8_c00246{bottom:1056.885000px;}
.y7_c00246{bottom:1087.890000px;}
.y6_c00246{bottom:1119.210000px;}
.y2_c00246{bottom:1189.050000px;}
.h3_c00246{height:20.550000px;}
.h4_c00246{height:41.395500px;}
.h2_c00246{height:64.546875px;}
.h5_c00246{height:70.664062px;}
.h0_c00246{height:1262.880000px;}
.h1_c00246{height:1263.000000px;}
.w2_c00246{width:8.310000px;}
.w3_c00246{width:638.190000px;}
.w0_c00246{width:893.160000px;}
.w1_c00246{width:893.250000px;}
.x0_c00246{left:0.000000px;}
.x3_c00246{left:127.489500px;}
.x1_c00246{left:154.515000px;}
.x4_c00246{left:169.995000px;}
.x2_c00246{left:757.365000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls6_c00246{letter-spacing:-0.320000pt;}
.ls5_c00246{letter-spacing:0.000000pt;}
.ls1_c00246{letter-spacing:0.128000pt;}
.ls3_c00246{letter-spacing:0.256000pt;}
.ls2_c00246{letter-spacing:0.448000pt;}
.ls4_c00246{letter-spacing:0.640000pt;}
.ls0_c00246{letter-spacing:10.880000pt;}
.ws0_c00246{word-spacing:-16.000000pt;}
.ws1_c00246{word-spacing:-15.680000pt;}
.ws2_c00246{word-spacing:0.000000pt;}
._13_c00246{margin-left:-3.285312pt;}
._9_c00246{margin-left:-2.112000pt;}
._0_c00246{margin-left:-1.152000pt;}
._1_c00246{width:1.216000pt;}
._4_c00246{width:2.176000pt;}
._2_c00246{width:3.712000pt;}
._3_c00246{width:4.736000pt;}
._8_c00246{width:5.696000pt;}
._7_c00246{width:6.709376pt;}
._f_c00246{width:7.829291pt;}
._6_c00246{width:9.557333pt;}
._5_c00246{width:10.752000pt;}
._a_c00246{width:11.690667pt;}
._b_c00246{width:12.800000pt;}
._11_c00246{width:13.824000pt;}
._c_c00246{width:18.240000pt;}
._10_c00246{width:19.274667pt;}
._14_c00246{width:20.213355pt;}
._d_c00246{width:22.208000pt;}
._e_c00246{width:23.114688pt;}
._12_c00246{width:24.053312pt;}
.fs0_c00246{font-size:64.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y3_c00246{bottom:3.840000pt;}
.y5_c00246{bottom:22.400000pt;}
.y4_c00246{bottom:28.480000pt;}
.y1_c00246{bottom:50.880000pt;}
.y25_c00246{bottom:122.912000pt;}
.y24_c00246{bottom:150.426667pt;}
.y23_c00246{bottom:178.266667pt;}
.y22_c00246{bottom:205.826667pt;}
.y21_c00246{bottom:233.346667pt;}
.y20_c00246{bottom:260.866667pt;}
.y1f_c00246{bottom:288.706667pt;}
.y1e_c00246{bottom:316.253333pt;}
.y1d_c00246{bottom:343.773333pt;}
.y1c_c00246{bottom:379.293333pt;}
.y1b_c00246{bottom:407.133333pt;}
.y1a_c00246{bottom:434.693333pt;}
.y19_c00246{bottom:462.213333pt;}
.y18_c00246{bottom:489.733333pt;}
.y17_c00246{bottom:517.253333pt;}
.y16_c00246{bottom:545.120000pt;}
.y15_c00246{bottom:572.640000pt;}
.y14_c00246{bottom:600.160000pt;}
.y13_c00246{bottom:627.680000pt;}
.y12_c00246{bottom:655.546667pt;}
.y11_c00246{bottom:683.066667pt;}
.y10_c00246{bottom:710.586667pt;}
.yf_c00246{bottom:746.106667pt;}
.ye_c00246{bottom:773.986667pt;}
.yd_c00246{bottom:801.506667pt;}
.yc_c00246{bottom:829.026667pt;}
.yb_c00246{bottom:856.573333pt;}
.ya_c00246{bottom:884.413333pt;}
.y9_c00246{bottom:911.933333pt;}
.y8_c00246{bottom:939.453333pt;}
.y7_c00246{bottom:967.013333pt;}
.y6_c00246{bottom:994.853333pt;}
.y2_c00246{bottom:1056.933333pt;}
.h3_c00246{height:18.266667pt;}
.h4_c00246{height:36.796000pt;}
.h2_c00246{height:57.375000pt;}
.h5_c00246{height:62.812500pt;}
.h0_c00246{height:1122.560000pt;}
.h1_c00246{height:1122.666667pt;}
.w2_c00246{width:7.386667pt;}
.w3_c00246{width:567.280000pt;}
.w0_c00246{width:793.920000pt;}
.w1_c00246{width:794.000000pt;}
.x0_c00246{left:0.000000pt;}
.x3_c00246{left:113.324000pt;}
.x1_c00246{left:137.346667pt;}
.x4_c00246{left:151.106667pt;}
.x2_c00246{left:673.213333pt;}
}





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

.ir_c00247:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00247;src:url('chunks/assets/font_f9ac088fe324db3602d378de.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_58b71b0fc434f94000be4ec9.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_af873af97269072d3a07c918.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_944d0ace018f7de8634a6912.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;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_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls1_c00247{letter-spacing:-0.288000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.ls2_c00247{letter-spacing:0.576000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-18.000000px;}
.ws1_c00247{word-spacing:-17.712000px;}
.ws2_c00247{word-spacing:0.000000px;}
._14_c00247{margin-left:-3.600000px;}
._3_c00247{margin-left:-2.448000px;}
._1_c00247{margin-left:-1.440000px;}
._0_c00247{width:1.080000px;}
._4_c00247{width:2.808000px;}
._c_c00247{width:4.104000px;}
._8_c00247{width:5.772024px;}
._10_c00247{width:7.139880px;}
._2_c00247{width:8.208000px;}
._5_c00247{width:9.576000px;}
._6_c00247{width:11.160000px;}
._7_c00247{width:12.396024px;}
._a_c00247{width:14.184000px;}
._9_c00247{width:15.480000px;}
._b_c00247{width:16.632000px;}
._d_c00247{width:19.080000px;}
._e_c00247{width:20.880000px;}
._f_c00247{width:22.968000px;}
._13_c00247{width:33.912000px;}
._12_c00247{width:35.352000px;}
._11_c00247{width:36.360000px;}
.fc0_c00247{color:rgb(0,0,0);}
.fs0_c00247{font-size:72.000000px;}
.y0_c00247{bottom:0.000000px;}
.y3_c00247{bottom:4.320000px;}
.y5_c00247{bottom:25.200000px;}
.y4_c00247{bottom:32.040000px;}
.y1_c00247{bottom:57.240000px;}
.y25_c00247{bottom:138.276000px;}
.y24_c00247{bottom:169.230000px;}
.y23_c00247{bottom:200.550000px;}
.y22_c00247{bottom:231.555000px;}
.y21_c00247{bottom:262.515000px;}
.y20_c00247{bottom:293.475000px;}
.y1f_c00247{bottom:324.795000px;}
.y1e_c00247{bottom:355.785000px;}
.y1d_c00247{bottom:386.745000px;}
.y1c_c00247{bottom:417.705000px;}
.y1b_c00247{bottom:449.025000px;}
.y1a_c00247{bottom:480.030000px;}
.y19_c00247{bottom:510.990000px;}
.y18_c00247{bottom:550.950000px;}
.y17_c00247{bottom:581.910000px;}
.y16_c00247{bottom:613.260000px;}
.y15_c00247{bottom:644.220000px;}
.y14_c00247{bottom:675.180000px;}
.y13_c00247{bottom:706.140000px;}
.y12_c00247{bottom:737.490000px;}
.y11_c00247{bottom:768.450000px;}
.y10_c00247{bottom:799.410000px;}
.yf_c00247{bottom:830.370000px;}
.ye_c00247{bottom:861.735000px;}
.yd_c00247{bottom:892.695000px;}
.yc_c00247{bottom:923.655000px;}
.yb_c00247{bottom:954.615000px;}
.ya_c00247{bottom:985.965000px;}
.y9_c00247{bottom:1025.925000px;}
.y8_c00247{bottom:1056.885000px;}
.y7_c00247{bottom:1087.890000px;}
.y6_c00247{bottom:1119.210000px;}
.y2_c00247{bottom:1189.050000px;}
.h3_c00247{height:20.550000px;}
.h4_c00247{height:41.395500px;}
.h2_c00247{height:64.546875px;}
.h5_c00247{height:70.664062px;}
.h0_c00247{height:1262.880000px;}
.h1_c00247{height:1263.000000px;}
.w2_c00247{width:8.310000px;}
.w3_c00247{width:638.190000px;}
.w0_c00247{width:893.160000px;}
.w1_c00247{width:893.250000px;}
.x0_c00247{left:0.000000px;}
.x3_c00247{left:127.489500px;}
.x1_c00247{left:154.515000px;}
.x4_c00247{left:169.995000px;}
.x2_c00247{left:757.365000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls1_c00247{letter-spacing:-0.256000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ls2_c00247{letter-spacing:0.512000pt;}
.ws0_c00247{word-spacing:-16.000000pt;}
.ws1_c00247{word-spacing:-15.744000pt;}
.ws2_c00247{word-spacing:0.000000pt;}
._14_c00247{margin-left:-3.200000pt;}
._3_c00247{margin-left:-2.176000pt;}
._1_c00247{margin-left:-1.280000pt;}
._0_c00247{width:0.960000pt;}
._4_c00247{width:2.496000pt;}
._c_c00247{width:3.648000pt;}
._8_c00247{width:5.130688pt;}
._10_c00247{width:6.346560pt;}
._2_c00247{width:7.296000pt;}
._5_c00247{width:8.512000pt;}
._6_c00247{width:9.920000pt;}
._7_c00247{width:11.018688pt;}
._a_c00247{width:12.608000pt;}
._9_c00247{width:13.760000pt;}
._b_c00247{width:14.784000pt;}
._d_c00247{width:16.960000pt;}
._e_c00247{width:18.560000pt;}
._f_c00247{width:20.416000pt;}
._13_c00247{width:30.144000pt;}
._12_c00247{width:31.424000pt;}
._11_c00247{width:32.320000pt;}
.fs0_c00247{font-size:64.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y3_c00247{bottom:3.840000pt;}
.y5_c00247{bottom:22.400000pt;}
.y4_c00247{bottom:28.480000pt;}
.y1_c00247{bottom:50.880000pt;}
.y25_c00247{bottom:122.912000pt;}
.y24_c00247{bottom:150.426667pt;}
.y23_c00247{bottom:178.266667pt;}
.y22_c00247{bottom:205.826667pt;}
.y21_c00247{bottom:233.346667pt;}
.y20_c00247{bottom:260.866667pt;}
.y1f_c00247{bottom:288.706667pt;}
.y1e_c00247{bottom:316.253333pt;}
.y1d_c00247{bottom:343.773333pt;}
.y1c_c00247{bottom:371.293333pt;}
.y1b_c00247{bottom:399.133333pt;}
.y1a_c00247{bottom:426.693333pt;}
.y19_c00247{bottom:454.213333pt;}
.y18_c00247{bottom:489.733333pt;}
.y17_c00247{bottom:517.253333pt;}
.y16_c00247{bottom:545.120000pt;}
.y15_c00247{bottom:572.640000pt;}
.y14_c00247{bottom:600.160000pt;}
.y13_c00247{bottom:627.680000pt;}
.y12_c00247{bottom:655.546667pt;}
.y11_c00247{bottom:683.066667pt;}
.y10_c00247{bottom:710.586667pt;}
.yf_c00247{bottom:738.106667pt;}
.ye_c00247{bottom:765.986667pt;}
.yd_c00247{bottom:793.506667pt;}
.yc_c00247{bottom:821.026667pt;}
.yb_c00247{bottom:848.546667pt;}
.ya_c00247{bottom:876.413333pt;}
.y9_c00247{bottom:911.933333pt;}
.y8_c00247{bottom:939.453333pt;}
.y7_c00247{bottom:967.013333pt;}
.y6_c00247{bottom:994.853333pt;}
.y2_c00247{bottom:1056.933333pt;}
.h3_c00247{height:18.266667pt;}
.h4_c00247{height:36.796000pt;}
.h2_c00247{height:57.375000pt;}
.h5_c00247{height:62.812500pt;}
.h0_c00247{height:1122.560000pt;}
.h1_c00247{height:1122.666667pt;}
.w2_c00247{width:7.386667pt;}
.w3_c00247{width:567.280000pt;}
.w0_c00247{width:793.920000pt;}
.w1_c00247{width:794.000000pt;}
.x0_c00247{left:0.000000pt;}
.x3_c00247{left:113.324000pt;}
.x1_c00247{left:137.346667pt;}
.x4_c00247{left:151.106667pt;}
.x2_c00247{left:673.213333pt;}
}





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

.ir_c00248:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00248;src:url('chunks/assets/font_75f1f7eb8120c5a4ea727220.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_745876c31d42d86533ea6931.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_ccb189fc952ecaab1da4983f.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00248;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls0_c00248{letter-spacing:0.000000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:-34.110720px;}
.ws1_c00248{word-spacing:0.000000px;}
._3_c00248{margin-left:-2.560804px;}
._1_c00248{margin-left:-1.008000px;}
._0_c00248{width:1.008000px;}
._2_c00248{width:2.782201px;}
._8_c00248{width:3.896039px;}
._11_c00248{width:5.675528px;}
._b_c00248{width:8.347208px;}
._4_c00248{width:9.737401px;}
._f_c00248{width:11.671188px;}
._7_c00248{width:13.509014px;}
._a_c00248{width:16.510193px;}
._9_c00248{width:17.962802px;}
._e_c00248{width:27.457799px;}
._6_c00248{width:28.970404px;}
._5_c00248{width:30.118798px;}
._10_c00248{width:31.490404px;}
._c_c00248{width:45.017401px;}
._d_c00248{width:46.368605px;}
.fc1_c00248{color:transparent;}
.fc0_c00248{color:rgb(0,0,0);}
.fs1_c00248{font-size:60.480000px;}
.fs0_c00248{font-size:72.000000px;}
.y0_c00248{bottom:0.000000px;}
.y3_c00248{bottom:4.320000px;}
.y8_c00248{bottom:21.600000px;}
.y15_c00248{bottom:21.630000px;}
.y5_c00248{bottom:25.200000px;}
.y4_c00248{bottom:32.040000px;}
.y20_c00248{bottom:34.590000px;}
.y14_c00248{bottom:47.190000px;}
.y1_c00248{bottom:57.240000px;}
.y1f_c00248{bottom:60.150000px;}
.y13_c00248{bottom:73.110000px;}
.y1e_c00248{bottom:86.070000px;}
.y12_c00248{bottom:108.030000px;}
.y1d_c00248{bottom:120.990000px;}
.y11_c00248{bottom:133.950000px;}
.y1c_c00248{bottom:146.955000px;}
.y10_c00248{bottom:159.915000px;}
.y1b_c00248{bottom:172.875000px;}
.yf_c00248{bottom:185.835000px;}
.y1a_c00248{bottom:198.795000px;}
.ye_c00248{bottom:211.755000px;}
.y19_c00248{bottom:224.715000px;}
.yd_c00248{bottom:237.675000px;}
.y18_c00248{bottom:259.635000px;}
.yc_c00248{bottom:272.265000px;}
.y17_c00248{bottom:285.225000px;}
.yb_c00248{bottom:298.185000px;}
.y16_c00248{bottom:311.145000px;}
.ya_c00248{bottom:324.105000px;}
.y21_c00248{bottom:675.180000px;}
.y9_c00248{bottom:701.820000px;}
.y7_c00248{bottom:1049.685000px;}
.y6_c00248{bottom:1119.210000px;}
.y2_c00248{bottom:1189.050000px;}
.h3_c00248{height:20.550000px;}
.h4_c00248{height:41.395500px;}
.h6_c00248{height:43.950000px;}
.h7_c00248{height:59.357813px;}
.h2_c00248{height:64.546875px;}
.h5_c00248{height:70.628906px;}
.h9_c00248{height:70.664062px;}
.h8_c00248{height:346.410000px;}
.h0_c00248{height:1262.880000px;}
.h1_c00248{height:1263.000000px;}
.w2_c00248{width:8.310000px;}
.w4_c00248{width:322.695000px;}
.w3_c00248{width:638.190000px;}
.w0_c00248{width:893.160000px;}
.w1_c00248{width:893.250000px;}
.x0_c00248{left:0.000000px;}
.x3_c00248{left:127.489500px;}
.x1_c00248{left:154.515000px;}
.x4_c00248{left:169.995000px;}
.x5_c00248{left:452.340000px;}
.x2_c00248{left:757.365000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws0_c00248{word-spacing:-30.320640pt;}
.ws1_c00248{word-spacing:0.000000pt;}
._3_c00248{margin-left:-2.276270pt;}
._1_c00248{margin-left:-0.896000pt;}
._0_c00248{width:0.896000pt;}
._2_c00248{width:2.473068pt;}
._8_c00248{width:3.463146pt;}
._11_c00248{width:5.044913pt;}
._b_c00248{width:7.419740pt;}
._4_c00248{width:8.655468pt;}
._f_c00248{width:10.374390pt;}
._7_c00248{width:12.008013pt;}
._a_c00248{width:14.675727pt;}
._9_c00248{width:15.966935pt;}
._e_c00248{width:24.406932pt;}
._6_c00248{width:25.751470pt;}
._5_c00248{width:26.772265pt;}
._10_c00248{width:27.991470pt;}
._c_c00248{width:40.015468pt;}
._d_c00248{width:41.216538pt;}
.fs1_c00248{font-size:53.760000pt;}
.fs0_c00248{font-size:64.000000pt;}
.y0_c00248{bottom:0.000000pt;}
.y3_c00248{bottom:3.840000pt;}
.y8_c00248{bottom:19.200000pt;}
.y15_c00248{bottom:19.226667pt;}
.y5_c00248{bottom:22.400000pt;}
.y4_c00248{bottom:28.480000pt;}
.y20_c00248{bottom:30.746667pt;}
.y14_c00248{bottom:41.946667pt;}
.y1_c00248{bottom:50.880000pt;}
.y1f_c00248{bottom:53.466667pt;}
.y13_c00248{bottom:64.986667pt;}
.y1e_c00248{bottom:76.506667pt;}
.y12_c00248{bottom:96.026667pt;}
.y1d_c00248{bottom:107.546667pt;}
.y11_c00248{bottom:119.066667pt;}
.y1c_c00248{bottom:130.626667pt;}
.y10_c00248{bottom:142.146667pt;}
.y1b_c00248{bottom:153.666667pt;}
.yf_c00248{bottom:165.186667pt;}
.y1a_c00248{bottom:176.706667pt;}
.ye_c00248{bottom:188.226667pt;}
.y19_c00248{bottom:199.746667pt;}
.yd_c00248{bottom:211.266667pt;}
.y18_c00248{bottom:230.786667pt;}
.yc_c00248{bottom:242.013333pt;}
.y17_c00248{bottom:253.533333pt;}
.yb_c00248{bottom:265.053333pt;}
.y16_c00248{bottom:276.573333pt;}
.ya_c00248{bottom:288.093333pt;}
.y21_c00248{bottom:600.160000pt;}
.y9_c00248{bottom:623.840000pt;}
.y7_c00248{bottom:933.053333pt;}
.y6_c00248{bottom:994.853333pt;}
.y2_c00248{bottom:1056.933333pt;}
.h3_c00248{height:18.266667pt;}
.h4_c00248{height:36.796000pt;}
.h6_c00248{height:39.066667pt;}
.h7_c00248{height:52.762500pt;}
.h2_c00248{height:57.375000pt;}
.h5_c00248{height:62.781250pt;}
.h9_c00248{height:62.812500pt;}
.h8_c00248{height:307.920000pt;}
.h0_c00248{height:1122.560000pt;}
.h1_c00248{height:1122.666667pt;}
.w2_c00248{width:7.386667pt;}
.w4_c00248{width:286.840000pt;}
.w3_c00248{width:567.280000pt;}
.w0_c00248{width:793.920000pt;}
.w1_c00248{width:794.000000pt;}
.x0_c00248{left:0.000000pt;}
.x3_c00248{left:113.324000pt;}
.x1_c00248{left:137.346667pt;}
.x4_c00248{left:151.106667pt;}
.x5_c00248{left:402.080000pt;}
.x2_c00248{left:673.213333pt;}
}





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

.ir_c00249:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00249;src:url('chunks/assets/font_4116fadecb73039e0128f2af.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:0.000000px;}
.fc0_c00249{color:rgb(0,0,0);}
.fs0_c00249{font-size:72.000000px;}
.y0_c00249{bottom:0.000000px;}
.y3_c00249{bottom:4.320000px;}
.y5_c00249{bottom:25.200000px;}
.y4_c00249{bottom:32.040000px;}
.y1_c00249{bottom:57.240000px;}
.y35_c00249{bottom:145.836000px;}
.y34_c00249{bottom:166.710000px;}
.y33_c00249{bottom:187.230000px;}
.y32_c00249{bottom:208.110000px;}
.y31_c00249{bottom:228.630000px;}
.y30_c00249{bottom:249.555000px;}
.y2f_c00249{bottom:270.075000px;}
.y2e_c00249{bottom:290.955000px;}
.y2d_c00249{bottom:311.475000px;}
.y2c_c00249{bottom:332.355000px;}
.y2b_c00249{bottom:352.875000px;}
.y2a_c00249{bottom:373.785000px;}
.y29_c00249{bottom:394.305000px;}
.y28_c00249{bottom:415.185000px;}
.y27_c00249{bottom:435.705000px;}
.y26_c00249{bottom:456.585000px;}
.y25_c00249{bottom:477.150000px;}
.y24_c00249{bottom:498.030000px;}
.y23_c00249{bottom:518.550000px;}
.y22_c00249{bottom:539.430000px;}
.y21_c00249{bottom:559.950000px;}
.y20_c00249{bottom:580.830000px;}
.y1f_c00249{bottom:601.380000px;}
.y1e_c00249{bottom:622.260000px;}
.y1d_c00249{bottom:642.780000px;}
.y1c_c00249{bottom:663.660000px;}
.y1b_c00249{bottom:684.180000px;}
.y1a_c00249{bottom:705.060000px;}
.y19_c00249{bottom:725.610000px;}
.y18_c00249{bottom:746.490000px;}
.y17_c00249{bottom:767.010000px;}
.y16_c00249{bottom:787.890000px;}
.y15_c00249{bottom:808.410000px;}
.y14_c00249{bottom:829.290000px;}
.y13_c00249{bottom:849.855000px;}
.y12_c00249{bottom:870.735000px;}
.y11_c00249{bottom:891.255000px;}
.y10_c00249{bottom:912.135000px;}
.yf_c00249{bottom:932.655000px;}
.ye_c00249{bottom:953.535000px;}
.yd_c00249{bottom:974.085000px;}
.yc_c00249{bottom:994.965000px;}
.yb_c00249{bottom:1015.485000px;}
.ya_c00249{bottom:1036.365000px;}
.y9_c00249{bottom:1056.885000px;}
.y8_c00249{bottom:1077.765000px;}
.y7_c00249{bottom:1098.330000px;}
.y6_c00249{bottom:1119.210000px;}
.y2_c00249{bottom:1189.050000px;}
.h3_c00249{height:20.550000px;}
.h4_c00249{height:41.395500px;}
.h2_c00249{height:64.546875px;}
.h5_c00249{height:70.664062px;}
.h0_c00249{height:1262.880000px;}
.h1_c00249{height:1263.000000px;}
.w2_c00249{width:8.310000px;}
.w3_c00249{width:638.190000px;}
.w0_c00249{width:893.160000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
.x3_c00249{left:127.489500px;}
.x1_c00249{left:154.515000px;}
.x2_c00249{left:757.365000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:0.000000pt;}
.fs0_c00249{font-size:64.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y3_c00249{bottom:3.840000pt;}
.y5_c00249{bottom:22.400000pt;}
.y4_c00249{bottom:28.480000pt;}
.y1_c00249{bottom:50.880000pt;}
.y35_c00249{bottom:129.632000pt;}
.y34_c00249{bottom:148.186667pt;}
.y33_c00249{bottom:166.426667pt;}
.y32_c00249{bottom:184.986667pt;}
.y31_c00249{bottom:203.226667pt;}
.y30_c00249{bottom:221.826667pt;}
.y2f_c00249{bottom:240.066667pt;}
.y2e_c00249{bottom:258.626667pt;}
.y2d_c00249{bottom:276.866667pt;}
.y2c_c00249{bottom:295.426667pt;}
.y2b_c00249{bottom:313.666667pt;}
.y2a_c00249{bottom:332.253333pt;}
.y29_c00249{bottom:350.493333pt;}
.y28_c00249{bottom:369.053333pt;}
.y27_c00249{bottom:387.293333pt;}
.y26_c00249{bottom:405.853333pt;}
.y25_c00249{bottom:424.133333pt;}
.y24_c00249{bottom:442.693333pt;}
.y23_c00249{bottom:460.933333pt;}
.y22_c00249{bottom:479.493333pt;}
.y21_c00249{bottom:497.733333pt;}
.y20_c00249{bottom:516.293333pt;}
.y1f_c00249{bottom:534.560000pt;}
.y1e_c00249{bottom:553.120000pt;}
.y1d_c00249{bottom:571.360000pt;}
.y1c_c00249{bottom:589.920000pt;}
.y1b_c00249{bottom:608.160000pt;}
.y1a_c00249{bottom:626.720000pt;}
.y19_c00249{bottom:644.986667pt;}
.y18_c00249{bottom:663.546667pt;}
.y17_c00249{bottom:681.786667pt;}
.y16_c00249{bottom:700.346667pt;}
.y15_c00249{bottom:718.586667pt;}
.y14_c00249{bottom:737.146667pt;}
.y13_c00249{bottom:755.426667pt;}
.y12_c00249{bottom:773.986667pt;}
.y11_c00249{bottom:792.226667pt;}
.y10_c00249{bottom:810.786667pt;}
.yf_c00249{bottom:829.026667pt;}
.ye_c00249{bottom:847.586667pt;}
.yd_c00249{bottom:865.853333pt;}
.yc_c00249{bottom:884.413333pt;}
.yb_c00249{bottom:902.653333pt;}
.ya_c00249{bottom:921.213333pt;}
.y9_c00249{bottom:939.453333pt;}
.y8_c00249{bottom:958.013333pt;}
.y7_c00249{bottom:976.293333pt;}
.y6_c00249{bottom:994.853333pt;}
.y2_c00249{bottom:1056.933333pt;}
.h3_c00249{height:18.266667pt;}
.h4_c00249{height:36.796000pt;}
.h2_c00249{height:57.375000pt;}
.h5_c00249{height:62.812500pt;}
.h0_c00249{height:1122.560000pt;}
.h1_c00249{height:1122.666667pt;}
.w2_c00249{width:7.386667pt;}
.w3_c00249{width:567.280000pt;}
.w0_c00249{width:793.920000pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
.x3_c00249{left:113.324000pt;}
.x1_c00249{left:137.346667pt;}
.x2_c00249{left:673.213333pt;}
}





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

.ir_c00250:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00250;src:url('chunks/assets/font_909c6be71292565ca2725e2f.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_324de088db5494eb0d812854.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;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_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls0_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:0.000000px;}
._0_c00250{margin-left:-2.026176px;}
.fc0_c00250{color:rgb(0,0,0);}
.fs0_c00250{font-size:72.000000px;}
.fs1_c00250{font-size:96.480000px;}
.y0_c00250{bottom:0.000000px;}
.y3_c00250{bottom:4.320000px;}
.y5_c00250{bottom:25.200000px;}
.y4_c00250{bottom:32.040000px;}
.y1_c00250{bottom:57.240000px;}
.y2a_c00250{bottom:185.430000px;}
.y29_c00250{bottom:216.750000px;}
.y28_c00250{bottom:247.755000px;}
.y27_c00250{bottom:278.715000px;}
.y26_c00250{bottom:309.675000px;}
.y25_c00250{bottom:340.995000px;}
.y24_c00250{bottom:371.985000px;}
.y23_c00250{bottom:402.945000px;}
.y22_c00250{bottom:433.905000px;}
.y21_c00250{bottom:465.225000px;}
.y20_c00250{bottom:496.230000px;}
.y1f_c00250{bottom:527.190000px;}
.y1e_c00250{bottom:558.150000px;}
.y1d_c00250{bottom:589.110000px;}
.y1c_c00250{bottom:620.460000px;}
.y1b_c00250{bottom:660.060000px;}
.y1a_c00250{bottom:705.060000px;}
.y19_c00250{bottom:725.610000px;}
.y18_c00250{bottom:746.490000px;}
.y17_c00250{bottom:767.010000px;}
.y16_c00250{bottom:787.890000px;}
.y15_c00250{bottom:808.410000px;}
.y14_c00250{bottom:829.290000px;}
.y13_c00250{bottom:849.855000px;}
.y12_c00250{bottom:870.735000px;}
.y11_c00250{bottom:891.255000px;}
.y10_c00250{bottom:912.135000px;}
.yf_c00250{bottom:932.655000px;}
.ye_c00250{bottom:953.535000px;}
.yd_c00250{bottom:974.085000px;}
.yc_c00250{bottom:994.965000px;}
.yb_c00250{bottom:1015.485000px;}
.ya_c00250{bottom:1036.365000px;}
.y9_c00250{bottom:1056.885000px;}
.y8_c00250{bottom:1077.765000px;}
.y7_c00250{bottom:1098.330000px;}
.y6_c00250{bottom:1119.210000px;}
.y2_c00250{bottom:1189.050000px;}
.h3_c00250{height:20.550000px;}
.h4_c00250{height:41.395500px;}
.h2_c00250{height:64.546875px;}
.h5_c00250{height:70.664062px;}
.h6_c00250{height:94.642734px;}
.h0_c00250{height:1262.880000px;}
.h1_c00250{height:1263.000000px;}
.w2_c00250{width:8.310000px;}
.w3_c00250{width:638.190000px;}
.w0_c00250{width:893.160000px;}
.w1_c00250{width:893.250000px;}
.x0_c00250{left:0.000000px;}
.x3_c00250{left:127.489500px;}
.x1_c00250{left:154.515000px;}
.x4_c00250{left:388.590000px;}
.x2_c00250{left:757.365000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:0.000000pt;}
._0_c00250{margin-left:-1.801046pt;}
.fs0_c00250{font-size:64.000000pt;}
.fs1_c00250{font-size:85.760000pt;}
.y0_c00250{bottom:0.000000pt;}
.y3_c00250{bottom:3.840000pt;}
.y5_c00250{bottom:22.400000pt;}
.y4_c00250{bottom:28.480000pt;}
.y1_c00250{bottom:50.880000pt;}
.y2a_c00250{bottom:164.826667pt;}
.y29_c00250{bottom:192.666667pt;}
.y28_c00250{bottom:220.226667pt;}
.y27_c00250{bottom:247.746667pt;}
.y26_c00250{bottom:275.266667pt;}
.y25_c00250{bottom:303.106667pt;}
.y24_c00250{bottom:330.653333pt;}
.y23_c00250{bottom:358.173333pt;}
.y22_c00250{bottom:385.693333pt;}
.y21_c00250{bottom:413.533333pt;}
.y20_c00250{bottom:441.093333pt;}
.y1f_c00250{bottom:468.613333pt;}
.y1e_c00250{bottom:496.133333pt;}
.y1d_c00250{bottom:523.653333pt;}
.y1c_c00250{bottom:551.520000pt;}
.y1b_c00250{bottom:586.720000pt;}
.y1a_c00250{bottom:626.720000pt;}
.y19_c00250{bottom:644.986667pt;}
.y18_c00250{bottom:663.546667pt;}
.y17_c00250{bottom:681.786667pt;}
.y16_c00250{bottom:700.346667pt;}
.y15_c00250{bottom:718.586667pt;}
.y14_c00250{bottom:737.146667pt;}
.y13_c00250{bottom:755.426667pt;}
.y12_c00250{bottom:773.986667pt;}
.y11_c00250{bottom:792.226667pt;}
.y10_c00250{bottom:810.786667pt;}
.yf_c00250{bottom:829.026667pt;}
.ye_c00250{bottom:847.586667pt;}
.yd_c00250{bottom:865.853333pt;}
.yc_c00250{bottom:884.413333pt;}
.yb_c00250{bottom:902.653333pt;}
.ya_c00250{bottom:921.213333pt;}
.y9_c00250{bottom:939.453333pt;}
.y8_c00250{bottom:958.013333pt;}
.y7_c00250{bottom:976.293333pt;}
.y6_c00250{bottom:994.853333pt;}
.y2_c00250{bottom:1056.933333pt;}
.h3_c00250{height:18.266667pt;}
.h4_c00250{height:36.796000pt;}
.h2_c00250{height:57.375000pt;}
.h5_c00250{height:62.812500pt;}
.h6_c00250{height:84.126875pt;}
.h0_c00250{height:1122.560000pt;}
.h1_c00250{height:1122.666667pt;}
.w2_c00250{width:7.386667pt;}
.w3_c00250{width:567.280000pt;}
.w0_c00250{width:793.920000pt;}
.w1_c00250{width:794.000000pt;}
.x0_c00250{left:0.000000pt;}
.x3_c00250{left:113.324000pt;}
.x1_c00250{left:137.346667pt;}
.x4_c00250{left:345.413333pt;}
.x2_c00250{left:673.213333pt;}
}





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

.ir_c00251:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00251;src:url('chunks/assets/font_97bdd5b185319155180687a8.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_c9d80c097b1a61cc1d81d616.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_3ec3023a66e77b61adef1ba5.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_d07cd8cf80d07fa98d497932.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;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_c00251;src:url('chunks/assets/font_65be7b36c996abb46177b7a7.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;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_c00251;src:url('chunks/assets/font_170946b54550b7e0377ae038.woff2')format("woff");}.ff6_c00251{font-family:ff6_c00251;line-height:1.112305;font-style:normal;font-weight: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_c00251;src:url('chunks/assets/font_17a557edafab52c0f7295e14.woff2')format("woff");}.ff7_c00251{font-family:ff7_c00251;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls8_c00251{letter-spacing:-1.416000px;}
.ls7_c00251{letter-spacing:-1.056000px;}
.lse_c00251{letter-spacing:-0.936000px;}
.ls15_c00251{letter-spacing:-0.912000px;}
.ls13_c00251{letter-spacing:-0.720000px;}
.ls16_c00251{letter-spacing:-0.532800px;}
.ls14_c00251{letter-spacing:-0.302400px;}
.ls12_c00251{letter-spacing:-0.241800px;}
.ls5_c00251{letter-spacing:0.000000px;}
.ls9_c00251{letter-spacing:0.022800px;}
.ls3_c00251{letter-spacing:0.048960px;}
.ls10_c00251{letter-spacing:0.291000px;}
.lsd_c00251{letter-spacing:0.507000px;}
.ls11_c00251{letter-spacing:0.518400px;}
.ls6_c00251{letter-spacing:0.521400px;}
.ls4_c00251{letter-spacing:0.524160px;}
.lsf_c00251{letter-spacing:0.529800px;}
.lsa_c00251{letter-spacing:0.630000px;}
.ls0_c00251{letter-spacing:0.696000px;}
.lsc_c00251{letter-spacing:0.702000px;}
.ls1_c00251{letter-spacing:0.720000px;}
.ls2_c00251{letter-spacing:0.840000px;}
.lsb_c00251{letter-spacing:1.140000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00251{word-spacing:-61.620000px;}
.wsa_c00251{word-spacing:-60.771000px;}
.ws3_c00251{word-spacing:-60.480000px;}
.ws0_c00251{word-spacing:-18.000000px;}
.ws6_c00251{word-spacing:-15.822000px;}
.ws4_c00251{word-spacing:-15.750000px;}
.wsc_c00251{word-spacing:-15.649800px;}
.ws1_c00251{word-spacing:-15.641400px;}
.wsb_c00251{word-spacing:-15.638400px;}
.ws7_c00251{word-spacing:-15.627000px;}
.ws2_c00251{word-spacing:-15.120000px;}
.wsd_c00251{word-spacing:-14.878200px;}
.wse_c00251{word-spacing:-14.817600px;}
.wsf_c00251{word-spacing:-14.587200px;}
.ws8_c00251{word-spacing:-14.184000px;}
.ws9_c00251{word-spacing:-13.704000px;}
.ws10_c00251{word-spacing:0.000000px;}
._1_c00251{margin-left:-1.908000px;}
._0_c00251{width:1.620000px;}
._4_c00251{width:134.640000px;}
._2_c00251{width:151.896024px;}
._5_c00251{width:272.309280px;}
._3_c00251{width:697.403976px;}
.fc0_c00251{color:rgb(0,0,0);}
.fs1_c00251{font-size:60.480000px;}
.fs0_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y3_c00251{bottom:4.320000px;}
.y6_c00251{bottom:4.680000px;}
.yd_c00251{bottom:12.225000px;}
.y5_c00251{bottom:25.236000px;}
.y4_c00251{bottom:32.040000px;}
.y1c_c00251{bottom:37.785000px;}
.y1e_c00251{bottom:38.145000px;}
.y1_c00251{bottom:57.636000px;}
.y1b_c00251{bottom:64.065000px;}
.y1a_c00251{bottom:90.015000px;}
.y19_c00251{bottom:115.575000px;}
.y1d_c00251{bottom:115.935000px;}
.y18_c00251{bottom:141.855000px;}
.ye_c00251{bottom:151.290000px;}
.y17_c00251{bottom:167.820000px;}
.y16_c00251{bottom:193.380000px;}
.y15_c00251{bottom:219.300000px;}
.y14_c00251{bottom:245.220000px;}
.y13_c00251{bottom:271.170000px;}
.y12_c00251{bottom:297.090000px;}
.y11_c00251{bottom:323.010000px;}
.y10_c00251{bottom:348.960000px;}
.yf_c00251{bottom:374.880000px;}
.yc_c00251{bottom:540.945000px;}
.yb_c00251{bottom:583.455000px;}
.ya_c00251{bottom:629.175000px;}
.y9_c00251{bottom:669.135000px;}
.y8_c00251{bottom:708.765000px;}
.y7_c00251{bottom:749.445000px;}
.y2_c00251{bottom:819.330000px;}
.h3_c00251{height:20.505000px;}
.h8_c00251{height:25.905000px;}
.h4_c00251{height:41.436000px;}
.hb_c00251{height:59.357813px;}
.h9_c00251{height:60.952500px;}
.h2_c00251{height:64.546875px;}
.h7_c00251{height:70.628906px;}
.h5_c00251{height:70.664062px;}
.h6_c00251{height:72.562500px;}
.ha_c00251{height:388.215000px;}
.h0_c00251{height:893.160000px;}
.h1_c00251{height:893.250000px;}
.w2_c00251{width:8.265000px;}
.w6_c00251{width:324.405000px;}
.w5_c00251{width:325.185000px;}
.w4_c00251{width:372.690000px;}
.w3_c00251{width:1008.270000px;}
.w0_c00251{width:1262.880000px;}
.w1_c00251{width:1263.000000px;}
.x0_c00251{left:0.000000px;}
.x7_c00251{left:7.186500px;}
.x6_c00251{left:120.289500px;}
.x3_c00251{left:127.489500px;}
.x1_c00251{left:154.470000px;}
.x4_c00251{left:178.590000px;}
.x5_c00251{left:180.795000px;}
.x8_c00251{left:492.990000px;}
.x9_c00251{left:818.550000px;}
.x2_c00251{left:1127.490000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls8_c00251{letter-spacing:-1.258667pt;}
.ls7_c00251{letter-spacing:-0.938667pt;}
.lse_c00251{letter-spacing:-0.832000pt;}
.ls15_c00251{letter-spacing:-0.810667pt;}
.ls13_c00251{letter-spacing:-0.640000pt;}
.ls16_c00251{letter-spacing:-0.473600pt;}
.ls14_c00251{letter-spacing:-0.268800pt;}
.ls12_c00251{letter-spacing:-0.214933pt;}
.ls5_c00251{letter-spacing:0.000000pt;}
.ls9_c00251{letter-spacing:0.020267pt;}
.ls3_c00251{letter-spacing:0.043520pt;}
.ls10_c00251{letter-spacing:0.258667pt;}
.lsd_c00251{letter-spacing:0.450667pt;}
.ls11_c00251{letter-spacing:0.460800pt;}
.ls6_c00251{letter-spacing:0.463467pt;}
.ls4_c00251{letter-spacing:0.465920pt;}
.lsf_c00251{letter-spacing:0.470933pt;}
.lsa_c00251{letter-spacing:0.560000pt;}
.ls0_c00251{letter-spacing:0.618667pt;}
.lsc_c00251{letter-spacing:0.624000pt;}
.ls1_c00251{letter-spacing:0.640000pt;}
.ls2_c00251{letter-spacing:0.746667pt;}
.lsb_c00251{letter-spacing:1.013333pt;}
.ws5_c00251{word-spacing:-54.773333pt;}
.wsa_c00251{word-spacing:-54.018667pt;}
.ws3_c00251{word-spacing:-53.760000pt;}
.ws0_c00251{word-spacing:-16.000000pt;}
.ws6_c00251{word-spacing:-14.064000pt;}
.ws4_c00251{word-spacing:-14.000000pt;}
.wsc_c00251{word-spacing:-13.910933pt;}
.ws1_c00251{word-spacing:-13.903467pt;}
.wsb_c00251{word-spacing:-13.900800pt;}
.ws7_c00251{word-spacing:-13.890667pt;}
.ws2_c00251{word-spacing:-13.440000pt;}
.wsd_c00251{word-spacing:-13.225067pt;}
.wse_c00251{word-spacing:-13.171200pt;}
.wsf_c00251{word-spacing:-12.966400pt;}
.ws8_c00251{word-spacing:-12.608000pt;}
.ws9_c00251{word-spacing:-12.181333pt;}
.ws10_c00251{word-spacing:0.000000pt;}
._1_c00251{margin-left:-1.696000pt;}
._0_c00251{width:1.440000pt;}
._4_c00251{width:119.680000pt;}
._2_c00251{width:135.018688pt;}
._5_c00251{width:242.052693pt;}
._3_c00251{width:619.914645pt;}
.fs1_c00251{font-size:53.760000pt;}
.fs0_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y3_c00251{bottom:3.840000pt;}
.y6_c00251{bottom:4.160000pt;}
.yd_c00251{bottom:10.866667pt;}
.y5_c00251{bottom:22.432000pt;}
.y4_c00251{bottom:28.480000pt;}
.y1c_c00251{bottom:33.586667pt;}
.y1e_c00251{bottom:33.906667pt;}
.y1_c00251{bottom:51.232000pt;}
.y1b_c00251{bottom:56.946667pt;}
.y1a_c00251{bottom:80.013333pt;}
.y19_c00251{bottom:102.733333pt;}
.y1d_c00251{bottom:103.053333pt;}
.y18_c00251{bottom:126.093333pt;}
.ye_c00251{bottom:134.480000pt;}
.y17_c00251{bottom:149.173333pt;}
.y16_c00251{bottom:171.893333pt;}
.y15_c00251{bottom:194.933333pt;}
.y14_c00251{bottom:217.973333pt;}
.y13_c00251{bottom:241.040000pt;}
.y12_c00251{bottom:264.080000pt;}
.y11_c00251{bottom:287.120000pt;}
.y10_c00251{bottom:310.186667pt;}
.yf_c00251{bottom:333.226667pt;}
.yc_c00251{bottom:480.840000pt;}
.yb_c00251{bottom:518.626667pt;}
.ya_c00251{bottom:559.266667pt;}
.y9_c00251{bottom:594.786667pt;}
.y8_c00251{bottom:630.013333pt;}
.y7_c00251{bottom:666.173333pt;}
.y2_c00251{bottom:728.293333pt;}
.h3_c00251{height:18.226667pt;}
.h8_c00251{height:23.026667pt;}
.h4_c00251{height:36.832000pt;}
.hb_c00251{height:52.762500pt;}
.h9_c00251{height:54.180000pt;}
.h2_c00251{height:57.375000pt;}
.h7_c00251{height:62.781250pt;}
.h5_c00251{height:62.812500pt;}
.h6_c00251{height:64.500000pt;}
.ha_c00251{height:345.080000pt;}
.h0_c00251{height:793.920000pt;}
.h1_c00251{height:794.000000pt;}
.w2_c00251{width:7.346667pt;}
.w6_c00251{width:288.360000pt;}
.w5_c00251{width:289.053333pt;}
.w4_c00251{width:331.280000pt;}
.w3_c00251{width:896.240000pt;}
.w0_c00251{width:1122.560000pt;}
.w1_c00251{width:1122.666667pt;}
.x0_c00251{left:0.000000pt;}
.x7_c00251{left:6.388000pt;}
.x6_c00251{left:106.924000pt;}
.x3_c00251{left:113.324000pt;}
.x1_c00251{left:137.306667pt;}
.x4_c00251{left:158.746667pt;}
.x5_c00251{left:160.706667pt;}
.x8_c00251{left:438.213333pt;}
.x9_c00251{left:727.600000pt;}
.x2_c00251{left:1002.213333pt;}
}





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

.ir_c00252:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00252;src:url('chunks/assets/font_b82a92439b7769f7c9d2fe15.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_67f01c13a1402e7f0b97e2f8.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_1a7f354b0530f97e2882dde8.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_0a3bf15725a529332c6c2946.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00252;src:url('chunks/assets/font_0f85087cf76ed81e1c6ad9b2.woff2')format("woff");}.ff6_c00252{font-family:ff6_c00252;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_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls18_c00252{letter-spacing:-1.776000px;}
.ls21_c00252{letter-spacing:-1.680000px;}
.ls1b_c00252{letter-spacing:-1.416000px;}
.ls1e_c00252{letter-spacing:-1.128000px;}
.ls20_c00252{letter-spacing:-1.044000px;}
.lsf_c00252{letter-spacing:-0.972000px;}
.ls13_c00252{letter-spacing:-0.912000px;}
.ls12_c00252{letter-spacing:-0.720000px;}
.lsc_c00252{letter-spacing:-0.630000px;}
.lsd_c00252{letter-spacing:-0.532800px;}
.ls16_c00252{letter-spacing:-0.337200px;}
.ls1f_c00252{letter-spacing:-0.302400px;}
.ls19_c00252{letter-spacing:-0.241800px;}
.ls1a_c00252{letter-spacing:-0.011400px;}
.ls9_c00252{letter-spacing:0.000000px;}
.ls2_c00252{letter-spacing:0.020160px;}
.ls1c_c00252{letter-spacing:0.022800px;}
.ls8_c00252{letter-spacing:0.023040px;}
.ls1_c00252{letter-spacing:0.048960px;}
.ls15_c00252{letter-spacing:0.060600px;}
.lsa_c00252{letter-spacing:0.166800px;}
.ls7_c00252{letter-spacing:0.302400px;}
.lsb_c00252{letter-spacing:0.325200px;}
.ls1d_c00252{letter-spacing:0.466800px;}
.ls17_c00252{letter-spacing:0.507000px;}
.ls5_c00252{letter-spacing:0.518400px;}
.ls10_c00252{letter-spacing:0.521400px;}
.ls3_c00252{letter-spacing:0.524160px;}
.ls14_c00252{letter-spacing:0.529800px;}
.ls11_c00252{letter-spacing:0.630000px;}
.lse_c00252{letter-spacing:0.702000px;}
.ls0_c00252{letter-spacing:0.720000px;}
.ls6_c00252{letter-spacing:0.840000px;}
.ls4_c00252{letter-spacing:0.900000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00252{word-spacing:-15.822000px;}
.ws7_c00252{word-spacing:-15.750000px;}
.ws6_c00252{word-spacing:-15.641400px;}
.ws9_c00252{word-spacing:-15.627000px;}
.ws2_c00252{word-spacing:-15.445200px;}
.ws1_c00252{word-spacing:-15.286800px;}
.wse_c00252{word-spacing:-15.143040px;}
.wsd_c00252{word-spacing:-15.142800px;}
.ws0_c00252{word-spacing:-15.120000px;}
.wsc_c00252{word-spacing:-15.108600px;}
.wsb_c00252{word-spacing:-14.878200px;}
.ws10_c00252{word-spacing:-14.817600px;}
.ws8_c00252{word-spacing:-14.782800px;}
.ws4_c00252{word-spacing:-14.587200px;}
.ws3_c00252{word-spacing:-14.490000px;}
.ws11_c00252{word-spacing:-14.208000px;}
.wsf_c00252{word-spacing:-13.992000px;}
.ws12_c00252{word-spacing:-13.440000px;}
.wsa_c00252{word-spacing:-13.344000px;}
.ws13_c00252{word-spacing:0.000000px;}
._2_c00252{margin-left:-2.174880px;}
._0_c00252{margin-left:-1.140000px;}
._1_c00252{width:1.383840px;}
._3_c00252{width:2.816880px;}
.fc0_c00252{color:rgb(0,0,0);}
.fs1_c00252{font-size:60.480000px;}
.fs0_c00252{font-size:72.000000px;}
.y0_c00252{bottom:0.000000px;}
.y3_c00252{bottom:4.320000px;}
.y6_c00252{bottom:4.680000px;}
.y1f_c00252{bottom:12.229500px;}
.y5_c00252{bottom:25.236000px;}
.y4_c00252{bottom:32.040000px;}
.y1e_c00252{bottom:38.149500px;}
.y1_c00252{bottom:57.636000px;}
.y1d_c00252{bottom:64.069500px;}
.y1c_c00252{bottom:90.019500px;}
.y1b_c00252{bottom:115.939500px;}
.y1a_c00252{bottom:141.859500px;}
.y7_c00252{bottom:143.005500px;}
.y19_c00252{bottom:167.779500px;}
.y18_c00252{bottom:193.744500px;}
.y17_c00252{bottom:219.304500px;}
.y16_c00252{bottom:245.224500px;}
.y15_c00252{bottom:271.174500px;}
.y14_c00252{bottom:297.094500px;}
.y13_c00252{bottom:323.014500px;}
.y12_c00252{bottom:348.934500px;}
.y11_c00252{bottom:374.884500px;}
.y10_c00252{bottom:400.444500px;}
.y21_c00252{bottom:400.804500px;}
.yf_c00252{bottom:426.364500px;}
.ye_c00252{bottom:452.329500px;}
.yd_c00252{bottom:478.249500px;}
.yc_c00252{bottom:504.169500px;}
.yb_c00252{bottom:530.119500px;}
.ya_c00252{bottom:555.679500px;}
.y20_c00252{bottom:556.039500px;}
.y9_c00252{bottom:581.959500px;}
.y8_c00252{bottom:607.519500px;}
.y2_c00252{bottom:819.330000px;}
.h3_c00252{height:20.505000px;}
.h4_c00252{height:41.436000px;}
.h7_c00252{height:59.357813px;}
.h6_c00252{height:60.952500px;}
.h2_c00252{height:64.546875px;}
.h5_c00252{height:620.865000px;}
.h0_c00252{height:893.160000px;}
.h1_c00252{height:893.250000px;}
.w2_c00252{width:8.265000px;}
.w6_c00252{width:324.405000px;}
.w5_c00252{width:325.185000px;}
.w4_c00252{width:372.690000px;}
.w3_c00252{width:1008.270000px;}
.w0_c00252{width:1262.880000px;}
.w1_c00252{width:1263.000000px;}
.x0_c00252{left:0.000000px;}
.x5_c00252{left:7.186500px;}
.x4_c00252{left:120.289500px;}
.x3_c00252{left:127.489500px;}
.x1_c00252{left:154.470000px;}
.x6_c00252{left:492.990000px;}
.x7_c00252{left:818.550000px;}
.x2_c00252{left:1127.490000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls18_c00252{letter-spacing:-1.578667pt;}
.ls21_c00252{letter-spacing:-1.493333pt;}
.ls1b_c00252{letter-spacing:-1.258667pt;}
.ls1e_c00252{letter-spacing:-1.002667pt;}
.ls20_c00252{letter-spacing:-0.928000pt;}
.lsf_c00252{letter-spacing:-0.864000pt;}
.ls13_c00252{letter-spacing:-0.810667pt;}
.ls12_c00252{letter-spacing:-0.640000pt;}
.lsc_c00252{letter-spacing:-0.560000pt;}
.lsd_c00252{letter-spacing:-0.473600pt;}
.ls16_c00252{letter-spacing:-0.299733pt;}
.ls1f_c00252{letter-spacing:-0.268800pt;}
.ls19_c00252{letter-spacing:-0.214933pt;}
.ls1a_c00252{letter-spacing:-0.010133pt;}
.ls9_c00252{letter-spacing:0.000000pt;}
.ls2_c00252{letter-spacing:0.017920pt;}
.ls1c_c00252{letter-spacing:0.020267pt;}
.ls8_c00252{letter-spacing:0.020480pt;}
.ls1_c00252{letter-spacing:0.043520pt;}
.ls15_c00252{letter-spacing:0.053867pt;}
.lsa_c00252{letter-spacing:0.148267pt;}
.ls7_c00252{letter-spacing:0.268800pt;}
.lsb_c00252{letter-spacing:0.289067pt;}
.ls1d_c00252{letter-spacing:0.414933pt;}
.ls17_c00252{letter-spacing:0.450667pt;}
.ls5_c00252{letter-spacing:0.460800pt;}
.ls10_c00252{letter-spacing:0.463467pt;}
.ls3_c00252{letter-spacing:0.465920pt;}
.ls14_c00252{letter-spacing:0.470933pt;}
.ls11_c00252{letter-spacing:0.560000pt;}
.lse_c00252{letter-spacing:0.624000pt;}
.ls0_c00252{letter-spacing:0.640000pt;}
.ls6_c00252{letter-spacing:0.746667pt;}
.ls4_c00252{letter-spacing:0.800000pt;}
.ws5_c00252{word-spacing:-14.064000pt;}
.ws7_c00252{word-spacing:-14.000000pt;}
.ws6_c00252{word-spacing:-13.903467pt;}
.ws9_c00252{word-spacing:-13.890667pt;}
.ws2_c00252{word-spacing:-13.729067pt;}
.ws1_c00252{word-spacing:-13.588267pt;}
.wse_c00252{word-spacing:-13.460480pt;}
.wsd_c00252{word-spacing:-13.460267pt;}
.ws0_c00252{word-spacing:-13.440000pt;}
.wsc_c00252{word-spacing:-13.429867pt;}
.wsb_c00252{word-spacing:-13.225067pt;}
.ws10_c00252{word-spacing:-13.171200pt;}
.ws8_c00252{word-spacing:-13.140267pt;}
.ws4_c00252{word-spacing:-12.966400pt;}
.ws3_c00252{word-spacing:-12.880000pt;}
.ws11_c00252{word-spacing:-12.629333pt;}
.wsf_c00252{word-spacing:-12.437333pt;}
.ws12_c00252{word-spacing:-11.946667pt;}
.wsa_c00252{word-spacing:-11.861333pt;}
.ws13_c00252{word-spacing:0.000000pt;}
._2_c00252{margin-left:-1.933227pt;}
._0_c00252{margin-left:-1.013333pt;}
._1_c00252{width:1.230080pt;}
._3_c00252{width:2.503893pt;}
.fs1_c00252{font-size:53.760000pt;}
.fs0_c00252{font-size:64.000000pt;}
.y0_c00252{bottom:0.000000pt;}
.y3_c00252{bottom:3.840000pt;}
.y6_c00252{bottom:4.160000pt;}
.y1f_c00252{bottom:10.870667pt;}
.y5_c00252{bottom:22.432000pt;}
.y4_c00252{bottom:28.480000pt;}
.y1e_c00252{bottom:33.910667pt;}
.y1_c00252{bottom:51.232000pt;}
.y1d_c00252{bottom:56.950667pt;}
.y1c_c00252{bottom:80.017333pt;}
.y1b_c00252{bottom:103.057333pt;}
.y1a_c00252{bottom:126.097333pt;}
.y7_c00252{bottom:127.116000pt;}
.y19_c00252{bottom:149.137333pt;}
.y18_c00252{bottom:172.217333pt;}
.y17_c00252{bottom:194.937333pt;}
.y16_c00252{bottom:217.977333pt;}
.y15_c00252{bottom:241.044000pt;}
.y14_c00252{bottom:264.084000pt;}
.y13_c00252{bottom:287.124000pt;}
.y12_c00252{bottom:310.164000pt;}
.y11_c00252{bottom:333.230667pt;}
.y10_c00252{bottom:355.950667pt;}
.y21_c00252{bottom:356.270667pt;}
.yf_c00252{bottom:378.990667pt;}
.ye_c00252{bottom:402.070667pt;}
.yd_c00252{bottom:425.110667pt;}
.yc_c00252{bottom:448.150667pt;}
.yb_c00252{bottom:471.217333pt;}
.ya_c00252{bottom:493.937333pt;}
.y20_c00252{bottom:494.257333pt;}
.y9_c00252{bottom:517.297333pt;}
.y8_c00252{bottom:540.017333pt;}
.y2_c00252{bottom:728.293333pt;}
.h3_c00252{height:18.226667pt;}
.h4_c00252{height:36.832000pt;}
.h7_c00252{height:52.762500pt;}
.h6_c00252{height:54.180000pt;}
.h2_c00252{height:57.375000pt;}
.h5_c00252{height:551.880000pt;}
.h0_c00252{height:793.920000pt;}
.h1_c00252{height:794.000000pt;}
.w2_c00252{width:7.346667pt;}
.w6_c00252{width:288.360000pt;}
.w5_c00252{width:289.053333pt;}
.w4_c00252{width:331.280000pt;}
.w3_c00252{width:896.240000pt;}
.w0_c00252{width:1122.560000pt;}
.w1_c00252{width:1122.666667pt;}
.x0_c00252{left:0.000000pt;}
.x5_c00252{left:6.388000pt;}
.x4_c00252{left:106.924000pt;}
.x3_c00252{left:113.324000pt;}
.x1_c00252{left:137.306667pt;}
.x6_c00252{left:438.213333pt;}
.x7_c00252{left:727.600000pt;}
.x2_c00252{left:1002.213333pt;}
}





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

.ir_c00253:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00253;src:url('chunks/assets/font_2bde916a3779b3399bbbe027.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_0ac83bb2757b536d771ee104.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_8c42bc3b486d277f2a705c02.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_cdc99e3b8f6f9e12d569ea67.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_6b84df2317cfb472b7fff554.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00253;src:url('chunks/assets/font_cfc12ec7b87884120240bbaa.woff2')format("woff");}.ff6_c00253{font-family:ff6_c00253;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_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.lsf_c00253{letter-spacing:-1.416000px;}
.ls1e_c00253{letter-spacing:-1.380000px;}
.ls14_c00253{letter-spacing:-1.128000px;}
.ls15_c00253{letter-spacing:-0.972000px;}
.ls10_c00253{letter-spacing:-0.810000px;}
.ls16_c00253{letter-spacing:-0.720000px;}
.ls17_c00253{letter-spacing:-0.532800px;}
.ls1c_c00253{letter-spacing:-0.302400px;}
.lse_c00253{letter-spacing:-0.241800px;}
.ls1d_c00253{letter-spacing:-0.169800px;}
.ls1b_c00253{letter-spacing:-0.011400px;}
.lsb_c00253{letter-spacing:0.000000px;}
.ls6_c00253{letter-spacing:0.020160px;}
.ls8_c00253{letter-spacing:0.022800px;}
.ls3_c00253{letter-spacing:0.048960px;}
.ls19_c00253{letter-spacing:0.060600px;}
.lsd_c00253{letter-spacing:0.166800px;}
.ls9_c00253{letter-spacing:0.302400px;}
.ls12_c00253{letter-spacing:0.313800px;}
.lsc_c00253{letter-spacing:0.397200px;}
.lsa_c00253{letter-spacing:0.466560px;}
.ls4_c00253{letter-spacing:0.518400px;}
.ls13_c00253{letter-spacing:0.521400px;}
.ls7_c00253{letter-spacing:0.524160px;}
.ls11_c00253{letter-spacing:0.529800px;}
.ls1a_c00253{letter-spacing:0.630000px;}
.ls1_c00253{letter-spacing:0.696000px;}
.ls18_c00253{letter-spacing:0.702000px;}
.ls0_c00253{letter-spacing:0.720000px;}
.ls5_c00253{letter-spacing:0.840000px;}
.ls2_c00253{letter-spacing:0.900000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00253{word-spacing:-15.822000px;}
.wsa_c00253{word-spacing:-15.750000px;}
.ws5_c00253{word-spacing:-15.641400px;}
.ws4_c00253{word-spacing:-15.433800px;}
.ws1_c00253{word-spacing:-15.286800px;}
.ws9_c00253{word-spacing:-15.180600px;}
.wsd_c00253{word-spacing:-15.142800px;}
.ws0_c00253{word-spacing:-15.120000px;}
.wsb_c00253{word-spacing:-15.108600px;}
.wse_c00253{word-spacing:-14.950200px;}
.ws3_c00253{word-spacing:-14.878200px;}
.wsc_c00253{word-spacing:-14.817600px;}
.ws7_c00253{word-spacing:-14.587200px;}
.ws2_c00253{word-spacing:-14.310000px;}
.ws6_c00253{word-spacing:-13.992000px;}
.wsf_c00253{word-spacing:0.000000px;}
._2_c00253{margin-left:-2.700718px;}
._0_c00253{margin-left:-1.330802px;}
._1_c00253{width:1.229526px;}
._3_c00253{width:2.463600px;}
.fc0_c00253{color:rgb(0,0,0);}
.fs1_c00253{font-size:60.480000px;}
.fs0_c00253{font-size:72.000000px;}
.y0_c00253{bottom:0.000000px;}
.y3_c00253{bottom:4.320000px;}
.y6_c00253{bottom:4.680000px;}
.y1f_c00253{bottom:12.229500px;}
.y5_c00253{bottom:25.236000px;}
.y4_c00253{bottom:32.040000px;}
.y1e_c00253{bottom:38.149500px;}
.y1_c00253{bottom:57.636000px;}
.y1d_c00253{bottom:64.069500px;}
.y1c_c00253{bottom:89.659500px;}
.y22_c00253{bottom:90.019500px;}
.y1b_c00253{bottom:115.939500px;}
.y1a_c00253{bottom:141.859500px;}
.y7_c00253{bottom:143.005500px;}
.y19_c00253{bottom:167.779500px;}
.y18_c00253{bottom:193.384500px;}
.y21_c00253{bottom:193.744500px;}
.y17_c00253{bottom:219.304500px;}
.y16_c00253{bottom:245.224500px;}
.y15_c00253{bottom:271.174500px;}
.y14_c00253{bottom:297.094500px;}
.y13_c00253{bottom:323.014500px;}
.y12_c00253{bottom:348.934500px;}
.y11_c00253{bottom:374.884500px;}
.y10_c00253{bottom:400.804500px;}
.yf_c00253{bottom:426.364500px;}
.ye_c00253{bottom:452.329500px;}
.yd_c00253{bottom:477.889500px;}
.y20_c00253{bottom:478.249500px;}
.yc_c00253{bottom:504.169500px;}
.yb_c00253{bottom:530.119500px;}
.ya_c00253{bottom:556.039500px;}
.y9_c00253{bottom:581.959500px;}
.y8_c00253{bottom:607.519500px;}
.y2_c00253{bottom:819.330000px;}
.h3_c00253{height:20.505000px;}
.h4_c00253{height:41.436000px;}
.h7_c00253{height:59.357813px;}
.h6_c00253{height:60.952500px;}
.h2_c00253{height:64.546875px;}
.h5_c00253{height:620.865000px;}
.h0_c00253{height:893.160000px;}
.h1_c00253{height:893.250000px;}
.w2_c00253{width:8.265000px;}
.w6_c00253{width:324.405000px;}
.w5_c00253{width:325.185000px;}
.w4_c00253{width:372.690000px;}
.w3_c00253{width:1008.270000px;}
.w0_c00253{width:1262.880000px;}
.w1_c00253{width:1263.000000px;}
.x0_c00253{left:0.000000px;}
.x5_c00253{left:7.186500px;}
.x4_c00253{left:120.289500px;}
.x3_c00253{left:127.489500px;}
.x1_c00253{left:154.470000px;}
.x6_c00253{left:492.990000px;}
.x7_c00253{left:818.550000px;}
.x2_c00253{left:1127.490000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.lsf_c00253{letter-spacing:-1.258667pt;}
.ls1e_c00253{letter-spacing:-1.226667pt;}
.ls14_c00253{letter-spacing:-1.002667pt;}
.ls15_c00253{letter-spacing:-0.864000pt;}
.ls10_c00253{letter-spacing:-0.720000pt;}
.ls16_c00253{letter-spacing:-0.640000pt;}
.ls17_c00253{letter-spacing:-0.473600pt;}
.ls1c_c00253{letter-spacing:-0.268800pt;}
.lse_c00253{letter-spacing:-0.214933pt;}
.ls1d_c00253{letter-spacing:-0.150933pt;}
.ls1b_c00253{letter-spacing:-0.010133pt;}
.lsb_c00253{letter-spacing:0.000000pt;}
.ls6_c00253{letter-spacing:0.017920pt;}
.ls8_c00253{letter-spacing:0.020267pt;}
.ls3_c00253{letter-spacing:0.043520pt;}
.ls19_c00253{letter-spacing:0.053867pt;}
.lsd_c00253{letter-spacing:0.148267pt;}
.ls9_c00253{letter-spacing:0.268800pt;}
.ls12_c00253{letter-spacing:0.278933pt;}
.lsc_c00253{letter-spacing:0.353067pt;}
.lsa_c00253{letter-spacing:0.414720pt;}
.ls4_c00253{letter-spacing:0.460800pt;}
.ls13_c00253{letter-spacing:0.463467pt;}
.ls7_c00253{letter-spacing:0.465920pt;}
.ls11_c00253{letter-spacing:0.470933pt;}
.ls1a_c00253{letter-spacing:0.560000pt;}
.ls1_c00253{letter-spacing:0.618667pt;}
.ls18_c00253{letter-spacing:0.624000pt;}
.ls0_c00253{letter-spacing:0.640000pt;}
.ls5_c00253{letter-spacing:0.746667pt;}
.ls2_c00253{letter-spacing:0.800000pt;}
.ws8_c00253{word-spacing:-14.064000pt;}
.wsa_c00253{word-spacing:-14.000000pt;}
.ws5_c00253{word-spacing:-13.903467pt;}
.ws4_c00253{word-spacing:-13.718933pt;}
.ws1_c00253{word-spacing:-13.588267pt;}
.ws9_c00253{word-spacing:-13.493867pt;}
.wsd_c00253{word-spacing:-13.460267pt;}
.ws0_c00253{word-spacing:-13.440000pt;}
.wsb_c00253{word-spacing:-13.429867pt;}
.wse_c00253{word-spacing:-13.289067pt;}
.ws3_c00253{word-spacing:-13.225067pt;}
.wsc_c00253{word-spacing:-13.171200pt;}
.ws7_c00253{word-spacing:-12.966400pt;}
.ws2_c00253{word-spacing:-12.720000pt;}
.ws6_c00253{word-spacing:-12.437333pt;}
.wsf_c00253{word-spacing:0.000000pt;}
._2_c00253{margin-left:-2.400638pt;}
._0_c00253{margin-left:-1.182935pt;}
._1_c00253{width:1.092912pt;}
._3_c00253{width:2.189867pt;}
.fs1_c00253{font-size:53.760000pt;}
.fs0_c00253{font-size:64.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y3_c00253{bottom:3.840000pt;}
.y6_c00253{bottom:4.160000pt;}
.y1f_c00253{bottom:10.870667pt;}
.y5_c00253{bottom:22.432000pt;}
.y4_c00253{bottom:28.480000pt;}
.y1e_c00253{bottom:33.910667pt;}
.y1_c00253{bottom:51.232000pt;}
.y1d_c00253{bottom:56.950667pt;}
.y1c_c00253{bottom:79.697333pt;}
.y22_c00253{bottom:80.017333pt;}
.y1b_c00253{bottom:103.057333pt;}
.y1a_c00253{bottom:126.097333pt;}
.y7_c00253{bottom:127.116000pt;}
.y19_c00253{bottom:149.137333pt;}
.y18_c00253{bottom:171.897333pt;}
.y21_c00253{bottom:172.217333pt;}
.y17_c00253{bottom:194.937333pt;}
.y16_c00253{bottom:217.977333pt;}
.y15_c00253{bottom:241.044000pt;}
.y14_c00253{bottom:264.084000pt;}
.y13_c00253{bottom:287.124000pt;}
.y12_c00253{bottom:310.164000pt;}
.y11_c00253{bottom:333.230667pt;}
.y10_c00253{bottom:356.270667pt;}
.yf_c00253{bottom:378.990667pt;}
.ye_c00253{bottom:402.070667pt;}
.yd_c00253{bottom:424.790667pt;}
.y20_c00253{bottom:425.110667pt;}
.yc_c00253{bottom:448.150667pt;}
.yb_c00253{bottom:471.217333pt;}
.ya_c00253{bottom:494.257333pt;}
.y9_c00253{bottom:517.297333pt;}
.y8_c00253{bottom:540.017333pt;}
.y2_c00253{bottom:728.293333pt;}
.h3_c00253{height:18.226667pt;}
.h4_c00253{height:36.832000pt;}
.h7_c00253{height:52.762500pt;}
.h6_c00253{height:54.180000pt;}
.h2_c00253{height:57.375000pt;}
.h5_c00253{height:551.880000pt;}
.h0_c00253{height:793.920000pt;}
.h1_c00253{height:794.000000pt;}
.w2_c00253{width:7.346667pt;}
.w6_c00253{width:288.360000pt;}
.w5_c00253{width:289.053333pt;}
.w4_c00253{width:331.280000pt;}
.w3_c00253{width:896.240000pt;}
.w0_c00253{width:1122.560000pt;}
.w1_c00253{width:1122.666667pt;}
.x0_c00253{left:0.000000pt;}
.x5_c00253{left:6.388000pt;}
.x4_c00253{left:106.924000pt;}
.x3_c00253{left:113.324000pt;}
.x1_c00253{left:137.306667pt;}
.x6_c00253{left:438.213333pt;}
.x7_c00253{left:727.600000pt;}
.x2_c00253{left:1002.213333pt;}
}





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

.ir_c00254:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00254;src:url('chunks/assets/font_622344eec9bec6c98c2b4b4f.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_e8346264e23fb25ef4ecc476.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_8fc8a373baee8d07afd9622f.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_f0ecdecd380db89d5abd8312.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00254;src:url('chunks/assets/font_7b5065acdf9e9fc569f0c31a.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00254;src:url('chunks/assets/font_20669b07ef41ef957fbcbdc8.woff2')format("woff");}.ff6_c00254{font-family:ff6_c00254;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_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.lsb_c00254{letter-spacing:-1.680000px;}
.ls14_c00254{letter-spacing:-1.440000px;}
.lsd_c00254{letter-spacing:-1.392000px;}
.ls9_c00254{letter-spacing:-1.272000px;}
.ls15_c00254{letter-spacing:-0.912000px;}
.ls7_c00254{letter-spacing:-0.720000px;}
.ls13_c00254{letter-spacing:-0.544200px;}
.lse_c00254{letter-spacing:-0.532800px;}
.lsf_c00254{letter-spacing:-0.429000px;}
.ls8_c00254{letter-spacing:-0.241800px;}
.ls6_c00254{letter-spacing:0.000000px;}
.ls3_c00254{letter-spacing:0.020160px;}
.ls4_c00254{letter-spacing:0.048960px;}
.ls12_c00254{letter-spacing:0.060600px;}
.ls10_c00254{letter-spacing:0.166800px;}
.ls11_c00254{letter-spacing:0.313800px;}
.lsc_c00254{letter-spacing:0.521400px;}
.lsa_c00254{letter-spacing:0.529800px;}
.ls1_c00254{letter-spacing:0.696000px;}
.ls0_c00254{letter-spacing:0.720000px;}
.ls5_c00254{letter-spacing:0.840000px;}
.ls2_c00254{letter-spacing:0.900000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00254{word-spacing:-60.480000px;}
.ws5_c00254{word-spacing:-15.641400px;}
.wsa_c00254{word-spacing:-15.433800px;}
.ws9_c00254{word-spacing:-15.286800px;}
.wsb_c00254{word-spacing:-15.180600px;}
.ws0_c00254{word-spacing:-15.120000px;}
.ws2_c00254{word-spacing:-14.878200px;}
.ws8_c00254{word-spacing:-14.691000px;}
.ws7_c00254{word-spacing:-14.587200px;}
.wsc_c00254{word-spacing:-14.575800px;}
.ws3_c00254{word-spacing:-13.848000px;}
.ws6_c00254{word-spacing:-13.728000px;}
.ws4_c00254{word-spacing:-13.440000px;}
.wsd_c00254{word-spacing:0.000000px;}
._1_c00254{margin-left:-3.230638px;}
._0_c00254{margin-left:-1.849920px;}
._2_c00254{width:1.088398px;}
._3_c00254{width:2.245440px;}
.fc0_c00254{color:rgb(0,0,0);}
.fs1_c00254{font-size:60.480000px;}
.fs0_c00254{font-size:72.000000px;}
.y0_c00254{bottom:0.000000px;}
.y3_c00254{bottom:4.320000px;}
.y6_c00254{bottom:4.680000px;}
.y21_c00254{bottom:12.585000px;}
.y14_c00254{bottom:12.600000px;}
.y19_c00254{bottom:14.400000px;}
.y5_c00254{bottom:25.236000px;}
.y4_c00254{bottom:32.040000px;}
.y20_c00254{bottom:38.505000px;}
.y13_c00254{bottom:38.520000px;}
.y1_c00254{bottom:57.636000px;}
.y12_c00254{bottom:64.080000px;}
.y1f_c00254{bottom:64.425000px;}
.y1e_c00254{bottom:90.015000px;}
.y11_c00254{bottom:90.390000px;}
.y1d_c00254{bottom:115.935000px;}
.y10_c00254{bottom:116.310000px;}
.y1c_c00254{bottom:141.855000px;}
.yf_c00254{bottom:141.870000px;}
.y1a_c00254{bottom:150.210000px;}
.y1b_c00254{bottom:167.820000px;}
.ye_c00254{bottom:167.835000px;}
.yd_c00254{bottom:193.755000px;}
.yc_c00254{bottom:219.675000px;}
.yb_c00254{bottom:245.625000px;}
.ya_c00254{bottom:271.185000px;}
.y15_c00254{bottom:271.545000px;}
.y9_c00254{bottom:297.465000px;}
.y8_c00254{bottom:323.025000px;}
.y18_c00254{bottom:332.070000px;}
.y17_c00254{bottom:378.870000px;}
.y16_c00254{bottom:409.860000px;}
.y7_c00254{bottom:427.500000px;}
.y2_c00254{bottom:819.330000px;}
.h3_c00254{height:20.505000px;}
.ha_c00254{height:30.945000px;}
.h4_c00254{height:41.436000px;}
.h6_c00254{height:59.357813px;}
.h7_c00254{height:60.952500px;}
.h2_c00254{height:64.546875px;}
.h9_c00254{height:70.628906px;}
.h8_c00254{height:70.664062px;}
.hb_c00254{height:72.562500px;}
.hc_c00254{height:181.125000px;}
.h5_c00254{height:336.375000px;}
.h0_c00254{height:893.160000px;}
.h1_c00254{height:893.250000px;}
.w2_c00254{width:8.265000px;}
.w5_c00254{width:324.405000px;}
.w8_c00254{width:338.805000px;}
.w6_c00254{width:338.850000px;}
.w7_c00254{width:338.865000px;}
.w4_c00254{width:372.690000px;}
.w3_c00254{width:1008.270000px;}
.w0_c00254{width:1262.880000px;}
.w1_c00254{width:1263.000000px;}
.x0_c00254{left:0.000000px;}
.x5_c00254{left:7.186500px;}
.x4_c00254{left:120.289500px;}
.x3_c00254{left:127.489500px;}
.x1_c00254{left:154.470000px;}
.x7_c00254{left:178.590000px;}
.x8_c00254{left:459.510000px;}
.x9_c00254{left:799.110000px;}
.x6_c00254{left:818.550000px;}
.x2_c00254{left:1127.490000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.lsb_c00254{letter-spacing:-1.493333pt;}
.ls14_c00254{letter-spacing:-1.280000pt;}
.lsd_c00254{letter-spacing:-1.237333pt;}
.ls9_c00254{letter-spacing:-1.130667pt;}
.ls15_c00254{letter-spacing:-0.810667pt;}
.ls7_c00254{letter-spacing:-0.640000pt;}
.ls13_c00254{letter-spacing:-0.483733pt;}
.lse_c00254{letter-spacing:-0.473600pt;}
.lsf_c00254{letter-spacing:-0.381333pt;}
.ls8_c00254{letter-spacing:-0.214933pt;}
.ls6_c00254{letter-spacing:0.000000pt;}
.ls3_c00254{letter-spacing:0.017920pt;}
.ls4_c00254{letter-spacing:0.043520pt;}
.ls12_c00254{letter-spacing:0.053867pt;}
.ls10_c00254{letter-spacing:0.148267pt;}
.ls11_c00254{letter-spacing:0.278933pt;}
.lsc_c00254{letter-spacing:0.463467pt;}
.lsa_c00254{letter-spacing:0.470933pt;}
.ls1_c00254{letter-spacing:0.618667pt;}
.ls0_c00254{letter-spacing:0.640000pt;}
.ls5_c00254{letter-spacing:0.746667pt;}
.ls2_c00254{letter-spacing:0.800000pt;}
.ws1_c00254{word-spacing:-53.760000pt;}
.ws5_c00254{word-spacing:-13.903467pt;}
.wsa_c00254{word-spacing:-13.718933pt;}
.ws9_c00254{word-spacing:-13.588267pt;}
.wsb_c00254{word-spacing:-13.493867pt;}
.ws0_c00254{word-spacing:-13.440000pt;}
.ws2_c00254{word-spacing:-13.225067pt;}
.ws8_c00254{word-spacing:-13.058667pt;}
.ws7_c00254{word-spacing:-12.966400pt;}
.wsc_c00254{word-spacing:-12.956267pt;}
.ws3_c00254{word-spacing:-12.309333pt;}
.ws6_c00254{word-spacing:-12.202667pt;}
.ws4_c00254{word-spacing:-11.946667pt;}
.wsd_c00254{word-spacing:0.000000pt;}
._1_c00254{margin-left:-2.871678pt;}
._0_c00254{margin-left:-1.644373pt;}
._2_c00254{width:0.967465pt;}
._3_c00254{width:1.995947pt;}
.fs1_c00254{font-size:53.760000pt;}
.fs0_c00254{font-size:64.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y3_c00254{bottom:3.840000pt;}
.y6_c00254{bottom:4.160000pt;}
.y21_c00254{bottom:11.186667pt;}
.y14_c00254{bottom:11.200000pt;}
.y19_c00254{bottom:12.800000pt;}
.y5_c00254{bottom:22.432000pt;}
.y4_c00254{bottom:28.480000pt;}
.y20_c00254{bottom:34.226667pt;}
.y13_c00254{bottom:34.240000pt;}
.y1_c00254{bottom:51.232000pt;}
.y12_c00254{bottom:56.960000pt;}
.y1f_c00254{bottom:57.266667pt;}
.y1e_c00254{bottom:80.013333pt;}
.y11_c00254{bottom:80.346667pt;}
.y1d_c00254{bottom:103.053333pt;}
.y10_c00254{bottom:103.386667pt;}
.y1c_c00254{bottom:126.093333pt;}
.yf_c00254{bottom:126.106667pt;}
.y1a_c00254{bottom:133.520000pt;}
.y1b_c00254{bottom:149.173333pt;}
.ye_c00254{bottom:149.186667pt;}
.yd_c00254{bottom:172.226667pt;}
.yc_c00254{bottom:195.266667pt;}
.yb_c00254{bottom:218.333333pt;}
.ya_c00254{bottom:241.053333pt;}
.y15_c00254{bottom:241.373333pt;}
.y9_c00254{bottom:264.413333pt;}
.y8_c00254{bottom:287.133333pt;}
.y18_c00254{bottom:295.173333pt;}
.y17_c00254{bottom:336.773333pt;}
.y16_c00254{bottom:364.320000pt;}
.y7_c00254{bottom:380.000000pt;}
.y2_c00254{bottom:728.293333pt;}
.h3_c00254{height:18.226667pt;}
.ha_c00254{height:27.506667pt;}
.h4_c00254{height:36.832000pt;}
.h6_c00254{height:52.762500pt;}
.h7_c00254{height:54.180000pt;}
.h2_c00254{height:57.375000pt;}
.h9_c00254{height:62.781250pt;}
.h8_c00254{height:62.812500pt;}
.hb_c00254{height:64.500000pt;}
.hc_c00254{height:161.000000pt;}
.h5_c00254{height:299.000000pt;}
.h0_c00254{height:793.920000pt;}
.h1_c00254{height:794.000000pt;}
.w2_c00254{width:7.346667pt;}
.w5_c00254{width:288.360000pt;}
.w8_c00254{width:301.160000pt;}
.w6_c00254{width:301.200000pt;}
.w7_c00254{width:301.213333pt;}
.w4_c00254{width:331.280000pt;}
.w3_c00254{width:896.240000pt;}
.w0_c00254{width:1122.560000pt;}
.w1_c00254{width:1122.666667pt;}
.x0_c00254{left:0.000000pt;}
.x5_c00254{left:6.388000pt;}
.x4_c00254{left:106.924000pt;}
.x3_c00254{left:113.324000pt;}
.x1_c00254{left:137.306667pt;}
.x7_c00254{left:158.746667pt;}
.x8_c00254{left:408.453333pt;}
.x9_c00254{left:710.320000pt;}
.x6_c00254{left:727.600000pt;}
.x2_c00254{left:1002.213333pt;}
}





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

.ir_c00255:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00255;src:url('chunks/assets/font_b82a92439b7769f7c9d2fe15.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_7ba3b99dde884c412d0c6380.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_e70cdbe92454728dc48e1257.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_0d99058be26a7cb5847ec39d.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;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_c00255;src:url('chunks/assets/font_9112084f89b00c5a075d73b2.woff2')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.lsd_c00255{letter-spacing:-1.776000px;}
.ls15_c00255{letter-spacing:-1.680000px;}
.ls1a_c00255{letter-spacing:-1.380000px;}
.ls11_c00255{letter-spacing:-1.116000px;}
.lse_c00255{letter-spacing:-0.972000px;}
.ls10_c00255{letter-spacing:-0.918000px;}
.ls19_c00255{letter-spacing:-0.912000px;}
.ls9_c00255{letter-spacing:-0.720000px;}
.lsf_c00255{letter-spacing:-0.544200px;}
.ls18_c00255{letter-spacing:-0.532800px;}
.ls1c_c00255{letter-spacing:-0.429000px;}
.lsc_c00255{letter-spacing:-0.337200px;}
.ls17_c00255{letter-spacing:-0.302400px;}
.lsb_c00255{letter-spacing:-0.241800px;}
.ls1d_c00255{letter-spacing:-0.169800px;}
.ls8_c00255{letter-spacing:0.000000px;}
.ls6_c00255{letter-spacing:0.020160px;}
.ls1b_c00255{letter-spacing:0.022800px;}
.ls5_c00255{letter-spacing:0.048960px;}
.ls14_c00255{letter-spacing:0.166800px;}
.ls16_c00255{letter-spacing:0.219000px;}
.ls2_c00255{letter-spacing:0.278400px;}
.ls4_c00255{letter-spacing:0.302400px;}
.ls13_c00255{letter-spacing:0.507000px;}
.lsa_c00255{letter-spacing:0.521400px;}
.ls7_c00255{letter-spacing:0.524160px;}
.ls12_c00255{letter-spacing:0.529800px;}
.ls1_c00255{letter-spacing:0.696000px;}
.ls0_c00255{letter-spacing:0.720000px;}
.ls3_c00255{letter-spacing:0.840000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00255{word-spacing:-15.649800px;}
.ws1_c00255{word-spacing:-15.641400px;}
.ws8_c00255{word-spacing:-15.627000px;}
.wsb_c00255{word-spacing:-15.339000px;}
.ws9_c00255{word-spacing:-15.286800px;}
.ws0_c00255{word-spacing:-15.120000px;}
.wsf_c00255{word-spacing:-14.950200px;}
.ws4_c00255{word-spacing:-14.878200px;}
.wsc_c00255{word-spacing:-14.817600px;}
.ws2_c00255{word-spacing:-14.782800px;}
.wse_c00255{word-spacing:-14.691000px;}
.wsd_c00255{word-spacing:-14.587200px;}
.ws5_c00255{word-spacing:-14.575800px;}
.ws6_c00255{word-spacing:-14.202000px;}
.wsa_c00255{word-spacing:-13.440000px;}
.ws3_c00255{word-spacing:-13.344000px;}
.ws10_c00255{word-spacing:0.000000px;}
._3_c00255{margin-left:-3.350045px;}
._2_c00255{margin-left:-2.231395px;}
._0_c00255{margin-left:-1.045682px;}
._1_c00255{width:1.924562px;}
._4_c00255{width:3.149280px;}
.fc0_c00255{color:rgb(0,0,0);}
.fs1_c00255{font-size:60.480000px;}
.fs0_c00255{font-size:72.000000px;}
.y0_c00255{bottom:0.000000px;}
.y3_c00255{bottom:4.320000px;}
.y6_c00255{bottom:4.680000px;}
.y1f_c00255{bottom:12.589500px;}
.y5_c00255{bottom:25.236000px;}
.y4_c00255{bottom:32.040000px;}
.y1e_c00255{bottom:37.789500px;}
.y24_c00255{bottom:38.149500px;}
.y1_c00255{bottom:57.636000px;}
.y1d_c00255{bottom:64.069500px;}
.y1c_c00255{bottom:90.019500px;}
.y1b_c00255{bottom:115.939500px;}
.y1a_c00255{bottom:141.859500px;}
.y7_c00255{bottom:143.725500px;}
.y19_c00255{bottom:167.419500px;}
.y23_c00255{bottom:167.779500px;}
.y18_c00255{bottom:193.744500px;}
.y17_c00255{bottom:219.664500px;}
.y16_c00255{bottom:245.224500px;}
.y15_c00255{bottom:270.814500px;}
.y22_c00255{bottom:271.174500px;}
.y14_c00255{bottom:297.094500px;}
.y13_c00255{bottom:323.014500px;}
.y12_c00255{bottom:348.964500px;}
.y11_c00255{bottom:374.884500px;}
.y10_c00255{bottom:400.804500px;}
.yf_c00255{bottom:426.364500px;}
.ye_c00255{bottom:451.969500px;}
.y21_c00255{bottom:452.329500px;}
.yd_c00255{bottom:478.249500px;}
.yc_c00255{bottom:504.169500px;}
.yb_c00255{bottom:530.119500px;}
.ya_c00255{bottom:555.679500px;}
.y20_c00255{bottom:556.039500px;}
.y9_c00255{bottom:581.959500px;}
.y8_c00255{bottom:607.879500px;}
.y2_c00255{bottom:819.330000px;}
.h3_c00255{height:20.505000px;}
.h4_c00255{height:41.436000px;}
.h6_c00255{height:59.357813px;}
.h7_c00255{height:60.952500px;}
.h2_c00255{height:64.546875px;}
.h5_c00255{height:621.225000px;}
.h0_c00255{height:893.160000px;}
.h1_c00255{height:893.250000px;}
.w2_c00255{width:8.265000px;}
.w6_c00255{width:338.805000px;}
.w4_c00255{width:338.850000px;}
.w5_c00255{width:338.865000px;}
.w3_c00255{width:1008.270000px;}
.w0_c00255{width:1262.880000px;}
.w1_c00255{width:1263.000000px;}
.x0_c00255{left:0.000000px;}
.x5_c00255{left:7.546500px;}
.x4_c00255{left:119.929500px;}
.x3_c00255{left:127.489500px;}
.x1_c00255{left:154.470000px;}
.x6_c00255{left:459.510000px;}
.x7_c00255{left:799.110000px;}
.x2_c00255{left:1127.490000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.lsd_c00255{letter-spacing:-1.578667pt;}
.ls15_c00255{letter-spacing:-1.493333pt;}
.ls1a_c00255{letter-spacing:-1.226667pt;}
.ls11_c00255{letter-spacing:-0.992000pt;}
.lse_c00255{letter-spacing:-0.864000pt;}
.ls10_c00255{letter-spacing:-0.816000pt;}
.ls19_c00255{letter-spacing:-0.810667pt;}
.ls9_c00255{letter-spacing:-0.640000pt;}
.lsf_c00255{letter-spacing:-0.483733pt;}
.ls18_c00255{letter-spacing:-0.473600pt;}
.ls1c_c00255{letter-spacing:-0.381333pt;}
.lsc_c00255{letter-spacing:-0.299733pt;}
.ls17_c00255{letter-spacing:-0.268800pt;}
.lsb_c00255{letter-spacing:-0.214933pt;}
.ls1d_c00255{letter-spacing:-0.150933pt;}
.ls8_c00255{letter-spacing:0.000000pt;}
.ls6_c00255{letter-spacing:0.017920pt;}
.ls1b_c00255{letter-spacing:0.020267pt;}
.ls5_c00255{letter-spacing:0.043520pt;}
.ls14_c00255{letter-spacing:0.148267pt;}
.ls16_c00255{letter-spacing:0.194667pt;}
.ls2_c00255{letter-spacing:0.247467pt;}
.ls4_c00255{letter-spacing:0.268800pt;}
.ls13_c00255{letter-spacing:0.450667pt;}
.lsa_c00255{letter-spacing:0.463467pt;}
.ls7_c00255{letter-spacing:0.465920pt;}
.ls12_c00255{letter-spacing:0.470933pt;}
.ls1_c00255{letter-spacing:0.618667pt;}
.ls0_c00255{letter-spacing:0.640000pt;}
.ls3_c00255{letter-spacing:0.746667pt;}
.ws7_c00255{word-spacing:-13.910933pt;}
.ws1_c00255{word-spacing:-13.903467pt;}
.ws8_c00255{word-spacing:-13.890667pt;}
.wsb_c00255{word-spacing:-13.634667pt;}
.ws9_c00255{word-spacing:-13.588267pt;}
.ws0_c00255{word-spacing:-13.440000pt;}
.wsf_c00255{word-spacing:-13.289067pt;}
.ws4_c00255{word-spacing:-13.225067pt;}
.wsc_c00255{word-spacing:-13.171200pt;}
.ws2_c00255{word-spacing:-13.140267pt;}
.wse_c00255{word-spacing:-13.058667pt;}
.wsd_c00255{word-spacing:-12.966400pt;}
.ws5_c00255{word-spacing:-12.956267pt;}
.ws6_c00255{word-spacing:-12.624000pt;}
.wsa_c00255{word-spacing:-11.946667pt;}
.ws3_c00255{word-spacing:-11.861333pt;}
.ws10_c00255{word-spacing:0.000000pt;}
._3_c00255{margin-left:-2.977818pt;}
._2_c00255{margin-left:-1.983462pt;}
._0_c00255{margin-left:-0.929495pt;}
._1_c00255{width:1.710722pt;}
._4_c00255{width:2.799360pt;}
.fs1_c00255{font-size:53.760000pt;}
.fs0_c00255{font-size:64.000000pt;}
.y0_c00255{bottom:0.000000pt;}
.y3_c00255{bottom:3.840000pt;}
.y6_c00255{bottom:4.160000pt;}
.y1f_c00255{bottom:11.190667pt;}
.y5_c00255{bottom:22.432000pt;}
.y4_c00255{bottom:28.480000pt;}
.y1e_c00255{bottom:33.590667pt;}
.y24_c00255{bottom:33.910667pt;}
.y1_c00255{bottom:51.232000pt;}
.y1d_c00255{bottom:56.950667pt;}
.y1c_c00255{bottom:80.017333pt;}
.y1b_c00255{bottom:103.057333pt;}
.y1a_c00255{bottom:126.097333pt;}
.y7_c00255{bottom:127.756000pt;}
.y19_c00255{bottom:148.817333pt;}
.y23_c00255{bottom:149.137333pt;}
.y18_c00255{bottom:172.217333pt;}
.y17_c00255{bottom:195.257333pt;}
.y16_c00255{bottom:217.977333pt;}
.y15_c00255{bottom:240.724000pt;}
.y22_c00255{bottom:241.044000pt;}
.y14_c00255{bottom:264.084000pt;}
.y13_c00255{bottom:287.124000pt;}
.y12_c00255{bottom:310.190667pt;}
.y11_c00255{bottom:333.230667pt;}
.y10_c00255{bottom:356.270667pt;}
.yf_c00255{bottom:378.990667pt;}
.ye_c00255{bottom:401.750667pt;}
.y21_c00255{bottom:402.070667pt;}
.yd_c00255{bottom:425.110667pt;}
.yc_c00255{bottom:448.150667pt;}
.yb_c00255{bottom:471.217333pt;}
.ya_c00255{bottom:493.937333pt;}
.y20_c00255{bottom:494.257333pt;}
.y9_c00255{bottom:517.297333pt;}
.y8_c00255{bottom:540.337333pt;}
.y2_c00255{bottom:728.293333pt;}
.h3_c00255{height:18.226667pt;}
.h4_c00255{height:36.832000pt;}
.h6_c00255{height:52.762500pt;}
.h7_c00255{height:54.180000pt;}
.h2_c00255{height:57.375000pt;}
.h5_c00255{height:552.200000pt;}
.h0_c00255{height:793.920000pt;}
.h1_c00255{height:794.000000pt;}
.w2_c00255{width:7.346667pt;}
.w6_c00255{width:301.160000pt;}
.w4_c00255{width:301.200000pt;}
.w5_c00255{width:301.213333pt;}
.w3_c00255{width:896.240000pt;}
.w0_c00255{width:1122.560000pt;}
.w1_c00255{width:1122.666667pt;}
.x0_c00255{left:0.000000pt;}
.x5_c00255{left:6.708000pt;}
.x4_c00255{left:106.604000pt;}
.x3_c00255{left:113.324000pt;}
.x1_c00255{left:137.306667pt;}
.x6_c00255{left:408.453333pt;}
.x7_c00255{left:710.320000pt;}
.x2_c00255{left:1002.213333pt;}
}





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

.ir_c00256:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00256;src:url('chunks/assets/font_fd8b3a750c8801c1a86220b2.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_3ebf673156be9654407eec75.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_833c876038385673e0b8cf03.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00256;src:url('chunks/assets/font_3f3bb23a6cd63b44cb99560f.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;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_c00256;src:url('chunks/assets/font_e2dd9cbb51975566b7fa1e8b.woff2')format("woff");}.ff6_c00256{font-family:ff6_c00256;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls1a_c00256{letter-spacing:-1.740000px;}
.ls16_c00256{letter-spacing:-1.416000px;}
.lsf_c00256{letter-spacing:-1.380000px;}
.ls13_c00256{letter-spacing:-1.128000px;}
.ls1b_c00256{letter-spacing:-1.056000px;}
.ls15_c00256{letter-spacing:-0.918000px;}
.ls19_c00256{letter-spacing:-0.912000px;}
.lsb_c00256{letter-spacing:-0.810000px;}
.lsc_c00256{letter-spacing:-0.720000px;}
.ls12_c00256{letter-spacing:-0.532800px;}
.ls14_c00256{letter-spacing:-0.429000px;}
.ls18_c00256{letter-spacing:-0.241800px;}
.ls11_c00256{letter-spacing:-0.169800px;}
.lsa_c00256{letter-spacing:0.000000px;}
.ls7_c00256{letter-spacing:0.020160px;}
.ls1_c00256{letter-spacing:0.022800px;}
.ls5_c00256{letter-spacing:0.048960px;}
.lsd_c00256{letter-spacing:0.166800px;}
.ls4_c00256{letter-spacing:0.168480px;}
.ls6_c00256{letter-spacing:0.287040px;}
.ls9_c00256{letter-spacing:0.302400px;}
.ls17_c00256{letter-spacing:0.466800px;}
.ls2_c00256{letter-spacing:0.518400px;}
.ls10_c00256{letter-spacing:0.521400px;}
.ls1c_c00256{letter-spacing:0.529800px;}
.ls3_c00256{letter-spacing:0.696000px;}
.lse_c00256{letter-spacing:0.702000px;}
.ls0_c00256{letter-spacing:0.720000px;}
.ls8_c00256{letter-spacing:0.840000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00256{word-spacing:-60.480000px;}
.ws3_c00256{word-spacing:-15.822000px;}
.wsf_c00256{word-spacing:-15.649800px;}
.ws7_c00256{word-spacing:-15.641400px;}
.ws2_c00256{word-spacing:-15.286800px;}
.ws4_c00256{word-spacing:-15.142800px;}
.ws0_c00256{word-spacing:-15.120000px;}
.ws8_c00256{word-spacing:-14.950200px;}
.wsd_c00256{word-spacing:-14.878200px;}
.wsb_c00256{word-spacing:-14.691000px;}
.ws9_c00256{word-spacing:-14.587200px;}
.ws1_c00256{word-spacing:-14.310000px;}
.wsc_c00256{word-spacing:-14.202000px;}
.wsa_c00256{word-spacing:-13.992000px;}
.ws5_c00256{word-spacing:-13.740000px;}
.wse_c00256{word-spacing:-13.380000px;}
.ws10_c00256{word-spacing:0.000000px;}
._2_c00256{margin-left:-3.075118px;}
._0_c00256{margin-left:-1.512718px;}
._1_c00256{width:1.359836px;}
.fc0_c00256{color:rgb(0,0,0);}
.fs1_c00256{font-size:60.480000px;}
.fs0_c00256{font-size:72.000000px;}
.y0_c00256{bottom:0.000000px;}
.y3_c00256{bottom:4.320000px;}
.y6_c00256{bottom:4.680000px;}
.y1f_c00256{bottom:12.589500px;}
.y5_c00256{bottom:25.236000px;}
.y4_c00256{bottom:32.040000px;}
.y1e_c00256{bottom:38.149500px;}
.y1_c00256{bottom:57.636000px;}
.y1d_c00256{bottom:63.709500px;}
.y22_c00256{bottom:64.069500px;}
.y1c_c00256{bottom:90.019500px;}
.y1b_c00256{bottom:115.939500px;}
.y1a_c00256{bottom:141.859500px;}
.y7_c00256{bottom:143.725500px;}
.y19_c00256{bottom:167.779500px;}
.y18_c00256{bottom:193.744500px;}
.y17_c00256{bottom:219.304500px;}
.y21_c00256{bottom:219.664500px;}
.y16_c00256{bottom:245.224500px;}
.y15_c00256{bottom:271.174500px;}
.y14_c00256{bottom:297.094500px;}
.y13_c00256{bottom:323.014500px;}
.y12_c00256{bottom:348.964500px;}
.y11_c00256{bottom:374.884500px;}
.y10_c00256{bottom:400.804500px;}
.yf_c00256{bottom:426.364500px;}
.ye_c00256{bottom:452.329500px;}
.yd_c00256{bottom:478.249500px;}
.yc_c00256{bottom:503.809500px;}
.y20_c00256{bottom:504.169500px;}
.yb_c00256{bottom:530.119500px;}
.ya_c00256{bottom:556.039500px;}
.y9_c00256{bottom:581.959500px;}
.y8_c00256{bottom:607.879500px;}
.y2_c00256{bottom:819.330000px;}
.h3_c00256{height:20.505000px;}
.h4_c00256{height:41.436000px;}
.h6_c00256{height:59.357813px;}
.h7_c00256{height:60.952500px;}
.h2_c00256{height:64.546875px;}
.h8_c00256{height:70.664062px;}
.h5_c00256{height:621.225000px;}
.h0_c00256{height:893.160000px;}
.h1_c00256{height:893.250000px;}
.w2_c00256{width:8.265000px;}
.w6_c00256{width:338.805000px;}
.w4_c00256{width:338.850000px;}
.w5_c00256{width:338.865000px;}
.w3_c00256{width:1008.270000px;}
.w0_c00256{width:1262.880000px;}
.w1_c00256{width:1263.000000px;}
.x0_c00256{left:0.000000px;}
.x5_c00256{left:7.546500px;}
.x4_c00256{left:119.929500px;}
.x3_c00256{left:127.489500px;}
.x1_c00256{left:154.470000px;}
.x6_c00256{left:459.510000px;}
.x7_c00256{left:799.110000px;}
.x2_c00256{left:1127.490000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls1a_c00256{letter-spacing:-1.546667pt;}
.ls16_c00256{letter-spacing:-1.258667pt;}
.lsf_c00256{letter-spacing:-1.226667pt;}
.ls13_c00256{letter-spacing:-1.002667pt;}
.ls1b_c00256{letter-spacing:-0.938667pt;}
.ls15_c00256{letter-spacing:-0.816000pt;}
.ls19_c00256{letter-spacing:-0.810667pt;}
.lsb_c00256{letter-spacing:-0.720000pt;}
.lsc_c00256{letter-spacing:-0.640000pt;}
.ls12_c00256{letter-spacing:-0.473600pt;}
.ls14_c00256{letter-spacing:-0.381333pt;}
.ls18_c00256{letter-spacing:-0.214933pt;}
.ls11_c00256{letter-spacing:-0.150933pt;}
.lsa_c00256{letter-spacing:0.000000pt;}
.ls7_c00256{letter-spacing:0.017920pt;}
.ls1_c00256{letter-spacing:0.020267pt;}
.ls5_c00256{letter-spacing:0.043520pt;}
.lsd_c00256{letter-spacing:0.148267pt;}
.ls4_c00256{letter-spacing:0.149760pt;}
.ls6_c00256{letter-spacing:0.255147pt;}
.ls9_c00256{letter-spacing:0.268800pt;}
.ls17_c00256{letter-spacing:0.414933pt;}
.ls2_c00256{letter-spacing:0.460800pt;}
.ls10_c00256{letter-spacing:0.463467pt;}
.ls1c_c00256{letter-spacing:0.470933pt;}
.ls3_c00256{letter-spacing:0.618667pt;}
.lse_c00256{letter-spacing:0.624000pt;}
.ls0_c00256{letter-spacing:0.640000pt;}
.ls8_c00256{letter-spacing:0.746667pt;}
.ws6_c00256{word-spacing:-53.760000pt;}
.ws3_c00256{word-spacing:-14.064000pt;}
.wsf_c00256{word-spacing:-13.910933pt;}
.ws7_c00256{word-spacing:-13.903467pt;}
.ws2_c00256{word-spacing:-13.588267pt;}
.ws4_c00256{word-spacing:-13.460267pt;}
.ws0_c00256{word-spacing:-13.440000pt;}
.ws8_c00256{word-spacing:-13.289067pt;}
.wsd_c00256{word-spacing:-13.225067pt;}
.wsb_c00256{word-spacing:-13.058667pt;}
.ws9_c00256{word-spacing:-12.966400pt;}
.ws1_c00256{word-spacing:-12.720000pt;}
.wsc_c00256{word-spacing:-12.624000pt;}
.wsa_c00256{word-spacing:-12.437333pt;}
.ws5_c00256{word-spacing:-12.213333pt;}
.wse_c00256{word-spacing:-11.893333pt;}
.ws10_c00256{word-spacing:0.000000pt;}
._2_c00256{margin-left:-2.733438pt;}
._0_c00256{margin-left:-1.344638pt;}
._1_c00256{width:1.208743pt;}
.fs1_c00256{font-size:53.760000pt;}
.fs0_c00256{font-size:64.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y3_c00256{bottom:3.840000pt;}
.y6_c00256{bottom:4.160000pt;}
.y1f_c00256{bottom:11.190667pt;}
.y5_c00256{bottom:22.432000pt;}
.y4_c00256{bottom:28.480000pt;}
.y1e_c00256{bottom:33.910667pt;}
.y1_c00256{bottom:51.232000pt;}
.y1d_c00256{bottom:56.630667pt;}
.y22_c00256{bottom:56.950667pt;}
.y1c_c00256{bottom:80.017333pt;}
.y1b_c00256{bottom:103.057333pt;}
.y1a_c00256{bottom:126.097333pt;}
.y7_c00256{bottom:127.756000pt;}
.y19_c00256{bottom:149.137333pt;}
.y18_c00256{bottom:172.217333pt;}
.y17_c00256{bottom:194.937333pt;}
.y21_c00256{bottom:195.257333pt;}
.y16_c00256{bottom:217.977333pt;}
.y15_c00256{bottom:241.044000pt;}
.y14_c00256{bottom:264.084000pt;}
.y13_c00256{bottom:287.124000pt;}
.y12_c00256{bottom:310.190667pt;}
.y11_c00256{bottom:333.230667pt;}
.y10_c00256{bottom:356.270667pt;}
.yf_c00256{bottom:378.990667pt;}
.ye_c00256{bottom:402.070667pt;}
.yd_c00256{bottom:425.110667pt;}
.yc_c00256{bottom:447.830667pt;}
.y20_c00256{bottom:448.150667pt;}
.yb_c00256{bottom:471.217333pt;}
.ya_c00256{bottom:494.257333pt;}
.y9_c00256{bottom:517.297333pt;}
.y8_c00256{bottom:540.337333pt;}
.y2_c00256{bottom:728.293333pt;}
.h3_c00256{height:18.226667pt;}
.h4_c00256{height:36.832000pt;}
.h6_c00256{height:52.762500pt;}
.h7_c00256{height:54.180000pt;}
.h2_c00256{height:57.375000pt;}
.h8_c00256{height:62.812500pt;}
.h5_c00256{height:552.200000pt;}
.h0_c00256{height:793.920000pt;}
.h1_c00256{height:794.000000pt;}
.w2_c00256{width:7.346667pt;}
.w6_c00256{width:301.160000pt;}
.w4_c00256{width:301.200000pt;}
.w5_c00256{width:301.213333pt;}
.w3_c00256{width:896.240000pt;}
.w0_c00256{width:1122.560000pt;}
.w1_c00256{width:1122.666667pt;}
.x0_c00256{left:0.000000pt;}
.x5_c00256{left:6.708000pt;}
.x4_c00256{left:106.604000pt;}
.x3_c00256{left:113.324000pt;}
.x1_c00256{left:137.306667pt;}
.x6_c00256{left:408.453333pt;}
.x7_c00256{left:710.320000pt;}
.x2_c00256{left:1002.213333pt;}
}





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

.ir_c00257:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00257;src:url('chunks/assets/font_733f9686abf4c672552d4ec6.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_ba32fcc5c6fb04b77800e65c.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_5df92b46b99bdcb8567ba9b2.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00257;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00257;src:url('chunks/assets/font_cfc12ec7b87884120240bbaa.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;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_c00257;src:url('chunks/assets/font_bd92147b8d8ccf287d7d693a.woff2')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls9_c00257{letter-spacing:-1.680000px;}
.ls8_c00257{letter-spacing:-1.416000px;}
.ls4_c00257{letter-spacing:-0.302400px;}
.ls3_c00257{letter-spacing:0.000000px;}
.ls2_c00257{letter-spacing:0.020160px;}
.ls5_c00257{letter-spacing:0.022800px;}
.ls7_c00257{letter-spacing:0.060600px;}
.ls1_c00257{letter-spacing:0.518400px;}
.ls6_c00257{letter-spacing:0.529800px;}
.ls0_c00257{letter-spacing:0.720000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00257{word-spacing:-60.480000px;}
.ws2_c00257{word-spacing:-15.180600px;}
.ws0_c00257{word-spacing:-15.120000px;}
.ws1_c00257{word-spacing:-14.817600px;}
.ws4_c00257{word-spacing:-13.440000px;}
.ws5_c00257{word-spacing:0.000000px;}
._2_c00257{margin-left:-2.329319px;}
._0_c00257{margin-left:-1.221120px;}
._1_c00257{width:1.249799px;}
.fc0_c00257{color:rgb(0,0,0);}
.fs1_c00257{font-size:60.480000px;}
.fs0_c00257{font-size:72.000000px;}
.y0_c00257{bottom:0.000000px;}
.y3_c00257{bottom:4.320000px;}
.y6_c00257{bottom:4.680000px;}
.y11_c00257{bottom:12.585000px;}
.y5_c00257{bottom:25.236000px;}
.y4_c00257{bottom:32.040000px;}
.y10_c00257{bottom:38.505000px;}
.y1_c00257{bottom:57.636000px;}
.yf_c00257{bottom:64.065000px;}
.ye_c00257{bottom:90.030000px;}
.yd_c00257{bottom:115.950000px;}
.yc_c00257{bottom:141.510000px;}
.yb_c00257{bottom:167.820000px;}
.ya_c00257{bottom:193.740000px;}
.y9_c00257{bottom:219.660000px;}
.y8_c00257{bottom:245.580000px;}
.y12_c00257{bottom:489.060000px;}
.y7_c00257{bottom:506.025000px;}
.y2_c00257{bottom:819.330000px;}
.h3_c00257{height:20.505000px;}
.h4_c00257{height:41.436000px;}
.h6_c00257{height:60.952500px;}
.h2_c00257{height:64.546875px;}
.h7_c00257{height:70.664062px;}
.h5_c00257{height:258.930000px;}
.h0_c00257{height:893.160000px;}
.h1_c00257{height:893.250000px;}
.w2_c00257{width:8.265000px;}
.w4_c00257{width:338.850000px;}
.w3_c00257{width:1008.270000px;}
.w0_c00257{width:1262.880000px;}
.w1_c00257{width:1263.000000px;}
.x0_c00257{left:0.000000px;}
.x5_c00257{left:7.546500px;}
.x4_c00257{left:119.929500px;}
.x3_c00257{left:127.489500px;}
.x1_c00257{left:154.470000px;}
.x6_c00257{left:178.590000px;}
.x2_c00257{left:1127.490000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls9_c00257{letter-spacing:-1.493333pt;}
.ls8_c00257{letter-spacing:-1.258667pt;}
.ls4_c00257{letter-spacing:-0.268800pt;}
.ls3_c00257{letter-spacing:0.000000pt;}
.ls2_c00257{letter-spacing:0.017920pt;}
.ls5_c00257{letter-spacing:0.020267pt;}
.ls7_c00257{letter-spacing:0.053867pt;}
.ls1_c00257{letter-spacing:0.460800pt;}
.ls6_c00257{letter-spacing:0.470933pt;}
.ls0_c00257{letter-spacing:0.640000pt;}
.ws3_c00257{word-spacing:-53.760000pt;}
.ws2_c00257{word-spacing:-13.493867pt;}
.ws0_c00257{word-spacing:-13.440000pt;}
.ws1_c00257{word-spacing:-13.171200pt;}
.ws4_c00257{word-spacing:-11.946667pt;}
.ws5_c00257{word-spacing:0.000000pt;}
._2_c00257{margin-left:-2.070506pt;}
._0_c00257{margin-left:-1.085440pt;}
._1_c00257{width:1.110932pt;}
.fs1_c00257{font-size:53.760000pt;}
.fs0_c00257{font-size:64.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y3_c00257{bottom:3.840000pt;}
.y6_c00257{bottom:4.160000pt;}
.y11_c00257{bottom:11.186667pt;}
.y5_c00257{bottom:22.432000pt;}
.y4_c00257{bottom:28.480000pt;}
.y10_c00257{bottom:34.226667pt;}
.y1_c00257{bottom:51.232000pt;}
.yf_c00257{bottom:56.946667pt;}
.ye_c00257{bottom:80.026667pt;}
.yd_c00257{bottom:103.066667pt;}
.yc_c00257{bottom:125.786667pt;}
.yb_c00257{bottom:149.173333pt;}
.ya_c00257{bottom:172.213333pt;}
.y9_c00257{bottom:195.253333pt;}
.y8_c00257{bottom:218.293333pt;}
.y12_c00257{bottom:434.720000pt;}
.y7_c00257{bottom:449.800000pt;}
.y2_c00257{bottom:728.293333pt;}
.h3_c00257{height:18.226667pt;}
.h4_c00257{height:36.832000pt;}
.h6_c00257{height:54.180000pt;}
.h2_c00257{height:57.375000pt;}
.h7_c00257{height:62.812500pt;}
.h5_c00257{height:230.160000pt;}
.h0_c00257{height:793.920000pt;}
.h1_c00257{height:794.000000pt;}
.w2_c00257{width:7.346667pt;}
.w4_c00257{width:301.200000pt;}
.w3_c00257{width:896.240000pt;}
.w0_c00257{width:1122.560000pt;}
.w1_c00257{width:1122.666667pt;}
.x0_c00257{left:0.000000pt;}
.x5_c00257{left:6.708000pt;}
.x4_c00257{left:106.604000pt;}
.x3_c00257{left:113.324000pt;}
.x1_c00257{left:137.306667pt;}
.x6_c00257{left:158.746667pt;}
.x2_c00257{left:1002.213333pt;}
}





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

.ir_c00258:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00258;src:url('chunks/assets/font_3ca533ddabced46a42098160.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_6b08930f57b74ea7a930b16f.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_a78d21f5894e8cfd3d691439.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_f3938c0b72a11d59d93a1c58.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_fb19618918bfeabfe3e85878.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00258;src:url('chunks/assets/font_0fc51dc9aec922e363ae6386.woff2')format("woff");}.ff6_c00258{font-family:ff6_c00258;line-height:1.104004;font-style:normal;font-weight: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_c00258;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00258{font-family:ff7_c00258;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls9_c00258{letter-spacing:-2.880000px;}
.lsd_c00258{letter-spacing:-1.680000px;}
.ls7_c00258{letter-spacing:-1.416000px;}
.ls6_c00258{letter-spacing:-1.404000px;}
.lsc_c00258{letter-spacing:-1.272000px;}
.lsa_c00258{letter-spacing:-0.532800px;}
.ls4_c00258{letter-spacing:0.000000px;}
.ls8_c00258{letter-spacing:0.022800px;}
.ls0_c00258{letter-spacing:0.120000px;}
.lsb_c00258{letter-spacing:0.166800px;}
.ls5_c00258{letter-spacing:0.521400px;}
.ls1_c00258{letter-spacing:0.720000px;}
.ls3_c00258{letter-spacing:0.840000px;}
.ls2_c00258{letter-spacing:16.560000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00258{word-spacing:-60.480000px;}
.ws3_c00258{word-spacing:-18.000000px;}
.ws1_c00258{word-spacing:-15.641400px;}
.ws4_c00258{word-spacing:-15.286800px;}
.ws0_c00258{word-spacing:-15.120000px;}
.ws5_c00258{word-spacing:-13.848000px;}
.ws6_c00258{word-spacing:-13.440000px;}
.ws7_c00258{word-spacing:0.000000px;}
._2_c00258{margin-left:-2.652000px;}
._1_c00258{margin-left:-1.440000px;}
._0_c00258{width:1.296000px;}
._3_c00258{width:2.808000px;}
._5_c00258{width:3.991801px;}
._8_c00258{width:5.008199px;}
._9_c00258{width:6.324601px;}
._6_c00258{width:8.830201px;}
._7_c00258{width:10.270201px;}
._10_c00258{width:11.304000px;}
._11_c00258{width:12.403196px;}
._f_c00258{width:14.364000px;}
._d_c00258{width:16.116000px;}
._e_c00258{width:19.572000px;}
._c_c00258{width:23.436000px;}
._b_c00258{width:25.079976px;}
._a_c00258{width:151.932024px;}
._4_c00258{width:397.526880px;}
.fc0_c00258{color:rgb(0,0,0);}
.fs3_c00258{font-size:38.880000px;}
.fs2_c00258{font-size:47.520000px;}
.fs1_c00258{font-size:60.480000px;}
.fs0_c00258{font-size:72.000000px;}
.y0_c00258{bottom:0.000000px;}
.y3_c00258{bottom:4.320000px;}
.y6_c00258{bottom:4.680000px;}
.y5_c00258{bottom:25.200000px;}
.y4_c00258{bottom:32.040000px;}
.y1_c00258{bottom:57.240000px;}
.y2b_c00258{bottom:110.556000px;}
.y2a_c00258{bottom:130.716000px;}
.y29_c00258{bottom:147.996000px;}
.y28_c00258{bottom:154.830000px;}
.y27_c00258{bottom:165.630000px;}
.y25_c00258{bottom:198.390000px;}
.y26_c00258{bottom:206.670000px;}
.y24_c00258{bottom:229.350000px;}
.y23_c00258{bottom:260.355000px;}
.y22_c00258{bottom:291.675000px;}
.y21_c00258{bottom:322.635000px;}
.y20_c00258{bottom:353.625000px;}
.y1f_c00258{bottom:384.585000px;}
.y1e_c00258{bottom:424.905000px;}
.y1d_c00258{bottom:455.865000px;}
.y1c_c00258{bottom:486.870000px;}
.y1b_c00258{bottom:517.830000px;}
.y1a_c00258{bottom:549.150000px;}
.y19_c00258{bottom:586.590000px;}
.y18_c00258{bottom:612.540000px;}
.y17_c00258{bottom:638.460000px;}
.y16_c00258{bottom:664.380000px;}
.y15_c00258{bottom:690.300000px;}
.y14_c00258{bottom:716.220000px;}
.y13_c00258{bottom:751.170000px;}
.y12_c00258{bottom:777.090000px;}
.y11_c00258{bottom:802.650000px;}
.y10_c00258{bottom:828.570000px;}
.yf_c00258{bottom:854.535000px;}
.ye_c00258{bottom:880.455000px;}
.yd_c00258{bottom:906.375000px;}
.yc_c00258{bottom:932.295000px;}
.yb_c00258{bottom:958.215000px;}
.ya_c00258{bottom:984.165000px;}
.y9_c00258{bottom:1033.125000px;}
.y8_c00258{bottom:1085.370000px;}
.y7_c00258{bottom:1125.690000px;}
.y2_c00258{bottom:1189.050000px;}
.h3_c00258{height:20.550000px;}
.hc_c00258{height:38.158594px;}
.h4_c00258{height:41.395500px;}
.hb_c00258{height:46.638281px;}
.h8_c00258{height:59.328281px;}
.h7_c00258{height:59.357813px;}
.h2_c00258{height:64.546875px;}
.h5_c00258{height:70.628906px;}
.h6_c00258{height:70.664062px;}
.h9_c00258{height:72.562500px;}
.ha_c00258{height:1262.875500px;}
.h0_c00258{height:1262.880000px;}
.h1_c00258{height:1263.000000px;}
.w2_c00258{width:8.265000px;}
.w3_c00258{width:638.145000px;}
.w1_c00258{width:892.500000px;}
.w4_c00258{width:892.797000px;}
.w0_c00258{width:892.800000px;}
.x0_c00258{left:0.000000px;}
.x3_c00258{left:127.534500px;}
.xa_c00258{left:142.632000px;}
.x1_c00258{left:154.515000px;}
.x5_c00258{left:169.995000px;}
.x6_c00258{left:178.635000px;}
.x4_c00258{left:180.795000px;}
.x9_c00258{left:343.590000px;}
.x7_c00258{left:652.602000px;}
.x8_c00258{left:670.965000px;}
.x2_c00258{left:757.410000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls9_c00258{letter-spacing:-2.560000pt;}
.lsd_c00258{letter-spacing:-1.493333pt;}
.ls7_c00258{letter-spacing:-1.258667pt;}
.ls6_c00258{letter-spacing:-1.248000pt;}
.lsc_c00258{letter-spacing:-1.130667pt;}
.lsa_c00258{letter-spacing:-0.473600pt;}
.ls4_c00258{letter-spacing:0.000000pt;}
.ls8_c00258{letter-spacing:0.020267pt;}
.ls0_c00258{letter-spacing:0.106667pt;}
.lsb_c00258{letter-spacing:0.148267pt;}
.ls5_c00258{letter-spacing:0.463467pt;}
.ls1_c00258{letter-spacing:0.640000pt;}
.ls3_c00258{letter-spacing:0.746667pt;}
.ls2_c00258{letter-spacing:14.720000pt;}
.ws2_c00258{word-spacing:-53.760000pt;}
.ws3_c00258{word-spacing:-16.000000pt;}
.ws1_c00258{word-spacing:-13.903467pt;}
.ws4_c00258{word-spacing:-13.588267pt;}
.ws0_c00258{word-spacing:-13.440000pt;}
.ws5_c00258{word-spacing:-12.309333pt;}
.ws6_c00258{word-spacing:-11.946667pt;}
.ws7_c00258{word-spacing:0.000000pt;}
._2_c00258{margin-left:-2.357333pt;}
._1_c00258{margin-left:-1.280000pt;}
._0_c00258{width:1.152000pt;}
._3_c00258{width:2.496000pt;}
._5_c00258{width:3.548268pt;}
._8_c00258{width:4.451732pt;}
._9_c00258{width:5.621868pt;}
._6_c00258{width:7.849068pt;}
._7_c00258{width:9.129068pt;}
._10_c00258{width:10.048000pt;}
._11_c00258{width:11.025063pt;}
._f_c00258{width:12.768000pt;}
._d_c00258{width:14.325333pt;}
._e_c00258{width:17.397333pt;}
._c_c00258{width:20.832000pt;}
._b_c00258{width:22.293312pt;}
._a_c00258{width:135.050688pt;}
._4_c00258{width:353.357227pt;}
.fs3_c00258{font-size:34.560000pt;}
.fs2_c00258{font-size:42.240000pt;}
.fs1_c00258{font-size:53.760000pt;}
.fs0_c00258{font-size:64.000000pt;}
.y0_c00258{bottom:0.000000pt;}
.y3_c00258{bottom:3.840000pt;}
.y6_c00258{bottom:4.160000pt;}
.y5_c00258{bottom:22.400000pt;}
.y4_c00258{bottom:28.480000pt;}
.y1_c00258{bottom:50.880000pt;}
.y2b_c00258{bottom:98.272000pt;}
.y2a_c00258{bottom:116.192000pt;}
.y29_c00258{bottom:131.552000pt;}
.y28_c00258{bottom:137.626667pt;}
.y27_c00258{bottom:147.226667pt;}
.y25_c00258{bottom:176.346667pt;}
.y26_c00258{bottom:183.706667pt;}
.y24_c00258{bottom:203.866667pt;}
.y23_c00258{bottom:231.426667pt;}
.y22_c00258{bottom:259.266667pt;}
.y21_c00258{bottom:286.786667pt;}
.y20_c00258{bottom:314.333333pt;}
.y1f_c00258{bottom:341.853333pt;}
.y1e_c00258{bottom:377.693333pt;}
.y1d_c00258{bottom:405.213333pt;}
.y1c_c00258{bottom:432.773333pt;}
.y1b_c00258{bottom:460.293333pt;}
.y1a_c00258{bottom:488.133333pt;}
.y19_c00258{bottom:521.413333pt;}
.y18_c00258{bottom:544.480000pt;}
.y17_c00258{bottom:567.520000pt;}
.y16_c00258{bottom:590.560000pt;}
.y15_c00258{bottom:613.600000pt;}
.y14_c00258{bottom:636.640000pt;}
.y13_c00258{bottom:667.706667pt;}
.y12_c00258{bottom:690.746667pt;}
.y11_c00258{bottom:713.466667pt;}
.y10_c00258{bottom:736.506667pt;}
.yf_c00258{bottom:759.586667pt;}
.ye_c00258{bottom:782.626667pt;}
.yd_c00258{bottom:805.666667pt;}
.yc_c00258{bottom:828.706667pt;}
.yb_c00258{bottom:851.746667pt;}
.ya_c00258{bottom:874.813333pt;}
.y9_c00258{bottom:918.333333pt;}
.y8_c00258{bottom:964.773333pt;}
.y7_c00258{bottom:1000.613333pt;}
.y2_c00258{bottom:1056.933333pt;}
.h3_c00258{height:18.266667pt;}
.hc_c00258{height:33.918750pt;}
.h4_c00258{height:36.796000pt;}
.hb_c00258{height:41.456250pt;}
.h8_c00258{height:52.736250pt;}
.h7_c00258{height:52.762500pt;}
.h2_c00258{height:57.375000pt;}
.h5_c00258{height:62.781250pt;}
.h6_c00258{height:62.812500pt;}
.h9_c00258{height:64.500000pt;}
.ha_c00258{height:1122.556000pt;}
.h0_c00258{height:1122.560000pt;}
.h1_c00258{height:1122.666667pt;}
.w2_c00258{width:7.346667pt;}
.w3_c00258{width:567.240000pt;}
.w1_c00258{width:793.333333pt;}
.w4_c00258{width:793.597333pt;}
.w0_c00258{width:793.600000pt;}
.x0_c00258{left:0.000000pt;}
.x3_c00258{left:113.364000pt;}
.xa_c00258{left:126.784000pt;}
.x1_c00258{left:137.346667pt;}
.x5_c00258{left:151.106667pt;}
.x6_c00258{left:158.786667pt;}
.x4_c00258{left:160.706667pt;}
.x9_c00258{left:305.413333pt;}
.x7_c00258{left:580.090667pt;}
.x8_c00258{left:596.413333pt;}
.x2_c00258{left:673.253333pt;}
}





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

.ir_c00259:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00259;src:url('chunks/assets/font_164c880a42b6dc53350b7c14.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_7ffba13ba1aa0d892823ec71.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_d8f268c4c8baf54a11fa0d55.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_37fcd503f07a74485dd25df0.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;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_c00259;src:url('chunks/assets/font_ecc49f597e0c6b2710d0b327.woff2')format("woff");}.ff5_c00259{font-family:ff5_c00259;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00259{vertical-align:-33.120000px;}
.v0_c00259{vertical-align:0.000000px;}
.lsb_c00259{letter-spacing:-1.680000px;}
.lsc_c00259{letter-spacing:-1.272000px;}
.lsa_c00259{letter-spacing:-0.924000px;}
.ls8_c00259{letter-spacing:-0.720000px;}
.lsd_c00259{letter-spacing:-0.429000px;}
.ls10_c00259{letter-spacing:-0.241800px;}
.ls6_c00259{letter-spacing:0.000000px;}
.ls12_c00259{letter-spacing:0.020400px;}
.ls11_c00259{letter-spacing:0.022800px;}
.ls9_c00259{letter-spacing:0.166800px;}
.lse_c00259{letter-spacing:0.507000px;}
.ls5_c00259{letter-spacing:0.518400px;}
.lsf_c00259{letter-spacing:0.521400px;}
.ls1_c00259{letter-spacing:0.720000px;}
.ls4_c00259{letter-spacing:0.742882px;}
.ls2_c00259{letter-spacing:0.743040px;}
.ls3_c00259{letter-spacing:0.840000px;}
.ls7_c00259{letter-spacing:2.160000px;}
.ls0_c00259{letter-spacing:25.560000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:-18.000000px;}
.ws8_c00259{word-spacing:-15.641400px;}
.wsb_c00259{word-spacing:-15.638400px;}
.ws7_c00259{word-spacing:-15.627000px;}
.ws2_c00259{word-spacing:-15.286800px;}
.wsa_c00259{word-spacing:-15.142800px;}
.wsc_c00259{word-spacing:-15.140400px;}
.ws1_c00259{word-spacing:-15.120000px;}
.ws9_c00259{word-spacing:-14.878200px;}
.ws6_c00259{word-spacing:-14.691000px;}
.ws3_c00259{word-spacing:-14.196000px;}
.ws5_c00259{word-spacing:-13.848000px;}
.ws4_c00259{word-spacing:-13.440000px;}
.wsd_c00259{word-spacing:0.000000px;}
._3_c00259{margin-left:-2.736000px;}
._1_c00259{margin-left:-1.440000px;}
._2_c00259{width:1.080000px;}
._5_c00259{width:2.183976px;}
._9_c00259{width:3.191952px;}
._8_c00259{width:4.224024px;}
._7_c00259{width:5.904024px;}
._6_c00259{width:6.912000px;}
._0_c00259{width:9.000000px;}
._4_c00259{width:11.016000px;}
._e_c00259{width:12.600000px;}
._11_c00259{width:14.352048px;}
._f_c00259{width:15.768000px;}
._10_c00259{width:16.776000px;}
._d_c00259{width:21.960000px;}
._c_c00259{width:24.624000px;}
._a_c00259{width:26.280000px;}
._b_c00259{width:27.720000px;}
.fc1_c00259{color:rgb(255,0,0);}
.fc0_c00259{color:rgb(0,0,0);}
.fs3_c00259{font-size:38.880000px;}
.fs1_c00259{font-size:47.520000px;}
.fs2_c00259{font-size:60.480000px;}
.fs0_c00259{font-size:72.000000px;}
.y0_c00259{bottom:0.000000px;}
.y3_c00259{bottom:4.320000px;}
.y6_c00259{bottom:4.680000px;}
.y5_c00259{bottom:25.200000px;}
.y4_c00259{bottom:32.040000px;}
.y1_c00259{bottom:57.240000px;}
.y37_c00259{bottom:130.716000px;}
.y36_c00259{bottom:147.996000px;}
.y35_c00259{bottom:165.270000px;}
.y34_c00259{bottom:172.110000px;}
.y33_c00259{bottom:182.550000px;}
.y32_c00259{bottom:199.830000px;}
.y31_c00259{bottom:216.750000px;}
.y30_c00259{bottom:234.075000px;}
.y2f_c00259{bottom:251.355000px;}
.y2e_c00259{bottom:268.635000px;}
.y2d_c00259{bottom:275.475000px;}
.y2c_c00259{bottom:285.915000px;}
.y2b_c00259{bottom:303.195000px;}
.y2a_c00259{bottom:320.475000px;}
.y29_c00259{bottom:337.755000px;}
.y28_c00259{bottom:355.065000px;}
.y27_c00259{bottom:372.345000px;}
.y26_c00259{bottom:379.185000px;}
.y25_c00259{bottom:389.625000px;}
.y24_c00259{bottom:406.905000px;}
.y23_c00259{bottom:423.825000px;}
.y22_c00259{bottom:441.105000px;}
.y21_c00259{bottom:458.385000px;}
.y20_c00259{bottom:475.710000px;}
.y1f_c00259{bottom:492.990000px;}
.y1e_c00259{bottom:510.990000px;}
.y1d_c00259{bottom:541.230000px;}
.y1c_c00259{bottom:572.190000px;}
.y1a_c00259{bottom:603.180000px;}
.y1b_c00259{bottom:611.460000px;}
.y19_c00259{bottom:634.500000px;}
.y18_c00259{bottom:665.460000px;}
.y16_c00259{bottom:696.420000px;}
.y17_c00259{bottom:704.700000px;}
.y15_c00259{bottom:727.410000px;}
.y14_c00259{bottom:758.730000px;}
.y13_c00259{bottom:789.690000px;}
.y12_c00259{bottom:820.650000px;}
.y11_c00259{bottom:851.655000px;}
.y10_c00259{bottom:891.975000px;}
.yf_c00259{bottom:922.935000px;}
.ye_c00259{bottom:953.895000px;}
.yc_c00259{bottom:984.885000px;}
.yd_c00259{bottom:993.165000px;}
.yb_c00259{bottom:1016.205000px;}
.ya_c00259{bottom:1047.165000px;}
.y9_c00259{bottom:1078.125000px;}
.y8_c00259{bottom:1109.130000px;}
.y7_c00259{bottom:1140.450000px;}
.y2_c00259{bottom:1189.050000px;}
.h3_c00259{height:20.550000px;}
.ha_c00259{height:38.158594px;}
.h4_c00259{height:41.395500px;}
.h7_c00259{height:46.638281px;}
.h9_c00259{height:59.328281px;}
.h8_c00259{height:59.357813px;}
.h2_c00259{height:64.546875px;}
.h5_c00259{height:70.664062px;}
.h6_c00259{height:1262.875500px;}
.h0_c00259{height:1262.880000px;}
.h1_c00259{height:1263.000000px;}
.w2_c00259{width:8.265000px;}
.w3_c00259{width:638.145000px;}
.w1_c00259{width:892.500000px;}
.w4_c00259{width:892.797000px;}
.w0_c00259{width:892.800000px;}
.x0_c00259{left:0.000000px;}
.x3_c00259{left:127.534500px;}
.xc_c00259{left:142.632000px;}
.x1_c00259{left:154.515000px;}
.x6_c00259{left:169.995000px;}
.x4_c00259{left:278.022000px;}
.x5_c00259{left:296.430000px;}
.x7_c00259{left:399.057000px;}
.x8_c00259{left:417.420000px;}
.x9_c00259{left:743.007000px;}
.x2_c00259{left:757.410000px;}
.xa_c00259{left:761.370000px;}
.xb_c00259{left:765.690000px;}
@media print{
.v1_c00259{vertical-align:-29.440000pt;}
.v0_c00259{vertical-align:0.000000pt;}
.lsb_c00259{letter-spacing:-1.493333pt;}
.lsc_c00259{letter-spacing:-1.130667pt;}
.lsa_c00259{letter-spacing:-0.821333pt;}
.ls8_c00259{letter-spacing:-0.640000pt;}
.lsd_c00259{letter-spacing:-0.381333pt;}
.ls10_c00259{letter-spacing:-0.214933pt;}
.ls6_c00259{letter-spacing:0.000000pt;}
.ls12_c00259{letter-spacing:0.018133pt;}
.ls11_c00259{letter-spacing:0.020267pt;}
.ls9_c00259{letter-spacing:0.148267pt;}
.lse_c00259{letter-spacing:0.450667pt;}
.ls5_c00259{letter-spacing:0.460800pt;}
.lsf_c00259{letter-spacing:0.463467pt;}
.ls1_c00259{letter-spacing:0.640000pt;}
.ls4_c00259{letter-spacing:0.660339pt;}
.ls2_c00259{letter-spacing:0.660480pt;}
.ls3_c00259{letter-spacing:0.746667pt;}
.ls7_c00259{letter-spacing:1.920000pt;}
.ls0_c00259{letter-spacing:22.720000pt;}
.ws0_c00259{word-spacing:-16.000000pt;}
.ws8_c00259{word-spacing:-13.903467pt;}
.wsb_c00259{word-spacing:-13.900800pt;}
.ws7_c00259{word-spacing:-13.890667pt;}
.ws2_c00259{word-spacing:-13.588267pt;}
.wsa_c00259{word-spacing:-13.460267pt;}
.wsc_c00259{word-spacing:-13.458133pt;}
.ws1_c00259{word-spacing:-13.440000pt;}
.ws9_c00259{word-spacing:-13.225067pt;}
.ws6_c00259{word-spacing:-13.058667pt;}
.ws3_c00259{word-spacing:-12.618667pt;}
.ws5_c00259{word-spacing:-12.309333pt;}
.ws4_c00259{word-spacing:-11.946667pt;}
.wsd_c00259{word-spacing:0.000000pt;}
._3_c00259{margin-left:-2.432000pt;}
._1_c00259{margin-left:-1.280000pt;}
._2_c00259{width:0.960000pt;}
._5_c00259{width:1.941312pt;}
._9_c00259{width:2.837291pt;}
._8_c00259{width:3.754688pt;}
._7_c00259{width:5.248021pt;}
._6_c00259{width:6.144000pt;}
._0_c00259{width:8.000000pt;}
._4_c00259{width:9.792000pt;}
._e_c00259{width:11.200000pt;}
._11_c00259{width:12.757376pt;}
._f_c00259{width:14.016000pt;}
._10_c00259{width:14.912000pt;}
._d_c00259{width:19.520000pt;}
._c_c00259{width:21.888000pt;}
._a_c00259{width:23.360000pt;}
._b_c00259{width:24.640000pt;}
.fs3_c00259{font-size:34.560000pt;}
.fs1_c00259{font-size:42.240000pt;}
.fs2_c00259{font-size:53.760000pt;}
.fs0_c00259{font-size:64.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y3_c00259{bottom:3.840000pt;}
.y6_c00259{bottom:4.160000pt;}
.y5_c00259{bottom:22.400000pt;}
.y4_c00259{bottom:28.480000pt;}
.y1_c00259{bottom:50.880000pt;}
.y37_c00259{bottom:116.192000pt;}
.y36_c00259{bottom:131.552000pt;}
.y35_c00259{bottom:146.906667pt;}
.y34_c00259{bottom:152.986667pt;}
.y33_c00259{bottom:162.266667pt;}
.y32_c00259{bottom:177.626667pt;}
.y31_c00259{bottom:192.666667pt;}
.y30_c00259{bottom:208.066667pt;}
.y2f_c00259{bottom:223.426667pt;}
.y2e_c00259{bottom:238.786667pt;}
.y2d_c00259{bottom:244.866667pt;}
.y2c_c00259{bottom:254.146667pt;}
.y2b_c00259{bottom:269.506667pt;}
.y2a_c00259{bottom:284.866667pt;}
.y29_c00259{bottom:300.226667pt;}
.y28_c00259{bottom:315.613333pt;}
.y27_c00259{bottom:330.973333pt;}
.y26_c00259{bottom:337.053333pt;}
.y25_c00259{bottom:346.333333pt;}
.y24_c00259{bottom:361.693333pt;}
.y23_c00259{bottom:376.733333pt;}
.y22_c00259{bottom:392.093333pt;}
.y21_c00259{bottom:407.453333pt;}
.y20_c00259{bottom:422.853333pt;}
.y1f_c00259{bottom:438.213333pt;}
.y1e_c00259{bottom:454.213333pt;}
.y1d_c00259{bottom:481.093333pt;}
.y1c_c00259{bottom:508.613333pt;}
.y1a_c00259{bottom:536.160000pt;}
.y1b_c00259{bottom:543.520000pt;}
.y19_c00259{bottom:564.000000pt;}
.y18_c00259{bottom:591.520000pt;}
.y16_c00259{bottom:619.040000pt;}
.y17_c00259{bottom:626.400000pt;}
.y15_c00259{bottom:646.586667pt;}
.y14_c00259{bottom:674.426667pt;}
.y13_c00259{bottom:701.946667pt;}
.y12_c00259{bottom:729.466667pt;}
.y11_c00259{bottom:757.026667pt;}
.y10_c00259{bottom:792.866667pt;}
.yf_c00259{bottom:820.386667pt;}
.ye_c00259{bottom:847.906667pt;}
.yc_c00259{bottom:875.453333pt;}
.yd_c00259{bottom:882.813333pt;}
.yb_c00259{bottom:903.293333pt;}
.ya_c00259{bottom:930.813333pt;}
.y9_c00259{bottom:958.333333pt;}
.y8_c00259{bottom:985.893333pt;}
.y7_c00259{bottom:1013.733333pt;}
.y2_c00259{bottom:1056.933333pt;}
.h3_c00259{height:18.266667pt;}
.ha_c00259{height:33.918750pt;}
.h4_c00259{height:36.796000pt;}
.h7_c00259{height:41.456250pt;}
.h9_c00259{height:52.736250pt;}
.h8_c00259{height:52.762500pt;}
.h2_c00259{height:57.375000pt;}
.h5_c00259{height:62.812500pt;}
.h6_c00259{height:1122.556000pt;}
.h0_c00259{height:1122.560000pt;}
.h1_c00259{height:1122.666667pt;}
.w2_c00259{width:7.346667pt;}
.w3_c00259{width:567.240000pt;}
.w1_c00259{width:793.333333pt;}
.w4_c00259{width:793.597333pt;}
.w0_c00259{width:793.600000pt;}
.x0_c00259{left:0.000000pt;}
.x3_c00259{left:113.364000pt;}
.xc_c00259{left:126.784000pt;}
.x1_c00259{left:137.346667pt;}
.x6_c00259{left:151.106667pt;}
.x4_c00259{left:247.130667pt;}
.x5_c00259{left:263.493333pt;}
.x7_c00259{left:354.717333pt;}
.x8_c00259{left:371.040000pt;}
.x9_c00259{left:660.450667pt;}
.x2_c00259{left:673.253333pt;}
.xa_c00259{left:676.773333pt;}
.xb_c00259{left:680.613333pt;}
}





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

.ir_c00260:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00260;src:url('chunks/assets/font_caf94a5f613a6fb582f2ed2c.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_e4e2d99b6429fe230f1acd48.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_6301a8d86daa3d133ebca0cf.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;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_c00260;src:url('chunks/assets/font_1b26976d71a5da5effb06b14.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00260;src:url('chunks/assets/font_a72b3a39f5cfb439a3a17391.woff2')format("woff");}.ff5_c00260{font-family:ff5_c00260;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00260;src:url('chunks/assets/font_15c5461d37d480e691ad0b30.woff2')format("woff");}.ff6_c00260{font-family:ff6_c00260;line-height:1.104004;font-style:normal;font-weight: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_c00260;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00260{font-family:ff7_c00260;line-height:1.311035;font-style:normal;font-weight: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_c00260;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff8_c00260{font-family:ff8_c00260;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls5_c00260{letter-spacing:0.000000px;}
.ls1_c00260{letter-spacing:0.120000px;}
.ls8_c00260{letter-spacing:0.166800px;}
.ls2_c00260{letter-spacing:0.180000px;}
.ls3_c00260{letter-spacing:0.302400px;}
.ls9_c00260{letter-spacing:0.529800px;}
.ls6_c00260{letter-spacing:0.630000px;}
.ls0_c00260{letter-spacing:0.720000px;}
.ls7_c00260{letter-spacing:1.140000px;}
.lsa_c00260{letter-spacing:2.160000px;}
.ls4_c00260{letter-spacing:3.600000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00260{word-spacing:-72.000000px;}
.ws4_c00260{word-spacing:-61.620000px;}
.ws5_c00260{word-spacing:-60.480000px;}
.ws0_c00260{word-spacing:-18.000000px;}
.ws3_c00260{word-spacing:-15.750000px;}
.ws6_c00260{word-spacing:-15.286800px;}
.ws2_c00260{word-spacing:-15.120000px;}
.ws7_c00260{word-spacing:0.000000px;}
._5_c00260{margin-left:-2.808000px;}
._0_c00260{margin-left:-1.728000px;}
._2_c00260{width:1.080000px;}
._4_c00260{width:2.088000px;}
._3_c00260{width:3.960000px;}
._1_c00260{width:4.968000px;}
._9_c00260{width:6.840000px;}
._8_c00260{width:7.920000px;}
._f_c00260{width:9.360000px;}
._a_c00260{width:10.728000px;}
._b_c00260{width:12.600000px;}
._e_c00260{width:14.040000px;}
._d_c00260{width:15.264000px;}
._c_c00260{width:16.776000px;}
._7_c00260{width:19.512000px;}
._6_c00260{width:20.952000px;}
.fc0_c00260{color:rgb(0,0,0);}
.fs3_c00260{font-size:38.880000px;}
.fs2_c00260{font-size:47.520000px;}
.fs1_c00260{font-size:60.480000px;}
.fs0_c00260{font-size:72.000000px;}
.y0_c00260{bottom:0.000000px;}
.y3_c00260{bottom:4.320000px;}
.y6_c00260{bottom:4.680000px;}
.y5_c00260{bottom:25.200000px;}
.y4_c00260{bottom:32.040000px;}
.y1_c00260{bottom:57.240000px;}
.y26_c00260{bottom:130.716000px;}
.y25_c00260{bottom:137.556000px;}
.y24_c00260{bottom:148.356000px;}
.y23_c00260{bottom:223.230000px;}
.y22_c00260{bottom:254.235000px;}
.y21_c00260{bottom:285.195000px;}
.y20_c00260{bottom:316.155000px;}
.y1f_c00260{bottom:347.475000px;}
.y1e_c00260{bottom:378.465000px;}
.y1d_c00260{bottom:416.265000px;}
.y1c_c00260{bottom:451.185000px;}
.y1b_c00260{bottom:477.150000px;}
.y1a_c00260{bottom:502.710000px;}
.y19_c00260{bottom:552.030000px;}
.y17_c00260{bottom:604.260000px;}
.y18_c00260{bottom:612.540000px;}
.y16_c00260{bottom:635.220000px;}
.y15_c00260{bottom:666.180000px;}
.y14_c00260{bottom:697.140000px;}
.y13_c00260{bottom:728.490000px;}
.y12_c00260{bottom:759.450000px;}
.y11_c00260{bottom:790.410000px;}
.y10_c00260{bottom:821.370000px;}
.yf_c00260{bottom:852.375000px;}
.ye_c00260{bottom:881.175000px;}
.yd_c00260{bottom:916.095000px;}
.yc_c00260{bottom:951.015000px;}
.yb_c00260{bottom:976.965000px;}
.ya_c00260{bottom:1026.285000px;}
.y9_c00260{bottom:1078.125000px;}
.y8_c00260{bottom:1109.130000px;}
.y7_c00260{bottom:1140.450000px;}
.y2_c00260{bottom:1189.050000px;}
.h3_c00260{height:20.550000px;}
.hb_c00260{height:34.855313px;}
.h4_c00260{height:41.395500px;}
.h9_c00260{height:46.638281px;}
.hc_c00260{height:54.514688px;}
.h7_c00260{height:59.328281px;}
.h6_c00260{height:59.357813px;}
.ha_c00260{height:60.952500px;}
.h2_c00260{height:64.546875px;}
.h5_c00260{height:70.664062px;}
.h8_c00260{height:1262.875500px;}
.h0_c00260{height:1262.880000px;}
.h1_c00260{height:1263.000000px;}
.w2_c00260{width:8.265000px;}
.w3_c00260{width:638.145000px;}
.w1_c00260{width:892.500000px;}
.w4_c00260{width:892.797000px;}
.w0_c00260{width:892.800000px;}
.x0_c00260{left:0.000000px;}
.x3_c00260{left:127.534500px;}
.x8_c00260{left:142.632000px;}
.x1_c00260{left:154.515000px;}
.x4_c00260{left:169.995000px;}
.x5_c00260{left:274.422000px;}
.x6_c00260{left:292.830000px;}
.x7_c00260{left:343.590000px;}
.x2_c00260{left:757.410000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls5_c00260{letter-spacing:0.000000pt;}
.ls1_c00260{letter-spacing:0.106667pt;}
.ls8_c00260{letter-spacing:0.148267pt;}
.ls2_c00260{letter-spacing:0.160000pt;}
.ls3_c00260{letter-spacing:0.268800pt;}
.ls9_c00260{letter-spacing:0.470933pt;}
.ls6_c00260{letter-spacing:0.560000pt;}
.ls0_c00260{letter-spacing:0.640000pt;}
.ls7_c00260{letter-spacing:1.013333pt;}
.lsa_c00260{letter-spacing:1.920000pt;}
.ls4_c00260{letter-spacing:3.200000pt;}
.ws1_c00260{word-spacing:-64.000000pt;}
.ws4_c00260{word-spacing:-54.773333pt;}
.ws5_c00260{word-spacing:-53.760000pt;}
.ws0_c00260{word-spacing:-16.000000pt;}
.ws3_c00260{word-spacing:-14.000000pt;}
.ws6_c00260{word-spacing:-13.588267pt;}
.ws2_c00260{word-spacing:-13.440000pt;}
.ws7_c00260{word-spacing:0.000000pt;}
._5_c00260{margin-left:-2.496000pt;}
._0_c00260{margin-left:-1.536000pt;}
._2_c00260{width:0.960000pt;}
._4_c00260{width:1.856000pt;}
._3_c00260{width:3.520000pt;}
._1_c00260{width:4.416000pt;}
._9_c00260{width:6.080000pt;}
._8_c00260{width:7.040000pt;}
._f_c00260{width:8.320000pt;}
._a_c00260{width:9.536000pt;}
._b_c00260{width:11.200000pt;}
._e_c00260{width:12.480000pt;}
._d_c00260{width:13.568000pt;}
._c_c00260{width:14.912000pt;}
._7_c00260{width:17.344000pt;}
._6_c00260{width:18.624000pt;}
.fs3_c00260{font-size:34.560000pt;}
.fs2_c00260{font-size:42.240000pt;}
.fs1_c00260{font-size:53.760000pt;}
.fs0_c00260{font-size:64.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.y3_c00260{bottom:3.840000pt;}
.y6_c00260{bottom:4.160000pt;}
.y5_c00260{bottom:22.400000pt;}
.y4_c00260{bottom:28.480000pt;}
.y1_c00260{bottom:50.880000pt;}
.y26_c00260{bottom:116.192000pt;}
.y25_c00260{bottom:122.272000pt;}
.y24_c00260{bottom:131.872000pt;}
.y23_c00260{bottom:198.426667pt;}
.y22_c00260{bottom:225.986667pt;}
.y21_c00260{bottom:253.506667pt;}
.y20_c00260{bottom:281.026667pt;}
.y1f_c00260{bottom:308.866667pt;}
.y1e_c00260{bottom:336.413333pt;}
.y1d_c00260{bottom:370.013333pt;}
.y1c_c00260{bottom:401.053333pt;}
.y1b_c00260{bottom:424.133333pt;}
.y1a_c00260{bottom:446.853333pt;}
.y19_c00260{bottom:490.693333pt;}
.y17_c00260{bottom:537.120000pt;}
.y18_c00260{bottom:544.480000pt;}
.y16_c00260{bottom:564.640000pt;}
.y15_c00260{bottom:592.160000pt;}
.y14_c00260{bottom:619.680000pt;}
.y13_c00260{bottom:647.546667pt;}
.y12_c00260{bottom:675.066667pt;}
.y11_c00260{bottom:702.586667pt;}
.y10_c00260{bottom:730.106667pt;}
.yf_c00260{bottom:757.666667pt;}
.ye_c00260{bottom:783.266667pt;}
.yd_c00260{bottom:814.306667pt;}
.yc_c00260{bottom:845.346667pt;}
.yb_c00260{bottom:868.413333pt;}
.ya_c00260{bottom:912.253333pt;}
.y9_c00260{bottom:958.333333pt;}
.y8_c00260{bottom:985.893333pt;}
.y7_c00260{bottom:1013.733333pt;}
.y2_c00260{bottom:1056.933333pt;}
.h3_c00260{height:18.266667pt;}
.hb_c00260{height:30.982500pt;}
.h4_c00260{height:36.796000pt;}
.h9_c00260{height:41.456250pt;}
.hc_c00260{height:48.457500pt;}
.h7_c00260{height:52.736250pt;}
.h6_c00260{height:52.762500pt;}
.ha_c00260{height:54.180000pt;}
.h2_c00260{height:57.375000pt;}
.h5_c00260{height:62.812500pt;}
.h8_c00260{height:1122.556000pt;}
.h0_c00260{height:1122.560000pt;}
.h1_c00260{height:1122.666667pt;}
.w2_c00260{width:7.346667pt;}
.w3_c00260{width:567.240000pt;}
.w1_c00260{width:793.333333pt;}
.w4_c00260{width:793.597333pt;}
.w0_c00260{width:793.600000pt;}
.x0_c00260{left:0.000000pt;}
.x3_c00260{left:113.364000pt;}
.x8_c00260{left:126.784000pt;}
.x1_c00260{left:137.346667pt;}
.x4_c00260{left:151.106667pt;}
.x5_c00260{left:243.930667pt;}
.x6_c00260{left:260.293333pt;}
.x7_c00260{left:305.413333pt;}
.x2_c00260{left:673.253333pt;}
}





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

.ir_c00261:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00261;src:url('chunks/assets/font_2f1e1de0f578a86acb4c04f9.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_8e484dfa70811d06eec29331.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_a656bde396e51e2ae0c4556a.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_f74eb75a4e7e737de37ffc5e.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_105906746353328addee3ec6.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;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_c00261;src:url('chunks/assets/font_954b0ea9d4bff22053ce646a.woff2')format("woff");}.ff6_c00261{font-family:ff6_c00261;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls10_c00261{letter-spacing:-2.880000px;}
.lsa_c00261{letter-spacing:-1.728000px;}
.lsd_c00261{letter-spacing:-1.416000px;}
.lse_c00261{letter-spacing:-1.380000px;}
.lsb_c00261{letter-spacing:-0.532800px;}
.ls9_c00261{letter-spacing:0.000000px;}
.ls6_c00261{letter-spacing:0.012000px;}
.lsc_c00261{letter-spacing:0.022800px;}
.ls4_c00261{letter-spacing:0.120000px;}
.lsf_c00261{letter-spacing:0.144000px;}
.ls1_c00261{letter-spacing:0.168960px;}
.ls2_c00261{letter-spacing:0.720000px;}
.ls0_c00261{letter-spacing:0.728640px;}
.ls3_c00261{letter-spacing:1.560000px;}
.ls8_c00261{letter-spacing:2.280000px;}
.ls7_c00261{letter-spacing:3.600000px;}
.ls5_c00261{letter-spacing:9.360000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00261{word-spacing:-72.000000px;}
.ws3_c00261{word-spacing:-60.480000px;}
.ws0_c00261{word-spacing:-18.000000px;}
.ws2_c00261{word-spacing:-15.120000px;}
.ws4_c00261{word-spacing:0.000000px;}
._2_c00261{margin-left:-2.736000px;}
._4_c00261{margin-left:-1.296000px;}
._1_c00261{width:1.224000px;}
._3_c00261{width:2.808000px;}
._d_c00261{width:4.104000px;}
._c_c00261{width:6.350400px;}
._f_c00261{width:7.358400px;}
._e_c00261{width:8.409600px;}
._10_c00261{width:9.446400px;}
._8_c00261{width:10.512000px;}
._9_c00261{width:12.168000px;}
._0_c00261{width:13.320000px;}
._6_c00261{width:14.340024px;}
._5_c00261{width:15.611976px;}
._7_c00261{width:16.944048px;}
._a_c00261{width:19.224000px;}
._b_c00261{width:21.024000px;}
.fc1_c00261{color:rgb(255,0,0);}
.fc2_c00261{color:rgb(33,33,33);}
.fc0_c00261{color:rgb(0,0,0);}
.fs3_c00261{font-size:38.880000px;}
.fs1_c00261{font-size:47.520000px;}
.fs2_c00261{font-size:60.480000px;}
.fs0_c00261{font-size:72.000000px;}
.y0_c00261{bottom:0.000000px;}
.y3_c00261{bottom:4.320000px;}
.y6_c00261{bottom:4.680000px;}
.y5_c00261{bottom:25.200000px;}
.y4_c00261{bottom:32.040000px;}
.y1_c00261{bottom:57.240000px;}
.y2c_c00261{bottom:130.716000px;}
.y2b_c00261{bottom:147.996000px;}
.y2a_c00261{bottom:165.270000px;}
.y29_c00261{bottom:172.110000px;}
.y28_c00261{bottom:182.550000px;}
.y27_c00261{bottom:189.390000px;}
.y26_c00261{bottom:200.190000px;}
.y25_c00261{bottom:238.035000px;}
.y24_c00261{bottom:268.995000px;}
.y23_c00261{bottom:299.955000px;}
.y22_c00261{bottom:330.915000px;}
.y21_c00261{bottom:362.265000px;}
.y20_c00261{bottom:400.065000px;}
.y1f_c00261{bottom:425.625000px;}
.y1e_c00261{bottom:451.545000px;}
.y1d_c00261{bottom:489.030000px;}
.y1c_c00261{bottom:517.470000px;}
.y1b_c00261{bottom:543.390000px;}
.y1a_c00261{bottom:569.310000px;}
.y19_c00261{bottom:595.230000px;}
.y18_c00261{bottom:644.580000px;}
.y17_c00261{bottom:696.420000px;}
.y16_c00261{bottom:727.410000px;}
.y15_c00261{bottom:758.730000px;}
.y14_c00261{bottom:789.690000px;}
.y13_c00261{bottom:820.650000px;}
.y11_c00261{bottom:851.655000px;}
.y12_c00261{bottom:859.935000px;}
.y10_c00261{bottom:882.975000px;}
.yf_c00261{bottom:913.935000px;}
.ye_c00261{bottom:944.895000px;}
.yd_c00261{bottom:975.885000px;}
.yc_c00261{bottom:1007.205000px;}
.yb_c00261{bottom:1038.165000px;}
.ya_c00261{bottom:1069.125000px;}
.y8_c00261{bottom:1109.130000px;}
.y9_c00261{bottom:1117.410000px;}
.y7_c00261{bottom:1140.450000px;}
.y2_c00261{bottom:1189.050000px;}
.h3_c00261{height:20.550000px;}
.ha_c00261{height:34.855313px;}
.hb_c00261{height:38.158594px;}
.h4_c00261{height:41.395500px;}
.h7_c00261{height:46.638281px;}
.h9_c00261{height:59.328281px;}
.h8_c00261{height:59.357813px;}
.h2_c00261{height:64.546875px;}
.h5_c00261{height:70.664062px;}
.h6_c00261{height:1262.875500px;}
.h0_c00261{height:1262.880000px;}
.h1_c00261{height:1263.000000px;}
.w2_c00261{width:8.265000px;}
.w3_c00261{width:638.145000px;}
.w1_c00261{width:892.500000px;}
.w4_c00261{width:892.797000px;}
.w0_c00261{width:892.800000px;}
.x0_c00261{left:0.000000px;}
.x3_c00261{left:127.534500px;}
.xa_c00261{left:142.632000px;}
.x1_c00261{left:154.515000px;}
.x6_c00261{left:169.995000px;}
.x4_c00261{left:282.702000px;}
.x5_c00261{left:301.110000px;}
.x7_c00261{left:328.107000px;}
.x9_c00261{left:343.590000px;}
.x8_c00261{left:346.470000px;}
.x2_c00261{left:757.410000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls10_c00261{letter-spacing:-2.560000pt;}
.lsa_c00261{letter-spacing:-1.536000pt;}
.lsd_c00261{letter-spacing:-1.258667pt;}
.lse_c00261{letter-spacing:-1.226667pt;}
.lsb_c00261{letter-spacing:-0.473600pt;}
.ls9_c00261{letter-spacing:0.000000pt;}
.ls6_c00261{letter-spacing:0.010667pt;}
.lsc_c00261{letter-spacing:0.020267pt;}
.ls4_c00261{letter-spacing:0.106667pt;}
.lsf_c00261{letter-spacing:0.128000pt;}
.ls1_c00261{letter-spacing:0.150187pt;}
.ls2_c00261{letter-spacing:0.640000pt;}
.ls0_c00261{letter-spacing:0.647680pt;}
.ls3_c00261{letter-spacing:1.386667pt;}
.ls8_c00261{letter-spacing:2.026667pt;}
.ls7_c00261{letter-spacing:3.200000pt;}
.ls5_c00261{letter-spacing:8.320000pt;}
.ws1_c00261{word-spacing:-64.000000pt;}
.ws3_c00261{word-spacing:-53.760000pt;}
.ws0_c00261{word-spacing:-16.000000pt;}
.ws2_c00261{word-spacing:-13.440000pt;}
.ws4_c00261{word-spacing:0.000000pt;}
._2_c00261{margin-left:-2.432000pt;}
._4_c00261{margin-left:-1.152000pt;}
._1_c00261{width:1.088000pt;}
._3_c00261{width:2.496000pt;}
._d_c00261{width:3.648000pt;}
._c_c00261{width:5.644800pt;}
._f_c00261{width:6.540800pt;}
._e_c00261{width:7.475200pt;}
._10_c00261{width:8.396800pt;}
._8_c00261{width:9.344000pt;}
._9_c00261{width:10.816000pt;}
._0_c00261{width:11.840000pt;}
._6_c00261{width:12.746688pt;}
._5_c00261{width:13.877312pt;}
._7_c00261{width:15.061376pt;}
._a_c00261{width:17.088000pt;}
._b_c00261{width:18.688000pt;}
.fs3_c00261{font-size:34.560000pt;}
.fs1_c00261{font-size:42.240000pt;}
.fs2_c00261{font-size:53.760000pt;}
.fs0_c00261{font-size:64.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y3_c00261{bottom:3.840000pt;}
.y6_c00261{bottom:4.160000pt;}
.y5_c00261{bottom:22.400000pt;}
.y4_c00261{bottom:28.480000pt;}
.y1_c00261{bottom:50.880000pt;}
.y2c_c00261{bottom:116.192000pt;}
.y2b_c00261{bottom:131.552000pt;}
.y2a_c00261{bottom:146.906667pt;}
.y29_c00261{bottom:152.986667pt;}
.y28_c00261{bottom:162.266667pt;}
.y27_c00261{bottom:168.346667pt;}
.y26_c00261{bottom:177.946667pt;}
.y25_c00261{bottom:211.586667pt;}
.y24_c00261{bottom:239.106667pt;}
.y23_c00261{bottom:266.626667pt;}
.y22_c00261{bottom:294.146667pt;}
.y21_c00261{bottom:322.013333pt;}
.y20_c00261{bottom:355.613333pt;}
.y1f_c00261{bottom:378.333333pt;}
.y1e_c00261{bottom:401.373333pt;}
.y1d_c00261{bottom:434.693333pt;}
.y1c_c00261{bottom:459.973333pt;}
.y1b_c00261{bottom:483.013333pt;}
.y1a_c00261{bottom:506.053333pt;}
.y19_c00261{bottom:529.093333pt;}
.y18_c00261{bottom:572.960000pt;}
.y17_c00261{bottom:619.040000pt;}
.y16_c00261{bottom:646.586667pt;}
.y15_c00261{bottom:674.426667pt;}
.y14_c00261{bottom:701.946667pt;}
.y13_c00261{bottom:729.466667pt;}
.y11_c00261{bottom:757.026667pt;}
.y12_c00261{bottom:764.386667pt;}
.y10_c00261{bottom:784.866667pt;}
.yf_c00261{bottom:812.386667pt;}
.ye_c00261{bottom:839.906667pt;}
.yd_c00261{bottom:867.453333pt;}
.yc_c00261{bottom:895.293333pt;}
.yb_c00261{bottom:922.813333pt;}
.ya_c00261{bottom:950.333333pt;}
.y8_c00261{bottom:985.893333pt;}
.y9_c00261{bottom:993.253333pt;}
.y7_c00261{bottom:1013.733333pt;}
.y2_c00261{bottom:1056.933333pt;}
.h3_c00261{height:18.266667pt;}
.ha_c00261{height:30.982500pt;}
.hb_c00261{height:33.918750pt;}
.h4_c00261{height:36.796000pt;}
.h7_c00261{height:41.456250pt;}
.h9_c00261{height:52.736250pt;}
.h8_c00261{height:52.762500pt;}
.h2_c00261{height:57.375000pt;}
.h5_c00261{height:62.812500pt;}
.h6_c00261{height:1122.556000pt;}
.h0_c00261{height:1122.560000pt;}
.h1_c00261{height:1122.666667pt;}
.w2_c00261{width:7.346667pt;}
.w3_c00261{width:567.240000pt;}
.w1_c00261{width:793.333333pt;}
.w4_c00261{width:793.597333pt;}
.w0_c00261{width:793.600000pt;}
.x0_c00261{left:0.000000pt;}
.x3_c00261{left:113.364000pt;}
.xa_c00261{left:126.784000pt;}
.x1_c00261{left:137.346667pt;}
.x6_c00261{left:151.106667pt;}
.x4_c00261{left:251.290667pt;}
.x5_c00261{left:267.653333pt;}
.x7_c00261{left:291.650667pt;}
.x9_c00261{left:305.413333pt;}
.x8_c00261{left:307.973333pt;}
.x2_c00261{left:673.253333pt;}
}





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

.ir_c00262:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00262;src:url('chunks/assets/font_f7db186241d2900dae947115.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_cca13aca7a73cb37b61683e4.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_a46bc76d4f359c10e706d9f3.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;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_c00262;src:url('chunks/assets/font_59c38e043d5185bb06d273ba.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00262;src:url('chunks/assets/font_a7a99bd82feb3818c75b0d91.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00262;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00262{font-family:ff6_c00262;line-height:1.311035;font-style:normal;font-weight: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_c00262;src:url('chunks/assets/font_177ae43548e1954325b1295e.woff2')format("woff");}.ff7_c00262{font-family:ff7_c00262;line-height:1.104004;font-style:normal;font-weight: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_c00262;src:url('chunks/assets/font_ff0cb75b71e608fd40c81252.woff2')format("woff");}.ff8_c00262{font-family:ff8_c00262;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls17_c00262{letter-spacing:-1.776000px;}
.ls1c_c00262{letter-spacing:-1.416000px;}
.ls13_c00262{letter-spacing:-1.380000px;}
.ls10_c00262{letter-spacing:-0.912000px;}
.lsf_c00262{letter-spacing:-0.810000px;}
.ls14_c00262{letter-spacing:-0.337200px;}
.ls18_c00262{letter-spacing:-0.241800px;}
.lsd_c00262{letter-spacing:0.000000px;}
.ls1d_c00262{letter-spacing:0.022800px;}
.ls1a_c00262{letter-spacing:0.060600px;}
.ls1b_c00262{letter-spacing:0.166800px;}
.ls7_c00262{letter-spacing:0.200160px;}
.lse_c00262{letter-spacing:0.504000px;}
.ls15_c00262{letter-spacing:0.507000px;}
.ls8_c00262{letter-spacing:0.518400px;}
.ls19_c00262{letter-spacing:0.521400px;}
.ls5_c00262{letter-spacing:0.524160px;}
.ls11_c00262{letter-spacing:0.529800px;}
.ls16_c00262{letter-spacing:0.630000px;}
.lsc_c00262{letter-spacing:0.686880px;}
.ls12_c00262{letter-spacing:0.702000px;}
.ls3_c00262{letter-spacing:0.720000px;}
.ls4_c00262{letter-spacing:0.739950px;}
.lsa_c00262{letter-spacing:0.740065px;}
.ls6_c00262{letter-spacing:0.740306px;}
.ls9_c00262{letter-spacing:0.740339px;}
.lsb_c00262{letter-spacing:0.840000px;}
.ls1_c00262{letter-spacing:1.152000px;}
.ls0_c00262{letter-spacing:1.560000px;}
.ls2_c00262{letter-spacing:7.920000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00262{word-spacing:-60.480000px;}
.ws1_c00262{word-spacing:-18.504000px;}
.ws0_c00262{word-spacing:-18.000000px;}
.ws6_c00262{word-spacing:-15.822000px;}
.ws9_c00262{word-spacing:-15.750000px;}
.wsf_c00262{word-spacing:-15.649800px;}
.wsd_c00262{word-spacing:-15.641400px;}
.wsb_c00262{word-spacing:-15.638400px;}
.ws8_c00262{word-spacing:-15.627000px;}
.wse_c00262{word-spacing:-15.286800px;}
.ws2_c00262{word-spacing:-15.120000px;}
.wsc_c00262{word-spacing:-14.878200px;}
.ws7_c00262{word-spacing:-14.782800px;}
.ws4_c00262{word-spacing:-14.310000px;}
.wsa_c00262{word-spacing:-13.344000px;}
.ws5_c00262{word-spacing:-12.600000px;}
.ws10_c00262{word-spacing:0.000000px;}
._2_c00262{margin-left:-2.736000px;}
._3_c00262{margin-left:-1.296000px;}
._1_c00262{width:1.080000px;}
._4_c00262{width:2.736000px;}
._8_c00262{width:3.744000px;}
._6_c00262{width:5.688000px;}
._5_c00262{width:7.272000px;}
._7_c00262{width:8.568000px;}
._0_c00262{width:15.480000px;}
._9_c00262{width:19.152000px;}
._a_c00262{width:20.520000px;}
._d_c00262{width:26.759981px;}
._c_c00262{width:69.840006px;}
._11_c00262{width:111.719987px;}
._14_c00262{width:179.460000px;}
._e_c00262{width:187.919948px;}
._f_c00262{width:189.540065px;}
._12_c00262{width:668.707021px;}
._10_c00262{width:785.811694px;}
._b_c00262{width:922.112640px;}
._15_c00262{width:991.024800px;}
._13_c00262{width:1095.998160px;}
.fc1_c00262{color:rgb(255,0,0);}
.fc0_c00262{color:rgb(0,0,0);}
.fs3_c00262{font-size:38.880000px;}
.fs1_c00262{font-size:47.520000px;}
.fs2_c00262{font-size:60.480000px;}
.fs0_c00262{font-size:72.000000px;}
.y0_c00262{bottom:0.000000px;}
.y3_c00262{bottom:4.320000px;}
.y6_c00262{bottom:4.680000px;}
.y5_c00262{bottom:25.200000px;}
.y4_c00262{bottom:32.040000px;}
.y1_c00262{bottom:57.240000px;}
.y2d_c00262{bottom:130.716000px;}
.y2c_c00262{bottom:137.556000px;}
.y2b_c00262{bottom:148.356000px;}
.y2a_c00262{bottom:174.630000px;}
.y29_c00262{bottom:200.550000px;}
.y28_c00262{bottom:226.470000px;}
.y27_c00262{bottom:252.435000px;}
.y26_c00262{bottom:277.995000px;}
.y25_c00262{bottom:303.915000px;}
.y24_c00262{bottom:329.835000px;}
.y23_c00262{bottom:355.785000px;}
.y22_c00262{bottom:381.705000px;}
.y21_c00262{bottom:407.625000px;}
.y20_c00262{bottom:433.545000px;}
.y1f_c00262{bottom:459.465000px;}
.y1e_c00262{bottom:485.070000px;}
.y1d_c00262{bottom:510.990000px;}
.y1c_c00262{bottom:536.910000px;}
.y1b_c00262{bottom:562.830000px;}
.y1a_c00262{bottom:588.750000px;}
.y19_c00262{bottom:614.700000px;}
.y18_c00262{bottom:640.620000px;}
.y17_c00262{bottom:666.540000px;}
.y16_c00262{bottom:692.100000px;}
.y15_c00262{bottom:718.020000px;}
.y14_c00262{bottom:743.970000px;}
.y13_c00262{bottom:769.890000px;}
.y12_c00262{bottom:795.810000px;}
.y11_c00262{bottom:821.730000px;}
.y10_c00262{bottom:870.735000px;}
.yf_c00262{bottom:902.055000px;}
.ye_c00262{bottom:953.895000px;}
.yd_c00262{bottom:984.885000px;}
.yc_c00262{bottom:1016.205000px;}
.ya_c00262{bottom:1047.165000px;}
.yb_c00262{bottom:1055.445000px;}
.y9_c00262{bottom:1078.125000px;}
.y8_c00262{bottom:1109.130000px;}
.y7_c00262{bottom:1140.450000px;}
.y2_c00262{bottom:1189.050000px;}
.h3_c00262{height:20.550000px;}
.ha_c00262{height:34.855313px;}
.h4_c00262{height:41.395500px;}
.h7_c00262{height:46.638281px;}
.hb_c00262{height:59.328281px;}
.h8_c00262{height:59.357813px;}
.h9_c00262{height:60.952500px;}
.h2_c00262{height:64.546875px;}
.h5_c00262{height:70.664062px;}
.h6_c00262{height:1262.875500px;}
.h0_c00262{height:1262.880000px;}
.h1_c00262{height:1263.000000px;}
.w2_c00262{width:8.265000px;}
.w3_c00262{width:638.145000px;}
.w1_c00262{width:892.500000px;}
.w4_c00262{width:892.797000px;}
.w0_c00262{width:892.800000px;}
.x0_c00262{left:0.000000px;}
.x3_c00262{left:127.534500px;}
.x8_c00262{left:142.632000px;}
.x1_c00262{left:154.515000px;}
.x6_c00262{left:169.995000px;}
.x4_c00262{left:197.352000px;}
.x5_c00262{left:215.745000px;}
.x7_c00262{left:343.590000px;}
.x2_c00262{left:757.410000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls17_c00262{letter-spacing:-1.578667pt;}
.ls1c_c00262{letter-spacing:-1.258667pt;}
.ls13_c00262{letter-spacing:-1.226667pt;}
.ls10_c00262{letter-spacing:-0.810667pt;}
.lsf_c00262{letter-spacing:-0.720000pt;}
.ls14_c00262{letter-spacing:-0.299733pt;}
.ls18_c00262{letter-spacing:-0.214933pt;}
.lsd_c00262{letter-spacing:0.000000pt;}
.ls1d_c00262{letter-spacing:0.020267pt;}
.ls1a_c00262{letter-spacing:0.053867pt;}
.ls1b_c00262{letter-spacing:0.148267pt;}
.ls7_c00262{letter-spacing:0.177920pt;}
.lse_c00262{letter-spacing:0.448000pt;}
.ls15_c00262{letter-spacing:0.450667pt;}
.ls8_c00262{letter-spacing:0.460800pt;}
.ls19_c00262{letter-spacing:0.463467pt;}
.ls5_c00262{letter-spacing:0.465920pt;}
.ls11_c00262{letter-spacing:0.470933pt;}
.ls16_c00262{letter-spacing:0.560000pt;}
.lsc_c00262{letter-spacing:0.610560pt;}
.ls12_c00262{letter-spacing:0.624000pt;}
.ls3_c00262{letter-spacing:0.640000pt;}
.ls4_c00262{letter-spacing:0.657733pt;}
.lsa_c00262{letter-spacing:0.657836pt;}
.ls6_c00262{letter-spacing:0.658050pt;}
.ls9_c00262{letter-spacing:0.658079pt;}
.lsb_c00262{letter-spacing:0.746667pt;}
.ls1_c00262{letter-spacing:1.024000pt;}
.ls0_c00262{letter-spacing:1.386667pt;}
.ls2_c00262{letter-spacing:7.040000pt;}
.ws3_c00262{word-spacing:-53.760000pt;}
.ws1_c00262{word-spacing:-16.448000pt;}
.ws0_c00262{word-spacing:-16.000000pt;}
.ws6_c00262{word-spacing:-14.064000pt;}
.ws9_c00262{word-spacing:-14.000000pt;}
.wsf_c00262{word-spacing:-13.910933pt;}
.wsd_c00262{word-spacing:-13.903467pt;}
.wsb_c00262{word-spacing:-13.900800pt;}
.ws8_c00262{word-spacing:-13.890667pt;}
.wse_c00262{word-spacing:-13.588267pt;}
.ws2_c00262{word-spacing:-13.440000pt;}
.wsc_c00262{word-spacing:-13.225067pt;}
.ws7_c00262{word-spacing:-13.140267pt;}
.ws4_c00262{word-spacing:-12.720000pt;}
.wsa_c00262{word-spacing:-11.861333pt;}
.ws5_c00262{word-spacing:-11.200000pt;}
.ws10_c00262{word-spacing:0.000000pt;}
._2_c00262{margin-left:-2.432000pt;}
._3_c00262{margin-left:-1.152000pt;}
._1_c00262{width:0.960000pt;}
._4_c00262{width:2.432000pt;}
._8_c00262{width:3.328000pt;}
._6_c00262{width:5.056000pt;}
._5_c00262{width:6.464000pt;}
._7_c00262{width:7.616000pt;}
._0_c00262{width:13.760000pt;}
._9_c00262{width:17.024000pt;}
._a_c00262{width:18.240000pt;}
._d_c00262{width:23.786650pt;}
._c_c00262{width:62.080005pt;}
._11_c00262{width:99.306655pt;}
._14_c00262{width:159.520000pt;}
._e_c00262{width:167.039954pt;}
._f_c00262{width:168.480058pt;}
._12_c00262{width:594.406241pt;}
._10_c00262{width:698.499284pt;}
._b_c00262{width:819.655680pt;}
._15_c00262{width:880.910933pt;}
._13_c00262{width:974.220587pt;}
.fs3_c00262{font-size:34.560000pt;}
.fs1_c00262{font-size:42.240000pt;}
.fs2_c00262{font-size:53.760000pt;}
.fs0_c00262{font-size:64.000000pt;}
.y0_c00262{bottom:0.000000pt;}
.y3_c00262{bottom:3.840000pt;}
.y6_c00262{bottom:4.160000pt;}
.y5_c00262{bottom:22.400000pt;}
.y4_c00262{bottom:28.480000pt;}
.y1_c00262{bottom:50.880000pt;}
.y2d_c00262{bottom:116.192000pt;}
.y2c_c00262{bottom:122.272000pt;}
.y2b_c00262{bottom:131.872000pt;}
.y2a_c00262{bottom:155.226667pt;}
.y29_c00262{bottom:178.266667pt;}
.y28_c00262{bottom:201.306667pt;}
.y27_c00262{bottom:224.386667pt;}
.y26_c00262{bottom:247.106667pt;}
.y25_c00262{bottom:270.146667pt;}
.y24_c00262{bottom:293.186667pt;}
.y23_c00262{bottom:316.253333pt;}
.y22_c00262{bottom:339.293333pt;}
.y21_c00262{bottom:362.333333pt;}
.y20_c00262{bottom:385.373333pt;}
.y1f_c00262{bottom:408.413333pt;}
.y1e_c00262{bottom:431.173333pt;}
.y1d_c00262{bottom:454.213333pt;}
.y1c_c00262{bottom:477.253333pt;}
.y1b_c00262{bottom:500.293333pt;}
.y1a_c00262{bottom:523.333333pt;}
.y19_c00262{bottom:546.400000pt;}
.y18_c00262{bottom:569.440000pt;}
.y17_c00262{bottom:592.480000pt;}
.y16_c00262{bottom:615.200000pt;}
.y15_c00262{bottom:638.240000pt;}
.y14_c00262{bottom:661.306667pt;}
.y13_c00262{bottom:684.346667pt;}
.y12_c00262{bottom:707.386667pt;}
.y11_c00262{bottom:730.426667pt;}
.y10_c00262{bottom:773.986667pt;}
.yf_c00262{bottom:801.826667pt;}
.ye_c00262{bottom:847.906667pt;}
.yd_c00262{bottom:875.453333pt;}
.yc_c00262{bottom:903.293333pt;}
.ya_c00262{bottom:930.813333pt;}
.yb_c00262{bottom:938.173333pt;}
.y9_c00262{bottom:958.333333pt;}
.y8_c00262{bottom:985.893333pt;}
.y7_c00262{bottom:1013.733333pt;}
.y2_c00262{bottom:1056.933333pt;}
.h3_c00262{height:18.266667pt;}
.ha_c00262{height:30.982500pt;}
.h4_c00262{height:36.796000pt;}
.h7_c00262{height:41.456250pt;}
.hb_c00262{height:52.736250pt;}
.h8_c00262{height:52.762500pt;}
.h9_c00262{height:54.180000pt;}
.h2_c00262{height:57.375000pt;}
.h5_c00262{height:62.812500pt;}
.h6_c00262{height:1122.556000pt;}
.h0_c00262{height:1122.560000pt;}
.h1_c00262{height:1122.666667pt;}
.w2_c00262{width:7.346667pt;}
.w3_c00262{width:567.240000pt;}
.w1_c00262{width:793.333333pt;}
.w4_c00262{width:793.597333pt;}
.w0_c00262{width:793.600000pt;}
.x0_c00262{left:0.000000pt;}
.x3_c00262{left:113.364000pt;}
.x8_c00262{left:126.784000pt;}
.x1_c00262{left:137.346667pt;}
.x6_c00262{left:151.106667pt;}
.x4_c00262{left:175.424000pt;}
.x5_c00262{left:191.773333pt;}
.x7_c00262{left:305.413333pt;}
.x2_c00262{left:673.253333pt;}
}





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

.ir_c00263:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00263;src:url('chunks/assets/font_48186c2bd144ec80487b27c5.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_f4558dc98c35ed8ce88c17fd.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_161506f51840df984738597e.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00263;src:url('chunks/assets/font_60eeba1aa1e218ff7b62fa17.woff2')format("woff");}.ff5_c00263{font-family:ff5_c00263;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00263;src:url('chunks/assets/font_70a78a1c0d07c1aa87e20fe5.woff2')format("woff");}.ff6_c00263{font-family:ff6_c00263;line-height:0.954102;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls19_c00263{letter-spacing:-1.680000px;}
.ls17_c00263{letter-spacing:-1.440000px;}
.ls1a_c00263{letter-spacing:-1.416000px;}
.ls15_c00263{letter-spacing:-0.972000px;}
.ls1d_c00263{letter-spacing:-0.954000px;}
.ls14_c00263{letter-spacing:0.000000px;}
.ls1e_c00263{letter-spacing:0.020400px;}
.lse_c00263{letter-spacing:0.022800px;}
.ls6_c00263{letter-spacing:0.048960px;}
.ls0_c00263{letter-spacing:0.120000px;}
.ls16_c00263{letter-spacing:0.360000px;}
.ls18_c00263{letter-spacing:0.466800px;}
.ls9_c00263{letter-spacing:0.518400px;}
.ls1b_c00263{letter-spacing:0.529800px;}
.ls2_c00263{letter-spacing:0.720000px;}
.ls4_c00263{letter-spacing:0.740310px;}
.ls1c_c00263{letter-spacing:1.440000px;}
.ls5_c00263{letter-spacing:2.160000px;}
.lsf_c00263{letter-spacing:3.600000px;}
.ls3_c00263{letter-spacing:5.040000px;}
.ls12_c00263{letter-spacing:6.488519px;}
.lsb_c00263{letter-spacing:7.920000px;}
.ls8_c00263{letter-spacing:7.928613px;}
.ls11_c00263{letter-spacing:7.939897px;}
.ls13_c00263{letter-spacing:7.940052px;}
.ls10_c00263{letter-spacing:7.940399px;}
.ls7_c00263{letter-spacing:9.360000px;}
.lsa_c00263{letter-spacing:9.500160px;}
.lsd_c00263{letter-spacing:10.843323px;}
.lsc_c00263{letter-spacing:12.240000px;}
.ls1_c00263{letter-spacing:13.680000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00263{word-spacing:-72.000000px;}
.ws0_c00263{word-spacing:-18.000000px;}
.ws4_c00263{word-spacing:-15.586800px;}
.ws8_c00263{word-spacing:-15.140400px;}
.ws2_c00263{word-spacing:-15.120000px;}
.ws7_c00263{word-spacing:-14.166000px;}
.ws6_c00263{word-spacing:-13.704000px;}
.ws3_c00263{word-spacing:-13.680000px;}
.ws5_c00263{word-spacing:-13.440000px;}
.ws9_c00263{word-spacing:0.000000px;}
._f_c00263{margin-left:-3.731918px;}
._7_c00263{margin-left:-2.587818px;}
._0_c00263{margin-left:-1.451399px;}
._1_c00263{width:1.088398px;}
._2_c00263{width:2.116800px;}
._4_c00263{width:3.991801px;}
._3_c00263{width:5.859605px;}
._a_c00263{width:7.801799px;}
._b_c00263{width:8.832620px;}
._6_c00263{width:9.857998px;}
._5_c00263{width:11.188800px;}
._9_c00263{width:12.700800px;}
._8_c00263{width:14.031602px;}
._d_c00263{width:16.981240px;}
._c_c00263{width:19.263655px;}
._e_c00263{width:21.699556px;}
.fc0_c00263{color:rgb(0,0,0);}
.fs4_c00263{font-size:38.880000px;}
.fs2_c00263{font-size:47.520000px;}
.fs1_c00263{font-size:60.480000px;}
.fs0_c00263{font-size:72.000000px;}
.fs3_c00263{font-size:96.480000px;}
.y0_c00263{bottom:0.000000px;}
.y3_c00263{bottom:4.320000px;}
.y6_c00263{bottom:4.680000px;}
.y5_c00263{bottom:25.200000px;}
.y4_c00263{bottom:32.040000px;}
.y1_c00263{bottom:57.240000px;}
.y33_c00263{bottom:130.716000px;}
.y32_c00263{bottom:147.996000px;}
.y31_c00263{bottom:165.270000px;}
.y30_c00263{bottom:182.550000px;}
.y2f_c00263{bottom:189.390000px;}
.y2e_c00263{bottom:199.830000px;}
.y2d_c00263{bottom:216.750000px;}
.y2c_c00263{bottom:234.075000px;}
.y2b_c00263{bottom:251.355000px;}
.y2a_c00263{bottom:268.635000px;}
.y29_c00263{bottom:285.915000px;}
.y28_c00263{bottom:303.195000px;}
.y27_c00263{bottom:320.475000px;}
.y26_c00263{bottom:337.755000px;}
.y25_c00263{bottom:344.595000px;}
.y24_c00263{bottom:355.425000px;}
.y23_c00263{bottom:396.465000px;}
.y22_c00263{bottom:427.425000px;}
.y21_c00263{bottom:467.385000px;}
.y20_c00263{bottom:498.390000px;}
.y1e_c00263{bottom:534.390000px;}
.y1f_c00263{bottom:542.670000px;}
.y1d_c00263{bottom:570.750000px;}
.y1b_c00263{bottom:602.100000px;}
.y1c_c00263{bottom:610.380000px;}
.y1a_c00263{bottom:633.060000px;}
.y19_c00263{bottom:664.020000px;}
.y18_c00263{bottom:694.980000px;}
.y17_c00263{bottom:726.330000px;}
.y16_c00263{bottom:755.130000px;}
.y15_c00263{bottom:780.690000px;}
.y14_c00263{bottom:806.610000px;}
.y13_c00263{bottom:832.530000px;}
.y12_c00263{bottom:858.495000px;}
.y11_c00263{bottom:884.415000px;}
.y10_c00263{bottom:910.335000px;}
.yf_c00263{bottom:936.255000px;}
.ye_c00263{bottom:962.175000px;}
.yd_c00263{bottom:987.765000px;}
.yc_c00263{bottom:1013.685000px;}
.yb_c00263{bottom:1039.605000px;}
.ya_c00263{bottom:1065.525000px;}
.y9_c00263{bottom:1091.490000px;}
.y8_c00263{bottom:1117.410000px;}
.y7_c00263{bottom:1143.330000px;}
.y2_c00263{bottom:1189.050000px;}
.h3_c00263{height:20.550000px;}
.hc_c00263{height:34.855313px;}
.hb_c00263{height:38.158594px;}
.h4_c00263{height:41.395500px;}
.h9_c00263{height:46.638281px;}
.hd_c00263{height:54.219375px;}
.h5_c00263{height:59.328281px;}
.h6_c00263{height:59.357813px;}
.h2_c00263{height:64.546875px;}
.h7_c00263{height:70.664062px;}
.ha_c00263{height:94.689844px;}
.h8_c00263{height:1262.875500px;}
.h0_c00263{height:1262.880000px;}
.h1_c00263{height:1263.000000px;}
.w2_c00263{width:8.265000px;}
.w3_c00263{width:638.145000px;}
.w1_c00263{width:892.500000px;}
.w4_c00263{width:892.797000px;}
.w0_c00263{width:892.800000px;}
.x0_c00263{left:0.000000px;}
.x3_c00263{left:127.534500px;}
.xa_c00263{left:142.632000px;}
.x1_c00263{left:154.515000px;}
.x4_c00263{left:169.995000px;}
.x7_c00263{left:184.752000px;}
.x8_c00263{left:203.115000px;}
.x9_c00263{left:343.590000px;}
.x5_c00263{left:685.002000px;}
.x6_c00263{left:703.365000px;}
.x2_c00263{left:757.410000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls19_c00263{letter-spacing:-1.493333pt;}
.ls17_c00263{letter-spacing:-1.280000pt;}
.ls1a_c00263{letter-spacing:-1.258667pt;}
.ls15_c00263{letter-spacing:-0.864000pt;}
.ls1d_c00263{letter-spacing:-0.848000pt;}
.ls14_c00263{letter-spacing:0.000000pt;}
.ls1e_c00263{letter-spacing:0.018133pt;}
.lse_c00263{letter-spacing:0.020267pt;}
.ls6_c00263{letter-spacing:0.043520pt;}
.ls0_c00263{letter-spacing:0.106667pt;}
.ls16_c00263{letter-spacing:0.320000pt;}
.ls18_c00263{letter-spacing:0.414933pt;}
.ls9_c00263{letter-spacing:0.460800pt;}
.ls1b_c00263{letter-spacing:0.470933pt;}
.ls2_c00263{letter-spacing:0.640000pt;}
.ls4_c00263{letter-spacing:0.658053pt;}
.ls1c_c00263{letter-spacing:1.280000pt;}
.ls5_c00263{letter-spacing:1.920000pt;}
.lsf_c00263{letter-spacing:3.200000pt;}
.ls3_c00263{letter-spacing:4.480000pt;}
.ls12_c00263{letter-spacing:5.767572pt;}
.lsb_c00263{letter-spacing:7.040000pt;}
.ls8_c00263{letter-spacing:7.047656pt;}
.ls11_c00263{letter-spacing:7.057686pt;}
.ls13_c00263{letter-spacing:7.057824pt;}
.ls10_c00263{letter-spacing:7.058132pt;}
.ls7_c00263{letter-spacing:8.320000pt;}
.lsa_c00263{letter-spacing:8.444587pt;}
.lsd_c00263{letter-spacing:9.638509pt;}
.lsc_c00263{letter-spacing:10.880000pt;}
.ls1_c00263{letter-spacing:12.160000pt;}
.ws1_c00263{word-spacing:-64.000000pt;}
.ws0_c00263{word-spacing:-16.000000pt;}
.ws4_c00263{word-spacing:-13.854933pt;}
.ws8_c00263{word-spacing:-13.458133pt;}
.ws2_c00263{word-spacing:-13.440000pt;}
.ws7_c00263{word-spacing:-12.592000pt;}
.ws6_c00263{word-spacing:-12.181333pt;}
.ws3_c00263{word-spacing:-12.160000pt;}
.ws5_c00263{word-spacing:-11.946667pt;}
.ws9_c00263{word-spacing:0.000000pt;}
._f_c00263{margin-left:-3.317261pt;}
._7_c00263{margin-left:-2.300283pt;}
._0_c00263{margin-left:-1.290132pt;}
._1_c00263{width:0.967465pt;}
._2_c00263{width:1.881600pt;}
._4_c00263{width:3.548268pt;}
._3_c00263{width:5.208538pt;}
._a_c00263{width:6.934932pt;}
._b_c00263{width:7.851218pt;}
._6_c00263{width:8.762665pt;}
._5_c00263{width:9.945600pt;}
._9_c00263{width:11.289600pt;}
._8_c00263{width:12.472535pt;}
._d_c00263{width:15.094436pt;}
._c_c00263{width:17.123249pt;}
._e_c00263{width:19.288494pt;}
.fs4_c00263{font-size:34.560000pt;}
.fs2_c00263{font-size:42.240000pt;}
.fs1_c00263{font-size:53.760000pt;}
.fs0_c00263{font-size:64.000000pt;}
.fs3_c00263{font-size:85.760000pt;}
.y0_c00263{bottom:0.000000pt;}
.y3_c00263{bottom:3.840000pt;}
.y6_c00263{bottom:4.160000pt;}
.y5_c00263{bottom:22.400000pt;}
.y4_c00263{bottom:28.480000pt;}
.y1_c00263{bottom:50.880000pt;}
.y33_c00263{bottom:116.192000pt;}
.y32_c00263{bottom:131.552000pt;}
.y31_c00263{bottom:146.906667pt;}
.y30_c00263{bottom:162.266667pt;}
.y2f_c00263{bottom:168.346667pt;}
.y2e_c00263{bottom:177.626667pt;}
.y2d_c00263{bottom:192.666667pt;}
.y2c_c00263{bottom:208.066667pt;}
.y2b_c00263{bottom:223.426667pt;}
.y2a_c00263{bottom:238.786667pt;}
.y29_c00263{bottom:254.146667pt;}
.y28_c00263{bottom:269.506667pt;}
.y27_c00263{bottom:284.866667pt;}
.y26_c00263{bottom:300.226667pt;}
.y25_c00263{bottom:306.306667pt;}
.y24_c00263{bottom:315.933333pt;}
.y23_c00263{bottom:352.413333pt;}
.y22_c00263{bottom:379.933333pt;}
.y21_c00263{bottom:415.453333pt;}
.y20_c00263{bottom:443.013333pt;}
.y1e_c00263{bottom:475.013333pt;}
.y1f_c00263{bottom:482.373333pt;}
.y1d_c00263{bottom:507.333333pt;}
.y1b_c00263{bottom:535.200000pt;}
.y1c_c00263{bottom:542.560000pt;}
.y1a_c00263{bottom:562.720000pt;}
.y19_c00263{bottom:590.240000pt;}
.y18_c00263{bottom:617.760000pt;}
.y17_c00263{bottom:645.626667pt;}
.y16_c00263{bottom:671.226667pt;}
.y15_c00263{bottom:693.946667pt;}
.y14_c00263{bottom:716.986667pt;}
.y13_c00263{bottom:740.026667pt;}
.y12_c00263{bottom:763.106667pt;}
.y11_c00263{bottom:786.146667pt;}
.y10_c00263{bottom:809.186667pt;}
.yf_c00263{bottom:832.226667pt;}
.ye_c00263{bottom:855.266667pt;}
.yd_c00263{bottom:878.013333pt;}
.yc_c00263{bottom:901.053333pt;}
.yb_c00263{bottom:924.093333pt;}
.ya_c00263{bottom:947.133333pt;}
.y9_c00263{bottom:970.213333pt;}
.y8_c00263{bottom:993.253333pt;}
.y7_c00263{bottom:1016.293333pt;}
.y2_c00263{bottom:1056.933333pt;}
.h3_c00263{height:18.266667pt;}
.hc_c00263{height:30.982500pt;}
.hb_c00263{height:33.918750pt;}
.h4_c00263{height:36.796000pt;}
.h9_c00263{height:41.456250pt;}
.hd_c00263{height:48.195000pt;}
.h5_c00263{height:52.736250pt;}
.h6_c00263{height:52.762500pt;}
.h2_c00263{height:57.375000pt;}
.h7_c00263{height:62.812500pt;}
.ha_c00263{height:84.168750pt;}
.h8_c00263{height:1122.556000pt;}
.h0_c00263{height:1122.560000pt;}
.h1_c00263{height:1122.666667pt;}
.w2_c00263{width:7.346667pt;}
.w3_c00263{width:567.240000pt;}
.w1_c00263{width:793.333333pt;}
.w4_c00263{width:793.597333pt;}
.w0_c00263{width:793.600000pt;}
.x0_c00263{left:0.000000pt;}
.x3_c00263{left:113.364000pt;}
.xa_c00263{left:126.784000pt;}
.x1_c00263{left:137.346667pt;}
.x4_c00263{left:151.106667pt;}
.x7_c00263{left:164.224000pt;}
.x8_c00263{left:180.546667pt;}
.x9_c00263{left:305.413333pt;}
.x5_c00263{left:608.890667pt;}
.x6_c00263{left:625.213333pt;}
.x2_c00263{left:673.253333pt;}
}





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

.ir_c00264:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00264;src:url('chunks/assets/font_47e7ddca41bb91dbfe7925c7.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_91a27b5f5f87474733adde34.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_be8ad7dee96c4b02f9b0fcc8.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_e9cb80ab8af804859a99a252.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;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_c00264;src:url('chunks/assets/font_8846c8a97a31fa3beb60edd8.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00264;src:url('chunks/assets/font_4e7a8a654aee654f5e2953a5.woff2')format("woff");}.ff6_c00264{font-family:ff6_c00264;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls12_c00264{letter-spacing:-1.440000px;}
.ls13_c00264{letter-spacing:-0.648000px;}
.lsc_c00264{letter-spacing:-0.360000px;}
.lsd_c00264{letter-spacing:-0.288000px;}
.ls14_c00264{letter-spacing:-0.241800px;}
.lsb_c00264{letter-spacing:0.000000px;}
.ls11_c00264{letter-spacing:0.020400px;}
.ls15_c00264{letter-spacing:0.060600px;}
.ls4_c00264{letter-spacing:0.120000px;}
.ls10_c00264{letter-spacing:0.144000px;}
.lsf_c00264{letter-spacing:0.288000px;}
.lsa_c00264{letter-spacing:0.302400px;}
.ls16_c00264{letter-spacing:0.702000px;}
.ls8_c00264{letter-spacing:0.720000px;}
.ls7_c00264{letter-spacing:1.440000px;}
.ls3_c00264{letter-spacing:1.620000px;}
.lse_c00264{letter-spacing:1.944000px;}
.ls0_c00264{letter-spacing:3.600000px;}
.ls9_c00264{letter-spacing:5.060160px;}
.ls1_c00264{letter-spacing:6.480000px;}
.ls2_c00264{letter-spacing:7.920000px;}
.ls5_c00264{letter-spacing:10.800000px;}
.ls6_c00264{letter-spacing:18.000000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00264{word-spacing:-72.000000px;}
.ws3_c00264{word-spacing:-18.144000px;}
.ws2_c00264{word-spacing:-18.000000px;}
.ws1_c00264{word-spacing:-17.712000px;}
.ws0_c00264{word-spacing:-17.640000px;}
.ws6_c00264{word-spacing:-15.822000px;}
.ws5_c00264{word-spacing:-15.120000px;}
.ws7_c00264{word-spacing:0.000000px;}
._12_c00264{margin-left:-3.720000px;}
._5_c00264{margin-left:-2.664000px;}
._1_c00264{margin-left:-1.584000px;}
._0_c00264{width:1.440000px;}
._6_c00264{width:2.808000px;}
._7_c00264{width:3.888000px;}
._b_c00264{width:5.604000px;}
._11_c00264{width:6.840000px;}
._13_c00264{width:7.920000px;}
._10_c00264{width:9.036000px;}
._9_c00264{width:10.224000px;}
._8_c00264{width:11.592000px;}
._a_c00264{width:12.659976px;}
._d_c00264{width:14.184000px;}
._e_c00264{width:15.624000px;}
._f_c00264{width:16.740072px;}
._14_c00264{width:17.915784px;}
._c_c00264{width:19.944000px;}
._3_c00264{width:21.600000px;}
._2_c00264{width:23.040000px;}
._4_c00264{width:24.048000px;}
.fc0_c00264{color:rgb(0,0,0);}
.fs3_c00264{font-size:38.880000px;}
.fs2_c00264{font-size:47.520000px;}
.fs1_c00264{font-size:60.480000px;}
.fs0_c00264{font-size:72.000000px;}
.y0_c00264{bottom:0.000000px;}
.y3_c00264{bottom:4.320000px;}
.y6_c00264{bottom:4.680000px;}
.y5_c00264{bottom:25.200000px;}
.y4_c00264{bottom:32.040000px;}
.y1_c00264{bottom:57.240000px;}
.y29_c00264{bottom:130.716000px;}
.y28_c00264{bottom:147.996000px;}
.y27_c00264{bottom:165.270000px;}
.y26_c00264{bottom:172.110000px;}
.y25_c00264{bottom:182.910000px;}
.y24_c00264{bottom:252.795000px;}
.y23_c00264{bottom:283.755000px;}
.y22_c00264{bottom:314.715000px;}
.y21_c00264{bottom:346.035000px;}
.y20_c00264{bottom:377.025000px;}
.y1e_c00264{bottom:407.985000px;}
.y1f_c00264{bottom:416.265000px;}
.y1d_c00264{bottom:438.945000px;}
.y1c_c00264{bottom:469.905000px;}
.y1b_c00264{bottom:501.270000px;}
.y1a_c00264{bottom:532.230000px;}
.y19_c00264{bottom:572.190000px;}
.y18_c00264{bottom:603.180000px;}
.y17_c00264{bottom:634.500000px;}
.y16_c00264{bottom:665.460000px;}
.y15_c00264{bottom:696.420000px;}
.y14_c00264{bottom:727.410000px;}
.y13_c00264{bottom:758.730000px;}
.y12_c00264{bottom:789.690000px;}
.y11_c00264{bottom:820.650000px;}
.y10_c00264{bottom:851.655000px;}
.yf_c00264{bottom:882.975000px;}
.ye_c00264{bottom:913.935000px;}
.yd_c00264{bottom:944.895000px;}
.yc_c00264{bottom:975.885000px;}
.yb_c00264{bottom:1016.205000px;}
.ya_c00264{bottom:1047.165000px;}
.y9_c00264{bottom:1078.125000px;}
.y8_c00264{bottom:1109.130000px;}
.y7_c00264{bottom:1140.450000px;}
.y2_c00264{bottom:1189.050000px;}
.h3_c00264{height:20.550000px;}
.h8_c00264{height:34.855313px;}
.h4_c00264{height:41.395500px;}
.h7_c00264{height:46.638281px;}
.h9_c00264{height:54.219375px;}
.ha_c00264{height:59.357813px;}
.h2_c00264{height:64.546875px;}
.h5_c00264{height:70.664062px;}
.h6_c00264{height:1262.875500px;}
.h0_c00264{height:1262.880000px;}
.h1_c00264{height:1263.000000px;}
.w2_c00264{width:8.265000px;}
.w3_c00264{width:638.145000px;}
.w1_c00264{width:892.500000px;}
.w4_c00264{width:892.797000px;}
.w0_c00264{width:892.800000px;}
.x0_c00264{left:0.000000px;}
.x3_c00264{left:127.534500px;}
.x8_c00264{left:142.632000px;}
.x1_c00264{left:154.515000px;}
.x4_c00264{left:169.995000px;}
.x7_c00264{left:343.590000px;}
.x5_c00264{left:747.327000px;}
.x2_c00264{left:757.410000px;}
.x6_c00264{left:765.690000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls12_c00264{letter-spacing:-1.280000pt;}
.ls13_c00264{letter-spacing:-0.576000pt;}
.lsc_c00264{letter-spacing:-0.320000pt;}
.lsd_c00264{letter-spacing:-0.256000pt;}
.ls14_c00264{letter-spacing:-0.214933pt;}
.lsb_c00264{letter-spacing:0.000000pt;}
.ls11_c00264{letter-spacing:0.018133pt;}
.ls15_c00264{letter-spacing:0.053867pt;}
.ls4_c00264{letter-spacing:0.106667pt;}
.ls10_c00264{letter-spacing:0.128000pt;}
.lsf_c00264{letter-spacing:0.256000pt;}
.lsa_c00264{letter-spacing:0.268800pt;}
.ls16_c00264{letter-spacing:0.624000pt;}
.ls8_c00264{letter-spacing:0.640000pt;}
.ls7_c00264{letter-spacing:1.280000pt;}
.ls3_c00264{letter-spacing:1.440000pt;}
.lse_c00264{letter-spacing:1.728000pt;}
.ls0_c00264{letter-spacing:3.200000pt;}
.ls9_c00264{letter-spacing:4.497920pt;}
.ls1_c00264{letter-spacing:5.760000pt;}
.ls2_c00264{letter-spacing:7.040000pt;}
.ls5_c00264{letter-spacing:9.600000pt;}
.ls6_c00264{letter-spacing:16.000000pt;}
.ws4_c00264{word-spacing:-64.000000pt;}
.ws3_c00264{word-spacing:-16.128000pt;}
.ws2_c00264{word-spacing:-16.000000pt;}
.ws1_c00264{word-spacing:-15.744000pt;}
.ws0_c00264{word-spacing:-15.680000pt;}
.ws6_c00264{word-spacing:-14.064000pt;}
.ws5_c00264{word-spacing:-13.440000pt;}
.ws7_c00264{word-spacing:0.000000pt;}
._12_c00264{margin-left:-3.306667pt;}
._5_c00264{margin-left:-2.368000pt;}
._1_c00264{margin-left:-1.408000pt;}
._0_c00264{width:1.280000pt;}
._6_c00264{width:2.496000pt;}
._7_c00264{width:3.456000pt;}
._b_c00264{width:4.981333pt;}
._11_c00264{width:6.080000pt;}
._13_c00264{width:7.040000pt;}
._10_c00264{width:8.032000pt;}
._9_c00264{width:9.088000pt;}
._8_c00264{width:10.304000pt;}
._a_c00264{width:11.253312pt;}
._d_c00264{width:12.608000pt;}
._e_c00264{width:13.888000pt;}
._f_c00264{width:14.880064pt;}
._14_c00264{width:15.925141pt;}
._c_c00264{width:17.728000pt;}
._3_c00264{width:19.200000pt;}
._2_c00264{width:20.480000pt;}
._4_c00264{width:21.376000pt;}
.fs3_c00264{font-size:34.560000pt;}
.fs2_c00264{font-size:42.240000pt;}
.fs1_c00264{font-size:53.760000pt;}
.fs0_c00264{font-size:64.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y3_c00264{bottom:3.840000pt;}
.y6_c00264{bottom:4.160000pt;}
.y5_c00264{bottom:22.400000pt;}
.y4_c00264{bottom:28.480000pt;}
.y1_c00264{bottom:50.880000pt;}
.y29_c00264{bottom:116.192000pt;}
.y28_c00264{bottom:131.552000pt;}
.y27_c00264{bottom:146.906667pt;}
.y26_c00264{bottom:152.986667pt;}
.y25_c00264{bottom:162.586667pt;}
.y24_c00264{bottom:224.706667pt;}
.y23_c00264{bottom:252.226667pt;}
.y22_c00264{bottom:279.746667pt;}
.y21_c00264{bottom:307.586667pt;}
.y20_c00264{bottom:335.133333pt;}
.y1e_c00264{bottom:362.653333pt;}
.y1f_c00264{bottom:370.013333pt;}
.y1d_c00264{bottom:390.173333pt;}
.y1c_c00264{bottom:417.693333pt;}
.y1b_c00264{bottom:445.573333pt;}
.y1a_c00264{bottom:473.093333pt;}
.y19_c00264{bottom:508.613333pt;}
.y18_c00264{bottom:536.160000pt;}
.y17_c00264{bottom:564.000000pt;}
.y16_c00264{bottom:591.520000pt;}
.y15_c00264{bottom:619.040000pt;}
.y14_c00264{bottom:646.586667pt;}
.y13_c00264{bottom:674.426667pt;}
.y12_c00264{bottom:701.946667pt;}
.y11_c00264{bottom:729.466667pt;}
.y10_c00264{bottom:757.026667pt;}
.yf_c00264{bottom:784.866667pt;}
.ye_c00264{bottom:812.386667pt;}
.yd_c00264{bottom:839.906667pt;}
.yc_c00264{bottom:867.453333pt;}
.yb_c00264{bottom:903.293333pt;}
.ya_c00264{bottom:930.813333pt;}
.y9_c00264{bottom:958.333333pt;}
.y8_c00264{bottom:985.893333pt;}
.y7_c00264{bottom:1013.733333pt;}
.y2_c00264{bottom:1056.933333pt;}
.h3_c00264{height:18.266667pt;}
.h8_c00264{height:30.982500pt;}
.h4_c00264{height:36.796000pt;}
.h7_c00264{height:41.456250pt;}
.h9_c00264{height:48.195000pt;}
.ha_c00264{height:52.762500pt;}
.h2_c00264{height:57.375000pt;}
.h5_c00264{height:62.812500pt;}
.h6_c00264{height:1122.556000pt;}
.h0_c00264{height:1122.560000pt;}
.h1_c00264{height:1122.666667pt;}
.w2_c00264{width:7.346667pt;}
.w3_c00264{width:567.240000pt;}
.w1_c00264{width:793.333333pt;}
.w4_c00264{width:793.597333pt;}
.w0_c00264{width:793.600000pt;}
.x0_c00264{left:0.000000pt;}
.x3_c00264{left:113.364000pt;}
.x8_c00264{left:126.784000pt;}
.x1_c00264{left:137.346667pt;}
.x4_c00264{left:151.106667pt;}
.x7_c00264{left:305.413333pt;}
.x5_c00264{left:664.290667pt;}
.x2_c00264{left:673.253333pt;}
.x6_c00264{left:680.613333pt;}
}





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

.ir_c00265:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00265;src:url('chunks/assets/font_02a0208e99972110f4f3a15a.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_2ee1bdb3b28feb5edbf829b5.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_c4ceb17339d093ef2832402e.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;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_c00265;src:url('chunks/assets/font_e1407e205187dd45606d87dd.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_e0b7cd8c650341ffb8439160.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00265;src:url('chunks/assets/font_960fcde3a71e2eafe1ec2427.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:1.112305;font-style:normal;font-weight: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_c00265;src:url('chunks/assets/font_1cb036857c8e40daceb5d93d.woff2')format("woff");}.ff7_c00265{font-family:ff7_c00265;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls6_c00265{letter-spacing:-0.864000px;}
.lsc_c00265{letter-spacing:-0.648000px;}
.lse_c00265{letter-spacing:-0.466800px;}
.ls7_c00265{letter-spacing:-0.288000px;}
.lsd_c00265{letter-spacing:-0.241800px;}
.ls9_c00265{letter-spacing:-0.144000px;}
.ls5_c00265{letter-spacing:0.000000px;}
.lsb_c00265{letter-spacing:0.072000px;}
.lsa_c00265{letter-spacing:0.288000px;}
.ls3_c00265{letter-spacing:0.360000px;}
.ls8_c00265{letter-spacing:0.576000px;}
.ls4_c00265{letter-spacing:0.720000px;}
.ls1_c00265{letter-spacing:0.792000px;}
.ls0_c00265{letter-spacing:1.440000px;}
.ls2_c00265{letter-spacing:12.240000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:-18.000000px;}
.ws1_c00265{word-spacing:-17.856000px;}
.ws3_c00265{word-spacing:-15.120000px;}
.ws2_c00265{word-spacing:-14.653200px;}
.ws4_c00265{word-spacing:0.000000px;}
._6_c00265{margin-left:-3.624000px;}
._8_c00265{margin-left:-2.376000px;}
._1_c00265{margin-left:-1.296000px;}
._0_c00265{width:1.512000px;}
._9_c00265{width:3.168000px;}
._3_c00265{width:4.667976px;}
._2_c00265{width:6.492024px;}
._4_c00265{width:7.739976px;}
._14_c00265{width:9.491976px;}
._5_c00265{width:11.448000px;}
._7_c00265{width:13.464000px;}
._15_c00265{width:15.276000px;}
._a_c00265{width:16.440000px;}
._e_c00265{width:19.512000px;}
._f_c00265{width:20.664000px;}
._11_c00265{width:21.936000px;}
._10_c00265{width:22.968000px;}
._13_c00265{width:24.264000px;}
._12_c00265{width:25.656000px;}
._d_c00265{width:27.096000px;}
._c_c00265{width:28.752000px;}
._b_c00265{width:30.024000px;}
.fc0_c00265{color:rgb(0,0,0);}
.fs2_c00265{font-size:38.880000px;}
.fs1_c00265{font-size:47.520000px;}
.fs3_c00265{font-size:60.480000px;}
.fs0_c00265{font-size:72.000000px;}
.y0_c00265{bottom:0.000000px;}
.y3_c00265{bottom:4.320000px;}
.y6_c00265{bottom:4.680000px;}
.y5_c00265{bottom:25.200000px;}
.y4_c00265{bottom:32.040000px;}
.y1_c00265{bottom:57.240000px;}
.y33_c00265{bottom:130.716000px;}
.y32_c00265{bottom:147.996000px;}
.y31_c00265{bottom:154.830000px;}
.y30_c00265{bottom:165.270000px;}
.y2f_c00265{bottom:172.110000px;}
.y2e_c00265{bottom:182.550000px;}
.y2d_c00265{bottom:199.830000px;}
.y2c_c00265{bottom:216.750000px;}
.y2b_c00265{bottom:234.075000px;}
.y2a_c00265{bottom:240.915000px;}
.y29_c00265{bottom:251.355000px;}
.y28_c00265{bottom:268.635000px;}
.y27_c00265{bottom:275.475000px;}
.y26_c00265{bottom:286.635000px;}
.y25_c00265{bottom:323.715000px;}
.y24_c00265{bottom:355.065000px;}
.y23_c00265{bottom:386.025000px;}
.y22_c00265{bottom:416.985000px;}
.y21_c00265{bottom:447.945000px;}
.y1f_c00265{bottom:478.950000px;}
.y20_c00265{bottom:487.230000px;}
.y1e_c00265{bottom:510.270000px;}
.y1d_c00265{bottom:541.230000px;}
.y1b_c00265{bottom:572.190000px;}
.y1c_c00265{bottom:580.470000px;}
.y1a_c00265{bottom:603.180000px;}
.y19_c00265{bottom:634.500000px;}
.y18_c00265{bottom:665.460000px;}
.y16_c00265{bottom:696.420000px;}
.y17_c00265{bottom:704.700000px;}
.y15_c00265{bottom:727.410000px;}
.y14_c00265{bottom:758.730000px;}
.y13_c00265{bottom:789.690000px;}
.y12_c00265{bottom:820.650000px;}
.y11_c00265{bottom:851.655000px;}
.y10_c00265{bottom:882.975000px;}
.yf_c00265{bottom:913.935000px;}
.ye_c00265{bottom:944.895000px;}
.yd_c00265{bottom:975.885000px;}
.yc_c00265{bottom:1007.205000px;}
.yb_c00265{bottom:1038.165000px;}
.ya_c00265{bottom:1069.125000px;}
.y9_c00265{bottom:1109.130000px;}
.y7_c00265{bottom:1140.450000px;}
.y8_c00265{bottom:1148.730000px;}
.y2_c00265{bottom:1189.050000px;}
.h3_c00265{height:20.550000px;}
.h9_c00265{height:34.855313px;}
.h4_c00265{height:41.395500px;}
.h8_c00265{height:46.615078px;}
.h7_c00265{height:46.638281px;}
.ha_c00265{height:54.219375px;}
.hb_c00265{height:54.514688px;}
.hc_c00265{height:59.357813px;}
.h2_c00265{height:64.546875px;}
.h5_c00265{height:70.664062px;}
.h6_c00265{height:1262.875500px;}
.h0_c00265{height:1262.880000px;}
.h1_c00265{height:1263.000000px;}
.w2_c00265{width:8.265000px;}
.w3_c00265{width:638.145000px;}
.w1_c00265{width:892.500000px;}
.w4_c00265{width:892.797000px;}
.w0_c00265{width:892.800000px;}
.x0_c00265{left:0.000000px;}
.x3_c00265{left:127.534500px;}
.xe_c00265{left:142.632000px;}
.x1_c00265{left:154.515000px;}
.x6_c00265{left:169.995000px;}
.x4_c00265{left:292.827000px;}
.x5_c00265{left:311.190000px;}
.x7_c00265{left:338.187000px;}
.xd_c00265{left:343.590000px;}
.x8_c00265{left:356.550000px;}
.x9_c00265{left:425.697000px;}
.xa_c00265{left:444.060000px;}
.xb_c00265{left:742.647000px;}
.x2_c00265{left:757.410000px;}
.xc_c00265{left:761.010000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls6_c00265{letter-spacing:-0.768000pt;}
.lsc_c00265{letter-spacing:-0.576000pt;}
.lse_c00265{letter-spacing:-0.414933pt;}
.ls7_c00265{letter-spacing:-0.256000pt;}
.lsd_c00265{letter-spacing:-0.214933pt;}
.ls9_c00265{letter-spacing:-0.128000pt;}
.ls5_c00265{letter-spacing:0.000000pt;}
.lsb_c00265{letter-spacing:0.064000pt;}
.lsa_c00265{letter-spacing:0.256000pt;}
.ls3_c00265{letter-spacing:0.320000pt;}
.ls8_c00265{letter-spacing:0.512000pt;}
.ls4_c00265{letter-spacing:0.640000pt;}
.ls1_c00265{letter-spacing:0.704000pt;}
.ls0_c00265{letter-spacing:1.280000pt;}
.ls2_c00265{letter-spacing:10.880000pt;}
.ws0_c00265{word-spacing:-16.000000pt;}
.ws1_c00265{word-spacing:-15.872000pt;}
.ws3_c00265{word-spacing:-13.440000pt;}
.ws2_c00265{word-spacing:-13.025067pt;}
.ws4_c00265{word-spacing:0.000000pt;}
._6_c00265{margin-left:-3.221333pt;}
._8_c00265{margin-left:-2.112000pt;}
._1_c00265{margin-left:-1.152000pt;}
._0_c00265{width:1.344000pt;}
._9_c00265{width:2.816000pt;}
._3_c00265{width:4.149312pt;}
._2_c00265{width:5.770688pt;}
._4_c00265{width:6.879979pt;}
._14_c00265{width:8.437312pt;}
._5_c00265{width:10.176000pt;}
._7_c00265{width:11.968000pt;}
._15_c00265{width:13.578667pt;}
._a_c00265{width:14.613333pt;}
._e_c00265{width:17.344000pt;}
._f_c00265{width:18.368000pt;}
._11_c00265{width:19.498667pt;}
._10_c00265{width:20.416000pt;}
._13_c00265{width:21.568000pt;}
._12_c00265{width:22.805333pt;}
._d_c00265{width:24.085333pt;}
._c_c00265{width:25.557333pt;}
._b_c00265{width:26.688000pt;}
.fs2_c00265{font-size:34.560000pt;}
.fs1_c00265{font-size:42.240000pt;}
.fs3_c00265{font-size:53.760000pt;}
.fs0_c00265{font-size:64.000000pt;}
.y0_c00265{bottom:0.000000pt;}
.y3_c00265{bottom:3.840000pt;}
.y6_c00265{bottom:4.160000pt;}
.y5_c00265{bottom:22.400000pt;}
.y4_c00265{bottom:28.480000pt;}
.y1_c00265{bottom:50.880000pt;}
.y33_c00265{bottom:116.192000pt;}
.y32_c00265{bottom:131.552000pt;}
.y31_c00265{bottom:137.626667pt;}
.y30_c00265{bottom:146.906667pt;}
.y2f_c00265{bottom:152.986667pt;}
.y2e_c00265{bottom:162.266667pt;}
.y2d_c00265{bottom:177.626667pt;}
.y2c_c00265{bottom:192.666667pt;}
.y2b_c00265{bottom:208.066667pt;}
.y2a_c00265{bottom:214.146667pt;}
.y29_c00265{bottom:223.426667pt;}
.y28_c00265{bottom:238.786667pt;}
.y27_c00265{bottom:244.866667pt;}
.y26_c00265{bottom:254.786667pt;}
.y25_c00265{bottom:287.746667pt;}
.y24_c00265{bottom:315.613333pt;}
.y23_c00265{bottom:343.133333pt;}
.y22_c00265{bottom:370.653333pt;}
.y21_c00265{bottom:398.173333pt;}
.y1f_c00265{bottom:425.733333pt;}
.y20_c00265{bottom:433.093333pt;}
.y1e_c00265{bottom:453.573333pt;}
.y1d_c00265{bottom:481.093333pt;}
.y1b_c00265{bottom:508.613333pt;}
.y1c_c00265{bottom:515.973333pt;}
.y1a_c00265{bottom:536.160000pt;}
.y19_c00265{bottom:564.000000pt;}
.y18_c00265{bottom:591.520000pt;}
.y16_c00265{bottom:619.040000pt;}
.y17_c00265{bottom:626.400000pt;}
.y15_c00265{bottom:646.586667pt;}
.y14_c00265{bottom:674.426667pt;}
.y13_c00265{bottom:701.946667pt;}
.y12_c00265{bottom:729.466667pt;}
.y11_c00265{bottom:757.026667pt;}
.y10_c00265{bottom:784.866667pt;}
.yf_c00265{bottom:812.386667pt;}
.ye_c00265{bottom:839.906667pt;}
.yd_c00265{bottom:867.453333pt;}
.yc_c00265{bottom:895.293333pt;}
.yb_c00265{bottom:922.813333pt;}
.ya_c00265{bottom:950.333333pt;}
.y9_c00265{bottom:985.893333pt;}
.y7_c00265{bottom:1013.733333pt;}
.y8_c00265{bottom:1021.093333pt;}
.y2_c00265{bottom:1056.933333pt;}
.h3_c00265{height:18.266667pt;}
.h9_c00265{height:30.982500pt;}
.h4_c00265{height:36.796000pt;}
.h8_c00265{height:41.435625pt;}
.h7_c00265{height:41.456250pt;}
.ha_c00265{height:48.195000pt;}
.hb_c00265{height:48.457500pt;}
.hc_c00265{height:52.762500pt;}
.h2_c00265{height:57.375000pt;}
.h5_c00265{height:62.812500pt;}
.h6_c00265{height:1122.556000pt;}
.h0_c00265{height:1122.560000pt;}
.h1_c00265{height:1122.666667pt;}
.w2_c00265{width:7.346667pt;}
.w3_c00265{width:567.240000pt;}
.w1_c00265{width:793.333333pt;}
.w4_c00265{width:793.597333pt;}
.w0_c00265{width:793.600000pt;}
.x0_c00265{left:0.000000pt;}
.x3_c00265{left:113.364000pt;}
.xe_c00265{left:126.784000pt;}
.x1_c00265{left:137.346667pt;}
.x6_c00265{left:151.106667pt;}
.x4_c00265{left:260.290667pt;}
.x5_c00265{left:276.613333pt;}
.x7_c00265{left:300.610667pt;}
.xd_c00265{left:305.413333pt;}
.x8_c00265{left:316.933333pt;}
.x9_c00265{left:378.397333pt;}
.xa_c00265{left:394.720000pt;}
.xb_c00265{left:660.130667pt;}
.x2_c00265{left:673.253333pt;}
.xc_c00265{left:676.453333pt;}
}





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

.ir_c00266:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00266;src:url('chunks/assets/font_5d95430668fc8f854c24c60d.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_b97eb8d18d973ae77eebcf48.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_1c9194a534e00ac2332b98bf.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_5ea518f7f847ebedd3387142.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;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_c00266;src:url('chunks/assets/font_6e3c4187b61981fa46941bc0.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00266;src:url('chunks/assets/font_c21d260337961b45619c6f78.woff2')format("woff");}.ff6_c00266{font-family:ff6_c00266;line-height:1.104004;font-style:normal;font-weight: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_c00266;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00266{font-family:ff7_c00266;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls17_c00266{letter-spacing:-1.416000px;}
.lsf_c00266{letter-spacing:-1.272000px;}
.ls12_c00266{letter-spacing:-1.128000px;}
.ls13_c00266{letter-spacing:-0.972000px;}
.lsb_c00266{letter-spacing:-0.720000px;}
.ls14_c00266{letter-spacing:-0.532800px;}
.ls15_c00266{letter-spacing:-0.521400px;}
.lsc_c00266{letter-spacing:-0.241800px;}
.lsa_c00266{letter-spacing:0.000000px;}
.lsd_c00266{letter-spacing:0.166800px;}
.ls0_c00266{letter-spacing:0.180000px;}
.ls16_c00266{letter-spacing:0.219000px;}
.ls10_c00266{letter-spacing:0.313800px;}
.lse_c00266{letter-spacing:0.466800px;}
.ls18_c00266{letter-spacing:0.486600px;}
.ls19_c00266{letter-spacing:0.518400px;}
.ls11_c00266{letter-spacing:0.521400px;}
.ls1_c00266{letter-spacing:0.720000px;}
.ls6_c00266{letter-spacing:0.728640px;}
.ls4_c00266{letter-spacing:0.742962px;}
.ls5_c00266{letter-spacing:0.743124px;}
.ls3_c00266{letter-spacing:0.743193px;}
.ls2_c00266{letter-spacing:0.840000px;}
.ls8_c00266{letter-spacing:9.360000px;}
.ls9_c00266{letter-spacing:12.260160px;}
.ls7_c00266{letter-spacing:13.680000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:-18.000000px;}
.ws6_c00266{word-spacing:-15.641400px;}
.wsa_c00266{word-spacing:-15.638400px;}
.ws5_c00266{word-spacing:-15.433800px;}
.ws9_c00266{word-spacing:-15.339000px;}
.ws3_c00266{word-spacing:-15.286800px;}
.ws1_c00266{word-spacing:-15.120000px;}
.ws2_c00266{word-spacing:-14.878200px;}
.ws8_c00266{word-spacing:-14.598600px;}
.ws7_c00266{word-spacing:-13.992000px;}
.ws4_c00266{word-spacing:-13.848000px;}
.wsb_c00266{word-spacing:0.000000px;}
._4_c00266{margin-left:-3.239976px;}
._0_c00266{margin-left:-1.296000px;}
._1_c00266{width:1.368000px;}
._3_c00266{width:2.399976px;}
._8_c00266{width:3.527976px;}
._a_c00266{width:4.536000px;}
._b_c00266{width:5.615832px;}
._7_c00266{width:6.960048px;}
._6_c00266{width:8.063976px;}
._9_c00266{width:9.144000px;}
._e_c00266{width:10.151976px;}
._11_c00266{width:11.485198px;}
._10_c00266{width:12.744000px;}
._f_c00266{width:14.700000px;}
._2_c00266{width:15.840000px;}
._5_c00266{width:16.992000px;}
._c_c00266{width:19.080000px;}
._d_c00266{width:20.639976px;}
.fc1_c00266{color:rgb(255,0,0);}
.fc0_c00266{color:rgb(0,0,0);}
.fs3_c00266{font-size:38.880000px;}
.fs1_c00266{font-size:47.520000px;}
.fs2_c00266{font-size:60.480000px;}
.fs0_c00266{font-size:72.000000px;}
.y0_c00266{bottom:0.000000px;}
.y3_c00266{bottom:4.320000px;}
.y6_c00266{bottom:4.680000px;}
.y5_c00266{bottom:25.200000px;}
.y4_c00266{bottom:32.040000px;}
.y1_c00266{bottom:57.240000px;}
.y30_c00266{bottom:130.716000px;}
.y2f_c00266{bottom:147.996000px;}
.y2e_c00266{bottom:165.270000px;}
.y2d_c00266{bottom:182.550000px;}
.y2c_c00266{bottom:189.390000px;}
.y2b_c00266{bottom:199.830000px;}
.y2a_c00266{bottom:216.750000px;}
.y29_c00266{bottom:234.075000px;}
.y28_c00266{bottom:251.355000px;}
.y27_c00266{bottom:258.195000px;}
.y26_c00266{bottom:269.355000px;}
.y25_c00266{bottom:316.515000px;}
.y24_c00266{bottom:347.835000px;}
.y23_c00266{bottom:378.825000px;}
.y22_c00266{bottom:407.625000px;}
.y21_c00266{bottom:433.545000px;}
.y20_c00266{bottom:459.465000px;}
.y1f_c00266{bottom:485.070000px;}
.y1e_c00266{bottom:510.990000px;}
.y1d_c00266{bottom:536.910000px;}
.y1c_c00266{bottom:562.830000px;}
.y1b_c00266{bottom:588.750000px;}
.y1a_c00266{bottom:614.700000px;}
.y19_c00266{bottom:640.620000px;}
.y18_c00266{bottom:666.540000px;}
.y17_c00266{bottom:692.100000px;}
.y16_c00266{bottom:718.020000px;}
.y15_c00266{bottom:743.970000px;}
.y14_c00266{bottom:769.890000px;}
.y13_c00266{bottom:795.810000px;}
.y11_c00266{bottom:821.730000px;}
.y12_c00266{bottom:828.570000px;}
.y10_c00266{bottom:871.095000px;}
.yf_c00266{bottom:922.935000px;}
.ye_c00266{bottom:953.895000px;}
.yd_c00266{bottom:984.885000px;}
.yb_c00266{bottom:1016.205000px;}
.yc_c00266{bottom:1024.485000px;}
.ya_c00266{bottom:1047.165000px;}
.y9_c00266{bottom:1078.125000px;}
.y8_c00266{bottom:1109.130000px;}
.y7_c00266{bottom:1140.450000px;}
.y2_c00266{bottom:1189.050000px;}
.h3_c00266{height:20.550000px;}
.h9_c00266{height:38.158594px;}
.h4_c00266{height:41.395500px;}
.h7_c00266{height:46.638281px;}
.hb_c00266{height:59.328281px;}
.h8_c00266{height:59.357813px;}
.ha_c00266{height:60.952500px;}
.h2_c00266{height:64.546875px;}
.h5_c00266{height:70.664062px;}
.h6_c00266{height:1262.875500px;}
.h0_c00266{height:1262.880000px;}
.h1_c00266{height:1263.000000px;}
.w2_c00266{width:8.265000px;}
.w3_c00266{width:638.145000px;}
.w1_c00266{width:892.500000px;}
.w4_c00266{width:892.797000px;}
.w0_c00266{width:892.800000px;}
.x0_c00266{left:0.000000px;}
.x3_c00266{left:127.534500px;}
.xa_c00266{left:142.632000px;}
.x1_c00266{left:154.515000px;}
.x6_c00266{left:169.995000px;}
.x7_c00266{left:289.182000px;}
.x8_c00266{left:304.350000px;}
.x9_c00266{left:343.590000px;}
.x4_c00266{left:743.007000px;}
.x2_c00266{left:757.410000px;}
.x5_c00266{left:761.370000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls17_c00266{letter-spacing:-1.258667pt;}
.lsf_c00266{letter-spacing:-1.130667pt;}
.ls12_c00266{letter-spacing:-1.002667pt;}
.ls13_c00266{letter-spacing:-0.864000pt;}
.lsb_c00266{letter-spacing:-0.640000pt;}
.ls14_c00266{letter-spacing:-0.473600pt;}
.ls15_c00266{letter-spacing:-0.463467pt;}
.lsc_c00266{letter-spacing:-0.214933pt;}
.lsa_c00266{letter-spacing:0.000000pt;}
.lsd_c00266{letter-spacing:0.148267pt;}
.ls0_c00266{letter-spacing:0.160000pt;}
.ls16_c00266{letter-spacing:0.194667pt;}
.ls10_c00266{letter-spacing:0.278933pt;}
.lse_c00266{letter-spacing:0.414933pt;}
.ls18_c00266{letter-spacing:0.432533pt;}
.ls19_c00266{letter-spacing:0.460800pt;}
.ls11_c00266{letter-spacing:0.463467pt;}
.ls1_c00266{letter-spacing:0.640000pt;}
.ls6_c00266{letter-spacing:0.647680pt;}
.ls4_c00266{letter-spacing:0.660411pt;}
.ls5_c00266{letter-spacing:0.660554pt;}
.ls3_c00266{letter-spacing:0.660616pt;}
.ls2_c00266{letter-spacing:0.746667pt;}
.ls8_c00266{letter-spacing:8.320000pt;}
.ls9_c00266{letter-spacing:10.897920pt;}
.ls7_c00266{letter-spacing:12.160000pt;}
.ws0_c00266{word-spacing:-16.000000pt;}
.ws6_c00266{word-spacing:-13.903467pt;}
.wsa_c00266{word-spacing:-13.900800pt;}
.ws5_c00266{word-spacing:-13.718933pt;}
.ws9_c00266{word-spacing:-13.634667pt;}
.ws3_c00266{word-spacing:-13.588267pt;}
.ws1_c00266{word-spacing:-13.440000pt;}
.ws2_c00266{word-spacing:-13.225067pt;}
.ws8_c00266{word-spacing:-12.976533pt;}
.ws7_c00266{word-spacing:-12.437333pt;}
.ws4_c00266{word-spacing:-12.309333pt;}
.wsb_c00266{word-spacing:0.000000pt;}
._4_c00266{margin-left:-2.879979pt;}
._0_c00266{margin-left:-1.152000pt;}
._1_c00266{width:1.216000pt;}
._3_c00266{width:2.133312pt;}
._8_c00266{width:3.135979pt;}
._a_c00266{width:4.032000pt;}
._b_c00266{width:4.991851pt;}
._7_c00266{width:6.186709pt;}
._6_c00266{width:7.167979pt;}
._9_c00266{width:8.128000pt;}
._e_c00266{width:9.023979pt;}
._11_c00266{width:10.209065pt;}
._10_c00266{width:11.328000pt;}
._f_c00266{width:13.066667pt;}
._2_c00266{width:14.080000pt;}
._5_c00266{width:15.104000pt;}
._c_c00266{width:16.960000pt;}
._d_c00266{width:18.346645pt;}
.fs3_c00266{font-size:34.560000pt;}
.fs1_c00266{font-size:42.240000pt;}
.fs2_c00266{font-size:53.760000pt;}
.fs0_c00266{font-size:64.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y3_c00266{bottom:3.840000pt;}
.y6_c00266{bottom:4.160000pt;}
.y5_c00266{bottom:22.400000pt;}
.y4_c00266{bottom:28.480000pt;}
.y1_c00266{bottom:50.880000pt;}
.y30_c00266{bottom:116.192000pt;}
.y2f_c00266{bottom:131.552000pt;}
.y2e_c00266{bottom:146.906667pt;}
.y2d_c00266{bottom:162.266667pt;}
.y2c_c00266{bottom:168.346667pt;}
.y2b_c00266{bottom:177.626667pt;}
.y2a_c00266{bottom:192.666667pt;}
.y29_c00266{bottom:208.066667pt;}
.y28_c00266{bottom:223.426667pt;}
.y27_c00266{bottom:229.506667pt;}
.y26_c00266{bottom:239.426667pt;}
.y25_c00266{bottom:281.346667pt;}
.y24_c00266{bottom:309.186667pt;}
.y23_c00266{bottom:336.733333pt;}
.y22_c00266{bottom:362.333333pt;}
.y21_c00266{bottom:385.373333pt;}
.y20_c00266{bottom:408.413333pt;}
.y1f_c00266{bottom:431.173333pt;}
.y1e_c00266{bottom:454.213333pt;}
.y1d_c00266{bottom:477.253333pt;}
.y1c_c00266{bottom:500.293333pt;}
.y1b_c00266{bottom:523.333333pt;}
.y1a_c00266{bottom:546.400000pt;}
.y19_c00266{bottom:569.440000pt;}
.y18_c00266{bottom:592.480000pt;}
.y17_c00266{bottom:615.200000pt;}
.y16_c00266{bottom:638.240000pt;}
.y15_c00266{bottom:661.306667pt;}
.y14_c00266{bottom:684.346667pt;}
.y13_c00266{bottom:707.386667pt;}
.y11_c00266{bottom:730.426667pt;}
.y12_c00266{bottom:736.506667pt;}
.y10_c00266{bottom:774.306667pt;}
.yf_c00266{bottom:820.386667pt;}
.ye_c00266{bottom:847.906667pt;}
.yd_c00266{bottom:875.453333pt;}
.yb_c00266{bottom:903.293333pt;}
.yc_c00266{bottom:910.653333pt;}
.ya_c00266{bottom:930.813333pt;}
.y9_c00266{bottom:958.333333pt;}
.y8_c00266{bottom:985.893333pt;}
.y7_c00266{bottom:1013.733333pt;}
.y2_c00266{bottom:1056.933333pt;}
.h3_c00266{height:18.266667pt;}
.h9_c00266{height:33.918750pt;}
.h4_c00266{height:36.796000pt;}
.h7_c00266{height:41.456250pt;}
.hb_c00266{height:52.736250pt;}
.h8_c00266{height:52.762500pt;}
.ha_c00266{height:54.180000pt;}
.h2_c00266{height:57.375000pt;}
.h5_c00266{height:62.812500pt;}
.h6_c00266{height:1122.556000pt;}
.h0_c00266{height:1122.560000pt;}
.h1_c00266{height:1122.666667pt;}
.w2_c00266{width:7.346667pt;}
.w3_c00266{width:567.240000pt;}
.w1_c00266{width:793.333333pt;}
.w4_c00266{width:793.597333pt;}
.w0_c00266{width:793.600000pt;}
.x0_c00266{left:0.000000pt;}
.x3_c00266{left:113.364000pt;}
.xa_c00266{left:126.784000pt;}
.x1_c00266{left:137.346667pt;}
.x6_c00266{left:151.106667pt;}
.x7_c00266{left:257.050667pt;}
.x8_c00266{left:270.533333pt;}
.x9_c00266{left:305.413333pt;}
.x4_c00266{left:660.450667pt;}
.x2_c00266{left:673.253333pt;}
.x5_c00266{left:676.773333pt;}
}





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

.ir_c00267:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00267;src:url('chunks/assets/font_cd2b835a6c97722f1d0ebeae.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_d0e2f1933572b1667f3aede5.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_f3c4587f59a67558631c7fa1.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;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_c00267;src:url('chunks/assets/font_5a7a663f4d60c3327cc57792.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00267;src:url('chunks/assets/font_d05ceeb3ea0feeb35bf758bc.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00267;src:url('chunks/assets/font_f35ab0ef8f54b92832c2b176.woff2')format("woff");}.ff6_c00267{font-family:ff6_c00267;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.lsc_c00267{letter-spacing:-1.512000px;}
.ls9_c00267{letter-spacing:-1.440000px;}
.lsa_c00267{letter-spacing:-0.241800px;}
.ls8_c00267{letter-spacing:0.000000px;}
.ls7_c00267{letter-spacing:0.048960px;}
.ls5_c00267{letter-spacing:0.180000px;}
.ls0_c00267{letter-spacing:0.504000px;}
.ls3_c00267{letter-spacing:0.576000px;}
.lsb_c00267{letter-spacing:0.702000px;}
.ls6_c00267{letter-spacing:0.720000px;}
.ls4_c00267{letter-spacing:0.792000px;}
.ls1_c00267{letter-spacing:10.800000px;}
.ls2_c00267{letter-spacing:18.000000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00267{word-spacing:-60.480000px;}
.ws0_c00267{word-spacing:-18.000000px;}
.ws3_c00267{word-spacing:-15.822000px;}
.ws1_c00267{word-spacing:-15.120000px;}
.ws4_c00267{word-spacing:0.000000px;}
._11_c00267{margin-left:-3.732000px;}
._4_c00267{margin-left:-2.520000px;}
._0_c00267{margin-left:-1.296000px;}
._1_c00267{width:1.080000px;}
._3_c00267{width:2.160000px;}
._2_c00267{width:3.888000px;}
._b_c00267{width:4.968000px;}
._a_c00267{width:6.408000px;}
._9_c00267{width:7.488000px;}
._8_c00267{width:8.568000px;}
._e_c00267{width:10.140000px;}
._10_c00267{width:11.160000px;}
._12_c00267{width:12.312000px;}
._c_c00267{width:13.320000px;}
._d_c00267{width:15.336000px;}
._f_c00267{width:19.080000px;}
._5_c00267{width:21.600000px;}
._6_c00267{width:22.752000px;}
._7_c00267{width:24.168000px;}
._14_c00267{width:25.668000px;}
._13_c00267{width:26.904000px;}
.fc0_c00267{color:rgb(0,0,0);}
.fs3_c00267{font-size:38.880000px;}
.fs1_c00267{font-size:47.520000px;}
.fs2_c00267{font-size:60.480000px;}
.fs0_c00267{font-size:72.000000px;}
.y0_c00267{bottom:0.000000px;}
.y3_c00267{bottom:4.320000px;}
.y6_c00267{bottom:4.680000px;}
.y5_c00267{bottom:25.200000px;}
.y4_c00267{bottom:32.040000px;}
.y1_c00267{bottom:57.240000px;}
.y27_c00267{bottom:130.716000px;}
.y26_c00267{bottom:137.556000px;}
.y25_c00267{bottom:148.356000px;}
.y24_c00267{bottom:238.035000px;}
.y23_c00267{bottom:263.955000px;}
.y22_c00267{bottom:289.875000px;}
.y21_c00267{bottom:315.795000px;}
.y20_c00267{bottom:364.785000px;}
.y1f_c00267{bottom:396.105000px;}
.y1e_c00267{bottom:447.945000px;}
.y1d_c00267{bottom:478.950000px;}
.y1c_c00267{bottom:510.270000px;}
.y1b_c00267{bottom:541.230000px;}
.y1a_c00267{bottom:572.190000px;}
.y19_c00267{bottom:603.180000px;}
.y18_c00267{bottom:634.500000px;}
.y17_c00267{bottom:665.460000px;}
.y16_c00267{bottom:696.420000px;}
.y15_c00267{bottom:727.410000px;}
.y14_c00267{bottom:758.730000px;}
.y13_c00267{bottom:789.690000px;}
.y12_c00267{bottom:820.650000px;}
.y11_c00267{bottom:851.655000px;}
.y10_c00267{bottom:882.975000px;}
.yf_c00267{bottom:922.935000px;}
.yd_c00267{bottom:953.895000px;}
.ye_c00267{bottom:962.175000px;}
.yc_c00267{bottom:984.885000px;}
.yb_c00267{bottom:1016.205000px;}
.ya_c00267{bottom:1047.165000px;}
.y9_c00267{bottom:1078.125000px;}
.y8_c00267{bottom:1109.130000px;}
.y7_c00267{bottom:1140.450000px;}
.y2_c00267{bottom:1189.050000px;}
.h3_c00267{height:20.550000px;}
.h9_c00267{height:34.855313px;}
.h4_c00267{height:41.395500px;}
.h7_c00267{height:46.638281px;}
.ha_c00267{height:54.219375px;}
.h8_c00267{height:59.357813px;}
.h2_c00267{height:64.546875px;}
.h5_c00267{height:70.664062px;}
.h6_c00267{height:1262.875500px;}
.h0_c00267{height:1262.880000px;}
.h1_c00267{height:1263.000000px;}
.w2_c00267{width:8.265000px;}
.w3_c00267{width:638.145000px;}
.w1_c00267{width:892.500000px;}
.w4_c00267{width:892.797000px;}
.w0_c00267{width:892.800000px;}
.x0_c00267{left:0.000000px;}
.x3_c00267{left:127.534500px;}
.x8_c00267{left:142.632000px;}
.x1_c00267{left:154.515000px;}
.x6_c00267{left:169.995000px;}
.x7_c00267{left:343.590000px;}
.x4_c00267{left:468.567000px;}
.x5_c00267{left:486.930000px;}
.x2_c00267{left:757.410000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.lsc_c00267{letter-spacing:-1.344000pt;}
.ls9_c00267{letter-spacing:-1.280000pt;}
.lsa_c00267{letter-spacing:-0.214933pt;}
.ls8_c00267{letter-spacing:0.000000pt;}
.ls7_c00267{letter-spacing:0.043520pt;}
.ls5_c00267{letter-spacing:0.160000pt;}
.ls0_c00267{letter-spacing:0.448000pt;}
.ls3_c00267{letter-spacing:0.512000pt;}
.lsb_c00267{letter-spacing:0.624000pt;}
.ls6_c00267{letter-spacing:0.640000pt;}
.ls4_c00267{letter-spacing:0.704000pt;}
.ls1_c00267{letter-spacing:9.600000pt;}
.ls2_c00267{letter-spacing:16.000000pt;}
.ws2_c00267{word-spacing:-53.760000pt;}
.ws0_c00267{word-spacing:-16.000000pt;}
.ws3_c00267{word-spacing:-14.064000pt;}
.ws1_c00267{word-spacing:-13.440000pt;}
.ws4_c00267{word-spacing:0.000000pt;}
._11_c00267{margin-left:-3.317333pt;}
._4_c00267{margin-left:-2.240000pt;}
._0_c00267{margin-left:-1.152000pt;}
._1_c00267{width:0.960000pt;}
._3_c00267{width:1.920000pt;}
._2_c00267{width:3.456000pt;}
._b_c00267{width:4.416000pt;}
._a_c00267{width:5.696000pt;}
._9_c00267{width:6.656000pt;}
._8_c00267{width:7.616000pt;}
._e_c00267{width:9.013333pt;}
._10_c00267{width:9.920000pt;}
._12_c00267{width:10.944000pt;}
._c_c00267{width:11.840000pt;}
._d_c00267{width:13.632000pt;}
._f_c00267{width:16.960000pt;}
._5_c00267{width:19.200000pt;}
._6_c00267{width:20.224000pt;}
._7_c00267{width:21.482667pt;}
._14_c00267{width:22.816000pt;}
._13_c00267{width:23.914667pt;}
.fs3_c00267{font-size:34.560000pt;}
.fs1_c00267{font-size:42.240000pt;}
.fs2_c00267{font-size:53.760000pt;}
.fs0_c00267{font-size:64.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y3_c00267{bottom:3.840000pt;}
.y6_c00267{bottom:4.160000pt;}
.y5_c00267{bottom:22.400000pt;}
.y4_c00267{bottom:28.480000pt;}
.y1_c00267{bottom:50.880000pt;}
.y27_c00267{bottom:116.192000pt;}
.y26_c00267{bottom:122.272000pt;}
.y25_c00267{bottom:131.872000pt;}
.y24_c00267{bottom:211.586667pt;}
.y23_c00267{bottom:234.626667pt;}
.y22_c00267{bottom:257.666667pt;}
.y21_c00267{bottom:280.706667pt;}
.y20_c00267{bottom:324.253333pt;}
.y1f_c00267{bottom:352.093333pt;}
.y1e_c00267{bottom:398.173333pt;}
.y1d_c00267{bottom:425.733333pt;}
.y1c_c00267{bottom:453.573333pt;}
.y1b_c00267{bottom:481.093333pt;}
.y1a_c00267{bottom:508.613333pt;}
.y19_c00267{bottom:536.160000pt;}
.y18_c00267{bottom:564.000000pt;}
.y17_c00267{bottom:591.520000pt;}
.y16_c00267{bottom:619.040000pt;}
.y15_c00267{bottom:646.586667pt;}
.y14_c00267{bottom:674.426667pt;}
.y13_c00267{bottom:701.946667pt;}
.y12_c00267{bottom:729.466667pt;}
.y11_c00267{bottom:757.026667pt;}
.y10_c00267{bottom:784.866667pt;}
.yf_c00267{bottom:820.386667pt;}
.yd_c00267{bottom:847.906667pt;}
.ye_c00267{bottom:855.266667pt;}
.yc_c00267{bottom:875.453333pt;}
.yb_c00267{bottom:903.293333pt;}
.ya_c00267{bottom:930.813333pt;}
.y9_c00267{bottom:958.333333pt;}
.y8_c00267{bottom:985.893333pt;}
.y7_c00267{bottom:1013.733333pt;}
.y2_c00267{bottom:1056.933333pt;}
.h3_c00267{height:18.266667pt;}
.h9_c00267{height:30.982500pt;}
.h4_c00267{height:36.796000pt;}
.h7_c00267{height:41.456250pt;}
.ha_c00267{height:48.195000pt;}
.h8_c00267{height:52.762500pt;}
.h2_c00267{height:57.375000pt;}
.h5_c00267{height:62.812500pt;}
.h6_c00267{height:1122.556000pt;}
.h0_c00267{height:1122.560000pt;}
.h1_c00267{height:1122.666667pt;}
.w2_c00267{width:7.346667pt;}
.w3_c00267{width:567.240000pt;}
.w1_c00267{width:793.333333pt;}
.w4_c00267{width:793.597333pt;}
.w0_c00267{width:793.600000pt;}
.x0_c00267{left:0.000000pt;}
.x3_c00267{left:113.364000pt;}
.x8_c00267{left:126.784000pt;}
.x1_c00267{left:137.346667pt;}
.x6_c00267{left:151.106667pt;}
.x7_c00267{left:305.413333pt;}
.x4_c00267{left:416.504000pt;}
.x5_c00267{left:432.826667pt;}
.x2_c00267{left:673.253333pt;}
}





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

.ir_c00268:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00268;src:url('chunks/assets/font_a76947c37f304a9ec2644fe4.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_d738899b9caf33c6c68cf5d5.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_d66e3b95f7aafa8187c54738.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_dc2060053b042dbb45985cee.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_b654ee2f4760f1bdd3cd2518.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00268;src:url('chunks/assets/font_e78ada127196e464733f117d.woff2')format("woff");}.ff6_c00268{font-family:ff6_c00268;line-height:1.104004;font-style:normal;font-weight: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_c00268;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00268{font-family:ff7_c00268;line-height:1.311035;font-style:normal;font-weight: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_c00268;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff8_c00268{font-family:ff8_c00268;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.lsd_c00268{letter-spacing:-1.272000px;}
.lsc_c00268{letter-spacing:-0.720000px;}
.ls9_c00268{letter-spacing:-0.288000px;}
.lsb_c00268{letter-spacing:-0.241800px;}
.ls8_c00268{letter-spacing:0.000000px;}
.ls3_c00268{letter-spacing:0.144000px;}
.lsa_c00268{letter-spacing:0.288000px;}
.ls4_c00268{letter-spacing:0.720000px;}
.ls7_c00268{letter-spacing:0.740401px;}
.ls5_c00268{letter-spacing:0.756359px;}
.ls6_c00268{letter-spacing:0.840000px;}
.ls2_c00268{letter-spacing:3.600000px;}
.ls1_c00268{letter-spacing:6.480000px;}
.ls0_c00268{letter-spacing:9.360000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00268{word-spacing:-72.000000px;}
.ws6_c00268{word-spacing:-60.480000px;}
.ws2_c00268{word-spacing:-18.288000px;}
.ws0_c00268{word-spacing:-18.000000px;}
.ws3_c00268{word-spacing:-17.712000px;}
.ws4_c00268{word-spacing:-15.120000px;}
.ws5_c00268{word-spacing:-14.878200px;}
.ws7_c00268{word-spacing:-13.848000px;}
.ws8_c00268{word-spacing:0.000000px;}
._4_c00268{margin-left:-2.553604px;}
._0_c00268{margin-left:-1.330802px;}
._1_c00268{width:1.653604px;}
._5_c00268{width:2.842802px;}
._6_c00268{width:4.577990px;}
._10_c00268{width:6.194396px;}
._f_c00268{width:7.200000px;}
._2_c00268{width:9.288000px;}
._3_c00268{width:10.718396px;}
._12_c00268{width:11.820019px;}
._7_c00268{width:13.069198px;}
._8_c00268{width:14.725198px;}
._11_c00268{width:20.195407px;}
._9_c00268{width:21.816000px;}
._a_c00268{width:23.400000px;}
._b_c00268{width:24.927594px;}
._e_c00268{width:49.213198px;}
._c_c00268{width:50.400000px;}
._d_c00268{width:51.840000px;}
.fc0_c00268{color:rgb(0,0,0);}
.fs2_c00268{font-size:38.880000px;}
.fs3_c00268{font-size:47.520000px;}
.fs1_c00268{font-size:60.480000px;}
.fs0_c00268{font-size:72.000000px;}
.y0_c00268{bottom:0.000000px;}
.y3_c00268{bottom:4.320000px;}
.y6_c00268{bottom:4.680000px;}
.y5_c00268{bottom:25.200000px;}
.y4_c00268{bottom:32.040000px;}
.y1_c00268{bottom:57.240000px;}
.y2d_c00268{bottom:130.716000px;}
.y2c_c00268{bottom:137.556000px;}
.y2b_c00268{bottom:147.996000px;}
.y2a_c00268{bottom:165.270000px;}
.y29_c00268{bottom:182.550000px;}
.y28_c00268{bottom:189.390000px;}
.y27_c00268{bottom:200.190000px;}
.y26_c00268{bottom:221.070000px;}
.y25_c00268{bottom:252.075000px;}
.y23_c00268{bottom:283.035000px;}
.y24_c00268{bottom:291.315000px;}
.y22_c00268{bottom:314.355000px;}
.y21_c00268{bottom:345.315000px;}
.y20_c00268{bottom:383.145000px;}
.y1f_c00268{bottom:409.065000px;}
.y1e_c00268{bottom:443.625000px;}
.y1d_c00268{bottom:469.545000px;}
.y1c_c00268{bottom:495.510000px;}
.y1b_c00268{bottom:521.430000px;}
.y1a_c00268{bottom:547.350000px;}
.y19_c00268{bottom:596.670000px;}
.y18_c00268{bottom:648.540000px;}
.y17_c00268{bottom:679.500000px;}
.y16_c00268{bottom:710.820000px;}
.y15_c00268{bottom:741.810000px;}
.y14_c00268{bottom:772.770000px;}
.y13_c00268{bottom:803.730000px;}
.y12_c00268{bottom:835.050000px;}
.y11_c00268{bottom:866.055000px;}
.y10_c00268{bottom:897.015000px;}
.yf_c00268{bottom:927.975000px;}
.ye_c00268{bottom:959.295000px;}
.yd_c00268{bottom:990.285000px;}
.yc_c00268{bottom:1021.245000px;}
.yb_c00268{bottom:1052.205000px;}
.ya_c00268{bottom:1083.165000px;}
.y9_c00268{bottom:1114.530000px;}
.y7_c00268{bottom:1143.330000px;}
.y8_c00268{bottom:1150.170000px;}
.y2_c00268{bottom:1189.050000px;}
.h3_c00268{height:20.550000px;}
.he_c00268{height:34.855313px;}
.h7_c00268{height:38.139609px;}
.hc_c00268{height:38.158594px;}
.h4_c00268{height:41.395500px;}
.hb_c00268{height:46.638281px;}
.hf_c00268{height:54.514688px;}
.h5_c00268{height:59.328281px;}
.ha_c00268{height:59.357813px;}
.hd_c00268{height:60.952500px;}
.h2_c00268{height:64.546875px;}
.h9_c00268{height:70.628906px;}
.h8_c00268{height:70.664062px;}
.h6_c00268{height:1262.875500px;}
.h0_c00268{height:1262.880000px;}
.h1_c00268{height:1263.000000px;}
.w2_c00268{width:8.265000px;}
.w3_c00268{width:638.145000px;}
.w1_c00268{width:892.500000px;}
.w4_c00268{width:892.797000px;}
.w0_c00268{width:892.800000px;}
.x0_c00268{left:0.000000px;}
.x3_c00268{left:127.534500px;}
.xa_c00268{left:142.632000px;}
.x1_c00268{left:154.515000px;}
.x4_c00268{left:169.995000px;}
.x7_c00268{left:206.352000px;}
.x8_c00268{left:224.745000px;}
.x9_c00268{left:343.590000px;}
.x5_c00268{left:606.492000px;}
.x6_c00268{left:621.615000px;}
.x2_c00268{left:757.410000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.lsd_c00268{letter-spacing:-1.130667pt;}
.lsc_c00268{letter-spacing:-0.640000pt;}
.ls9_c00268{letter-spacing:-0.256000pt;}
.lsb_c00268{letter-spacing:-0.214933pt;}
.ls8_c00268{letter-spacing:0.000000pt;}
.ls3_c00268{letter-spacing:0.128000pt;}
.lsa_c00268{letter-spacing:0.256000pt;}
.ls4_c00268{letter-spacing:0.640000pt;}
.ls7_c00268{letter-spacing:0.658134pt;}
.ls5_c00268{letter-spacing:0.672319pt;}
.ls6_c00268{letter-spacing:0.746667pt;}
.ls2_c00268{letter-spacing:3.200000pt;}
.ls1_c00268{letter-spacing:5.760000pt;}
.ls0_c00268{letter-spacing:8.320000pt;}
.ws1_c00268{word-spacing:-64.000000pt;}
.ws6_c00268{word-spacing:-53.760000pt;}
.ws2_c00268{word-spacing:-16.256000pt;}
.ws0_c00268{word-spacing:-16.000000pt;}
.ws3_c00268{word-spacing:-15.744000pt;}
.ws4_c00268{word-spacing:-13.440000pt;}
.ws5_c00268{word-spacing:-13.225067pt;}
.ws7_c00268{word-spacing:-12.309333pt;}
.ws8_c00268{word-spacing:0.000000pt;}
._4_c00268{margin-left:-2.269870pt;}
._0_c00268{margin-left:-1.182935pt;}
._1_c00268{width:1.469870pt;}
._5_c00268{width:2.526935pt;}
._6_c00268{width:4.069325pt;}
._10_c00268{width:5.506130pt;}
._f_c00268{width:6.400000pt;}
._2_c00268{width:8.256000pt;}
._3_c00268{width:9.527463pt;}
._12_c00268{width:10.506684pt;}
._7_c00268{width:11.617065pt;}
._8_c00268{width:13.089065pt;}
._11_c00268{width:17.951473pt;}
._9_c00268{width:19.392000pt;}
._a_c00268{width:20.800000pt;}
._b_c00268{width:22.157862pt;}
._e_c00268{width:43.745065pt;}
._c_c00268{width:44.800000pt;}
._d_c00268{width:46.080000pt;}
.fs2_c00268{font-size:34.560000pt;}
.fs3_c00268{font-size:42.240000pt;}
.fs1_c00268{font-size:53.760000pt;}
.fs0_c00268{font-size:64.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y3_c00268{bottom:3.840000pt;}
.y6_c00268{bottom:4.160000pt;}
.y5_c00268{bottom:22.400000pt;}
.y4_c00268{bottom:28.480000pt;}
.y1_c00268{bottom:50.880000pt;}
.y2d_c00268{bottom:116.192000pt;}
.y2c_c00268{bottom:122.272000pt;}
.y2b_c00268{bottom:131.552000pt;}
.y2a_c00268{bottom:146.906667pt;}
.y29_c00268{bottom:162.266667pt;}
.y28_c00268{bottom:168.346667pt;}
.y27_c00268{bottom:177.946667pt;}
.y26_c00268{bottom:196.506667pt;}
.y25_c00268{bottom:224.066667pt;}
.y23_c00268{bottom:251.586667pt;}
.y24_c00268{bottom:258.946667pt;}
.y22_c00268{bottom:279.426667pt;}
.y21_c00268{bottom:306.946667pt;}
.y20_c00268{bottom:340.573333pt;}
.y1f_c00268{bottom:363.613333pt;}
.y1e_c00268{bottom:394.333333pt;}
.y1d_c00268{bottom:417.373333pt;}
.y1c_c00268{bottom:440.453333pt;}
.y1b_c00268{bottom:463.493333pt;}
.y1a_c00268{bottom:486.533333pt;}
.y19_c00268{bottom:530.373333pt;}
.y18_c00268{bottom:576.480000pt;}
.y17_c00268{bottom:604.000000pt;}
.y16_c00268{bottom:631.840000pt;}
.y15_c00268{bottom:659.386667pt;}
.y14_c00268{bottom:686.906667pt;}
.y13_c00268{bottom:714.426667pt;}
.y12_c00268{bottom:742.266667pt;}
.y11_c00268{bottom:769.826667pt;}
.y10_c00268{bottom:797.346667pt;}
.yf_c00268{bottom:824.866667pt;}
.ye_c00268{bottom:852.706667pt;}
.yd_c00268{bottom:880.253333pt;}
.yc_c00268{bottom:907.773333pt;}
.yb_c00268{bottom:935.293333pt;}
.ya_c00268{bottom:962.813333pt;}
.y9_c00268{bottom:990.693333pt;}
.y7_c00268{bottom:1016.293333pt;}
.y8_c00268{bottom:1022.373333pt;}
.y2_c00268{bottom:1056.933333pt;}
.h3_c00268{height:18.266667pt;}
.he_c00268{height:30.982500pt;}
.h7_c00268{height:33.901875pt;}
.hc_c00268{height:33.918750pt;}
.h4_c00268{height:36.796000pt;}
.hb_c00268{height:41.456250pt;}
.hf_c00268{height:48.457500pt;}
.h5_c00268{height:52.736250pt;}
.ha_c00268{height:52.762500pt;}
.hd_c00268{height:54.180000pt;}
.h2_c00268{height:57.375000pt;}
.h9_c00268{height:62.781250pt;}
.h8_c00268{height:62.812500pt;}
.h6_c00268{height:1122.556000pt;}
.h0_c00268{height:1122.560000pt;}
.h1_c00268{height:1122.666667pt;}
.w2_c00268{width:7.346667pt;}
.w3_c00268{width:567.240000pt;}
.w1_c00268{width:793.333333pt;}
.w4_c00268{width:793.597333pt;}
.w0_c00268{width:793.600000pt;}
.x0_c00268{left:0.000000pt;}
.x3_c00268{left:113.364000pt;}
.xa_c00268{left:126.784000pt;}
.x1_c00268{left:137.346667pt;}
.x4_c00268{left:151.106667pt;}
.x7_c00268{left:183.424000pt;}
.x8_c00268{left:199.773333pt;}
.x9_c00268{left:305.413333pt;}
.x5_c00268{left:539.104000pt;}
.x6_c00268{left:552.546667pt;}
.x2_c00268{left:673.253333pt;}
}





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

.ir_c00269:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00269;src:url('chunks/assets/font_6c4eb4fc920f419e6cdfa510.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_1694cf6ed4114c00c3419457.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_c68fa9be308e0ff265885713.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00269;src:url('chunks/assets/font_7cc34119e5ab840bb411b598.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;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_c00269;src:url('chunks/assets/font_463c722a2f55866616102d43.woff2')format("woff");}.ff5_c00269{font-family:ff5_c00269;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00269;src:url('chunks/assets/font_e79eca6148cd19921ea54a5a.woff2')format("woff");}.ff6_c00269{font-family:ff6_c00269;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls8_c00269{letter-spacing:-1.680000px;}
.ls9_c00269{letter-spacing:-0.912000px;}
.lsa_c00269{letter-spacing:-0.648000px;}
.lsc_c00269{letter-spacing:-0.466800px;}
.ls6_c00269{letter-spacing:0.000000px;}
.ls5_c00269{letter-spacing:0.180000px;}
.lsd_c00269{letter-spacing:0.466800px;}
.lsb_c00269{letter-spacing:0.486600px;}
.ls2_c00269{letter-spacing:0.504000px;}
.ls7_c00269{letter-spacing:0.529800px;}
.ls1_c00269{letter-spacing:0.720000px;}
.ls4_c00269{letter-spacing:0.740252px;}
.ls0_c00269{letter-spacing:0.740339px;}
.ls3_c00269{letter-spacing:0.740396px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:-72.000000px;}
.ws3_c00269{word-spacing:-60.480000px;}
.ws4_c00269{word-spacing:-18.000000px;}
.ws5_c00269{word-spacing:-17.352000px;}
.ws6_c00269{word-spacing:-15.606600px;}
.ws1_c00269{word-spacing:-15.120000px;}
.ws7_c00269{word-spacing:-14.653200px;}
.ws2_c00269{word-spacing:-13.440000px;}
.ws8_c00269{word-spacing:0.000000px;}
._2_c00269{margin-left:-3.024000px;}
._3_c00269{margin-left:-1.152000px;}
._1_c00269{width:1.512000px;}
._0_c00269{width:2.808000px;}
._4_c00269{width:4.248000px;}
._5_c00269{width:6.192000px;}
._9_c00269{width:7.272000px;}
._6_c00269{width:12.828024px;}
._7_c00269{width:14.363928px;}
._8_c00269{width:16.212024px;}
._a_c00269{width:19.224000px;}
._b_c00269{width:20.736000px;}
._d_c00269{width:30.744000px;}
._c_c00269{width:32.832000px;}
.fc0_c00269{color:rgb(0,0,0);}
.fs3_c00269{font-size:38.880000px;}
.fs2_c00269{font-size:47.520000px;}
.fs1_c00269{font-size:60.480000px;}
.fs0_c00269{font-size:72.000000px;}
.y0_c00269{bottom:0.000000px;}
.y3_c00269{bottom:4.320000px;}
.y6_c00269{bottom:4.680000px;}
.y5_c00269{bottom:25.200000px;}
.y4_c00269{bottom:32.040000px;}
.y1_c00269{bottom:57.240000px;}
.y28_c00269{bottom:130.716000px;}
.y27_c00269{bottom:137.556000px;}
.y26_c00269{bottom:148.356000px;}
.y25_c00269{bottom:191.910000px;}
.y24_c00269{bottom:223.230000px;}
.y23_c00269{bottom:254.235000px;}
.y21_c00269{bottom:285.195000px;}
.y22_c00269{bottom:293.475000px;}
.y20_c00269{bottom:316.155000px;}
.y1f_c00269{bottom:347.475000px;}
.y1e_c00269{bottom:385.305000px;}
.y1d_c00269{bottom:419.865000px;}
.y1c_c00269{bottom:445.785000px;}
.y1b_c00269{bottom:495.150000px;}
.y1a_c00269{bottom:546.990000px;}
.y19_c00269{bottom:578.310000px;}
.y18_c00269{bottom:609.300000px;}
.y17_c00269{bottom:640.260000px;}
.y16_c00269{bottom:671.220000px;}
.y15_c00269{bottom:700.020000px;}
.y14_c00269{bottom:734.970000px;}
.y13_c00269{bottom:760.890000px;}
.y12_c00269{bottom:786.810000px;}
.y11_c00269{bottom:821.730000px;}
.y10_c00269{bottom:847.695000px;}
.yf_c00269{bottom:873.255000px;}
.ye_c00269{bottom:899.175000px;}
.yd_c00269{bottom:925.095000px;}
.yc_c00269{bottom:951.015000px;}
.yb_c00269{bottom:976.965000px;}
.ya_c00269{bottom:1026.285000px;}
.y9_c00269{bottom:1078.125000px;}
.y8_c00269{bottom:1109.130000px;}
.y7_c00269{bottom:1140.450000px;}
.y2_c00269{bottom:1189.050000px;}
.h3_c00269{height:20.550000px;}
.ha_c00269{height:34.855313px;}
.h4_c00269{height:41.395500px;}
.h9_c00269{height:46.638281px;}
.h7_c00269{height:59.328281px;}
.h6_c00269{height:59.357813px;}
.h2_c00269{height:64.546875px;}
.h5_c00269{height:70.664062px;}
.h8_c00269{height:1262.875500px;}
.h0_c00269{height:1262.880000px;}
.h1_c00269{height:1263.000000px;}
.w2_c00269{width:8.265000px;}
.w3_c00269{width:638.145000px;}
.w1_c00269{width:892.500000px;}
.w4_c00269{width:892.797000px;}
.w0_c00269{width:892.800000px;}
.x0_c00269{left:0.000000px;}
.x3_c00269{left:127.534500px;}
.x8_c00269{left:142.632000px;}
.x1_c00269{left:154.515000px;}
.x4_c00269{left:169.995000px;}
.x7_c00269{left:343.590000px;}
.x5_c00269{left:544.527000px;}
.x6_c00269{left:562.935000px;}
.x2_c00269{left:757.410000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls8_c00269{letter-spacing:-1.493333pt;}
.ls9_c00269{letter-spacing:-0.810667pt;}
.lsa_c00269{letter-spacing:-0.576000pt;}
.lsc_c00269{letter-spacing:-0.414933pt;}
.ls6_c00269{letter-spacing:0.000000pt;}
.ls5_c00269{letter-spacing:0.160000pt;}
.lsd_c00269{letter-spacing:0.414933pt;}
.lsb_c00269{letter-spacing:0.432533pt;}
.ls2_c00269{letter-spacing:0.448000pt;}
.ls7_c00269{letter-spacing:0.470933pt;}
.ls1_c00269{letter-spacing:0.640000pt;}
.ls4_c00269{letter-spacing:0.658002pt;}
.ls0_c00269{letter-spacing:0.658079pt;}
.ls3_c00269{letter-spacing:0.658130pt;}
.ws0_c00269{word-spacing:-64.000000pt;}
.ws3_c00269{word-spacing:-53.760000pt;}
.ws4_c00269{word-spacing:-16.000000pt;}
.ws5_c00269{word-spacing:-15.424000pt;}
.ws6_c00269{word-spacing:-13.872533pt;}
.ws1_c00269{word-spacing:-13.440000pt;}
.ws7_c00269{word-spacing:-13.025067pt;}
.ws2_c00269{word-spacing:-11.946667pt;}
.ws8_c00269{word-spacing:0.000000pt;}
._2_c00269{margin-left:-2.688000pt;}
._3_c00269{margin-left:-1.024000pt;}
._1_c00269{width:1.344000pt;}
._0_c00269{width:2.496000pt;}
._4_c00269{width:3.776000pt;}
._5_c00269{width:5.504000pt;}
._9_c00269{width:6.464000pt;}
._6_c00269{width:11.402688pt;}
._7_c00269{width:12.767936pt;}
._8_c00269{width:14.410688pt;}
._a_c00269{width:17.088000pt;}
._b_c00269{width:18.432000pt;}
._d_c00269{width:27.328000pt;}
._c_c00269{width:29.184000pt;}
.fs3_c00269{font-size:34.560000pt;}
.fs2_c00269{font-size:42.240000pt;}
.fs1_c00269{font-size:53.760000pt;}
.fs0_c00269{font-size:64.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y3_c00269{bottom:3.840000pt;}
.y6_c00269{bottom:4.160000pt;}
.y5_c00269{bottom:22.400000pt;}
.y4_c00269{bottom:28.480000pt;}
.y1_c00269{bottom:50.880000pt;}
.y28_c00269{bottom:116.192000pt;}
.y27_c00269{bottom:122.272000pt;}
.y26_c00269{bottom:131.872000pt;}
.y25_c00269{bottom:170.586667pt;}
.y24_c00269{bottom:198.426667pt;}
.y23_c00269{bottom:225.986667pt;}
.y21_c00269{bottom:253.506667pt;}
.y22_c00269{bottom:260.866667pt;}
.y20_c00269{bottom:281.026667pt;}
.y1f_c00269{bottom:308.866667pt;}
.y1e_c00269{bottom:342.493333pt;}
.y1d_c00269{bottom:373.213333pt;}
.y1c_c00269{bottom:396.253333pt;}
.y1b_c00269{bottom:440.133333pt;}
.y1a_c00269{bottom:486.213333pt;}
.y19_c00269{bottom:514.053333pt;}
.y18_c00269{bottom:541.600000pt;}
.y17_c00269{bottom:569.120000pt;}
.y16_c00269{bottom:596.640000pt;}
.y15_c00269{bottom:622.240000pt;}
.y14_c00269{bottom:653.306667pt;}
.y13_c00269{bottom:676.346667pt;}
.y12_c00269{bottom:699.386667pt;}
.y11_c00269{bottom:730.426667pt;}
.y10_c00269{bottom:753.506667pt;}
.yf_c00269{bottom:776.226667pt;}
.ye_c00269{bottom:799.266667pt;}
.yd_c00269{bottom:822.306667pt;}
.yc_c00269{bottom:845.346667pt;}
.yb_c00269{bottom:868.413333pt;}
.ya_c00269{bottom:912.253333pt;}
.y9_c00269{bottom:958.333333pt;}
.y8_c00269{bottom:985.893333pt;}
.y7_c00269{bottom:1013.733333pt;}
.y2_c00269{bottom:1056.933333pt;}
.h3_c00269{height:18.266667pt;}
.ha_c00269{height:30.982500pt;}
.h4_c00269{height:36.796000pt;}
.h9_c00269{height:41.456250pt;}
.h7_c00269{height:52.736250pt;}
.h6_c00269{height:52.762500pt;}
.h2_c00269{height:57.375000pt;}
.h5_c00269{height:62.812500pt;}
.h8_c00269{height:1122.556000pt;}
.h0_c00269{height:1122.560000pt;}
.h1_c00269{height:1122.666667pt;}
.w2_c00269{width:7.346667pt;}
.w3_c00269{width:567.240000pt;}
.w1_c00269{width:793.333333pt;}
.w4_c00269{width:793.597333pt;}
.w0_c00269{width:793.600000pt;}
.x0_c00269{left:0.000000pt;}
.x3_c00269{left:113.364000pt;}
.x8_c00269{left:126.784000pt;}
.x1_c00269{left:137.346667pt;}
.x4_c00269{left:151.106667pt;}
.x7_c00269{left:305.413333pt;}
.x5_c00269{left:484.024000pt;}
.x6_c00269{left:500.386667pt;}
.x2_c00269{left:673.253333pt;}
}





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

.ir_c00270:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00270;src:url('chunks/assets/font_86ebe0a36934a7ba74ef6d9c.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_211ed58f441d0e92fa34c540.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_5a87c0ad5372b90ccc1a8467.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;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_c00270;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_a2d3b2a70833941f0a6cc6e8.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00270;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff6_c00270{font-family:ff6_c00270;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls5_c00270{letter-spacing:-2.880000px;}
.ls8_c00270{letter-spacing:-1.440000px;}
.ls7_c00270{letter-spacing:-0.648000px;}
.ls9_c00270{letter-spacing:-0.486600px;}
.ls4_c00270{letter-spacing:0.000000px;}
.ls1_c00270{letter-spacing:0.180000px;}
.ls3_c00270{letter-spacing:0.720000px;}
.ls6_c00270{letter-spacing:1.440000px;}
.ls0_c00270{letter-spacing:6.456000px;}
.ls2_c00270{letter-spacing:18.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00270{word-spacing:-72.000000px;}
.ws1_c00270{word-spacing:-18.000000px;}
.ws2_c00270{word-spacing:-15.120000px;}
.ws3_c00270{word-spacing:-14.633400px;}
.ws4_c00270{word-spacing:0.000000px;}
._3_c00270{margin-left:-2.592000px;}
._0_c00270{margin-left:-1.152000px;}
._1_c00270{width:1.080000px;}
._4_c00270{width:2.808000px;}
._a_c00270{width:3.960000px;}
._c_c00270{width:5.112000px;}
._e_c00270{width:6.336000px;}
._d_c00270{width:7.344000px;}
._f_c00270{width:8.424000px;}
._12_c00270{width:9.504000px;}
._b_c00270{width:10.872000px;}
._6_c00270{width:11.880000px;}
._5_c00270{width:13.032000px;}
._15_c00270{width:14.544000px;}
._14_c00270{width:16.200000px;}
._16_c00270{width:17.652000px;}
._2_c00270{width:19.715976px;}
._10_c00270{width:21.528000px;}
._11_c00270{width:22.896000px;}
._7_c00270{width:24.480000px;}
._8_c00270{width:25.488000px;}
._13_c00270{width:26.496000px;}
._9_c00270{width:186.492024px;}
.fc0_c00270{color:rgb(0,0,0);}
.fs2_c00270{font-size:38.880000px;}
.fs1_c00270{font-size:47.520000px;}
.fs3_c00270{font-size:60.480000px;}
.fs0_c00270{font-size:72.000000px;}
.y0_c00270{bottom:0.000000px;}
.y3_c00270{bottom:4.320000px;}
.y6_c00270{bottom:4.680000px;}
.y5_c00270{bottom:25.200000px;}
.y4_c00270{bottom:32.040000px;}
.y1_c00270{bottom:57.240000px;}
.y2f_c00270{bottom:130.716000px;}
.y2e_c00270{bottom:137.556000px;}
.y2d_c00270{bottom:147.996000px;}
.y2c_c00270{bottom:154.830000px;}
.y2b_c00270{bottom:165.270000px;}
.y2a_c00270{bottom:172.110000px;}
.y29_c00270{bottom:182.910000px;}
.y28_c00270{bottom:208.470000px;}
.y27_c00270{bottom:239.835000px;}
.y26_c00270{bottom:270.795000px;}
.y25_c00270{bottom:301.755000px;}
.y24_c00270{bottom:332.715000px;}
.y23_c00270{bottom:364.065000px;}
.y22_c00270{bottom:395.025000px;}
.y21_c00270{bottom:425.985000px;}
.y20_c00270{bottom:456.945000px;}
.y1f_c00270{bottom:487.950000px;}
.y1e_c00270{bottom:519.270000px;}
.y1d_c00270{bottom:550.230000px;}
.y1b_c00270{bottom:581.190000px;}
.y1c_c00270{bottom:589.470000px;}
.y1a_c00270{bottom:612.180000px;}
.y19_c00270{bottom:643.500000px;}
.y17_c00270{bottom:674.460000px;}
.y18_c00270{bottom:682.740000px;}
.y15_c00270{bottom:705.420000px;}
.y16_c00270{bottom:713.700000px;}
.y14_c00270{bottom:736.410000px;}
.y13_c00270{bottom:767.730000px;}
.y12_c00270{bottom:798.690000px;}
.y11_c00270{bottom:829.650000px;}
.y10_c00270{bottom:860.655000px;}
.yf_c00270{bottom:891.975000px;}
.ye_c00270{bottom:922.935000px;}
.yd_c00270{bottom:953.895000px;}
.yc_c00270{bottom:984.885000px;}
.yb_c00270{bottom:1016.205000px;}
.ya_c00270{bottom:1047.165000px;}
.y9_c00270{bottom:1078.125000px;}
.y8_c00270{bottom:1109.130000px;}
.y7_c00270{bottom:1140.450000px;}
.y2_c00270{bottom:1189.050000px;}
.h3_c00270{height:20.550000px;}
.ha_c00270{height:34.855313px;}
.h4_c00270{height:41.395500px;}
.h9_c00270{height:46.615078px;}
.h8_c00270{height:46.638281px;}
.hb_c00270{height:54.514688px;}
.h2_c00270{height:64.546875px;}
.h6_c00270{height:70.628906px;}
.h5_c00270{height:70.664062px;}
.h7_c00270{height:1262.875500px;}
.h0_c00270{height:1262.880000px;}
.h1_c00270{height:1263.000000px;}
.w2_c00270{width:8.265000px;}
.w3_c00270{width:638.145000px;}
.w1_c00270{width:892.500000px;}
.w4_c00270{width:892.797000px;}
.w0_c00270{width:892.800000px;}
.x0_c00270{left:0.000000px;}
.x3_c00270{left:127.534500px;}
.xb_c00270{left:142.632000px;}
.x1_c00270{left:154.515000px;}
.xa_c00270{left:343.590000px;}
.x8_c00270{left:419.217000px;}
.x9_c00270{left:437.580000px;}
.x6_c00270{left:484.767000px;}
.x7_c00270{left:503.130000px;}
.x4_c00270{left:625.932000px;}
.x5_c00270{left:644.325000px;}
.x2_c00270{left:757.410000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls5_c00270{letter-spacing:-2.560000pt;}
.ls8_c00270{letter-spacing:-1.280000pt;}
.ls7_c00270{letter-spacing:-0.576000pt;}
.ls9_c00270{letter-spacing:-0.432533pt;}
.ls4_c00270{letter-spacing:0.000000pt;}
.ls1_c00270{letter-spacing:0.160000pt;}
.ls3_c00270{letter-spacing:0.640000pt;}
.ls6_c00270{letter-spacing:1.280000pt;}
.ls0_c00270{letter-spacing:5.738667pt;}
.ls2_c00270{letter-spacing:16.000000pt;}
.ws0_c00270{word-spacing:-64.000000pt;}
.ws1_c00270{word-spacing:-16.000000pt;}
.ws2_c00270{word-spacing:-13.440000pt;}
.ws3_c00270{word-spacing:-13.007467pt;}
.ws4_c00270{word-spacing:0.000000pt;}
._3_c00270{margin-left:-2.304000pt;}
._0_c00270{margin-left:-1.024000pt;}
._1_c00270{width:0.960000pt;}
._4_c00270{width:2.496000pt;}
._a_c00270{width:3.520000pt;}
._c_c00270{width:4.544000pt;}
._e_c00270{width:5.632000pt;}
._d_c00270{width:6.528000pt;}
._f_c00270{width:7.488000pt;}
._12_c00270{width:8.448000pt;}
._b_c00270{width:9.664000pt;}
._6_c00270{width:10.560000pt;}
._5_c00270{width:11.584000pt;}
._15_c00270{width:12.928000pt;}
._14_c00270{width:14.400000pt;}
._16_c00270{width:15.690667pt;}
._2_c00270{width:17.525312pt;}
._10_c00270{width:19.136000pt;}
._11_c00270{width:20.352000pt;}
._7_c00270{width:21.760000pt;}
._8_c00270{width:22.656000pt;}
._13_c00270{width:23.552000pt;}
._9_c00270{width:165.770688pt;}
.fs2_c00270{font-size:34.560000pt;}
.fs1_c00270{font-size:42.240000pt;}
.fs3_c00270{font-size:53.760000pt;}
.fs0_c00270{font-size:64.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y3_c00270{bottom:3.840000pt;}
.y6_c00270{bottom:4.160000pt;}
.y5_c00270{bottom:22.400000pt;}
.y4_c00270{bottom:28.480000pt;}
.y1_c00270{bottom:50.880000pt;}
.y2f_c00270{bottom:116.192000pt;}
.y2e_c00270{bottom:122.272000pt;}
.y2d_c00270{bottom:131.552000pt;}
.y2c_c00270{bottom:137.626667pt;}
.y2b_c00270{bottom:146.906667pt;}
.y2a_c00270{bottom:152.986667pt;}
.y29_c00270{bottom:162.586667pt;}
.y28_c00270{bottom:185.306667pt;}
.y27_c00270{bottom:213.186667pt;}
.y26_c00270{bottom:240.706667pt;}
.y25_c00270{bottom:268.226667pt;}
.y24_c00270{bottom:295.746667pt;}
.y23_c00270{bottom:323.613333pt;}
.y22_c00270{bottom:351.133333pt;}
.y21_c00270{bottom:378.653333pt;}
.y20_c00270{bottom:406.173333pt;}
.y1f_c00270{bottom:433.733333pt;}
.y1e_c00270{bottom:461.573333pt;}
.y1d_c00270{bottom:489.093333pt;}
.y1b_c00270{bottom:516.613333pt;}
.y1c_c00270{bottom:523.973333pt;}
.y1a_c00270{bottom:544.160000pt;}
.y19_c00270{bottom:572.000000pt;}
.y17_c00270{bottom:599.520000pt;}
.y18_c00270{bottom:606.880000pt;}
.y15_c00270{bottom:627.040000pt;}
.y16_c00270{bottom:634.400000pt;}
.y14_c00270{bottom:654.586667pt;}
.y13_c00270{bottom:682.426667pt;}
.y12_c00270{bottom:709.946667pt;}
.y11_c00270{bottom:737.466667pt;}
.y10_c00270{bottom:765.026667pt;}
.yf_c00270{bottom:792.866667pt;}
.ye_c00270{bottom:820.386667pt;}
.yd_c00270{bottom:847.906667pt;}
.yc_c00270{bottom:875.453333pt;}
.yb_c00270{bottom:903.293333pt;}
.ya_c00270{bottom:930.813333pt;}
.y9_c00270{bottom:958.333333pt;}
.y8_c00270{bottom:985.893333pt;}
.y7_c00270{bottom:1013.733333pt;}
.y2_c00270{bottom:1056.933333pt;}
.h3_c00270{height:18.266667pt;}
.ha_c00270{height:30.982500pt;}
.h4_c00270{height:36.796000pt;}
.h9_c00270{height:41.435625pt;}
.h8_c00270{height:41.456250pt;}
.hb_c00270{height:48.457500pt;}
.h2_c00270{height:57.375000pt;}
.h6_c00270{height:62.781250pt;}
.h5_c00270{height:62.812500pt;}
.h7_c00270{height:1122.556000pt;}
.h0_c00270{height:1122.560000pt;}
.h1_c00270{height:1122.666667pt;}
.w2_c00270{width:7.346667pt;}
.w3_c00270{width:567.240000pt;}
.w1_c00270{width:793.333333pt;}
.w4_c00270{width:793.597333pt;}
.w0_c00270{width:793.600000pt;}
.x0_c00270{left:0.000000pt;}
.x3_c00270{left:113.364000pt;}
.xb_c00270{left:126.784000pt;}
.x1_c00270{left:137.346667pt;}
.xa_c00270{left:305.413333pt;}
.x8_c00270{left:372.637333pt;}
.x9_c00270{left:388.960000pt;}
.x6_c00270{left:430.904000pt;}
.x7_c00270{left:447.226667pt;}
.x4_c00270{left:556.384000pt;}
.x5_c00270{left:572.733333pt;}
.x2_c00270{left:673.253333pt;}
}





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

.ir_c00271:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00271;src:url('chunks/assets/font_f8674dffb863f88b6d62787f.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_2373f79d5f8be4b2a1ed728d.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_05c9f4eacbc9eb364e87b1ee.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00271;src:url('chunks/assets/font_48e4a1d954c6c08e820d6bb0.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;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_c00271;src:url('chunks/assets/font_e2a324f748135332850c4b36.woff2')format("woff");}.ff5_c00271{font-family:ff5_c00271;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls8_c00271{letter-spacing:-2.880000px;}
.ls7_c00271{letter-spacing:-1.440000px;}
.ls6_c00271{letter-spacing:0.000000px;}
.ls4_c00271{letter-spacing:0.180000px;}
.ls0_c00271{letter-spacing:1.440000px;}
.ls2_c00271{letter-spacing:3.600000px;}
.ls1_c00271{letter-spacing:5.040000px;}
.ls3_c00271{letter-spacing:6.480000px;}
.ls5_c00271{letter-spacing:22.320000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:-18.000000px;}
.ws1_c00271{word-spacing:0.000000px;}
._4_c00271{margin-left:-2.880000px;}
._2_c00271{margin-left:-1.296000px;}
._1_c00271{width:1.080000px;}
._5_c00271{width:2.088000px;}
._6_c00271{width:3.096000px;}
._8_c00271{width:4.392000px;}
._9_c00271{width:5.544000px;}
._12_c00271{width:6.552000px;}
._0_c00271{width:7.560000px;}
._3_c00271{width:8.796000px;}
._7_c00271{width:9.816000px;}
._d_c00271{width:10.980000px;}
._e_c00271{width:12.252000px;}
._19_c00271{width:13.620024px;}
._a_c00271{width:15.336000px;}
._b_c00271{width:16.632000px;}
._f_c00271{width:19.032000px;}
._17_c00271{width:20.136000px;}
._18_c00271{width:22.116000px;}
._16_c00271{width:23.268000px;}
._10_c00271{width:29.736000px;}
._11_c00271{width:31.032000px;}
._14_c00271{width:45.288000px;}
._15_c00271{width:47.232000px;}
._c_c00271{width:151.932024px;}
._13_c00271{width:186.492024px;}
.fc0_c00271{color:rgb(0,0,0);}
.fs0_c00271{font-size:72.000000px;}
.y0_c00271{bottom:0.000000px;}
.y3_c00271{bottom:4.320000px;}
.y6_c00271{bottom:4.680000px;}
.y5_c00271{bottom:25.200000px;}
.y4_c00271{bottom:32.040000px;}
.y1_c00271{bottom:57.240000px;}
.y27_c00271{bottom:128.556000px;}
.y26_c00271{bottom:159.510000px;}
.y25_c00271{bottom:190.470000px;}
.y24_c00271{bottom:221.790000px;}
.y23_c00271{bottom:252.795000px;}
.y22_c00271{bottom:283.755000px;}
.y21_c00271{bottom:314.715000px;}
.y20_c00271{bottom:346.035000px;}
.y1f_c00271{bottom:377.025000px;}
.y1e_c00271{bottom:407.985000px;}
.y1d_c00271{bottom:447.945000px;}
.y1c_c00271{bottom:478.950000px;}
.y1b_c00271{bottom:510.270000px;}
.y1a_c00271{bottom:541.230000px;}
.y19_c00271{bottom:572.190000px;}
.y18_c00271{bottom:603.180000px;}
.y17_c00271{bottom:634.500000px;}
.y16_c00271{bottom:665.460000px;}
.y15_c00271{bottom:696.420000px;}
.y14_c00271{bottom:727.410000px;}
.y13_c00271{bottom:758.730000px;}
.y12_c00271{bottom:789.690000px;}
.y11_c00271{bottom:820.650000px;}
.y10_c00271{bottom:851.655000px;}
.yf_c00271{bottom:882.975000px;}
.ye_c00271{bottom:913.935000px;}
.yd_c00271{bottom:944.895000px;}
.yc_c00271{bottom:984.885000px;}
.yb_c00271{bottom:1016.205000px;}
.ya_c00271{bottom:1047.165000px;}
.y9_c00271{bottom:1078.125000px;}
.y8_c00271{bottom:1109.130000px;}
.y7_c00271{bottom:1140.450000px;}
.y2_c00271{bottom:1189.050000px;}
.h3_c00271{height:20.550000px;}
.h4_c00271{height:41.395500px;}
.h2_c00271{height:64.546875px;}
.h6_c00271{height:70.628906px;}
.h5_c00271{height:70.664062px;}
.h0_c00271{height:1262.880000px;}
.h1_c00271{height:1263.000000px;}
.w2_c00271{width:8.265000px;}
.w3_c00271{width:638.145000px;}
.w1_c00271{width:892.500000px;}
.w0_c00271{width:892.800000px;}
.x0_c00271{left:0.000000px;}
.x3_c00271{left:127.534500px;}
.x1_c00271{left:154.515000px;}
.x2_c00271{left:757.410000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls8_c00271{letter-spacing:-2.560000pt;}
.ls7_c00271{letter-spacing:-1.280000pt;}
.ls6_c00271{letter-spacing:0.000000pt;}
.ls4_c00271{letter-spacing:0.160000pt;}
.ls0_c00271{letter-spacing:1.280000pt;}
.ls2_c00271{letter-spacing:3.200000pt;}
.ls1_c00271{letter-spacing:4.480000pt;}
.ls3_c00271{letter-spacing:5.760000pt;}
.ls5_c00271{letter-spacing:19.840000pt;}
.ws0_c00271{word-spacing:-16.000000pt;}
.ws1_c00271{word-spacing:0.000000pt;}
._4_c00271{margin-left:-2.560000pt;}
._2_c00271{margin-left:-1.152000pt;}
._1_c00271{width:0.960000pt;}
._5_c00271{width:1.856000pt;}
._6_c00271{width:2.752000pt;}
._8_c00271{width:3.904000pt;}
._9_c00271{width:4.928000pt;}
._12_c00271{width:5.824000pt;}
._0_c00271{width:6.720000pt;}
._3_c00271{width:7.818667pt;}
._7_c00271{width:8.725333pt;}
._d_c00271{width:9.760000pt;}
._e_c00271{width:10.890667pt;}
._19_c00271{width:12.106688pt;}
._a_c00271{width:13.632000pt;}
._b_c00271{width:14.784000pt;}
._f_c00271{width:16.917333pt;}
._17_c00271{width:17.898667pt;}
._18_c00271{width:19.658667pt;}
._16_c00271{width:20.682667pt;}
._10_c00271{width:26.432000pt;}
._11_c00271{width:27.584000pt;}
._14_c00271{width:40.256000pt;}
._15_c00271{width:41.984000pt;}
._c_c00271{width:135.050688pt;}
._13_c00271{width:165.770688pt;}
.fs0_c00271{font-size:64.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y3_c00271{bottom:3.840000pt;}
.y6_c00271{bottom:4.160000pt;}
.y5_c00271{bottom:22.400000pt;}
.y4_c00271{bottom:28.480000pt;}
.y1_c00271{bottom:50.880000pt;}
.y27_c00271{bottom:114.272000pt;}
.y26_c00271{bottom:141.786667pt;}
.y25_c00271{bottom:169.306667pt;}
.y24_c00271{bottom:197.146667pt;}
.y23_c00271{bottom:224.706667pt;}
.y22_c00271{bottom:252.226667pt;}
.y21_c00271{bottom:279.746667pt;}
.y20_c00271{bottom:307.586667pt;}
.y1f_c00271{bottom:335.133333pt;}
.y1e_c00271{bottom:362.653333pt;}
.y1d_c00271{bottom:398.173333pt;}
.y1c_c00271{bottom:425.733333pt;}
.y1b_c00271{bottom:453.573333pt;}
.y1a_c00271{bottom:481.093333pt;}
.y19_c00271{bottom:508.613333pt;}
.y18_c00271{bottom:536.160000pt;}
.y17_c00271{bottom:564.000000pt;}
.y16_c00271{bottom:591.520000pt;}
.y15_c00271{bottom:619.040000pt;}
.y14_c00271{bottom:646.586667pt;}
.y13_c00271{bottom:674.426667pt;}
.y12_c00271{bottom:701.946667pt;}
.y11_c00271{bottom:729.466667pt;}
.y10_c00271{bottom:757.026667pt;}
.yf_c00271{bottom:784.866667pt;}
.ye_c00271{bottom:812.386667pt;}
.yd_c00271{bottom:839.906667pt;}
.yc_c00271{bottom:875.453333pt;}
.yb_c00271{bottom:903.293333pt;}
.ya_c00271{bottom:930.813333pt;}
.y9_c00271{bottom:958.333333pt;}
.y8_c00271{bottom:985.893333pt;}
.y7_c00271{bottom:1013.733333pt;}
.y2_c00271{bottom:1056.933333pt;}
.h3_c00271{height:18.266667pt;}
.h4_c00271{height:36.796000pt;}
.h2_c00271{height:57.375000pt;}
.h6_c00271{height:62.781250pt;}
.h5_c00271{height:62.812500pt;}
.h0_c00271{height:1122.560000pt;}
.h1_c00271{height:1122.666667pt;}
.w2_c00271{width:7.346667pt;}
.w3_c00271{width:567.240000pt;}
.w1_c00271{width:793.333333pt;}
.w0_c00271{width:793.600000pt;}
.x0_c00271{left:0.000000pt;}
.x3_c00271{left:113.364000pt;}
.x1_c00271{left:137.346667pt;}
.x2_c00271{left:673.253333pt;}
}





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

.ir_c00272:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00272;src:url('chunks/assets/font_940d9c23092bc2f0ee99c57d.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_faf1b2f7dfbc2bdc2206d45f.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_12001a500ebaae77fe2e5185.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;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_c00272;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00272;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls7_c00272{letter-spacing:-2.880000px;}
.ls6_c00272{letter-spacing:-1.440000px;}
.ls4_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:0.120000px;}
.ls5_c00272{letter-spacing:0.144000px;}
.ls3_c00272{letter-spacing:0.720000px;}
.ls8_c00272{letter-spacing:2.160000px;}
.ls2_c00272{letter-spacing:3.600000px;}
.ls1_c00272{letter-spacing:5.040000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00272{word-spacing:-72.000000px;}
.ws1_c00272{word-spacing:-18.144000px;}
.ws0_c00272{word-spacing:-18.000000px;}
.ws3_c00272{word-spacing:-15.120000px;}
.ws4_c00272{word-spacing:0.000000px;}
._1_c00272{margin-left:-2.736000px;}
._3_c00272{margin-left:-1.440000px;}
._0_c00272{width:1.080000px;}
._4_c00272{width:2.160000px;}
._8_c00272{width:3.239904px;}
._6_c00272{width:4.908024px;}
._7_c00272{width:5.951952px;}
._9_c00272{width:7.259976px;}
._10_c00272{width:8.280000px;}
._2_c00272{width:9.288000px;}
._e_c00272{width:10.656000px;}
._5_c00272{width:11.664000px;}
._c_c00272{width:12.744000px;}
._a_c00272{width:14.400000px;}
._b_c00272{width:15.480000px;}
._13_c00272{width:20.016000px;}
._11_c00272{width:35.208000px;}
._12_c00272{width:36.792000px;}
._d_c00272{width:133.932024px;}
._f_c00272{width:151.932024px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs2_c00272{font-size:38.880000px;}
.fs1_c00272{font-size:47.520000px;}
.fs3_c00272{font-size:60.480000px;}
.fs0_c00272{font-size:72.000000px;}
.y0_c00272{bottom:0.000000px;}
.y3_c00272{bottom:4.320000px;}
.y6_c00272{bottom:4.680000px;}
.y5_c00272{bottom:25.200000px;}
.y4_c00272{bottom:32.040000px;}
.y1_c00272{bottom:57.240000px;}
.y2b_c00272{bottom:130.716000px;}
.y2a_c00272{bottom:137.556000px;}
.y29_c00272{bottom:147.996000px;}
.y28_c00272{bottom:154.830000px;}
.y27_c00272{bottom:165.630000px;}
.y26_c00272{bottom:212.790000px;}
.y25_c00272{bottom:252.795000px;}
.y24_c00272{bottom:283.755000px;}
.y23_c00272{bottom:314.715000px;}
.y22_c00272{bottom:346.035000px;}
.y21_c00272{bottom:377.025000px;}
.y20_c00272{bottom:407.985000px;}
.y1f_c00272{bottom:438.945000px;}
.y1e_c00272{bottom:469.905000px;}
.y1d_c00272{bottom:501.270000px;}
.y1c_c00272{bottom:532.230000px;}
.y1b_c00272{bottom:563.190000px;}
.y1a_c00272{bottom:603.180000px;}
.y19_c00272{bottom:634.500000px;}
.y18_c00272{bottom:665.460000px;}
.y17_c00272{bottom:696.420000px;}
.y16_c00272{bottom:727.410000px;}
.y15_c00272{bottom:758.730000px;}
.y14_c00272{bottom:789.690000px;}
.y12_c00272{bottom:829.650000px;}
.y13_c00272{bottom:837.930000px;}
.y11_c00272{bottom:860.655000px;}
.y10_c00272{bottom:891.975000px;}
.yf_c00272{bottom:922.935000px;}
.ye_c00272{bottom:953.895000px;}
.yd_c00272{bottom:984.885000px;}
.yc_c00272{bottom:1016.205000px;}
.ya_c00272{bottom:1047.165000px;}
.yb_c00272{bottom:1055.445000px;}
.y9_c00272{bottom:1078.125000px;}
.y8_c00272{bottom:1109.130000px;}
.y7_c00272{bottom:1140.450000px;}
.y2_c00272{bottom:1189.050000px;}
.h3_c00272{height:20.550000px;}
.ha_c00272{height:34.855313px;}
.h4_c00272{height:41.395500px;}
.h7_c00272{height:46.615078px;}
.h8_c00272{height:46.638281px;}
.hb_c00272{height:54.514688px;}
.h2_c00272{height:64.546875px;}
.h9_c00272{height:70.628906px;}
.h5_c00272{height:70.664062px;}
.h6_c00272{height:1262.875500px;}
.h0_c00272{height:1262.880000px;}
.h1_c00272{height:1263.000000px;}
.w2_c00272{width:8.265000px;}
.w3_c00272{width:638.145000px;}
.w1_c00272{width:892.500000px;}
.w4_c00272{width:892.797000px;}
.w0_c00272{width:892.800000px;}
.x0_c00272{left:0.000000px;}
.x3_c00272{left:127.534500px;}
.xa_c00272{left:142.632000px;}
.x1_c00272{left:154.515000px;}
.x8_c00272{left:180.795000px;}
.x6_c00272{left:262.542000px;}
.x7_c00272{left:280.905000px;}
.x9_c00272{left:343.590000px;}
.x4_c00272{left:423.177000px;}
.x5_c00272{left:441.540000px;}
.x2_c00272{left:757.410000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls7_c00272{letter-spacing:-2.560000pt;}
.ls6_c00272{letter-spacing:-1.280000pt;}
.ls4_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:0.106667pt;}
.ls5_c00272{letter-spacing:0.128000pt;}
.ls3_c00272{letter-spacing:0.640000pt;}
.ls8_c00272{letter-spacing:1.920000pt;}
.ls2_c00272{letter-spacing:3.200000pt;}
.ls1_c00272{letter-spacing:4.480000pt;}
.ws2_c00272{word-spacing:-64.000000pt;}
.ws1_c00272{word-spacing:-16.128000pt;}
.ws0_c00272{word-spacing:-16.000000pt;}
.ws3_c00272{word-spacing:-13.440000pt;}
.ws4_c00272{word-spacing:0.000000pt;}
._1_c00272{margin-left:-2.432000pt;}
._3_c00272{margin-left:-1.280000pt;}
._0_c00272{width:0.960000pt;}
._4_c00272{width:1.920000pt;}
._8_c00272{width:2.879915pt;}
._6_c00272{width:4.362688pt;}
._7_c00272{width:5.290624pt;}
._9_c00272{width:6.453312pt;}
._10_c00272{width:7.360000pt;}
._2_c00272{width:8.256000pt;}
._e_c00272{width:9.472000pt;}
._5_c00272{width:10.368000pt;}
._c_c00272{width:11.328000pt;}
._a_c00272{width:12.800000pt;}
._b_c00272{width:13.760000pt;}
._13_c00272{width:17.792000pt;}
._11_c00272{width:31.296000pt;}
._12_c00272{width:32.704000pt;}
._d_c00272{width:119.050688pt;}
._f_c00272{width:135.050688pt;}
.fs2_c00272{font-size:34.560000pt;}
.fs1_c00272{font-size:42.240000pt;}
.fs3_c00272{font-size:53.760000pt;}
.fs0_c00272{font-size:64.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y3_c00272{bottom:3.840000pt;}
.y6_c00272{bottom:4.160000pt;}
.y5_c00272{bottom:22.400000pt;}
.y4_c00272{bottom:28.480000pt;}
.y1_c00272{bottom:50.880000pt;}
.y2b_c00272{bottom:116.192000pt;}
.y2a_c00272{bottom:122.272000pt;}
.y29_c00272{bottom:131.552000pt;}
.y28_c00272{bottom:137.626667pt;}
.y27_c00272{bottom:147.226667pt;}
.y26_c00272{bottom:189.146667pt;}
.y25_c00272{bottom:224.706667pt;}
.y24_c00272{bottom:252.226667pt;}
.y23_c00272{bottom:279.746667pt;}
.y22_c00272{bottom:307.586667pt;}
.y21_c00272{bottom:335.133333pt;}
.y20_c00272{bottom:362.653333pt;}
.y1f_c00272{bottom:390.173333pt;}
.y1e_c00272{bottom:417.693333pt;}
.y1d_c00272{bottom:445.573333pt;}
.y1c_c00272{bottom:473.093333pt;}
.y1b_c00272{bottom:500.613333pt;}
.y1a_c00272{bottom:536.160000pt;}
.y19_c00272{bottom:564.000000pt;}
.y18_c00272{bottom:591.520000pt;}
.y17_c00272{bottom:619.040000pt;}
.y16_c00272{bottom:646.586667pt;}
.y15_c00272{bottom:674.426667pt;}
.y14_c00272{bottom:701.946667pt;}
.y12_c00272{bottom:737.466667pt;}
.y13_c00272{bottom:744.826667pt;}
.y11_c00272{bottom:765.026667pt;}
.y10_c00272{bottom:792.866667pt;}
.yf_c00272{bottom:820.386667pt;}
.ye_c00272{bottom:847.906667pt;}
.yd_c00272{bottom:875.453333pt;}
.yc_c00272{bottom:903.293333pt;}
.ya_c00272{bottom:930.813333pt;}
.yb_c00272{bottom:938.173333pt;}
.y9_c00272{bottom:958.333333pt;}
.y8_c00272{bottom:985.893333pt;}
.y7_c00272{bottom:1013.733333pt;}
.y2_c00272{bottom:1056.933333pt;}
.h3_c00272{height:18.266667pt;}
.ha_c00272{height:30.982500pt;}
.h4_c00272{height:36.796000pt;}
.h7_c00272{height:41.435625pt;}
.h8_c00272{height:41.456250pt;}
.hb_c00272{height:48.457500pt;}
.h2_c00272{height:57.375000pt;}
.h9_c00272{height:62.781250pt;}
.h5_c00272{height:62.812500pt;}
.h6_c00272{height:1122.556000pt;}
.h0_c00272{height:1122.560000pt;}
.h1_c00272{height:1122.666667pt;}
.w2_c00272{width:7.346667pt;}
.w3_c00272{width:567.240000pt;}
.w1_c00272{width:793.333333pt;}
.w4_c00272{width:793.597333pt;}
.w0_c00272{width:793.600000pt;}
.x0_c00272{left:0.000000pt;}
.x3_c00272{left:113.364000pt;}
.xa_c00272{left:126.784000pt;}
.x1_c00272{left:137.346667pt;}
.x8_c00272{left:160.706667pt;}
.x6_c00272{left:233.370667pt;}
.x7_c00272{left:249.693333pt;}
.x9_c00272{left:305.413333pt;}
.x4_c00272{left:376.157333pt;}
.x5_c00272{left:392.480000pt;}
.x2_c00272{left:673.253333pt;}
}





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

.ir_c00273:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00273;src:url('chunks/assets/font_6c7da54b98fbcb56cbfc5f85.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_ac02b8e1359f7ea12697dd4f.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_e869acc116de4dd29d28d296.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;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_c00273;src:url('chunks/assets/font_ee508662ce56f8b1f1a1a7d7.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00273;src:url('chunks/assets/font_5bc6908e1716307af1c826f3.woff2')format("woff");}.ff5_c00273{font-family:ff5_c00273;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00273;src:url('chunks/assets/font_87a87e3c1c084f2cec40d5cb.woff2')format("woff");}.ff6_c00273{font-family:ff6_c00273;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls8_c00273{letter-spacing:-1.416000px;}
.lsb_c00273{letter-spacing:-0.288000px;}
.lsd_c00273{letter-spacing:-0.144000px;}
.ls6_c00273{letter-spacing:0.000000px;}
.ls5_c00273{letter-spacing:0.120000px;}
.lsc_c00273{letter-spacing:0.216000px;}
.ls9_c00273{letter-spacing:0.507000px;}
.ls7_c00273{letter-spacing:0.702000px;}
.ls0_c00273{letter-spacing:0.720000px;}
.lsa_c00273{letter-spacing:1.140000px;}
.lse_c00273{letter-spacing:1.152000px;}
.ls4_c00273{letter-spacing:1.440000px;}
.ls1_c00273{letter-spacing:2.016000px;}
.ls3_c00273{letter-spacing:7.920000px;}
.ls2_c00273{letter-spacing:12.240000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00273{word-spacing:-73.152000px;}
.ws5_c00273{word-spacing:-72.000000px;}
.ws6_c00273{word-spacing:-61.620000px;}
.ws4_c00273{word-spacing:-60.480000px;}
.ws8_c00273{word-spacing:-18.216000px;}
.ws0_c00273{word-spacing:-18.000000px;}
.ws9_c00273{word-spacing:-17.856000px;}
.ws7_c00273{word-spacing:-17.712000px;}
.ws2_c00273{word-spacing:-15.822000px;}
.ws1_c00273{word-spacing:-15.120000px;}
.ws3_c00273{word-spacing:-13.704000px;}
.wsb_c00273{word-spacing:0.000000px;}
._a_c00273{margin-left:-2.807976px;}
._0_c00273{margin-left:-1.752000px;}
._1_c00273{width:1.152000px;}
._6_c00273{width:2.256000px;}
._5_c00273{width:3.276000px;}
._c_c00273{width:4.464000px;}
._d_c00273{width:5.519976px;}
._e_c00273{width:6.984000px;}
._b_c00273{width:8.352000px;}
._3_c00273{width:10.140000px;}
._2_c00273{width:11.448000px;}
._4_c00273{width:12.864000px;}
._9_c00273{width:14.256000px;}
._7_c00273{width:15.432000px;}
._8_c00273{width:16.992000px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs3_c00273{font-size:38.880000px;}
.fs2_c00273{font-size:47.520000px;}
.fs1_c00273{font-size:60.480000px;}
.fs0_c00273{font-size:72.000000px;}
.y0_c00273{bottom:0.000000px;}
.y3_c00273{bottom:4.320000px;}
.y6_c00273{bottom:4.680000px;}
.y5_c00273{bottom:25.200000px;}
.y4_c00273{bottom:32.040000px;}
.y1_c00273{bottom:57.240000px;}
.y2f_c00273{bottom:130.716000px;}
.y2e_c00273{bottom:147.996000px;}
.y2d_c00273{bottom:165.270000px;}
.y2c_c00273{bottom:182.550000px;}
.y2b_c00273{bottom:189.390000px;}
.y2a_c00273{bottom:199.830000px;}
.y29_c00273{bottom:216.750000px;}
.y28_c00273{bottom:223.590000px;}
.y27_c00273{bottom:234.075000px;}
.y26_c00273{bottom:240.915000px;}
.y25_c00273{bottom:252.075000px;}
.y24_c00273{bottom:275.115000px;}
.y23_c00273{bottom:306.435000px;}
.y22_c00273{bottom:337.395000px;}
.y21_c00273{bottom:368.385000px;}
.y1f_c00273{bottom:399.345000px;}
.y20_c00273{bottom:407.625000px;}
.y1e_c00273{bottom:430.305000px;}
.y1c_c00273{bottom:461.625000px;}
.y1d_c00273{bottom:469.905000px;}
.y1b_c00273{bottom:492.630000px;}
.y1a_c00273{bottom:523.590000px;}
.y19_c00273{bottom:554.550000px;}
.y18_c00273{bottom:585.870000px;}
.y17_c00273{bottom:616.860000px;}
.y16_c00273{bottom:654.660000px;}
.y15_c00273{bottom:689.580000px;}
.y14_c00273{bottom:715.500000px;}
.y13_c00273{bottom:764.490000px;}
.y11_c00273{bottom:816.690000px;}
.y12_c00273{bottom:824.970000px;}
.y10_c00273{bottom:847.695000px;}
.yf_c00273{bottom:878.655000px;}
.ye_c00273{bottom:909.615000px;}
.yd_c00273{bottom:940.935000px;}
.yc_c00273{bottom:978.765000px;}
.yb_c00273{bottom:1004.325000px;}
.ya_c00273{bottom:1039.245000px;}
.y9_c00273{bottom:1065.165000px;}
.y8_c00273{bottom:1091.130000px;}
.y7_c00273{bottom:1140.450000px;}
.y2_c00273{bottom:1189.050000px;}
.h3_c00273{height:20.550000px;}
.hb_c00273{height:34.855313px;}
.h4_c00273{height:41.395500px;}
.h9_c00273{height:46.638281px;}
.h7_c00273{height:59.328281px;}
.h6_c00273{height:59.357813px;}
.h2_c00273{height:64.546875px;}
.ha_c00273{height:70.628906px;}
.h5_c00273{height:70.664062px;}
.h8_c00273{height:1262.875500px;}
.h0_c00273{height:1262.880000px;}
.h1_c00273{height:1263.000000px;}
.w2_c00273{width:8.265000px;}
.w3_c00273{width:638.145000px;}
.w1_c00273{width:892.500000px;}
.w4_c00273{width:892.797000px;}
.w0_c00273{width:892.800000px;}
.x0_c00273{left:0.000000px;}
.x3_c00273{left:127.534500px;}
.xc_c00273{left:142.632000px;}
.x1_c00273{left:154.515000px;}
.x4_c00273{left:169.995000px;}
.x7_c00273{left:220.782000px;}
.x8_c00273{left:239.145000px;}
.xb_c00273{left:343.590000px;}
.x5_c00273{left:377.817000px;}
.x6_c00273{left:396.180000px;}
.x9_c00273{left:424.977000px;}
.xa_c00273{left:443.340000px;}
.x2_c00273{left:757.410000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls8_c00273{letter-spacing:-1.258667pt;}
.lsb_c00273{letter-spacing:-0.256000pt;}
.lsd_c00273{letter-spacing:-0.128000pt;}
.ls6_c00273{letter-spacing:0.000000pt;}
.ls5_c00273{letter-spacing:0.106667pt;}
.lsc_c00273{letter-spacing:0.192000pt;}
.ls9_c00273{letter-spacing:0.450667pt;}
.ls7_c00273{letter-spacing:0.624000pt;}
.ls0_c00273{letter-spacing:0.640000pt;}
.lsa_c00273{letter-spacing:1.013333pt;}
.lse_c00273{letter-spacing:1.024000pt;}
.ls4_c00273{letter-spacing:1.280000pt;}
.ls1_c00273{letter-spacing:1.792000pt;}
.ls3_c00273{letter-spacing:7.040000pt;}
.ls2_c00273{letter-spacing:10.880000pt;}
.wsa_c00273{word-spacing:-65.024000pt;}
.ws5_c00273{word-spacing:-64.000000pt;}
.ws6_c00273{word-spacing:-54.773333pt;}
.ws4_c00273{word-spacing:-53.760000pt;}
.ws8_c00273{word-spacing:-16.192000pt;}
.ws0_c00273{word-spacing:-16.000000pt;}
.ws9_c00273{word-spacing:-15.872000pt;}
.ws7_c00273{word-spacing:-15.744000pt;}
.ws2_c00273{word-spacing:-14.064000pt;}
.ws1_c00273{word-spacing:-13.440000pt;}
.ws3_c00273{word-spacing:-12.181333pt;}
.wsb_c00273{word-spacing:0.000000pt;}
._a_c00273{margin-left:-2.495979pt;}
._0_c00273{margin-left:-1.557333pt;}
._1_c00273{width:1.024000pt;}
._6_c00273{width:2.005333pt;}
._5_c00273{width:2.912000pt;}
._c_c00273{width:3.968000pt;}
._d_c00273{width:4.906645pt;}
._e_c00273{width:6.208000pt;}
._b_c00273{width:7.424000pt;}
._3_c00273{width:9.013333pt;}
._2_c00273{width:10.176000pt;}
._4_c00273{width:11.434667pt;}
._9_c00273{width:12.672000pt;}
._7_c00273{width:13.717333pt;}
._8_c00273{width:15.104000pt;}
.fs3_c00273{font-size:34.560000pt;}
.fs2_c00273{font-size:42.240000pt;}
.fs1_c00273{font-size:53.760000pt;}
.fs0_c00273{font-size:64.000000pt;}
.y0_c00273{bottom:0.000000pt;}
.y3_c00273{bottom:3.840000pt;}
.y6_c00273{bottom:4.160000pt;}
.y5_c00273{bottom:22.400000pt;}
.y4_c00273{bottom:28.480000pt;}
.y1_c00273{bottom:50.880000pt;}
.y2f_c00273{bottom:116.192000pt;}
.y2e_c00273{bottom:131.552000pt;}
.y2d_c00273{bottom:146.906667pt;}
.y2c_c00273{bottom:162.266667pt;}
.y2b_c00273{bottom:168.346667pt;}
.y2a_c00273{bottom:177.626667pt;}
.y29_c00273{bottom:192.666667pt;}
.y28_c00273{bottom:198.746667pt;}
.y27_c00273{bottom:208.066667pt;}
.y26_c00273{bottom:214.146667pt;}
.y25_c00273{bottom:224.066667pt;}
.y24_c00273{bottom:244.546667pt;}
.y23_c00273{bottom:272.386667pt;}
.y22_c00273{bottom:299.906667pt;}
.y21_c00273{bottom:327.453333pt;}
.y1f_c00273{bottom:354.973333pt;}
.y20_c00273{bottom:362.333333pt;}
.y1e_c00273{bottom:382.493333pt;}
.y1c_c00273{bottom:410.333333pt;}
.y1d_c00273{bottom:417.693333pt;}
.y1b_c00273{bottom:437.893333pt;}
.y1a_c00273{bottom:465.413333pt;}
.y19_c00273{bottom:492.933333pt;}
.y18_c00273{bottom:520.773333pt;}
.y17_c00273{bottom:548.320000pt;}
.y16_c00273{bottom:581.920000pt;}
.y15_c00273{bottom:612.960000pt;}
.y14_c00273{bottom:636.000000pt;}
.y13_c00273{bottom:679.546667pt;}
.y11_c00273{bottom:725.946667pt;}
.y12_c00273{bottom:733.306667pt;}
.y10_c00273{bottom:753.506667pt;}
.yf_c00273{bottom:781.026667pt;}
.ye_c00273{bottom:808.546667pt;}
.yd_c00273{bottom:836.386667pt;}
.yc_c00273{bottom:870.013333pt;}
.yb_c00273{bottom:892.733333pt;}
.ya_c00273{bottom:923.773333pt;}
.y9_c00273{bottom:946.813333pt;}
.y8_c00273{bottom:969.893333pt;}
.y7_c00273{bottom:1013.733333pt;}
.y2_c00273{bottom:1056.933333pt;}
.h3_c00273{height:18.266667pt;}
.hb_c00273{height:30.982500pt;}
.h4_c00273{height:36.796000pt;}
.h9_c00273{height:41.456250pt;}
.h7_c00273{height:52.736250pt;}
.h6_c00273{height:52.762500pt;}
.h2_c00273{height:57.375000pt;}
.ha_c00273{height:62.781250pt;}
.h5_c00273{height:62.812500pt;}
.h8_c00273{height:1122.556000pt;}
.h0_c00273{height:1122.560000pt;}
.h1_c00273{height:1122.666667pt;}
.w2_c00273{width:7.346667pt;}
.w3_c00273{width:567.240000pt;}
.w1_c00273{width:793.333333pt;}
.w4_c00273{width:793.597333pt;}
.w0_c00273{width:793.600000pt;}
.x0_c00273{left:0.000000pt;}
.x3_c00273{left:113.364000pt;}
.xc_c00273{left:126.784000pt;}
.x1_c00273{left:137.346667pt;}
.x4_c00273{left:151.106667pt;}
.x7_c00273{left:196.250667pt;}
.x8_c00273{left:212.573333pt;}
.xb_c00273{left:305.413333pt;}
.x5_c00273{left:335.837333pt;}
.x6_c00273{left:352.160000pt;}
.x9_c00273{left:377.757333pt;}
.xa_c00273{left:394.080000pt;}
.x2_c00273{left:673.253333pt;}
}





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

.ir_c00274:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00274;src:url('chunks/assets/font_b919aae96606d4fc2b2885ae.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_f67b18f38e925c0c708fcd93.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_5d88cd9b366ebe27b84936af.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;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_c00274;src:url('chunks/assets/font_d8d4b3e834a2fbed150a841d.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_3669101c8ae5dfb5638c394e.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00274;src:url('chunks/assets/font_87371f6c6c85be4694b8b2c3.woff2')format("woff");}.ff6_c00274{font-family:ff6_c00274;line-height:1.117188;font-style:normal;font-weight: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_c00274;src:url('chunks/assets/font_8d214c532bced59fb14ae797.woff2')format("woff");}.ff7_c00274{font-family:ff7_c00274;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.lse_c00274{letter-spacing:-1.416000px;}
.lsd_c00274{letter-spacing:-0.936000px;}
.ls18_c00274{letter-spacing:-0.924000px;}
.ls12_c00274{letter-spacing:-0.532800px;}
.ls13_c00274{letter-spacing:-0.486600px;}
.lsb_c00274{letter-spacing:0.000000px;}
.ls15_c00274{letter-spacing:0.020400px;}
.ls16_c00274{letter-spacing:0.022800px;}
.ls1_c00274{letter-spacing:0.048960px;}
.ls11_c00274{letter-spacing:0.144000px;}
.ls10_c00274{letter-spacing:0.291000px;}
.ls17_c00274{letter-spacing:0.313800px;}
.ls14_c00274{letter-spacing:0.466800px;}
.lsc_c00274{letter-spacing:0.486600px;}
.ls7_c00274{letter-spacing:0.518400px;}
.lsf_c00274{letter-spacing:0.529800px;}
.ls3_c00274{letter-spacing:0.696960px;}
.ls0_c00274{letter-spacing:0.720000px;}
.lsa_c00274{letter-spacing:0.720014px;}
.ls9_c00274{letter-spacing:0.740036px;}
.ls4_c00274{letter-spacing:0.740255px;}
.ls2_c00274{letter-spacing:0.900000px;}
.ls8_c00274{letter-spacing:16.580160px;}
.ls6_c00274{letter-spacing:18.000000px;}
.ls5_c00274{letter-spacing:18.012000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00274{word-spacing:-60.771000px;}
.ws4_c00274{word-spacing:-60.480000px;}
.ws0_c00274{word-spacing:-18.000000px;}
.ws1_c00274{word-spacing:-15.606600px;}
.ws8_c00274{word-spacing:-15.586800px;}
.wsb_c00274{word-spacing:-15.433800px;}
.wsa_c00274{word-spacing:-15.142800px;}
.ws9_c00274{word-spacing:-15.140400px;}
.ws6_c00274{word-spacing:-15.120000px;}
.ws7_c00274{word-spacing:-14.633400px;}
.wsc_c00274{word-spacing:-14.196000px;}
.ws2_c00274{word-spacing:-14.184000px;}
.ws3_c00274{word-spacing:-13.704000px;}
.wsd_c00274{word-spacing:0.000000px;}
._1_c00274{margin-left:-3.024000px;}
._4_c00274{margin-left:-1.296000px;}
._0_c00274{width:1.440000px;}
._3_c00274{width:2.664000px;}
._f_c00274{width:3.744000px;}
._5_c00274{width:5.063976px;}
._9_c00274{width:6.648120px;}
._e_c00274{width:8.124000px;}
._6_c00274{width:9.360000px;}
._8_c00274{width:10.368000px;}
._7_c00274{width:11.448000px;}
._2_c00274{width:16.416000px;}
._11_c00274{width:18.472199px;}
._10_c00274{width:22.536000px;}
._b_c00274{width:28.656000px;}
._a_c00274{width:29.952000px;}
._c_c00274{width:31.824000px;}
._d_c00274{width:41.522880px;}
.fc0_c00274{color:rgb(0,0,0);}
.fs3_c00274{font-size:38.880000px;}
.fs1_c00274{font-size:47.520000px;}
.fs2_c00274{font-size:60.480000px;}
.fs0_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y3_c00274{bottom:4.320000px;}
.y6_c00274{bottom:4.680000px;}
.y5_c00274{bottom:25.200000px;}
.y4_c00274{bottom:32.040000px;}
.y1_c00274{bottom:57.240000px;}
.y2c_c00274{bottom:130.716000px;}
.y2b_c00274{bottom:147.996000px;}
.y2a_c00274{bottom:165.270000px;}
.y29_c00274{bottom:172.110000px;}
.y28_c00274{bottom:182.550000px;}
.y27_c00274{bottom:189.390000px;}
.y26_c00274{bottom:200.190000px;}
.y25_c00274{bottom:235.875000px;}
.y24_c00274{bottom:261.795000px;}
.y23_c00274{bottom:287.715000px;}
.y22_c00274{bottom:313.635000px;}
.y21_c00274{bottom:339.195000px;}
.y20_c00274{bottom:365.145000px;}
.y1f_c00274{bottom:391.065000px;}
.y1e_c00274{bottom:440.385000px;}
.y1d_c00274{bottom:492.270000px;}
.y1c_c00274{bottom:523.590000px;}
.y1a_c00274{bottom:554.550000px;}
.y1b_c00274{bottom:562.830000px;}
.y19_c00274{bottom:585.510000px;}
.y18_c00274{bottom:616.500000px;}
.y17_c00274{bottom:647.820000px;}
.y16_c00274{bottom:678.780000px;}
.y15_c00274{bottom:707.220000px;}
.y14_c00274{bottom:734.250000px;}
.y13_c00274{bottom:770.250000px;}
.y12_c00274{bottom:806.250000px;}
.y11_c00274{bottom:831.810000px;}
.y10_c00274{bottom:857.775000px;}
.yf_c00274{bottom:883.695000px;}
.ye_c00274{bottom:933.015000px;}
.yc_c00274{bottom:984.885000px;}
.yd_c00274{bottom:993.165000px;}
.yb_c00274{bottom:1016.205000px;}
.ya_c00274{bottom:1047.165000px;}
.y9_c00274{bottom:1078.125000px;}
.y8_c00274{bottom:1109.130000px;}
.y7_c00274{bottom:1140.450000px;}
.y2_c00274{bottom:1189.050000px;}
.h3_c00274{height:20.550000px;}
.ha_c00274{height:34.855313px;}
.h4_c00274{height:41.395500px;}
.h7_c00274{height:46.638281px;}
.hc_c00274{height:54.219375px;}
.hb_c00274{height:54.514688px;}
.h9_c00274{height:59.328281px;}
.h8_c00274{height:59.357813px;}
.h2_c00274{height:64.546875px;}
.h5_c00274{height:70.664062px;}
.h6_c00274{height:1262.875500px;}
.h0_c00274{height:1262.880000px;}
.h1_c00274{height:1263.000000px;}
.w2_c00274{width:8.265000px;}
.w3_c00274{width:638.145000px;}
.w1_c00274{width:892.500000px;}
.w4_c00274{width:892.797000px;}
.w0_c00274{width:892.800000px;}
.x0_c00274{left:0.000000px;}
.x3_c00274{left:127.534500px;}
.xa_c00274{left:142.632000px;}
.x1_c00274{left:154.515000px;}
.x6_c00274{left:169.995000px;}
.x4_c00274{left:275.862000px;}
.x5_c00274{left:294.270000px;}
.x9_c00274{left:343.590000px;}
.x7_c00274{left:368.067000px;}
.x8_c00274{left:386.460000px;}
.x2_c00274{left:757.410000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.lse_c00274{letter-spacing:-1.258667pt;}
.lsd_c00274{letter-spacing:-0.832000pt;}
.ls18_c00274{letter-spacing:-0.821333pt;}
.ls12_c00274{letter-spacing:-0.473600pt;}
.ls13_c00274{letter-spacing:-0.432533pt;}
.lsb_c00274{letter-spacing:0.000000pt;}
.ls15_c00274{letter-spacing:0.018133pt;}
.ls16_c00274{letter-spacing:0.020267pt;}
.ls1_c00274{letter-spacing:0.043520pt;}
.ls11_c00274{letter-spacing:0.128000pt;}
.ls10_c00274{letter-spacing:0.258667pt;}
.ls17_c00274{letter-spacing:0.278933pt;}
.ls14_c00274{letter-spacing:0.414933pt;}
.lsc_c00274{letter-spacing:0.432533pt;}
.ls7_c00274{letter-spacing:0.460800pt;}
.lsf_c00274{letter-spacing:0.470933pt;}
.ls3_c00274{letter-spacing:0.619520pt;}
.ls0_c00274{letter-spacing:0.640000pt;}
.lsa_c00274{letter-spacing:0.640013pt;}
.ls9_c00274{letter-spacing:0.657810pt;}
.ls4_c00274{letter-spacing:0.658004pt;}
.ls2_c00274{letter-spacing:0.800000pt;}
.ls8_c00274{letter-spacing:14.737920pt;}
.ls6_c00274{letter-spacing:16.000000pt;}
.ls5_c00274{letter-spacing:16.010667pt;}
.ws5_c00274{word-spacing:-54.018667pt;}
.ws4_c00274{word-spacing:-53.760000pt;}
.ws0_c00274{word-spacing:-16.000000pt;}
.ws1_c00274{word-spacing:-13.872533pt;}
.ws8_c00274{word-spacing:-13.854933pt;}
.wsb_c00274{word-spacing:-13.718933pt;}
.wsa_c00274{word-spacing:-13.460267pt;}
.ws9_c00274{word-spacing:-13.458133pt;}
.ws6_c00274{word-spacing:-13.440000pt;}
.ws7_c00274{word-spacing:-13.007467pt;}
.wsc_c00274{word-spacing:-12.618667pt;}
.ws2_c00274{word-spacing:-12.608000pt;}
.ws3_c00274{word-spacing:-12.181333pt;}
.wsd_c00274{word-spacing:0.000000pt;}
._1_c00274{margin-left:-2.688000pt;}
._4_c00274{margin-left:-1.152000pt;}
._0_c00274{width:1.280000pt;}
._3_c00274{width:2.368000pt;}
._f_c00274{width:3.328000pt;}
._5_c00274{width:4.501312pt;}
._9_c00274{width:5.909440pt;}
._e_c00274{width:7.221333pt;}
._6_c00274{width:8.320000pt;}
._8_c00274{width:9.216000pt;}
._7_c00274{width:10.176000pt;}
._2_c00274{width:14.592000pt;}
._11_c00274{width:16.419732pt;}
._10_c00274{width:20.032000pt;}
._b_c00274{width:25.472000pt;}
._a_c00274{width:26.624000pt;}
._c_c00274{width:28.288000pt;}
._d_c00274{width:36.909227pt;}
.fs3_c00274{font-size:34.560000pt;}
.fs1_c00274{font-size:42.240000pt;}
.fs2_c00274{font-size:53.760000pt;}
.fs0_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y3_c00274{bottom:3.840000pt;}
.y6_c00274{bottom:4.160000pt;}
.y5_c00274{bottom:22.400000pt;}
.y4_c00274{bottom:28.480000pt;}
.y1_c00274{bottom:50.880000pt;}
.y2c_c00274{bottom:116.192000pt;}
.y2b_c00274{bottom:131.552000pt;}
.y2a_c00274{bottom:146.906667pt;}
.y29_c00274{bottom:152.986667pt;}
.y28_c00274{bottom:162.266667pt;}
.y27_c00274{bottom:168.346667pt;}
.y26_c00274{bottom:177.946667pt;}
.y25_c00274{bottom:209.666667pt;}
.y24_c00274{bottom:232.706667pt;}
.y23_c00274{bottom:255.746667pt;}
.y22_c00274{bottom:278.786667pt;}
.y21_c00274{bottom:301.506667pt;}
.y20_c00274{bottom:324.573333pt;}
.y1f_c00274{bottom:347.613333pt;}
.y1e_c00274{bottom:391.453333pt;}
.y1d_c00274{bottom:437.573333pt;}
.y1c_c00274{bottom:465.413333pt;}
.y1a_c00274{bottom:492.933333pt;}
.y1b_c00274{bottom:500.293333pt;}
.y19_c00274{bottom:520.453333pt;}
.y18_c00274{bottom:548.000000pt;}
.y17_c00274{bottom:575.840000pt;}
.y16_c00274{bottom:603.360000pt;}
.y15_c00274{bottom:628.640000pt;}
.y14_c00274{bottom:652.666667pt;}
.y13_c00274{bottom:684.666667pt;}
.y12_c00274{bottom:716.666667pt;}
.y11_c00274{bottom:739.386667pt;}
.y10_c00274{bottom:762.466667pt;}
.yf_c00274{bottom:785.506667pt;}
.ye_c00274{bottom:829.346667pt;}
.yc_c00274{bottom:875.453333pt;}
.yd_c00274{bottom:882.813333pt;}
.yb_c00274{bottom:903.293333pt;}
.ya_c00274{bottom:930.813333pt;}
.y9_c00274{bottom:958.333333pt;}
.y8_c00274{bottom:985.893333pt;}
.y7_c00274{bottom:1013.733333pt;}
.y2_c00274{bottom:1056.933333pt;}
.h3_c00274{height:18.266667pt;}
.ha_c00274{height:30.982500pt;}
.h4_c00274{height:36.796000pt;}
.h7_c00274{height:41.456250pt;}
.hc_c00274{height:48.195000pt;}
.hb_c00274{height:48.457500pt;}
.h9_c00274{height:52.736250pt;}
.h8_c00274{height:52.762500pt;}
.h2_c00274{height:57.375000pt;}
.h5_c00274{height:62.812500pt;}
.h6_c00274{height:1122.556000pt;}
.h0_c00274{height:1122.560000pt;}
.h1_c00274{height:1122.666667pt;}
.w2_c00274{width:7.346667pt;}
.w3_c00274{width:567.240000pt;}
.w1_c00274{width:793.333333pt;}
.w4_c00274{width:793.597333pt;}
.w0_c00274{width:793.600000pt;}
.x0_c00274{left:0.000000pt;}
.x3_c00274{left:113.364000pt;}
.xa_c00274{left:126.784000pt;}
.x1_c00274{left:137.346667pt;}
.x6_c00274{left:151.106667pt;}
.x4_c00274{left:245.210667pt;}
.x5_c00274{left:261.573333pt;}
.x9_c00274{left:305.413333pt;}
.x7_c00274{left:327.170667pt;}
.x8_c00274{left:343.520000pt;}
.x2_c00274{left:673.253333pt;}
}





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

.ir_c00275:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00275;src:url('chunks/assets/font_e39fec8e18524aab22d68197.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_fef6710b24583b8f5e2a01b7.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_9d2cf1bdfaeafb25a81afa1c.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_4c910086648f5e8ee56f809b.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00275;src:url('chunks/assets/font_cf90007da3c91616eec1f79f.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00275;src:url('chunks/assets/font_cf961857f339947e530dfbe2.woff2')format("woff");}.ff6_c00275{font-family:ff6_c00275;line-height:1.104004;font-style:normal;font-weight: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_c00275;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00275{font-family:ff7_c00275;line-height:1.311035;font-style:normal;font-weight: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_c00275;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff8_c00275{font-family:ff8_c00275;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls8_c00275{letter-spacing:-1.416000px;}
.ls6_c00275{letter-spacing:-0.918000px;}
.ls9_c00275{letter-spacing:-0.486600px;}
.ls7_c00275{letter-spacing:-0.241800px;}
.ls5_c00275{letter-spacing:0.000000px;}
.ls2_c00275{letter-spacing:0.120000px;}
.ls1_c00275{letter-spacing:0.720000px;}
.ls3_c00275{letter-spacing:0.828751px;}
.ls4_c00275{letter-spacing:0.900000px;}
.ls0_c00275{letter-spacing:3.600000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:-18.000000px;}
.ws1_c00275{word-spacing:-15.120000px;}
.ws3_c00275{word-spacing:-14.878200px;}
.ws4_c00275{word-spacing:-14.633400px;}
.ws2_c00275{word-spacing:-14.202000px;}
.ws5_c00275{word-spacing:0.000000px;}
._3_c00275{margin-left:-3.672000px;}
._0_c00275{margin-left:-2.160000px;}
._6_c00275{margin-left:-1.008000px;}
._5_c00275{width:1.008000px;}
._2_c00275{width:2.232000px;}
._9_c00275{width:3.588000px;}
._a_c00275{width:5.064000px;}
._7_c00275{width:7.056000px;}
._8_c00275{width:8.496000px;}
._4_c00275{width:10.008000px;}
._13_c00275{width:11.028000px;}
._1_c00275{width:12.168000px;}
._b_c00275{width:14.031602px;}
._14_c00275{width:19.440000px;}
._11_c00275{width:20.496000px;}
._f_c00275{width:21.612000px;}
._10_c00275{width:22.968000px;}
._12_c00275{width:24.108000px;}
._15_c00275{width:25.390798px;}
._e_c00275{width:27.636000px;}
._c_c00275{width:28.656000px;}
._d_c00275{width:29.748000px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs3_c00275{font-size:38.880000px;}
.fs2_c00275{font-size:47.520000px;}
.fs1_c00275{font-size:60.480000px;}
.fs0_c00275{font-size:72.000000px;}
.y0_c00275{bottom:0.000000px;}
.y3_c00275{bottom:4.320000px;}
.y6_c00275{bottom:4.680000px;}
.y5_c00275{bottom:25.200000px;}
.y4_c00275{bottom:32.040000px;}
.y1_c00275{bottom:57.240000px;}
.y28_c00275{bottom:130.716000px;}
.y27_c00275{bottom:137.556000px;}
.y26_c00275{bottom:148.356000px;}
.y25_c00275{bottom:185.430000px;}
.y24_c00275{bottom:211.350000px;}
.y23_c00275{bottom:237.315000px;}
.y22_c00275{bottom:263.235000px;}
.y21_c00275{bottom:288.795000px;}
.y20_c00275{bottom:314.715000px;}
.y1f_c00275{bottom:364.065000px;}
.y1d_c00275{bottom:415.905000px;}
.y1e_c00275{bottom:424.185000px;}
.y1c_c00275{bottom:447.225000px;}
.y1b_c00275{bottom:478.230000px;}
.y1a_c00275{bottom:509.190000px;}
.y19_c00275{bottom:540.150000px;}
.y18_c00275{bottom:571.470000px;}
.y17_c00275{bottom:602.460000px;}
.y16_c00275{bottom:633.420000px;}
.y15_c00275{bottom:664.380000px;}
.y14_c00275{bottom:695.700000px;}
.y13_c00275{bottom:745.410000px;}
.y12_c00275{bottom:771.330000px;}
.y11_c00275{bottom:806.250000px;}
.y10_c00275{bottom:831.810000px;}
.yf_c00275{bottom:857.775000px;}
.ye_c00275{bottom:907.095000px;}
.yd_c00275{bottom:959.295000px;}
.yc_c00275{bottom:990.285000px;}
.yb_c00275{bottom:1021.245000px;}
.ya_c00275{bottom:1052.205000px;}
.y9_c00275{bottom:1083.165000px;}
.y8_c00275{bottom:1114.530000px;}
.y7_c00275{bottom:1143.330000px;}
.y2_c00275{bottom:1189.050000px;}
.h3_c00275{height:20.550000px;}
.hc_c00275{height:34.855313px;}
.h4_c00275{height:41.395500px;}
.ha_c00275{height:46.638281px;}
.hd_c00275{height:54.514688px;}
.h5_c00275{height:59.328281px;}
.h7_c00275{height:59.357813px;}
.h8_c00275{height:60.952500px;}
.h2_c00275{height:64.546875px;}
.hb_c00275{height:70.628906px;}
.h6_c00275{height:70.664062px;}
.h9_c00275{height:1262.875500px;}
.h0_c00275{height:1262.880000px;}
.h1_c00275{height:1263.000000px;}
.w2_c00275{width:8.265000px;}
.w3_c00275{width:638.145000px;}
.w1_c00275{width:892.500000px;}
.w4_c00275{width:892.797000px;}
.w0_c00275{width:892.800000px;}
.x0_c00275{left:0.000000px;}
.x3_c00275{left:127.534500px;}
.x8_c00275{left:142.632000px;}
.x1_c00275{left:154.515000px;}
.x4_c00275{left:169.995000px;}
.x7_c00275{left:343.590000px;}
.x5_c00275{left:532.647000px;}
.x6_c00275{left:551.055000px;}
.x2_c00275{left:757.410000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls8_c00275{letter-spacing:-1.258667pt;}
.ls6_c00275{letter-spacing:-0.816000pt;}
.ls9_c00275{letter-spacing:-0.432533pt;}
.ls7_c00275{letter-spacing:-0.214933pt;}
.ls5_c00275{letter-spacing:0.000000pt;}
.ls2_c00275{letter-spacing:0.106667pt;}
.ls1_c00275{letter-spacing:0.640000pt;}
.ls3_c00275{letter-spacing:0.736667pt;}
.ls4_c00275{letter-spacing:0.800000pt;}
.ls0_c00275{letter-spacing:3.200000pt;}
.ws0_c00275{word-spacing:-16.000000pt;}
.ws1_c00275{word-spacing:-13.440000pt;}
.ws3_c00275{word-spacing:-13.225067pt;}
.ws4_c00275{word-spacing:-13.007467pt;}
.ws2_c00275{word-spacing:-12.624000pt;}
.ws5_c00275{word-spacing:0.000000pt;}
._3_c00275{margin-left:-3.264000pt;}
._0_c00275{margin-left:-1.920000pt;}
._6_c00275{margin-left:-0.896000pt;}
._5_c00275{width:0.896000pt;}
._2_c00275{width:1.984000pt;}
._9_c00275{width:3.189333pt;}
._a_c00275{width:4.501333pt;}
._7_c00275{width:6.272000pt;}
._8_c00275{width:7.552000pt;}
._4_c00275{width:8.896000pt;}
._13_c00275{width:9.802667pt;}
._1_c00275{width:10.816000pt;}
._b_c00275{width:12.472535pt;}
._14_c00275{width:17.280000pt;}
._11_c00275{width:18.218667pt;}
._f_c00275{width:19.210667pt;}
._10_c00275{width:20.416000pt;}
._12_c00275{width:21.429333pt;}
._15_c00275{width:22.569598pt;}
._e_c00275{width:24.565333pt;}
._c_c00275{width:25.472000pt;}
._d_c00275{width:26.442667pt;}
.fs3_c00275{font-size:34.560000pt;}
.fs2_c00275{font-size:42.240000pt;}
.fs1_c00275{font-size:53.760000pt;}
.fs0_c00275{font-size:64.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y3_c00275{bottom:3.840000pt;}
.y6_c00275{bottom:4.160000pt;}
.y5_c00275{bottom:22.400000pt;}
.y4_c00275{bottom:28.480000pt;}
.y1_c00275{bottom:50.880000pt;}
.y28_c00275{bottom:116.192000pt;}
.y27_c00275{bottom:122.272000pt;}
.y26_c00275{bottom:131.872000pt;}
.y25_c00275{bottom:164.826667pt;}
.y24_c00275{bottom:187.866667pt;}
.y23_c00275{bottom:210.946667pt;}
.y22_c00275{bottom:233.986667pt;}
.y21_c00275{bottom:256.706667pt;}
.y20_c00275{bottom:279.746667pt;}
.y1f_c00275{bottom:323.613333pt;}
.y1d_c00275{bottom:369.693333pt;}
.y1e_c00275{bottom:377.053333pt;}
.y1c_c00275{bottom:397.533333pt;}
.y1b_c00275{bottom:425.093333pt;}
.y1a_c00275{bottom:452.613333pt;}
.y19_c00275{bottom:480.133333pt;}
.y18_c00275{bottom:507.973333pt;}
.y17_c00275{bottom:535.520000pt;}
.y16_c00275{bottom:563.040000pt;}
.y15_c00275{bottom:590.560000pt;}
.y14_c00275{bottom:618.400000pt;}
.y13_c00275{bottom:662.586667pt;}
.y12_c00275{bottom:685.626667pt;}
.y11_c00275{bottom:716.666667pt;}
.y10_c00275{bottom:739.386667pt;}
.yf_c00275{bottom:762.466667pt;}
.ye_c00275{bottom:806.306667pt;}
.yd_c00275{bottom:852.706667pt;}
.yc_c00275{bottom:880.253333pt;}
.yb_c00275{bottom:907.773333pt;}
.ya_c00275{bottom:935.293333pt;}
.y9_c00275{bottom:962.813333pt;}
.y8_c00275{bottom:990.693333pt;}
.y7_c00275{bottom:1016.293333pt;}
.y2_c00275{bottom:1056.933333pt;}
.h3_c00275{height:18.266667pt;}
.hc_c00275{height:30.982500pt;}
.h4_c00275{height:36.796000pt;}
.ha_c00275{height:41.456250pt;}
.hd_c00275{height:48.457500pt;}
.h5_c00275{height:52.736250pt;}
.h7_c00275{height:52.762500pt;}
.h8_c00275{height:54.180000pt;}
.h2_c00275{height:57.375000pt;}
.hb_c00275{height:62.781250pt;}
.h6_c00275{height:62.812500pt;}
.h9_c00275{height:1122.556000pt;}
.h0_c00275{height:1122.560000pt;}
.h1_c00275{height:1122.666667pt;}
.w2_c00275{width:7.346667pt;}
.w3_c00275{width:567.240000pt;}
.w1_c00275{width:793.333333pt;}
.w4_c00275{width:793.597333pt;}
.w0_c00275{width:793.600000pt;}
.x0_c00275{left:0.000000pt;}
.x3_c00275{left:113.364000pt;}
.x8_c00275{left:126.784000pt;}
.x1_c00275{left:137.346667pt;}
.x4_c00275{left:151.106667pt;}
.x7_c00275{left:305.413333pt;}
.x5_c00275{left:473.464000pt;}
.x6_c00275{left:489.826667pt;}
.x2_c00275{left:673.253333pt;}
}





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

.ir_c00276:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00276;src:url('chunks/assets/font_faa4002d4254907881fc2756.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_dfc4bea58bfdc13255d6bd21.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_b321369d48e0e496091203fe.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;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_c00276;src:url('chunks/assets/font_9695b7469713d6cee0c3a3dc.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00276;src:url('chunks/assets/font_8adf2bb87ed94559a8ef52c4.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00276;src:url('chunks/assets/font_6935f06e4cbf152fd12c1bc2.woff2')format("woff");}.ff6_c00276{font-family:ff6_c00276;line-height:1.104004;font-style:normal;font-weight: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_c00276;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00276{font-family:ff7_c00276;line-height:1.311035;font-style:normal;font-weight: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_c00276;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff8_c00276{font-family:ff8_c00276;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls6_c00276{letter-spacing:-2.880000px;}
.ls9_c00276{letter-spacing:-1.416000px;}
.lsf_c00276{letter-spacing:-0.720000px;}
.ls8_c00276{letter-spacing:-0.241800px;}
.ls5_c00276{letter-spacing:0.000000px;}
.lsa_c00276{letter-spacing:0.022800px;}
.ls4_c00276{letter-spacing:0.048960px;}
.lsb_c00276{letter-spacing:0.166800px;}
.ls2_c00276{letter-spacing:0.302400px;}
.lse_c00276{letter-spacing:0.325200px;}
.ls7_c00276{letter-spacing:0.486600px;}
.lsd_c00276{letter-spacing:0.521400px;}
.lsc_c00276{letter-spacing:0.529800px;}
.ls1_c00276{letter-spacing:0.720000px;}
.ls3_c00276{letter-spacing:0.840000px;}
.ls0_c00276{letter-spacing:6.480000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00276{word-spacing:-60.805200px;}
.ws5_c00276{word-spacing:-60.480000px;}
.ws0_c00276{word-spacing:-18.000000px;}
.ws7_c00276{word-spacing:-15.641400px;}
.ws1_c00276{word-spacing:-15.606600px;}
.ws4_c00276{word-spacing:-15.286800px;}
.ws3_c00276{word-spacing:-15.142800px;}
.ws2_c00276{word-spacing:-15.120000px;}
.ws6_c00276{word-spacing:-12.600000px;}
.ws9_c00276{word-spacing:0.000000px;}
._6_c00276{margin-left:-3.600000px;}
._0_c00276{margin-left:-2.160000px;}
._5_c00276{margin-left:-1.044000px;}
._2_c00276{width:1.080000px;}
._9_c00276{width:2.232000px;}
._3_c00276{width:3.528000px;}
._7_c00276{width:5.256000px;}
._8_c00276{width:7.020000px;}
._14_c00276{width:8.070002px;}
._e_c00276{width:9.144000px;}
._c_c00276{width:10.188000px;}
._d_c00276{width:11.196000px;}
._10_c00276{width:12.516000px;}
._f_c00276{width:13.752000px;}
._1_c00276{width:15.048000px;}
._4_c00276{width:16.392000px;}
._a_c00276{width:20.088000px;}
._b_c00276{width:21.528000px;}
._11_c00276{width:31.684768px;}
._13_c00276{width:187.919948px;}
._12_c00276{width:189.479969px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs3_c00276{font-size:38.880000px;}
.fs1_c00276{font-size:47.520000px;}
.fs2_c00276{font-size:60.480000px;}
.fs0_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y3_c00276{bottom:4.320000px;}
.y6_c00276{bottom:4.680000px;}
.y5_c00276{bottom:25.200000px;}
.y4_c00276{bottom:32.040000px;}
.y1_c00276{bottom:57.240000px;}
.y2d_c00276{bottom:130.716000px;}
.y2c_c00276{bottom:137.556000px;}
.y2b_c00276{bottom:147.996000px;}
.y2a_c00276{bottom:154.830000px;}
.y29_c00276{bottom:165.630000px;}
.y28_c00276{bottom:210.630000px;}
.y27_c00276{bottom:248.475000px;}
.y26_c00276{bottom:274.395000px;}
.y25_c00276{bottom:300.315000px;}
.y24_c00276{bottom:326.235000px;}
.y23_c00276{bottom:351.795000px;}
.y22_c00276{bottom:377.745000px;}
.y21_c00276{bottom:412.665000px;}
.y20_c00276{bottom:438.585000px;}
.y1f_c00276{bottom:464.505000px;}
.y1e_c00276{bottom:490.470000px;}
.y1d_c00276{bottom:516.390000px;}
.y1c_c00276{bottom:542.310000px;}
.y1b_c00276{bottom:567.870000px;}
.y1a_c00276{bottom:593.790000px;}
.y19_c00276{bottom:619.740000px;}
.y18_c00276{bottom:645.660000px;}
.y17_c00276{bottom:671.580000px;}
.y16_c00276{bottom:697.500000px;}
.y15_c00276{bottom:746.850000px;}
.y14_c00276{bottom:798.690000px;}
.y13_c00276{bottom:829.650000px;}
.y11_c00276{bottom:860.655000px;}
.y12_c00276{bottom:868.935000px;}
.y10_c00276{bottom:891.975000px;}
.ye_c00276{bottom:922.935000px;}
.yf_c00276{bottom:931.215000px;}
.yd_c00276{bottom:953.895000px;}
.yc_c00276{bottom:984.885000px;}
.yb_c00276{bottom:1016.205000px;}
.ya_c00276{bottom:1047.165000px;}
.y9_c00276{bottom:1078.125000px;}
.y8_c00276{bottom:1109.130000px;}
.y7_c00276{bottom:1140.450000px;}
.y2_c00276{bottom:1189.050000px;}
.h3_c00276{height:20.550000px;}
.hb_c00276{height:34.855313px;}
.h4_c00276{height:41.395500px;}
.h7_c00276{height:46.638281px;}
.hc_c00276{height:54.514688px;}
.ha_c00276{height:59.328281px;}
.h8_c00276{height:59.357813px;}
.h9_c00276{height:60.952500px;}
.h2_c00276{height:64.546875px;}
.h5_c00276{height:70.664062px;}
.h6_c00276{height:1262.875500px;}
.h0_c00276{height:1262.880000px;}
.h1_c00276{height:1263.000000px;}
.w2_c00276{width:8.265000px;}
.w3_c00276{width:638.145000px;}
.w1_c00276{width:892.500000px;}
.w4_c00276{width:892.797000px;}
.w0_c00276{width:892.800000px;}
.x0_c00276{left:0.000000px;}
.x3_c00276{left:127.534500px;}
.x9_c00276{left:142.632000px;}
.x1_c00276{left:154.515000px;}
.x4_c00276{left:169.995000px;}
.x5_c00276{left:172.875000px;}
.x6_c00276{left:242.382000px;}
.x7_c00276{left:260.745000px;}
.x8_c00276{left:343.590000px;}
.x2_c00276{left:757.410000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls6_c00276{letter-spacing:-2.560000pt;}
.ls9_c00276{letter-spacing:-1.258667pt;}
.lsf_c00276{letter-spacing:-0.640000pt;}
.ls8_c00276{letter-spacing:-0.214933pt;}
.ls5_c00276{letter-spacing:0.000000pt;}
.lsa_c00276{letter-spacing:0.020267pt;}
.ls4_c00276{letter-spacing:0.043520pt;}
.lsb_c00276{letter-spacing:0.148267pt;}
.ls2_c00276{letter-spacing:0.268800pt;}
.lse_c00276{letter-spacing:0.289067pt;}
.ls7_c00276{letter-spacing:0.432533pt;}
.lsd_c00276{letter-spacing:0.463467pt;}
.lsc_c00276{letter-spacing:0.470933pt;}
.ls1_c00276{letter-spacing:0.640000pt;}
.ls3_c00276{letter-spacing:0.746667pt;}
.ls0_c00276{letter-spacing:5.760000pt;}
.ws8_c00276{word-spacing:-54.049067pt;}
.ws5_c00276{word-spacing:-53.760000pt;}
.ws0_c00276{word-spacing:-16.000000pt;}
.ws7_c00276{word-spacing:-13.903467pt;}
.ws1_c00276{word-spacing:-13.872533pt;}
.ws4_c00276{word-spacing:-13.588267pt;}
.ws3_c00276{word-spacing:-13.460267pt;}
.ws2_c00276{word-spacing:-13.440000pt;}
.ws6_c00276{word-spacing:-11.200000pt;}
.ws9_c00276{word-spacing:0.000000pt;}
._6_c00276{margin-left:-3.200000pt;}
._0_c00276{margin-left:-1.920000pt;}
._5_c00276{margin-left:-0.928000pt;}
._2_c00276{width:0.960000pt;}
._9_c00276{width:1.984000pt;}
._3_c00276{width:3.136000pt;}
._7_c00276{width:4.672000pt;}
._8_c00276{width:6.240000pt;}
._14_c00276{width:7.173335pt;}
._e_c00276{width:8.128000pt;}
._c_c00276{width:9.056000pt;}
._d_c00276{width:9.952000pt;}
._10_c00276{width:11.125333pt;}
._f_c00276{width:12.224000pt;}
._1_c00276{width:13.376000pt;}
._4_c00276{width:14.570667pt;}
._a_c00276{width:17.856000pt;}
._b_c00276{width:19.136000pt;}
._11_c00276{width:28.164239pt;}
._13_c00276{width:167.039954pt;}
._12_c00276{width:168.426639pt;}
.fs3_c00276{font-size:34.560000pt;}
.fs1_c00276{font-size:42.240000pt;}
.fs2_c00276{font-size:53.760000pt;}
.fs0_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y3_c00276{bottom:3.840000pt;}
.y6_c00276{bottom:4.160000pt;}
.y5_c00276{bottom:22.400000pt;}
.y4_c00276{bottom:28.480000pt;}
.y1_c00276{bottom:50.880000pt;}
.y2d_c00276{bottom:116.192000pt;}
.y2c_c00276{bottom:122.272000pt;}
.y2b_c00276{bottom:131.552000pt;}
.y2a_c00276{bottom:137.626667pt;}
.y29_c00276{bottom:147.226667pt;}
.y28_c00276{bottom:187.226667pt;}
.y27_c00276{bottom:220.866667pt;}
.y26_c00276{bottom:243.906667pt;}
.y25_c00276{bottom:266.946667pt;}
.y24_c00276{bottom:289.986667pt;}
.y23_c00276{bottom:312.706667pt;}
.y22_c00276{bottom:335.773333pt;}
.y21_c00276{bottom:366.813333pt;}
.y20_c00276{bottom:389.853333pt;}
.y1f_c00276{bottom:412.893333pt;}
.y1e_c00276{bottom:435.973333pt;}
.y1d_c00276{bottom:459.013333pt;}
.y1c_c00276{bottom:482.053333pt;}
.y1b_c00276{bottom:504.773333pt;}
.y1a_c00276{bottom:527.813333pt;}
.y19_c00276{bottom:550.880000pt;}
.y18_c00276{bottom:573.920000pt;}
.y17_c00276{bottom:596.960000pt;}
.y16_c00276{bottom:620.000000pt;}
.y15_c00276{bottom:663.866667pt;}
.y14_c00276{bottom:709.946667pt;}
.y13_c00276{bottom:737.466667pt;}
.y11_c00276{bottom:765.026667pt;}
.y12_c00276{bottom:772.386667pt;}
.y10_c00276{bottom:792.866667pt;}
.ye_c00276{bottom:820.386667pt;}
.yf_c00276{bottom:827.746667pt;}
.yd_c00276{bottom:847.906667pt;}
.yc_c00276{bottom:875.453333pt;}
.yb_c00276{bottom:903.293333pt;}
.ya_c00276{bottom:930.813333pt;}
.y9_c00276{bottom:958.333333pt;}
.y8_c00276{bottom:985.893333pt;}
.y7_c00276{bottom:1013.733333pt;}
.y2_c00276{bottom:1056.933333pt;}
.h3_c00276{height:18.266667pt;}
.hb_c00276{height:30.982500pt;}
.h4_c00276{height:36.796000pt;}
.h7_c00276{height:41.456250pt;}
.hc_c00276{height:48.457500pt;}
.ha_c00276{height:52.736250pt;}
.h8_c00276{height:52.762500pt;}
.h9_c00276{height:54.180000pt;}
.h2_c00276{height:57.375000pt;}
.h5_c00276{height:62.812500pt;}
.h6_c00276{height:1122.556000pt;}
.h0_c00276{height:1122.560000pt;}
.h1_c00276{height:1122.666667pt;}
.w2_c00276{width:7.346667pt;}
.w3_c00276{width:567.240000pt;}
.w1_c00276{width:793.333333pt;}
.w4_c00276{width:793.597333pt;}
.w0_c00276{width:793.600000pt;}
.x0_c00276{left:0.000000pt;}
.x3_c00276{left:113.364000pt;}
.x9_c00276{left:126.784000pt;}
.x1_c00276{left:137.346667pt;}
.x4_c00276{left:151.106667pt;}
.x5_c00276{left:153.666667pt;}
.x6_c00276{left:215.450667pt;}
.x7_c00276{left:231.773333pt;}
.x8_c00276{left:305.413333pt;}
.x2_c00276{left:673.253333pt;}
}





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

.ir_c00277:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00277;src:url('chunks/assets/font_2a2277453415620eeef1d248.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_86a701ded9936c429662cf4a.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_1989c6e69e2efa470cf9b86b.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_ff9ae87359396aa5bc44eb6e.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;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_c00277;src:url('chunks/assets/font_05394e34e70a9a77e55b395c.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00277;src:url('chunks/assets/font_4100fb092504dfe3100a75eb.woff2')format("woff");}.ff6_c00277{font-family:ff6_c00277;line-height:1.112305;font-style:normal;font-weight: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_c00277;src:url('chunks/assets/font_2a76a5402022aa39a208741d.woff2')format("woff");}.ff7_c00277{font-family:ff7_c00277;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.lse_c00277{letter-spacing:-0.486600px;}
.ls8_c00277{letter-spacing:-0.288000px;}
.lsa_c00277{letter-spacing:-0.144000px;}
.ls7_c00277{letter-spacing:0.000000px;}
.ls2_c00277{letter-spacing:0.360000px;}
.ls9_c00277{letter-spacing:0.576000px;}
.ls4_c00277{letter-spacing:0.720000px;}
.lsc_c00277{letter-spacing:1.152000px;}
.lsd_c00277{letter-spacing:1.440000px;}
.ls5_c00277{letter-spacing:5.040000px;}
.ls0_c00277{letter-spacing:6.480000px;}
.ls6_c00277{letter-spacing:9.360000px;}
.lsb_c00277{letter-spacing:10.800000px;}
.ls1_c00277{letter-spacing:12.240000px;}
.ls3_c00277{letter-spacing:15.300000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:-72.000000px;}
.ws6_c00277{word-spacing:-60.480000px;}
.ws4_c00277{word-spacing:-19.152000px;}
.ws2_c00277{word-spacing:-18.576000px;}
.ws1_c00277{word-spacing:-18.000000px;}
.ws3_c00277{word-spacing:-17.856000px;}
.ws7_c00277{word-spacing:-16.560000px;}
.ws5_c00277{word-spacing:-15.120000px;}
.ws8_c00277{word-spacing:-14.633400px;}
.ws9_c00277{word-spacing:0.000000px;}
._2_c00277{margin-left:-2.736000px;}
._4_c00277{margin-left:-1.152000px;}
._1_c00277{width:1.080000px;}
._6_c00277{width:2.448000px;}
._10_c00277{width:3.588000px;}
._a_c00277{width:4.740000px;}
._8_c00277{width:6.192000px;}
._7_c00277{width:7.344000px;}
._f_c00277{width:8.376000px;}
._9_c00277{width:9.480000px;}
._0_c00277{width:11.304000px;}
._3_c00277{width:12.600000px;}
._5_c00277{width:13.608000px;}
._e_c00277{width:15.624000px;}
._11_c00277{width:16.632000px;}
._15_c00277{width:18.053997px;}
._14_c00277{width:19.452001px;}
._12_c00277{width:26.928000px;}
._13_c00277{width:28.295976px;}
._b_c00277{width:31.464000px;}
._c_c00277{width:32.616000px;}
._d_c00277{width:34.560000px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs2_c00277{font-size:38.880000px;}
.fs1_c00277{font-size:47.520000px;}
.fs3_c00277{font-size:60.480000px;}
.fs0_c00277{font-size:72.000000px;}
.y0_c00277{bottom:0.000000px;}
.y3_c00277{bottom:4.320000px;}
.y6_c00277{bottom:4.680000px;}
.y5_c00277{bottom:25.200000px;}
.y4_c00277{bottom:32.040000px;}
.y1_c00277{bottom:57.240000px;}
.y35_c00277{bottom:130.716000px;}
.y34_c00277{bottom:137.556000px;}
.y33_c00277{bottom:147.996000px;}
.y32_c00277{bottom:165.270000px;}
.y31_c00277{bottom:172.110000px;}
.y30_c00277{bottom:182.550000px;}
.y2f_c00277{bottom:189.390000px;}
.y2e_c00277{bottom:199.830000px;}
.y2d_c00277{bottom:216.750000px;}
.y2c_c00277{bottom:234.075000px;}
.y2b_c00277{bottom:251.355000px;}
.y2a_c00277{bottom:258.195000px;}
.y29_c00277{bottom:268.635000px;}
.y28_c00277{bottom:285.915000px;}
.y27_c00277{bottom:292.755000px;}
.y26_c00277{bottom:303.915000px;}
.y25_c00277{bottom:355.065000px;}
.y24_c00277{bottom:386.025000px;}
.y23_c00277{bottom:416.985000px;}
.y22_c00277{bottom:447.945000px;}
.y20_c00277{bottom:478.950000px;}
.y21_c00277{bottom:487.230000px;}
.y1f_c00277{bottom:510.270000px;}
.y1d_c00277{bottom:541.230000px;}
.y1e_c00277{bottom:549.510000px;}
.y1c_c00277{bottom:572.190000px;}
.y1a_c00277{bottom:603.180000px;}
.y1b_c00277{bottom:611.460000px;}
.y19_c00277{bottom:634.500000px;}
.y18_c00277{bottom:665.460000px;}
.y17_c00277{bottom:696.420000px;}
.y16_c00277{bottom:727.410000px;}
.y15_c00277{bottom:758.730000px;}
.y14_c00277{bottom:789.690000px;}
.y12_c00277{bottom:820.650000px;}
.y13_c00277{bottom:828.930000px;}
.y11_c00277{bottom:851.655000px;}
.y10_c00277{bottom:882.975000px;}
.ye_c00277{bottom:913.935000px;}
.yf_c00277{bottom:922.215000px;}
.yd_c00277{bottom:944.895000px;}
.yc_c00277{bottom:975.885000px;}
.yb_c00277{bottom:1007.205000px;}
.ya_c00277{bottom:1038.165000px;}
.y9_c00277{bottom:1078.125000px;}
.y8_c00277{bottom:1109.130000px;}
.y7_c00277{bottom:1140.450000px;}
.y2_c00277{bottom:1189.050000px;}
.h3_c00277{height:20.550000px;}
.h9_c00277{height:34.855313px;}
.h4_c00277{height:41.395500px;}
.h8_c00277{height:46.638281px;}
.hb_c00277{height:54.219375px;}
.hc_c00277{height:54.514688px;}
.ha_c00277{height:59.357813px;}
.h2_c00277{height:64.546875px;}
.h6_c00277{height:70.628906px;}
.h5_c00277{height:70.664062px;}
.h7_c00277{height:1262.875500px;}
.h0_c00277{height:1262.880000px;}
.h1_c00277{height:1263.000000px;}
.w2_c00277{width:8.265000px;}
.w3_c00277{width:638.145000px;}
.w1_c00277{width:892.500000px;}
.w4_c00277{width:892.797000px;}
.w0_c00277{width:892.800000px;}
.x0_c00277{left:0.000000px;}
.x3_c00277{left:127.534500px;}
.xf_c00277{left:142.632000px;}
.x1_c00277{left:154.515000px;}
.x4_c00277{left:169.995000px;}
.xe_c00277{left:343.590000px;}
.xc_c00277{left:347.547000px;}
.xd_c00277{left:365.910000px;}
.xb_c00277{left:493.047000px;}
.x9_c00277{left:511.407000px;}
.xa_c00277{left:529.770000px;}
.x5_c00277{left:678.882000px;}
.x6_c00277{left:697.245000px;}
.x7_c00277{left:698.322000px;}
.x8_c00277{left:716.730000px;}
.x2_c00277{left:757.410000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.lse_c00277{letter-spacing:-0.432533pt;}
.ls8_c00277{letter-spacing:-0.256000pt;}
.lsa_c00277{letter-spacing:-0.128000pt;}
.ls7_c00277{letter-spacing:0.000000pt;}
.ls2_c00277{letter-spacing:0.320000pt;}
.ls9_c00277{letter-spacing:0.512000pt;}
.ls4_c00277{letter-spacing:0.640000pt;}
.lsc_c00277{letter-spacing:1.024000pt;}
.lsd_c00277{letter-spacing:1.280000pt;}
.ls5_c00277{letter-spacing:4.480000pt;}
.ls0_c00277{letter-spacing:5.760000pt;}
.ls6_c00277{letter-spacing:8.320000pt;}
.lsb_c00277{letter-spacing:9.600000pt;}
.ls1_c00277{letter-spacing:10.880000pt;}
.ls3_c00277{letter-spacing:13.600000pt;}
.ws0_c00277{word-spacing:-64.000000pt;}
.ws6_c00277{word-spacing:-53.760000pt;}
.ws4_c00277{word-spacing:-17.024000pt;}
.ws2_c00277{word-spacing:-16.512000pt;}
.ws1_c00277{word-spacing:-16.000000pt;}
.ws3_c00277{word-spacing:-15.872000pt;}
.ws7_c00277{word-spacing:-14.720000pt;}
.ws5_c00277{word-spacing:-13.440000pt;}
.ws8_c00277{word-spacing:-13.007467pt;}
.ws9_c00277{word-spacing:0.000000pt;}
._2_c00277{margin-left:-2.432000pt;}
._4_c00277{margin-left:-1.024000pt;}
._1_c00277{width:0.960000pt;}
._6_c00277{width:2.176000pt;}
._10_c00277{width:3.189333pt;}
._a_c00277{width:4.213333pt;}
._8_c00277{width:5.504000pt;}
._7_c00277{width:6.528000pt;}
._f_c00277{width:7.445333pt;}
._9_c00277{width:8.426667pt;}
._0_c00277{width:10.048000pt;}
._3_c00277{width:11.200000pt;}
._5_c00277{width:12.096000pt;}
._e_c00277{width:13.888000pt;}
._11_c00277{width:14.784000pt;}
._15_c00277{width:16.047997pt;}
._14_c00277{width:17.290668pt;}
._12_c00277{width:23.936000pt;}
._13_c00277{width:25.151979pt;}
._b_c00277{width:27.968000pt;}
._c_c00277{width:28.992000pt;}
._d_c00277{width:30.720000pt;}
.fs2_c00277{font-size:34.560000pt;}
.fs1_c00277{font-size:42.240000pt;}
.fs3_c00277{font-size:53.760000pt;}
.fs0_c00277{font-size:64.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y3_c00277{bottom:3.840000pt;}
.y6_c00277{bottom:4.160000pt;}
.y5_c00277{bottom:22.400000pt;}
.y4_c00277{bottom:28.480000pt;}
.y1_c00277{bottom:50.880000pt;}
.y35_c00277{bottom:116.192000pt;}
.y34_c00277{bottom:122.272000pt;}
.y33_c00277{bottom:131.552000pt;}
.y32_c00277{bottom:146.906667pt;}
.y31_c00277{bottom:152.986667pt;}
.y30_c00277{bottom:162.266667pt;}
.y2f_c00277{bottom:168.346667pt;}
.y2e_c00277{bottom:177.626667pt;}
.y2d_c00277{bottom:192.666667pt;}
.y2c_c00277{bottom:208.066667pt;}
.y2b_c00277{bottom:223.426667pt;}
.y2a_c00277{bottom:229.506667pt;}
.y29_c00277{bottom:238.786667pt;}
.y28_c00277{bottom:254.146667pt;}
.y27_c00277{bottom:260.226667pt;}
.y26_c00277{bottom:270.146667pt;}
.y25_c00277{bottom:315.613333pt;}
.y24_c00277{bottom:343.133333pt;}
.y23_c00277{bottom:370.653333pt;}
.y22_c00277{bottom:398.173333pt;}
.y20_c00277{bottom:425.733333pt;}
.y21_c00277{bottom:433.093333pt;}
.y1f_c00277{bottom:453.573333pt;}
.y1d_c00277{bottom:481.093333pt;}
.y1e_c00277{bottom:488.453333pt;}
.y1c_c00277{bottom:508.613333pt;}
.y1a_c00277{bottom:536.160000pt;}
.y1b_c00277{bottom:543.520000pt;}
.y19_c00277{bottom:564.000000pt;}
.y18_c00277{bottom:591.520000pt;}
.y17_c00277{bottom:619.040000pt;}
.y16_c00277{bottom:646.586667pt;}
.y15_c00277{bottom:674.426667pt;}
.y14_c00277{bottom:701.946667pt;}
.y12_c00277{bottom:729.466667pt;}
.y13_c00277{bottom:736.826667pt;}
.y11_c00277{bottom:757.026667pt;}
.y10_c00277{bottom:784.866667pt;}
.ye_c00277{bottom:812.386667pt;}
.yf_c00277{bottom:819.746667pt;}
.yd_c00277{bottom:839.906667pt;}
.yc_c00277{bottom:867.453333pt;}
.yb_c00277{bottom:895.293333pt;}
.ya_c00277{bottom:922.813333pt;}
.y9_c00277{bottom:958.333333pt;}
.y8_c00277{bottom:985.893333pt;}
.y7_c00277{bottom:1013.733333pt;}
.y2_c00277{bottom:1056.933333pt;}
.h3_c00277{height:18.266667pt;}
.h9_c00277{height:30.982500pt;}
.h4_c00277{height:36.796000pt;}
.h8_c00277{height:41.456250pt;}
.hb_c00277{height:48.195000pt;}
.hc_c00277{height:48.457500pt;}
.ha_c00277{height:52.762500pt;}
.h2_c00277{height:57.375000pt;}
.h6_c00277{height:62.781250pt;}
.h5_c00277{height:62.812500pt;}
.h7_c00277{height:1122.556000pt;}
.h0_c00277{height:1122.560000pt;}
.h1_c00277{height:1122.666667pt;}
.w2_c00277{width:7.346667pt;}
.w3_c00277{width:567.240000pt;}
.w1_c00277{width:793.333333pt;}
.w4_c00277{width:793.597333pt;}
.w0_c00277{width:793.600000pt;}
.x0_c00277{left:0.000000pt;}
.x3_c00277{left:113.364000pt;}
.xf_c00277{left:126.784000pt;}
.x1_c00277{left:137.346667pt;}
.x4_c00277{left:151.106667pt;}
.xe_c00277{left:305.413333pt;}
.xc_c00277{left:308.930667pt;}
.xd_c00277{left:325.253333pt;}
.xb_c00277{left:438.264000pt;}
.x9_c00277{left:454.584000pt;}
.xa_c00277{left:470.906667pt;}
.x5_c00277{left:603.450667pt;}
.x6_c00277{left:619.773333pt;}
.x7_c00277{left:620.730667pt;}
.x8_c00277{left:637.093333pt;}
.x2_c00277{left:673.253333pt;}
}





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

.ir_c00278:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00278;src:url('chunks/assets/font_b5867e56a1b065ae6395bacf.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00278;src:url('chunks/assets/font_f9d3dee3468bcebd73bacffc.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_817c5088bb37a7182541aa56.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_2cb723d3c7cdec998f83fc54.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00278;src:url('chunks/assets/font_1151eb0eaafe3a94cad0cc79.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;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_c00278;src:url('chunks/assets/font_a96a726cbd34a46ecbc62fd5.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;line-height:1.104004;font-style:normal;font-weight: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_c00278;src:url('chunks/assets/font_bdc048b060c10622b0b4e9ff.woff2')format("woff");}.ff7_c00278{font-family:ff7_c00278;line-height:0.868164;font-style:normal;font-weight: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_c00278;src:url('chunks/assets/font_9f0a20479fc913dc350d2668.woff2')format("woff");}.ff8_c00278{font-family:ff8_c00278;line-height:1.117188;font-style:normal;font-weight: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_c00278;src:url('chunks/assets/font_ea599c3503bc436a2960f712.woff2')format("woff");}.ff9_c00278{font-family:ff9_c00278;line-height:0.928711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls12_c00278{letter-spacing:-1.416000px;}
.ls17_c00278{letter-spacing:-1.380000px;}
.ls16_c00278{letter-spacing:-1.128000px;}
.ls21_c00278{letter-spacing:-0.954000px;}
.ls1a_c00278{letter-spacing:-0.912000px;}
.ls1d_c00278{letter-spacing:-0.720000px;}
.ls15_c00278{letter-spacing:-0.532800px;}
.ls14_c00278{letter-spacing:-0.241800px;}
.ls18_c00278{letter-spacing:-0.230400px;}
.lsf_c00278{letter-spacing:0.000000px;}
.ls13_c00278{letter-spacing:0.022800px;}
.ls19_c00278{letter-spacing:0.060600px;}
.lsc_c00278{letter-spacing:0.060960px;}
.ls1b_c00278{letter-spacing:0.072000px;}
.ls0_c00278{letter-spacing:0.120000px;}
.ls1f_c00278{letter-spacing:0.166800px;}
.ls5_c00278{letter-spacing:0.241920px;}
.ls11_c00278{letter-spacing:0.466800px;}
.ls1c_c00278{letter-spacing:0.504000px;}
.ls6_c00278{letter-spacing:0.518400px;}
.ls10_c00278{letter-spacing:0.529800px;}
.ls7_c00278{letter-spacing:0.538560px;}
.ls1e_c00278{letter-spacing:0.636000px;}
.ls4_c00278{letter-spacing:0.696960px;}
.ls20_c00278{letter-spacing:0.702000px;}
.ls2_c00278{letter-spacing:0.720000px;}
.ls1_c00278{letter-spacing:0.720045px;}
.ls3_c00278{letter-spacing:0.840000px;}
.ls8_c00278{letter-spacing:1.440000px;}
.lsa_c00278{letter-spacing:1.620000px;}
.lsb_c00278{letter-spacing:9.360000px;}
.lse_c00278{letter-spacing:14.866560px;}
.lsd_c00278{letter-spacing:15.120000px;}
.ls9_c00278{letter-spacing:45.360000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:-72.000000px;}
.ws2_c00278{word-spacing:-60.480000px;}
.ws4_c00278{word-spacing:-60.249600px;}
.ws7_c00278{word-spacing:-18.072000px;}
.ws6_c00278{word-spacing:-18.000000px;}
.wsb_c00278{word-spacing:-16.813440px;}
.wsa_c00278{word-spacing:-15.822000px;}
.ws8_c00278{word-spacing:-15.756000px;}
.ws9_c00278{word-spacing:-15.286800px;}
.ws5_c00278{word-spacing:-15.180600px;}
.ws1_c00278{word-spacing:-15.120000px;}
.wsd_c00278{word-spacing:-14.575680px;}
.wsc_c00278{word-spacing:-14.166000px;}
.ws3_c00278{word-spacing:-13.992000px;}
.wse_c00278{word-spacing:0.000000px;}
._c_c00278{margin-left:-3.492000px;}
._1_c00278{margin-left:-2.016000px;}
._7_c00278{margin-left:-1.015801px;}
._0_c00278{width:1.272000px;}
._2_c00278{width:3.084000px;}
._8_c00278{width:4.453202px;}
._4_c00278{width:5.806201px;}
._3_c00278{width:7.094400px;}
._10_c00278{width:8.400597px;}
._11_c00278{width:10.152611px;}
._d_c00278{width:15.948000px;}
._e_c00278{width:19.643976px;}
._9_c00278{width:37.368000px;}
._a_c00278{width:38.748000px;}
._b_c00278{width:40.452000px;}
._6_c00278{width:42.270837px;}
._f_c00278{width:45.468000px;}
._5_c00278{width:47.260679px;}
.fc1_c00278{color:rgb(50,50,50);}
.fc0_c00278{color:rgb(0,0,0);}
.fs3_c00278{font-size:38.880000px;}
.fs2_c00278{font-size:47.520000px;}
.fs1_c00278{font-size:60.480000px;}
.fs0_c00278{font-size:72.000000px;}
.y0_c00278{bottom:0.000000px;}
.y3_c00278{bottom:4.320000px;}
.y6_c00278{bottom:4.680000px;}
.y5_c00278{bottom:25.200000px;}
.y4_c00278{bottom:32.040000px;}
.y1_c00278{bottom:57.240000px;}
.y2b_c00278{bottom:130.716000px;}
.y2a_c00278{bottom:147.996000px;}
.y29_c00278{bottom:165.270000px;}
.y28_c00278{bottom:183.990000px;}
.y27_c00278{bottom:199.830000px;}
.y26_c00278{bottom:206.670000px;}
.y25_c00278{bottom:217.830000px;}
.y24_c00278{bottom:284.835000px;}
.y23_c00278{bottom:310.755000px;}
.y22_c00278{bottom:336.315000px;}
.y21_c00278{bottom:362.265000px;}
.y20_c00278{bottom:388.185000px;}
.y1f_c00278{bottom:437.505000px;}
.y1d_c00278{bottom:489.390000px;}
.y1e_c00278{bottom:497.670000px;}
.y1c_c00278{bottom:520.710000px;}
.y1b_c00278{bottom:551.670000px;}
.y1a_c00278{bottom:582.630000px;}
.y19_c00278{bottom:613.620000px;}
.y18_c00278{bottom:644.940000px;}
.y17_c00278{bottom:675.900000px;}
.y16_c00278{bottom:706.860000px;}
.y15_c00278{bottom:744.690000px;}
.y14_c00278{bottom:770.610000px;}
.y13_c00278{bottom:796.530000px;}
.y12_c00278{bottom:822.450000px;}
.y11_c00278{bottom:848.055000px;}
.y10_c00278{bottom:884.055000px;}
.yf_c00278{bottom:909.975000px;}
.ye_c00278{bottom:935.895000px;}
.yd_c00278{bottom:961.815000px;}
.yc_c00278{bottom:987.765000px;}
.yb_c00278{bottom:1013.325000px;}
.ya_c00278{bottom:1039.245000px;}
.y9_c00278{bottom:1065.165000px;}
.y8_c00278{bottom:1091.130000px;}
.y7_c00278{bottom:1140.450000px;}
.y2_c00278{bottom:1189.050000px;}
.h3_c00278{height:20.550000px;}
.ha_c00278{height:34.855313px;}
.h4_c00278{height:41.395500px;}
.h9_c00278{height:46.638281px;}
.hb_c00278{height:54.219375px;}
.h7_c00278{height:59.328281px;}
.h6_c00278{height:59.357813px;}
.h2_c00278{height:64.546875px;}
.h5_c00278{height:70.664062px;}
.h8_c00278{height:1262.875500px;}
.h0_c00278{height:1262.880000px;}
.h1_c00278{height:1263.000000px;}
.w2_c00278{width:8.265000px;}
.w3_c00278{width:638.145000px;}
.w1_c00278{width:892.500000px;}
.w4_c00278{width:892.797000px;}
.w0_c00278{width:892.800000px;}
.x0_c00278{left:0.000000px;}
.x3_c00278{left:127.534500px;}
.x8_c00278{left:142.632000px;}
.x1_c00278{left:154.515000px;}
.x4_c00278{left:169.995000px;}
.x5_c00278{left:171.432000px;}
.x6_c00278{left:189.795000px;}
.x7_c00278{left:343.590000px;}
.x2_c00278{left:757.410000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls12_c00278{letter-spacing:-1.258667pt;}
.ls17_c00278{letter-spacing:-1.226667pt;}
.ls16_c00278{letter-spacing:-1.002667pt;}
.ls21_c00278{letter-spacing:-0.848000pt;}
.ls1a_c00278{letter-spacing:-0.810667pt;}
.ls1d_c00278{letter-spacing:-0.640000pt;}
.ls15_c00278{letter-spacing:-0.473600pt;}
.ls14_c00278{letter-spacing:-0.214933pt;}
.ls18_c00278{letter-spacing:-0.204800pt;}
.lsf_c00278{letter-spacing:0.000000pt;}
.ls13_c00278{letter-spacing:0.020267pt;}
.ls19_c00278{letter-spacing:0.053867pt;}
.lsc_c00278{letter-spacing:0.054187pt;}
.ls1b_c00278{letter-spacing:0.064000pt;}
.ls0_c00278{letter-spacing:0.106667pt;}
.ls1f_c00278{letter-spacing:0.148267pt;}
.ls5_c00278{letter-spacing:0.215040pt;}
.ls11_c00278{letter-spacing:0.414933pt;}
.ls1c_c00278{letter-spacing:0.448000pt;}
.ls6_c00278{letter-spacing:0.460800pt;}
.ls10_c00278{letter-spacing:0.470933pt;}
.ls7_c00278{letter-spacing:0.478720pt;}
.ls1e_c00278{letter-spacing:0.565333pt;}
.ls4_c00278{letter-spacing:0.619520pt;}
.ls20_c00278{letter-spacing:0.624000pt;}
.ls2_c00278{letter-spacing:0.640000pt;}
.ls1_c00278{letter-spacing:0.640040pt;}
.ls3_c00278{letter-spacing:0.746667pt;}
.ls8_c00278{letter-spacing:1.280000pt;}
.lsa_c00278{letter-spacing:1.440000pt;}
.lsb_c00278{letter-spacing:8.320000pt;}
.lse_c00278{letter-spacing:13.214720pt;}
.lsd_c00278{letter-spacing:13.440000pt;}
.ls9_c00278{letter-spacing:40.320000pt;}
.ws0_c00278{word-spacing:-64.000000pt;}
.ws2_c00278{word-spacing:-53.760000pt;}
.ws4_c00278{word-spacing:-53.555200pt;}
.ws7_c00278{word-spacing:-16.064000pt;}
.ws6_c00278{word-spacing:-16.000000pt;}
.wsb_c00278{word-spacing:-14.945280pt;}
.wsa_c00278{word-spacing:-14.064000pt;}
.ws8_c00278{word-spacing:-14.005333pt;}
.ws9_c00278{word-spacing:-13.588267pt;}
.ws5_c00278{word-spacing:-13.493867pt;}
.ws1_c00278{word-spacing:-13.440000pt;}
.wsd_c00278{word-spacing:-12.956160pt;}
.wsc_c00278{word-spacing:-12.592000pt;}
.ws3_c00278{word-spacing:-12.437333pt;}
.wse_c00278{word-spacing:0.000000pt;}
._c_c00278{margin-left:-3.104000pt;}
._1_c00278{margin-left:-1.792000pt;}
._7_c00278{margin-left:-0.902934pt;}
._0_c00278{width:1.130667pt;}
._2_c00278{width:2.741333pt;}
._8_c00278{width:3.958402pt;}
._4_c00278{width:5.161068pt;}
._3_c00278{width:6.306133pt;}
._10_c00278{width:7.467197pt;}
._11_c00278{width:9.024543pt;}
._d_c00278{width:14.176000pt;}
._e_c00278{width:17.461312pt;}
._9_c00278{width:33.216000pt;}
._a_c00278{width:34.442667pt;}
._b_c00278{width:35.957333pt;}
._6_c00278{width:37.574077pt;}
._f_c00278{width:40.416000pt;}
._5_c00278{width:42.009492pt;}
.fs3_c00278{font-size:34.560000pt;}
.fs2_c00278{font-size:42.240000pt;}
.fs1_c00278{font-size:53.760000pt;}
.fs0_c00278{font-size:64.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y3_c00278{bottom:3.840000pt;}
.y6_c00278{bottom:4.160000pt;}
.y5_c00278{bottom:22.400000pt;}
.y4_c00278{bottom:28.480000pt;}
.y1_c00278{bottom:50.880000pt;}
.y2b_c00278{bottom:116.192000pt;}
.y2a_c00278{bottom:131.552000pt;}
.y29_c00278{bottom:146.906667pt;}
.y28_c00278{bottom:163.546667pt;}
.y27_c00278{bottom:177.626667pt;}
.y26_c00278{bottom:183.706667pt;}
.y25_c00278{bottom:193.626667pt;}
.y24_c00278{bottom:253.186667pt;}
.y23_c00278{bottom:276.226667pt;}
.y22_c00278{bottom:298.946667pt;}
.y21_c00278{bottom:322.013333pt;}
.y20_c00278{bottom:345.053333pt;}
.y1f_c00278{bottom:388.893333pt;}
.y1d_c00278{bottom:435.013333pt;}
.y1e_c00278{bottom:442.373333pt;}
.y1c_c00278{bottom:462.853333pt;}
.y1b_c00278{bottom:490.373333pt;}
.y1a_c00278{bottom:517.893333pt;}
.y19_c00278{bottom:545.440000pt;}
.y18_c00278{bottom:573.280000pt;}
.y17_c00278{bottom:600.800000pt;}
.y16_c00278{bottom:628.320000pt;}
.y15_c00278{bottom:661.946667pt;}
.y14_c00278{bottom:684.986667pt;}
.y13_c00278{bottom:708.026667pt;}
.y12_c00278{bottom:731.066667pt;}
.y11_c00278{bottom:753.826667pt;}
.y10_c00278{bottom:785.826667pt;}
.yf_c00278{bottom:808.866667pt;}
.ye_c00278{bottom:831.906667pt;}
.yd_c00278{bottom:854.946667pt;}
.yc_c00278{bottom:878.013333pt;}
.yb_c00278{bottom:900.733333pt;}
.ya_c00278{bottom:923.773333pt;}
.y9_c00278{bottom:946.813333pt;}
.y8_c00278{bottom:969.893333pt;}
.y7_c00278{bottom:1013.733333pt;}
.y2_c00278{bottom:1056.933333pt;}
.h3_c00278{height:18.266667pt;}
.ha_c00278{height:30.982500pt;}
.h4_c00278{height:36.796000pt;}
.h9_c00278{height:41.456250pt;}
.hb_c00278{height:48.195000pt;}
.h7_c00278{height:52.736250pt;}
.h6_c00278{height:52.762500pt;}
.h2_c00278{height:57.375000pt;}
.h5_c00278{height:62.812500pt;}
.h8_c00278{height:1122.556000pt;}
.h0_c00278{height:1122.560000pt;}
.h1_c00278{height:1122.666667pt;}
.w2_c00278{width:7.346667pt;}
.w3_c00278{width:567.240000pt;}
.w1_c00278{width:793.333333pt;}
.w4_c00278{width:793.597333pt;}
.w0_c00278{width:793.600000pt;}
.x0_c00278{left:0.000000pt;}
.x3_c00278{left:113.364000pt;}
.x8_c00278{left:126.784000pt;}
.x1_c00278{left:137.346667pt;}
.x4_c00278{left:151.106667pt;}
.x5_c00278{left:152.384000pt;}
.x6_c00278{left:168.706667pt;}
.x7_c00278{left:305.413333pt;}
.x2_c00278{left:673.253333pt;}
}





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

.ir_c00279:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00279;src:url('chunks/assets/font_150bf3beb0e746729d53c7aa.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_2cb7f73a2e13efe76f3e6bb6.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_0b6acaf636882635457e0b5c.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_c74465564b4bdc2b90b9825c.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_687e4ac0d12302208fdbd1b0.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls4_c00279{letter-spacing:-2.880000px;}
.ls3_c00279{letter-spacing:-1.422000px;}
.ls2_c00279{letter-spacing:0.000000px;}
.ls0_c00279{letter-spacing:0.120000px;}
.ls1_c00279{letter-spacing:0.720000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:-18.000000px;}
.ws1_c00279{word-spacing:-15.120000px;}
.ws2_c00279{word-spacing:0.000000px;}
._4_c00279{margin-left:-2.926806px;}
._1_c00279{margin-left:-1.451399px;}
._3_c00279{width:1.210205px;}
._5_c00279{width:2.952000px;}
._12_c00279{width:4.021788px;}
._8_c00279{width:5.053795px;}
._2_c00279{width:6.289799px;}
._0_c00279{width:8.043598px;}
._b_c00279{width:9.788572px;}
._9_c00279{width:11.474965px;}
._a_c00279{width:12.877218px;}
._10_c00279{width:14.293755px;}
._11_c00279{width:15.482958px;}
._16_c00279{width:17.842787px;}
._15_c00279{width:18.928812px;}
._14_c00279{width:20.103019px;}
._13_c00279{width:21.584353px;}
._7_c00279{width:22.978210px;}
._6_c00279{width:24.012593px;}
._c_c00279{width:25.513194px;}
._e_c00279{width:27.288000px;}
._f_c00279{width:30.088184px;}
._d_c00279{width:151.932024px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs3_c00279{font-size:38.880000px;}
.fs2_c00279{font-size:47.520000px;}
.fs1_c00279{font-size:60.480000px;}
.fs0_c00279{font-size:72.000000px;}
.y0_c00279{bottom:0.000000px;}
.y3_c00279{bottom:4.320000px;}
.y6_c00279{bottom:4.680000px;}
.y5_c00279{bottom:25.200000px;}
.y4_c00279{bottom:32.040000px;}
.y1_c00279{bottom:57.240000px;}
.y2d_c00279{bottom:130.716000px;}
.y2c_c00279{bottom:137.556000px;}
.y2b_c00279{bottom:147.996000px;}
.y2a_c00279{bottom:165.270000px;}
.y29_c00279{bottom:182.550000px;}
.y28_c00279{bottom:189.390000px;}
.y27_c00279{bottom:200.190000px;}
.y25_c00279{bottom:240.915000px;}
.y26_c00279{bottom:249.195000px;}
.y24_c00279{bottom:272.235000px;}
.y23_c00279{bottom:303.195000px;}
.y22_c00279{bottom:334.155000px;}
.y21_c00279{bottom:365.145000px;}
.y20_c00279{bottom:396.465000px;}
.y1f_c00279{bottom:427.425000px;}
.y1e_c00279{bottom:458.385000px;}
.y1d_c00279{bottom:489.390000px;}
.y1c_c00279{bottom:520.350000px;}
.y1b_c00279{bottom:551.670000px;}
.y1a_c00279{bottom:582.630000px;}
.y19_c00279{bottom:613.620000px;}
.y18_c00279{bottom:644.580000px;}
.y17_c00279{bottom:675.900000px;}
.y16_c00279{bottom:706.860000px;}
.y15_c00279{bottom:737.850000px;}
.y14_c00279{bottom:768.810000px;}
.y12_c00279{bottom:800.130000px;}
.y13_c00279{bottom:808.410000px;}
.y11_c00279{bottom:831.090000px;}
.y10_c00279{bottom:862.095000px;}
.yf_c00279{bottom:893.055000px;}
.ye_c00279{bottom:924.375000px;}
.yd_c00279{bottom:955.335000px;}
.yc_c00279{bottom:986.325000px;}
.yb_c00279{bottom:1017.285000px;}
.ya_c00279{bottom:1048.605000px;}
.y9_c00279{bottom:1079.565000px;}
.y8_c00279{bottom:1117.410000px;}
.y7_c00279{bottom:1143.330000px;}
.y2_c00279{bottom:1189.050000px;}
.h3_c00279{height:20.550000px;}
.hc_c00279{height:34.855313px;}
.ha_c00279{height:38.158594px;}
.h4_c00279{height:41.395500px;}
.h8_c00279{height:46.638281px;}
.hd_c00279{height:54.514688px;}
.h5_c00279{height:59.328281px;}
.hb_c00279{height:59.357813px;}
.h2_c00279{height:64.546875px;}
.h9_c00279{height:70.628906px;}
.h6_c00279{height:70.664062px;}
.h7_c00279{height:1262.875500px;}
.h0_c00279{height:1262.880000px;}
.h1_c00279{height:1263.000000px;}
.w2_c00279{width:8.265000px;}
.w3_c00279{width:638.145000px;}
.w1_c00279{width:892.500000px;}
.w4_c00279{width:892.797000px;}
.w0_c00279{width:892.800000px;}
.x0_c00279{left:0.000000px;}
.x3_c00279{left:127.534500px;}
.xa_c00279{left:142.632000px;}
.x1_c00279{left:154.515000px;}
.x4_c00279{left:169.995000px;}
.x7_c00279{left:177.552000px;}
.x8_c00279{left:195.915000px;}
.x9_c00279{left:343.590000px;}
.x5_c00279{left:534.447000px;}
.x6_c00279{left:552.855000px;}
.x2_c00279{left:757.410000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls4_c00279{letter-spacing:-2.560000pt;}
.ls3_c00279{letter-spacing:-1.264000pt;}
.ls2_c00279{letter-spacing:0.000000pt;}
.ls0_c00279{letter-spacing:0.106667pt;}
.ls1_c00279{letter-spacing:0.640000pt;}
.ws0_c00279{word-spacing:-16.000000pt;}
.ws1_c00279{word-spacing:-13.440000pt;}
.ws2_c00279{word-spacing:0.000000pt;}
._4_c00279{margin-left:-2.601605pt;}
._1_c00279{margin-left:-1.290132pt;}
._3_c00279{width:1.075738pt;}
._5_c00279{width:2.624000pt;}
._12_c00279{width:3.574922pt;}
._8_c00279{width:4.492262pt;}
._2_c00279{width:5.590932pt;}
._0_c00279{width:7.149865pt;}
._b_c00279{width:8.700953pt;}
._9_c00279{width:10.199969pt;}
._a_c00279{width:11.446416pt;}
._10_c00279{width:12.705560pt;}
._11_c00279{width:13.762629pt;}
._16_c00279{width:15.860255pt;}
._15_c00279{width:16.825610pt;}
._14_c00279{width:17.869350pt;}
._13_c00279{width:19.186092pt;}
._7_c00279{width:20.425075pt;}
._6_c00279{width:21.344527pt;}
._c_c00279{width:22.678395pt;}
._e_c00279{width:24.256000pt;}
._f_c00279{width:26.745052pt;}
._d_c00279{width:135.050688pt;}
.fs3_c00279{font-size:34.560000pt;}
.fs2_c00279{font-size:42.240000pt;}
.fs1_c00279{font-size:53.760000pt;}
.fs0_c00279{font-size:64.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y3_c00279{bottom:3.840000pt;}
.y6_c00279{bottom:4.160000pt;}
.y5_c00279{bottom:22.400000pt;}
.y4_c00279{bottom:28.480000pt;}
.y1_c00279{bottom:50.880000pt;}
.y2d_c00279{bottom:116.192000pt;}
.y2c_c00279{bottom:122.272000pt;}
.y2b_c00279{bottom:131.552000pt;}
.y2a_c00279{bottom:146.906667pt;}
.y29_c00279{bottom:162.266667pt;}
.y28_c00279{bottom:168.346667pt;}
.y27_c00279{bottom:177.946667pt;}
.y25_c00279{bottom:214.146667pt;}
.y26_c00279{bottom:221.506667pt;}
.y24_c00279{bottom:241.986667pt;}
.y23_c00279{bottom:269.506667pt;}
.y22_c00279{bottom:297.026667pt;}
.y21_c00279{bottom:324.573333pt;}
.y20_c00279{bottom:352.413333pt;}
.y1f_c00279{bottom:379.933333pt;}
.y1e_c00279{bottom:407.453333pt;}
.y1d_c00279{bottom:435.013333pt;}
.y1c_c00279{bottom:462.533333pt;}
.y1b_c00279{bottom:490.373333pt;}
.y1a_c00279{bottom:517.893333pt;}
.y19_c00279{bottom:545.440000pt;}
.y18_c00279{bottom:572.960000pt;}
.y17_c00279{bottom:600.800000pt;}
.y16_c00279{bottom:628.320000pt;}
.y15_c00279{bottom:655.866667pt;}
.y14_c00279{bottom:683.386667pt;}
.y12_c00279{bottom:711.226667pt;}
.y13_c00279{bottom:718.586667pt;}
.y11_c00279{bottom:738.746667pt;}
.y10_c00279{bottom:766.306667pt;}
.yf_c00279{bottom:793.826667pt;}
.ye_c00279{bottom:821.666667pt;}
.yd_c00279{bottom:849.186667pt;}
.yc_c00279{bottom:876.733333pt;}
.yb_c00279{bottom:904.253333pt;}
.ya_c00279{bottom:932.093333pt;}
.y9_c00279{bottom:959.613333pt;}
.y8_c00279{bottom:993.253333pt;}
.y7_c00279{bottom:1016.293333pt;}
.y2_c00279{bottom:1056.933333pt;}
.h3_c00279{height:18.266667pt;}
.hc_c00279{height:30.982500pt;}
.ha_c00279{height:33.918750pt;}
.h4_c00279{height:36.796000pt;}
.h8_c00279{height:41.456250pt;}
.hd_c00279{height:48.457500pt;}
.h5_c00279{height:52.736250pt;}
.hb_c00279{height:52.762500pt;}
.h2_c00279{height:57.375000pt;}
.h9_c00279{height:62.781250pt;}
.h6_c00279{height:62.812500pt;}
.h7_c00279{height:1122.556000pt;}
.h0_c00279{height:1122.560000pt;}
.h1_c00279{height:1122.666667pt;}
.w2_c00279{width:7.346667pt;}
.w3_c00279{width:567.240000pt;}
.w1_c00279{width:793.333333pt;}
.w4_c00279{width:793.597333pt;}
.w0_c00279{width:793.600000pt;}
.x0_c00279{left:0.000000pt;}
.x3_c00279{left:113.364000pt;}
.xa_c00279{left:126.784000pt;}
.x1_c00279{left:137.346667pt;}
.x4_c00279{left:151.106667pt;}
.x7_c00279{left:157.824000pt;}
.x8_c00279{left:174.146667pt;}
.x9_c00279{left:305.413333pt;}
.x5_c00279{left:475.064000pt;}
.x6_c00279{left:491.426667pt;}
.x2_c00279{left:673.253333pt;}
}





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

.ir_c00280:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00280;src:url('chunks/assets/font_88fa626d0b4d262dd9b19629.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_409dfc996547186939c13889.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_84c2d858cba8dc1c22e6882a.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;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_c00280;src:url('chunks/assets/font_9e08be3a990e2b5d88a15894.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_687e4ac0d12302208fdbd1b0.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00280;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff6_c00280{font-family:ff6_c00280;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls3_c00280{letter-spacing:-0.486600px;}
.ls2_c00280{letter-spacing:0.000000px;}
.ls1_c00280{letter-spacing:0.466800px;}
.ls0_c00280{letter-spacing:0.720000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00280{word-spacing:-72.000000px;}
.ws4_c00280{word-spacing:-34.110720px;}
.ws0_c00280{word-spacing:-18.000000px;}
.ws2_c00280{word-spacing:-15.120000px;}
.ws3_c00280{word-spacing:-14.633400px;}
.ws5_c00280{word-spacing:0.000000px;}
._6_c00280{margin-left:-2.736000px;}
._2_c00280{margin-left:-1.440000px;}
._1_c00280{width:1.296000px;}
._5_c00280{width:2.808000px;}
._9_c00280{width:4.104000px;}
._b_c00280{width:5.112000px;}
._a_c00280{width:6.120000px;}
._10_c00280{width:7.920000px;}
._0_c00280{width:9.000000px;}
._4_c00280{width:10.080000px;}
._3_c00280{width:11.088000px;}
._c_c00280{width:12.888000px;}
._11_c00280{width:13.896000px;}
._7_c00280{width:14.904000px;}
._8_c00280{width:15.912000px;}
._13_c00280{width:18.631442px;}
._d_c00280{width:19.656000px;}
._f_c00280{width:23.040000px;}
._e_c00280{width:24.480000px;}
._12_c00280{width:151.932024px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs2_c00280{font-size:38.880000px;}
.fs1_c00280{font-size:47.520000px;}
.fs3_c00280{font-size:60.480000px;}
.fs0_c00280{font-size:72.000000px;}
.y0_c00280{bottom:0.000000px;}
.y3_c00280{bottom:4.320000px;}
.y6_c00280{bottom:4.680000px;}
.y5_c00280{bottom:25.200000px;}
.y4_c00280{bottom:32.040000px;}
.y1_c00280{bottom:57.240000px;}
.y37_c00280{bottom:130.716000px;}
.y36_c00280{bottom:137.556000px;}
.y35_c00280{bottom:147.996000px;}
.y34_c00280{bottom:165.270000px;}
.y33_c00280{bottom:182.550000px;}
.y32_c00280{bottom:199.830000px;}
.y31_c00280{bottom:216.750000px;}
.y30_c00280{bottom:234.075000px;}
.y2f_c00280{bottom:251.355000px;}
.y2e_c00280{bottom:268.635000px;}
.y2d_c00280{bottom:275.475000px;}
.y2c_c00280{bottom:285.915000px;}
.y2b_c00280{bottom:292.755000px;}
.y2a_c00280{bottom:303.195000px;}
.y29_c00280{bottom:310.035000px;}
.y28_c00280{bottom:320.475000px;}
.y27_c00280{bottom:327.315000px;}
.y26_c00280{bottom:338.115000px;}
.y25_c00280{bottom:364.065000px;}
.y24_c00280{bottom:395.025000px;}
.y23_c00280{bottom:425.985000px;}
.y22_c00280{bottom:456.945000px;}
.y21_c00280{bottom:487.950000px;}
.y20_c00280{bottom:519.270000px;}
.y1f_c00280{bottom:550.230000px;}
.y1d_c00280{bottom:581.190000px;}
.y1e_c00280{bottom:589.470000px;}
.y1c_c00280{bottom:612.180000px;}
.y1b_c00280{bottom:643.500000px;}
.y1a_c00280{bottom:674.460000px;}
.y19_c00280{bottom:705.420000px;}
.y18_c00280{bottom:736.410000px;}
.y17_c00280{bottom:767.730000px;}
.y15_c00280{bottom:798.690000px;}
.y16_c00280{bottom:806.970000px;}
.y13_c00280{bottom:829.650000px;}
.y14_c00280{bottom:837.930000px;}
.y12_c00280{bottom:860.655000px;}
.y11_c00280{bottom:891.975000px;}
.yf_c00280{bottom:922.935000px;}
.y10_c00280{bottom:931.215000px;}
.ye_c00280{bottom:953.895000px;}
.yd_c00280{bottom:984.885000px;}
.yc_c00280{bottom:1016.205000px;}
.yb_c00280{bottom:1047.165000px;}
.ya_c00280{bottom:1078.125000px;}
.y8_c00280{bottom:1109.130000px;}
.y9_c00280{bottom:1117.410000px;}
.y7_c00280{bottom:1140.450000px;}
.y2_c00280{bottom:1189.050000px;}
.h3_c00280{height:20.550000px;}
.ha_c00280{height:34.855313px;}
.hd_c00280{height:38.158594px;}
.h4_c00280{height:41.395500px;}
.h8_c00280{height:46.615078px;}
.h7_c00280{height:46.638281px;}
.hc_c00280{height:54.219375px;}
.hb_c00280{height:54.514688px;}
.he_c00280{height:59.357813px;}
.h2_c00280{height:64.546875px;}
.h9_c00280{height:70.628906px;}
.h5_c00280{height:70.664062px;}
.h6_c00280{height:1262.875500px;}
.h0_c00280{height:1262.880000px;}
.h1_c00280{height:1263.000000px;}
.w2_c00280{width:8.265000px;}
.w3_c00280{width:638.145000px;}
.w1_c00280{width:892.500000px;}
.w4_c00280{width:892.797000px;}
.w0_c00280{width:892.800000px;}
.x0_c00280{left:0.000000px;}
.x3_c00280{left:127.534500px;}
.xf_c00280{left:142.632000px;}
.x1_c00280{left:154.515000px;}
.xa_c00280{left:298.947000px;}
.xb_c00280{left:317.310000px;}
.xe_c00280{left:343.590000px;}
.xc_c00280{left:451.977000px;}
.xd_c00280{left:470.370000px;}
.x8_c00280{left:506.007000px;}
.x9_c00280{left:524.370000px;}
.x6_c00280{left:538.407000px;}
.x7_c00280{left:556.815000px;}
.x4_c00280{left:637.482000px;}
.x5_c00280{left:655.845000px;}
.x2_c00280{left:757.410000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls3_c00280{letter-spacing:-0.432533pt;}
.ls2_c00280{letter-spacing:0.000000pt;}
.ls1_c00280{letter-spacing:0.414933pt;}
.ls0_c00280{letter-spacing:0.640000pt;}
.ws1_c00280{word-spacing:-64.000000pt;}
.ws4_c00280{word-spacing:-30.320640pt;}
.ws0_c00280{word-spacing:-16.000000pt;}
.ws2_c00280{word-spacing:-13.440000pt;}
.ws3_c00280{word-spacing:-13.007467pt;}
.ws5_c00280{word-spacing:0.000000pt;}
._6_c00280{margin-left:-2.432000pt;}
._2_c00280{margin-left:-1.280000pt;}
._1_c00280{width:1.152000pt;}
._5_c00280{width:2.496000pt;}
._9_c00280{width:3.648000pt;}
._b_c00280{width:4.544000pt;}
._a_c00280{width:5.440000pt;}
._10_c00280{width:7.040000pt;}
._0_c00280{width:8.000000pt;}
._4_c00280{width:8.960000pt;}
._3_c00280{width:9.856000pt;}
._c_c00280{width:11.456000pt;}
._11_c00280{width:12.352000pt;}
._7_c00280{width:13.248000pt;}
._8_c00280{width:14.144000pt;}
._13_c00280{width:16.561282pt;}
._d_c00280{width:17.472000pt;}
._f_c00280{width:20.480000pt;}
._e_c00280{width:21.760000pt;}
._12_c00280{width:135.050688pt;}
.fs2_c00280{font-size:34.560000pt;}
.fs1_c00280{font-size:42.240000pt;}
.fs3_c00280{font-size:53.760000pt;}
.fs0_c00280{font-size:64.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y3_c00280{bottom:3.840000pt;}
.y6_c00280{bottom:4.160000pt;}
.y5_c00280{bottom:22.400000pt;}
.y4_c00280{bottom:28.480000pt;}
.y1_c00280{bottom:50.880000pt;}
.y37_c00280{bottom:116.192000pt;}
.y36_c00280{bottom:122.272000pt;}
.y35_c00280{bottom:131.552000pt;}
.y34_c00280{bottom:146.906667pt;}
.y33_c00280{bottom:162.266667pt;}
.y32_c00280{bottom:177.626667pt;}
.y31_c00280{bottom:192.666667pt;}
.y30_c00280{bottom:208.066667pt;}
.y2f_c00280{bottom:223.426667pt;}
.y2e_c00280{bottom:238.786667pt;}
.y2d_c00280{bottom:244.866667pt;}
.y2c_c00280{bottom:254.146667pt;}
.y2b_c00280{bottom:260.226667pt;}
.y2a_c00280{bottom:269.506667pt;}
.y29_c00280{bottom:275.586667pt;}
.y28_c00280{bottom:284.866667pt;}
.y27_c00280{bottom:290.946667pt;}
.y26_c00280{bottom:300.546667pt;}
.y25_c00280{bottom:323.613333pt;}
.y24_c00280{bottom:351.133333pt;}
.y23_c00280{bottom:378.653333pt;}
.y22_c00280{bottom:406.173333pt;}
.y21_c00280{bottom:433.733333pt;}
.y20_c00280{bottom:461.573333pt;}
.y1f_c00280{bottom:489.093333pt;}
.y1d_c00280{bottom:516.613333pt;}
.y1e_c00280{bottom:523.973333pt;}
.y1c_c00280{bottom:544.160000pt;}
.y1b_c00280{bottom:572.000000pt;}
.y1a_c00280{bottom:599.520000pt;}
.y19_c00280{bottom:627.040000pt;}
.y18_c00280{bottom:654.586667pt;}
.y17_c00280{bottom:682.426667pt;}
.y15_c00280{bottom:709.946667pt;}
.y16_c00280{bottom:717.306667pt;}
.y13_c00280{bottom:737.466667pt;}
.y14_c00280{bottom:744.826667pt;}
.y12_c00280{bottom:765.026667pt;}
.y11_c00280{bottom:792.866667pt;}
.yf_c00280{bottom:820.386667pt;}
.y10_c00280{bottom:827.746667pt;}
.ye_c00280{bottom:847.906667pt;}
.yd_c00280{bottom:875.453333pt;}
.yc_c00280{bottom:903.293333pt;}
.yb_c00280{bottom:930.813333pt;}
.ya_c00280{bottom:958.333333pt;}
.y8_c00280{bottom:985.893333pt;}
.y9_c00280{bottom:993.253333pt;}
.y7_c00280{bottom:1013.733333pt;}
.y2_c00280{bottom:1056.933333pt;}
.h3_c00280{height:18.266667pt;}
.ha_c00280{height:30.982500pt;}
.hd_c00280{height:33.918750pt;}
.h4_c00280{height:36.796000pt;}
.h8_c00280{height:41.435625pt;}
.h7_c00280{height:41.456250pt;}
.hc_c00280{height:48.195000pt;}
.hb_c00280{height:48.457500pt;}
.he_c00280{height:52.762500pt;}
.h2_c00280{height:57.375000pt;}
.h9_c00280{height:62.781250pt;}
.h5_c00280{height:62.812500pt;}
.h6_c00280{height:1122.556000pt;}
.h0_c00280{height:1122.560000pt;}
.h1_c00280{height:1122.666667pt;}
.w2_c00280{width:7.346667pt;}
.w3_c00280{width:567.240000pt;}
.w1_c00280{width:793.333333pt;}
.w4_c00280{width:793.597333pt;}
.w0_c00280{width:793.600000pt;}
.x0_c00280{left:0.000000pt;}
.x3_c00280{left:113.364000pt;}
.xf_c00280{left:126.784000pt;}
.x1_c00280{left:137.346667pt;}
.xa_c00280{left:265.730667pt;}
.xb_c00280{left:282.053333pt;}
.xe_c00280{left:305.413333pt;}
.xc_c00280{left:401.757333pt;}
.xd_c00280{left:418.106667pt;}
.x8_c00280{left:449.784000pt;}
.x9_c00280{left:466.106667pt;}
.x6_c00280{left:478.584000pt;}
.x7_c00280{left:494.946667pt;}
.x4_c00280{left:566.650667pt;}
.x5_c00280{left:582.973333pt;}
.x2_c00280{left:673.253333pt;}
}





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

.ir_c00281:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00281;src:url('chunks/assets/font_98895112a2c3963df8ae6de2.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_66b72d4338aef496c54888a8.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_d1677c0623b525d891a2fe29.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;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_c00281;src:url('chunks/assets/font_09e3b048aaf2767d49dbb595.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00281;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff6_c00281{font-family:ff6_c00281;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls3_c00281{letter-spacing:-0.486600px;}
.ls2_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:0.120000px;}
.ls1_c00281{letter-spacing:0.720000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00281{word-spacing:-72.000000px;}
.ws0_c00281{word-spacing:-40.608000px;}
.ws1_c00281{word-spacing:-18.000000px;}
.ws3_c00281{word-spacing:-15.120000px;}
.ws4_c00281{word-spacing:-14.633400px;}
.ws5_c00281{word-spacing:0.000000px;}
._7_c00281{margin-left:-3.312000px;}
._0_c00281{margin-left:-2.088000px;}
._5_c00281{margin-left:-1.008000px;}
._2_c00281{width:1.944000px;}
._6_c00281{width:3.096000px;}
._3_c00281{width:4.248000px;}
._1_c00281{width:5.472000px;}
._4_c00281{width:6.840000px;}
._8_c00281{width:8.496000px;}
._c_c00281{width:10.080000px;}
._d_c00281{width:12.528000px;}
._b_c00281{width:14.256000px;}
._a_c00281{width:15.552000px;}
._9_c00281{width:16.560000px;}
._f_c00281{width:23.040000px;}
._e_c00281{width:24.840000px;}
._10_c00281{width:25.920000px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs3_c00281{font-size:38.880000px;}
.fs1_c00281{font-size:47.520000px;}
.fs2_c00281{font-size:60.480000px;}
.fs0_c00281{font-size:72.000000px;}
.y0_c00281{bottom:0.000000px;}
.y3_c00281{bottom:4.320000px;}
.y6_c00281{bottom:4.680000px;}
.y5_c00281{bottom:25.200000px;}
.y4_c00281{bottom:32.040000px;}
.y1_c00281{bottom:57.240000px;}
.y28_c00281{bottom:130.716000px;}
.y27_c00281{bottom:137.556000px;}
.y26_c00281{bottom:148.356000px;}
.y25_c00281{bottom:191.550000px;}
.y24_c00281{bottom:240.915000px;}
.y23_c00281{bottom:292.755000px;}
.y22_c00281{bottom:332.715000px;}
.y21_c00281{bottom:364.065000px;}
.y20_c00281{bottom:395.025000px;}
.y1f_c00281{bottom:425.985000px;}
.y1e_c00281{bottom:456.945000px;}
.y1d_c00281{bottom:487.950000px;}
.y1b_c00281{bottom:519.270000px;}
.y1c_c00281{bottom:527.550000px;}
.y1a_c00281{bottom:550.230000px;}
.y19_c00281{bottom:581.190000px;}
.y18_c00281{bottom:612.180000px;}
.y17_c00281{bottom:643.500000px;}
.y16_c00281{bottom:674.460000px;}
.y15_c00281{bottom:705.420000px;}
.y14_c00281{bottom:736.410000px;}
.y13_c00281{bottom:767.730000px;}
.y12_c00281{bottom:798.690000px;}
.y11_c00281{bottom:829.650000px;}
.y10_c00281{bottom:860.655000px;}
.yf_c00281{bottom:891.975000px;}
.ye_c00281{bottom:922.935000px;}
.yd_c00281{bottom:953.895000px;}
.yc_c00281{bottom:984.885000px;}
.yb_c00281{bottom:1016.205000px;}
.ya_c00281{bottom:1047.165000px;}
.y9_c00281{bottom:1078.125000px;}
.y8_c00281{bottom:1109.130000px;}
.y7_c00281{bottom:1140.450000px;}
.y2_c00281{bottom:1189.050000px;}
.h3_c00281{height:20.550000px;}
.ha_c00281{height:34.855313px;}
.h4_c00281{height:41.395500px;}
.h7_c00281{height:46.638281px;}
.hb_c00281{height:54.514688px;}
.h9_c00281{height:59.357813px;}
.h2_c00281{height:64.546875px;}
.h8_c00281{height:70.628906px;}
.h5_c00281{height:70.664062px;}
.h6_c00281{height:1262.875500px;}
.h0_c00281{height:1262.880000px;}
.h1_c00281{height:1263.000000px;}
.w2_c00281{width:8.265000px;}
.w3_c00281{width:638.145000px;}
.w1_c00281{width:892.500000px;}
.w4_c00281{width:892.797000px;}
.w0_c00281{width:892.800000px;}
.x0_c00281{left:0.000000px;}
.x3_c00281{left:127.534500px;}
.x9_c00281{left:142.632000px;}
.x1_c00281{left:154.515000px;}
.x7_c00281{left:169.995000px;}
.x6_c00281{left:180.795000px;}
.x8_c00281{left:343.590000px;}
.x4_c00281{left:470.727000px;}
.x5_c00281{left:489.090000px;}
.x2_c00281{left:757.410000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls3_c00281{letter-spacing:-0.432533pt;}
.ls2_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:0.106667pt;}
.ls1_c00281{letter-spacing:0.640000pt;}
.ws2_c00281{word-spacing:-64.000000pt;}
.ws0_c00281{word-spacing:-36.096000pt;}
.ws1_c00281{word-spacing:-16.000000pt;}
.ws3_c00281{word-spacing:-13.440000pt;}
.ws4_c00281{word-spacing:-13.007467pt;}
.ws5_c00281{word-spacing:0.000000pt;}
._7_c00281{margin-left:-2.944000pt;}
._0_c00281{margin-left:-1.856000pt;}
._5_c00281{margin-left:-0.896000pt;}
._2_c00281{width:1.728000pt;}
._6_c00281{width:2.752000pt;}
._3_c00281{width:3.776000pt;}
._1_c00281{width:4.864000pt;}
._4_c00281{width:6.080000pt;}
._8_c00281{width:7.552000pt;}
._c_c00281{width:8.960000pt;}
._d_c00281{width:11.136000pt;}
._b_c00281{width:12.672000pt;}
._a_c00281{width:13.824000pt;}
._9_c00281{width:14.720000pt;}
._f_c00281{width:20.480000pt;}
._e_c00281{width:22.080000pt;}
._10_c00281{width:23.040000pt;}
.fs3_c00281{font-size:34.560000pt;}
.fs1_c00281{font-size:42.240000pt;}
.fs2_c00281{font-size:53.760000pt;}
.fs0_c00281{font-size:64.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y3_c00281{bottom:3.840000pt;}
.y6_c00281{bottom:4.160000pt;}
.y5_c00281{bottom:22.400000pt;}
.y4_c00281{bottom:28.480000pt;}
.y1_c00281{bottom:50.880000pt;}
.y28_c00281{bottom:116.192000pt;}
.y27_c00281{bottom:122.272000pt;}
.y26_c00281{bottom:131.872000pt;}
.y25_c00281{bottom:170.266667pt;}
.y24_c00281{bottom:214.146667pt;}
.y23_c00281{bottom:260.226667pt;}
.y22_c00281{bottom:295.746667pt;}
.y21_c00281{bottom:323.613333pt;}
.y20_c00281{bottom:351.133333pt;}
.y1f_c00281{bottom:378.653333pt;}
.y1e_c00281{bottom:406.173333pt;}
.y1d_c00281{bottom:433.733333pt;}
.y1b_c00281{bottom:461.573333pt;}
.y1c_c00281{bottom:468.933333pt;}
.y1a_c00281{bottom:489.093333pt;}
.y19_c00281{bottom:516.613333pt;}
.y18_c00281{bottom:544.160000pt;}
.y17_c00281{bottom:572.000000pt;}
.y16_c00281{bottom:599.520000pt;}
.y15_c00281{bottom:627.040000pt;}
.y14_c00281{bottom:654.586667pt;}
.y13_c00281{bottom:682.426667pt;}
.y12_c00281{bottom:709.946667pt;}
.y11_c00281{bottom:737.466667pt;}
.y10_c00281{bottom:765.026667pt;}
.yf_c00281{bottom:792.866667pt;}
.ye_c00281{bottom:820.386667pt;}
.yd_c00281{bottom:847.906667pt;}
.yc_c00281{bottom:875.453333pt;}
.yb_c00281{bottom:903.293333pt;}
.ya_c00281{bottom:930.813333pt;}
.y9_c00281{bottom:958.333333pt;}
.y8_c00281{bottom:985.893333pt;}
.y7_c00281{bottom:1013.733333pt;}
.y2_c00281{bottom:1056.933333pt;}
.h3_c00281{height:18.266667pt;}
.ha_c00281{height:30.982500pt;}
.h4_c00281{height:36.796000pt;}
.h7_c00281{height:41.456250pt;}
.hb_c00281{height:48.457500pt;}
.h9_c00281{height:52.762500pt;}
.h2_c00281{height:57.375000pt;}
.h8_c00281{height:62.781250pt;}
.h5_c00281{height:62.812500pt;}
.h6_c00281{height:1122.556000pt;}
.h0_c00281{height:1122.560000pt;}
.h1_c00281{height:1122.666667pt;}
.w2_c00281{width:7.346667pt;}
.w3_c00281{width:567.240000pt;}
.w1_c00281{width:793.333333pt;}
.w4_c00281{width:793.597333pt;}
.w0_c00281{width:793.600000pt;}
.x0_c00281{left:0.000000pt;}
.x3_c00281{left:113.364000pt;}
.x9_c00281{left:126.784000pt;}
.x1_c00281{left:137.346667pt;}
.x7_c00281{left:151.106667pt;}
.x6_c00281{left:160.706667pt;}
.x8_c00281{left:305.413333pt;}
.x4_c00281{left:418.424000pt;}
.x5_c00281{left:434.746667pt;}
.x2_c00281{left:673.253333pt;}
}





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

.ir_c00282:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00282;src:url('chunks/assets/font_2d89c5ef4e6ec3122471810a.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_2fbb60851734690eeeb0eaaa.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_4f46284ec9ec03041a0c32b8.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_6fc87acf540eebf2833cae26.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c00282{font-family:ff5_c00282;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_c00282;src:url('chunks/assets/font_1f904c1b1a22469e0d1bd319.woff2')format("woff");}.ff6_c00282{font-family:ff6_c00282;line-height:1.117188;font-style:normal;font-weight: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_c00282;src:url('chunks/assets/font_eaa94753c507de063399512f.woff2')format("woff");}.ff7_c00282{font-family:ff7_c00282;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_c00282;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff8_c00282{font-family:ff8_c00282;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls5_c00282{letter-spacing:-1.416000px;}
.ls9_c00282{letter-spacing:-0.720000px;}
.lsa_c00282{letter-spacing:-0.302400px;}
.ls8_c00282{letter-spacing:-0.241800px;}
.ls4_c00282{letter-spacing:0.000000px;}
.ls3_c00282{letter-spacing:0.120000px;}
.ls6_c00282{letter-spacing:0.504000px;}
.ls7_c00282{letter-spacing:0.529800px;}
.ls0_c00282{letter-spacing:0.720000px;}
.ls2_c00282{letter-spacing:2.160000px;}
.ls1_c00282{letter-spacing:3.600000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00282{word-spacing:-60.480000px;}
.ws3_c00282{word-spacing:-18.504000px;}
.ws2_c00282{word-spacing:-18.000000px;}
.ws4_c00282{word-spacing:-15.649800px;}
.ws0_c00282{word-spacing:-15.120000px;}
.ws5_c00282{word-spacing:-14.878200px;}
.ws6_c00282{word-spacing:-14.817600px;}
.ws7_c00282{word-spacing:0.000000px;}
._c_c00282{margin-left:-3.365408px;}
._0_c00282{margin-left:-1.966810px;}
._1_c00282{width:1.213773px;}
._2_c00282{width:2.374246px;}
._5_c00282{width:3.564652px;}
._4_c00282{width:5.475617px;}
._3_c00282{width:6.833998px;}
._b_c00282{width:8.765410px;}
._a_c00282{width:9.949842px;}
._9_c00282{width:11.130004px;}
._8_c00282{width:12.649754px;}
._6_c00282{width:14.001036px;}
._7_c00282{width:15.009036px;}
._d_c00282{width:16.083494px;}
._e_c00282{width:30.600000px;}
._f_c00282{width:31.824000px;}
._10_c00282{width:32.883159px;}
.fc0_c00282{color:rgb(0,0,0);}
.fs3_c00282{font-size:38.880000px;}
.fs2_c00282{font-size:47.520000px;}
.fs1_c00282{font-size:60.480000px;}
.fs0_c00282{font-size:72.000000px;}
.y0_c00282{bottom:0.000000px;}
.y3_c00282{bottom:4.320000px;}
.y6_c00282{bottom:4.680000px;}
.y5_c00282{bottom:25.200000px;}
.y4_c00282{bottom:32.040000px;}
.y1_c00282{bottom:57.240000px;}
.y28_c00282{bottom:130.716000px;}
.y27_c00282{bottom:137.556000px;}
.y26_c00282{bottom:148.356000px;}
.y25_c00282{bottom:241.635000px;}
.y24_c00282{bottom:270.435000px;}
.y23_c00282{bottom:296.355000px;}
.y22_c00282{bottom:322.275000px;}
.y21_c00282{bottom:348.195000px;}
.y20_c00282{bottom:374.145000px;}
.y1f_c00282{bottom:400.065000px;}
.y1e_c00282{bottom:425.625000px;}
.y1d_c00282{bottom:474.945000px;}
.y1c_c00282{bottom:527.190000px;}
.y1b_c00282{bottom:558.150000px;}
.y1a_c00282{bottom:589.110000px;}
.y19_c00282{bottom:620.100000px;}
.y18_c00282{bottom:651.420000px;}
.y17_c00282{bottom:682.380000px;}
.y16_c00282{bottom:713.340000px;}
.y15_c00282{bottom:744.330000px;}
.y14_c00282{bottom:775.650000px;}
.y13_c00282{bottom:806.610000px;}
.y11_c00282{bottom:837.570000px;}
.y12_c00282{bottom:845.895000px;}
.y10_c00282{bottom:868.575000px;}
.yf_c00282{bottom:899.895000px;}
.ye_c00282{bottom:930.855000px;}
.yd_c00282{bottom:961.815000px;}
.yc_c00282{bottom:992.805000px;}
.yb_c00282{bottom:1030.605000px;}
.ya_c00282{bottom:1056.525000px;}
.y9_c00282{bottom:1091.490000px;}
.y8_c00282{bottom:1117.410000px;}
.y7_c00282{bottom:1143.330000px;}
.y2_c00282{bottom:1189.050000px;}
.h3_c00282{height:20.550000px;}
.ha_c00282{height:34.855313px;}
.h4_c00282{height:41.395500px;}
.h9_c00282{height:46.638281px;}
.hb_c00282{height:54.514688px;}
.h6_c00282{height:59.328281px;}
.h5_c00282{height:59.357813px;}
.h2_c00282{height:64.546875px;}
.h7_c00282{height:70.664062px;}
.h8_c00282{height:1262.875500px;}
.h0_c00282{height:1262.880000px;}
.h1_c00282{height:1263.000000px;}
.w2_c00282{width:8.265000px;}
.w3_c00282{width:638.145000px;}
.w1_c00282{width:892.500000px;}
.w4_c00282{width:892.797000px;}
.w0_c00282{width:892.800000px;}
.x0_c00282{left:0.000000px;}
.x3_c00282{left:127.534500px;}
.x8_c00282{left:142.632000px;}
.x1_c00282{left:154.515000px;}
.x4_c00282{left:169.995000px;}
.x7_c00282{left:343.590000px;}
.x5_c00282{left:366.627000px;}
.x6_c00282{left:385.020000px;}
.x2_c00282{left:757.410000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls5_c00282{letter-spacing:-1.258667pt;}
.ls9_c00282{letter-spacing:-0.640000pt;}
.lsa_c00282{letter-spacing:-0.268800pt;}
.ls8_c00282{letter-spacing:-0.214933pt;}
.ls4_c00282{letter-spacing:0.000000pt;}
.ls3_c00282{letter-spacing:0.106667pt;}
.ls6_c00282{letter-spacing:0.448000pt;}
.ls7_c00282{letter-spacing:0.470933pt;}
.ls0_c00282{letter-spacing:0.640000pt;}
.ls2_c00282{letter-spacing:1.920000pt;}
.ls1_c00282{letter-spacing:3.200000pt;}
.ws1_c00282{word-spacing:-53.760000pt;}
.ws3_c00282{word-spacing:-16.448000pt;}
.ws2_c00282{word-spacing:-16.000000pt;}
.ws4_c00282{word-spacing:-13.910933pt;}
.ws0_c00282{word-spacing:-13.440000pt;}
.ws5_c00282{word-spacing:-13.225067pt;}
.ws6_c00282{word-spacing:-13.171200pt;}
.ws7_c00282{word-spacing:0.000000pt;}
._c_c00282{margin-left:-2.991473pt;}
._0_c00282{margin-left:-1.748275pt;}
._1_c00282{width:1.078909pt;}
._2_c00282{width:2.110441pt;}
._5_c00282{width:3.168579pt;}
._4_c00282{width:4.867215pt;}
._3_c00282{width:6.074665pt;}
._b_c00282{width:7.791475pt;}
._a_c00282{width:8.844304pt;}
._9_c00282{width:9.893337pt;}
._8_c00282{width:11.244226pt;}
._6_c00282{width:12.445366pt;}
._7_c00282{width:13.341366pt;}
._d_c00282{width:14.296439pt;}
._e_c00282{width:27.200000pt;}
._f_c00282{width:28.288000pt;}
._10_c00282{width:29.229475pt;}
.fs3_c00282{font-size:34.560000pt;}
.fs2_c00282{font-size:42.240000pt;}
.fs1_c00282{font-size:53.760000pt;}
.fs0_c00282{font-size:64.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y3_c00282{bottom:3.840000pt;}
.y6_c00282{bottom:4.160000pt;}
.y5_c00282{bottom:22.400000pt;}
.y4_c00282{bottom:28.480000pt;}
.y1_c00282{bottom:50.880000pt;}
.y28_c00282{bottom:116.192000pt;}
.y27_c00282{bottom:122.272000pt;}
.y26_c00282{bottom:131.872000pt;}
.y25_c00282{bottom:214.786667pt;}
.y24_c00282{bottom:240.386667pt;}
.y23_c00282{bottom:263.426667pt;}
.y22_c00282{bottom:286.466667pt;}
.y21_c00282{bottom:309.506667pt;}
.y20_c00282{bottom:332.573333pt;}
.y1f_c00282{bottom:355.613333pt;}
.y1e_c00282{bottom:378.333333pt;}
.y1d_c00282{bottom:422.173333pt;}
.y1c_c00282{bottom:468.613333pt;}
.y1b_c00282{bottom:496.133333pt;}
.y1a_c00282{bottom:523.653333pt;}
.y19_c00282{bottom:551.200000pt;}
.y18_c00282{bottom:579.040000pt;}
.y17_c00282{bottom:606.560000pt;}
.y16_c00282{bottom:634.080000pt;}
.y15_c00282{bottom:661.626667pt;}
.y14_c00282{bottom:689.466667pt;}
.y13_c00282{bottom:716.986667pt;}
.y11_c00282{bottom:744.506667pt;}
.y12_c00282{bottom:751.906667pt;}
.y10_c00282{bottom:772.066667pt;}
.yf_c00282{bottom:799.906667pt;}
.ye_c00282{bottom:827.426667pt;}
.yd_c00282{bottom:854.946667pt;}
.yc_c00282{bottom:882.493333pt;}
.yb_c00282{bottom:916.093333pt;}
.ya_c00282{bottom:939.133333pt;}
.y9_c00282{bottom:970.213333pt;}
.y8_c00282{bottom:993.253333pt;}
.y7_c00282{bottom:1016.293333pt;}
.y2_c00282{bottom:1056.933333pt;}
.h3_c00282{height:18.266667pt;}
.ha_c00282{height:30.982500pt;}
.h4_c00282{height:36.796000pt;}
.h9_c00282{height:41.456250pt;}
.hb_c00282{height:48.457500pt;}
.h6_c00282{height:52.736250pt;}
.h5_c00282{height:52.762500pt;}
.h2_c00282{height:57.375000pt;}
.h7_c00282{height:62.812500pt;}
.h8_c00282{height:1122.556000pt;}
.h0_c00282{height:1122.560000pt;}
.h1_c00282{height:1122.666667pt;}
.w2_c00282{width:7.346667pt;}
.w3_c00282{width:567.240000pt;}
.w1_c00282{width:793.333333pt;}
.w4_c00282{width:793.597333pt;}
.w0_c00282{width:793.600000pt;}
.x0_c00282{left:0.000000pt;}
.x3_c00282{left:113.364000pt;}
.x8_c00282{left:126.784000pt;}
.x1_c00282{left:137.346667pt;}
.x4_c00282{left:151.106667pt;}
.x7_c00282{left:305.413333pt;}
.x5_c00282{left:325.890667pt;}
.x6_c00282{left:342.240000pt;}
.x2_c00282{left:673.253333pt;}
}





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

.ir_c00283:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00283;src:url('chunks/assets/font_c3158919a8523930b0138489.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_7c16b4aa968fa5675a754bab.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_d4b8b607d28d7c3ac2667ce7.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_f962df2ecf7e05b2075e2394.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00283;src:url('chunks/assets/font_e97a8a19edb6feaf09bfb4ba.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00283;src:url('chunks/assets/font_4cfa20a0012f4af393fbeb74.woff2')format("woff");}.ff6_c00283{font-family:ff6_c00283;line-height:1.104004;font-style:normal;font-weight: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_c00283;src:url('chunks/assets/font_bf24c4cb03e67c6774271e28.woff2')format("woff");}.ff7_c00283{font-family:ff7_c00283;line-height:1.117188;font-style:normal;font-weight: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_c00283;src:url('chunks/assets/font_a2e012cc836d7ebbc8edae66.woff2')format("woff");}.ff8_c00283{font-family:ff8_c00283;line-height:1.112305;font-style:normal;font-weight: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_c00283;src:url('chunks/assets/font_ca9995111a9ed9374f020d03.woff2')format("woff");}.ff9_c00283{font-family:ff9_c00283;line-height:0.772949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.lsb_c00283{letter-spacing:-0.912000px;}
.lsd_c00283{letter-spacing:-0.302400px;}
.lsc_c00283{letter-spacing:-0.241800px;}
.ls8_c00283{letter-spacing:0.000000px;}
.ls10_c00283{letter-spacing:0.020400px;}
.ls2_c00283{letter-spacing:0.022800px;}
.ls11_c00283{letter-spacing:0.060600px;}
.ls0_c00283{letter-spacing:0.120000px;}
.lsf_c00283{letter-spacing:0.486600px;}
.ls9_c00283{letter-spacing:0.507000px;}
.lsa_c00283{letter-spacing:0.529800px;}
.ls1_c00283{letter-spacing:0.720000px;}
.ls3_c00283{letter-spacing:0.848891px;}
.ls7_c00283{letter-spacing:1.440000px;}
.ls6_c00283{letter-spacing:2.160000px;}
.ls5_c00283{letter-spacing:3.600000px;}
.lse_c00283{letter-spacing:20.880000px;}
.ls4_c00283{letter-spacing:22.320000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00283{word-spacing:-72.000000px;}
.ws6_c00283{word-spacing:-60.480000px;}
.ws0_c00283{word-spacing:-18.000000px;}
.wsb_c00283{word-spacing:-15.840000px;}
.ws7_c00283{word-spacing:-15.649800px;}
.ws3_c00283{word-spacing:-15.627000px;}
.ws9_c00283{word-spacing:-15.606600px;}
.ws8_c00283{word-spacing:-15.142800px;}
.wsa_c00283{word-spacing:-15.140400px;}
.ws2_c00283{word-spacing:-15.120000px;}
.ws4_c00283{word-spacing:-14.878200px;}
.ws5_c00283{word-spacing:-14.817600px;}
.wsc_c00283{word-spacing:0.000000px;}
._4_c00283{margin-left:-2.736000px;}
._0_c00283{margin-left:-1.440000px;}
._5_c00283{width:1.368000px;}
._3_c00283{width:2.520000px;}
._a_c00283{width:3.672000px;}
._f_c00283{width:4.688398px;}
._2_c00283{width:5.760000px;}
._1_c00283{width:7.632000px;}
._11_c00283{width:8.824205px;}
._13_c00283{width:11.937600px;}
._14_c00283{width:13.657202px;}
._9_c00283{width:16.488000px;}
._12_c00283{width:19.260238px;}
._b_c00283{width:20.520000px;}
._c_c00283{width:22.104000px;}
._10_c00283{width:23.112000px;}
._6_c00283{width:32.832000px;}
._7_c00283{width:34.272000px;}
._8_c00283{width:35.640000px;}
._d_c00283{width:37.080000px;}
._e_c00283{width:38.448000px;}
.fc1_c00283{color:rgb(50,50,50);}
.fc0_c00283{color:rgb(0,0,0);}
.fs3_c00283{font-size:38.880000px;}
.fs1_c00283{font-size:47.520000px;}
.fs2_c00283{font-size:60.480000px;}
.fs0_c00283{font-size:72.000000px;}
.fs4_c00283{font-size:80.640000px;}
.y0_c00283{bottom:0.000000px;}
.y3_c00283{bottom:4.320000px;}
.y6_c00283{bottom:4.680000px;}
.y5_c00283{bottom:25.200000px;}
.y4_c00283{bottom:32.040000px;}
.y1_c00283{bottom:57.240000px;}
.y39_c00283{bottom:130.716000px;}
.y38_c00283{bottom:147.996000px;}
.y37_c00283{bottom:165.270000px;}
.y36_c00283{bottom:172.110000px;}
.y35_c00283{bottom:182.550000px;}
.y34_c00283{bottom:199.830000px;}
.y33_c00283{bottom:216.750000px;}
.y32_c00283{bottom:234.075000px;}
.y31_c00283{bottom:251.355000px;}
.y30_c00283{bottom:268.635000px;}
.y2f_c00283{bottom:285.915000px;}
.y2e_c00283{bottom:303.195000px;}
.y2d_c00283{bottom:320.475000px;}
.y2c_c00283{bottom:337.755000px;}
.y2b_c00283{bottom:344.595000px;}
.y2a_c00283{bottom:355.065000px;}
.y29_c00283{bottom:361.905000px;}
.y28_c00283{bottom:372.345000px;}
.y27_c00283{bottom:389.625000px;}
.y26_c00283{bottom:406.905000px;}
.y25_c00283{bottom:413.745000px;}
.y24_c00283{bottom:423.825000px;}
.y23_c00283{bottom:441.105000px;}
.y22_c00283{bottom:447.945000px;}
.y21_c00283{bottom:459.105000px;}
.y20_c00283{bottom:505.590000px;}
.y1f_c00283{bottom:536.910000px;}
.y1e_c00283{bottom:567.870000px;}
.y1d_c00283{bottom:605.700000px;}
.y1b_c00283{bottom:631.620000px;}
.y1c_c00283{bottom:638.460000px;}
.y1a_c00283{bottom:657.540000px;}
.y19_c00283{bottom:692.100000px;}
.y18_c00283{bottom:718.020000px;}
.y17_c00283{bottom:743.970000px;}
.y16_c00283{bottom:769.890000px;}
.y15_c00283{bottom:795.810000px;}
.y13_c00283{bottom:821.730000px;}
.y14_c00283{bottom:828.570000px;}
.y12_c00283{bottom:871.095000px;}
.y10_c00283{bottom:922.935000px;}
.y11_c00283{bottom:931.215000px;}
.ye_c00283{bottom:953.895000px;}
.yf_c00283{bottom:962.175000px;}
.yd_c00283{bottom:984.885000px;}
.yc_c00283{bottom:1016.205000px;}
.yb_c00283{bottom:1047.165000px;}
.ya_c00283{bottom:1078.125000px;}
.y9_c00283{bottom:1109.130000px;}
.y7_c00283{bottom:1140.450000px;}
.y8_c00283{bottom:1148.730000px;}
.y2_c00283{bottom:1189.050000px;}
.h3_c00283{height:20.550000px;}
.hc_c00283{height:34.855313px;}
.hb_c00283{height:38.139609px;}
.h9_c00283{height:38.158594px;}
.h4_c00283{height:41.395500px;}
.h7_c00283{height:46.638281px;}
.hd_c00283{height:54.219375px;}
.he_c00283{height:54.514688px;}
.ha_c00283{height:59.328281px;}
.h8_c00283{height:59.357813px;}
.h2_c00283{height:64.546875px;}
.h5_c00283{height:70.664062px;}
.h6_c00283{height:1262.875500px;}
.h0_c00283{height:1262.880000px;}
.h1_c00283{height:1263.000000px;}
.w2_c00283{width:8.265000px;}
.w3_c00283{width:638.145000px;}
.w1_c00283{width:892.500000px;}
.w4_c00283{width:892.797000px;}
.w0_c00283{width:892.800000px;}
.x0_c00283{left:0.000000px;}
.x3_c00283{left:127.534500px;}
.x10_c00283{left:142.632000px;}
.x1_c00283{left:154.515000px;}
.x4_c00283{left:169.995000px;}
.xb_c00283{left:274.062000px;}
.x7_c00283{left:279.822000px;}
.xc_c00283{left:289.185000px;}
.x8_c00283{left:298.230000px;}
.xf_c00283{left:343.590000px;}
.x5_c00283{left:650.082000px;}
.x9_c00283{left:666.642000px;}
.x6_c00283{left:668.445000px;}
.xa_c00283{left:685.005000px;}
.xd_c00283{left:718.527000px;}
.xe_c00283{left:733.650000px;}
.x2_c00283{left:757.410000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.lsb_c00283{letter-spacing:-0.810667pt;}
.lsd_c00283{letter-spacing:-0.268800pt;}
.lsc_c00283{letter-spacing:-0.214933pt;}
.ls8_c00283{letter-spacing:0.000000pt;}
.ls10_c00283{letter-spacing:0.018133pt;}
.ls2_c00283{letter-spacing:0.020267pt;}
.ls11_c00283{letter-spacing:0.053867pt;}
.ls0_c00283{letter-spacing:0.106667pt;}
.lsf_c00283{letter-spacing:0.432533pt;}
.ls9_c00283{letter-spacing:0.450667pt;}
.lsa_c00283{letter-spacing:0.470933pt;}
.ls1_c00283{letter-spacing:0.640000pt;}
.ls3_c00283{letter-spacing:0.754569pt;}
.ls7_c00283{letter-spacing:1.280000pt;}
.ls6_c00283{letter-spacing:1.920000pt;}
.ls5_c00283{letter-spacing:3.200000pt;}
.lse_c00283{letter-spacing:18.560000pt;}
.ls4_c00283{letter-spacing:19.840000pt;}
.ws1_c00283{word-spacing:-64.000000pt;}
.ws6_c00283{word-spacing:-53.760000pt;}
.ws0_c00283{word-spacing:-16.000000pt;}
.wsb_c00283{word-spacing:-14.080000pt;}
.ws7_c00283{word-spacing:-13.910933pt;}
.ws3_c00283{word-spacing:-13.890667pt;}
.ws9_c00283{word-spacing:-13.872533pt;}
.ws8_c00283{word-spacing:-13.460267pt;}
.wsa_c00283{word-spacing:-13.458133pt;}
.ws2_c00283{word-spacing:-13.440000pt;}
.ws4_c00283{word-spacing:-13.225067pt;}
.ws5_c00283{word-spacing:-13.171200pt;}
.wsc_c00283{word-spacing:0.000000pt;}
._4_c00283{margin-left:-2.432000pt;}
._0_c00283{margin-left:-1.280000pt;}
._5_c00283{width:1.216000pt;}
._3_c00283{width:2.240000pt;}
._a_c00283{width:3.264000pt;}
._f_c00283{width:4.167465pt;}
._2_c00283{width:5.120000pt;}
._1_c00283{width:6.784000pt;}
._11_c00283{width:7.843738pt;}
._13_c00283{width:10.611200pt;}
._14_c00283{width:12.139735pt;}
._9_c00283{width:14.656000pt;}
._12_c00283{width:17.120212pt;}
._b_c00283{width:18.240000pt;}
._c_c00283{width:19.648000pt;}
._10_c00283{width:20.544000pt;}
._6_c00283{width:29.184000pt;}
._7_c00283{width:30.464000pt;}
._8_c00283{width:31.680000pt;}
._d_c00283{width:32.960000pt;}
._e_c00283{width:34.176000pt;}
.fs3_c00283{font-size:34.560000pt;}
.fs1_c00283{font-size:42.240000pt;}
.fs2_c00283{font-size:53.760000pt;}
.fs0_c00283{font-size:64.000000pt;}
.fs4_c00283{font-size:71.680000pt;}
.y0_c00283{bottom:0.000000pt;}
.y3_c00283{bottom:3.840000pt;}
.y6_c00283{bottom:4.160000pt;}
.y5_c00283{bottom:22.400000pt;}
.y4_c00283{bottom:28.480000pt;}
.y1_c00283{bottom:50.880000pt;}
.y39_c00283{bottom:116.192000pt;}
.y38_c00283{bottom:131.552000pt;}
.y37_c00283{bottom:146.906667pt;}
.y36_c00283{bottom:152.986667pt;}
.y35_c00283{bottom:162.266667pt;}
.y34_c00283{bottom:177.626667pt;}
.y33_c00283{bottom:192.666667pt;}
.y32_c00283{bottom:208.066667pt;}
.y31_c00283{bottom:223.426667pt;}
.y30_c00283{bottom:238.786667pt;}
.y2f_c00283{bottom:254.146667pt;}
.y2e_c00283{bottom:269.506667pt;}
.y2d_c00283{bottom:284.866667pt;}
.y2c_c00283{bottom:300.226667pt;}
.y2b_c00283{bottom:306.306667pt;}
.y2a_c00283{bottom:315.613333pt;}
.y29_c00283{bottom:321.693333pt;}
.y28_c00283{bottom:330.973333pt;}
.y27_c00283{bottom:346.333333pt;}
.y26_c00283{bottom:361.693333pt;}
.y25_c00283{bottom:367.773333pt;}
.y24_c00283{bottom:376.733333pt;}
.y23_c00283{bottom:392.093333pt;}
.y22_c00283{bottom:398.173333pt;}
.y21_c00283{bottom:408.093333pt;}
.y20_c00283{bottom:449.413333pt;}
.y1f_c00283{bottom:477.253333pt;}
.y1e_c00283{bottom:504.773333pt;}
.y1d_c00283{bottom:538.400000pt;}
.y1b_c00283{bottom:561.440000pt;}
.y1c_c00283{bottom:567.520000pt;}
.y1a_c00283{bottom:584.480000pt;}
.y19_c00283{bottom:615.200000pt;}
.y18_c00283{bottom:638.240000pt;}
.y17_c00283{bottom:661.306667pt;}
.y16_c00283{bottom:684.346667pt;}
.y15_c00283{bottom:707.386667pt;}
.y13_c00283{bottom:730.426667pt;}
.y14_c00283{bottom:736.506667pt;}
.y12_c00283{bottom:774.306667pt;}
.y10_c00283{bottom:820.386667pt;}
.y11_c00283{bottom:827.746667pt;}
.ye_c00283{bottom:847.906667pt;}
.yf_c00283{bottom:855.266667pt;}
.yd_c00283{bottom:875.453333pt;}
.yc_c00283{bottom:903.293333pt;}
.yb_c00283{bottom:930.813333pt;}
.ya_c00283{bottom:958.333333pt;}
.y9_c00283{bottom:985.893333pt;}
.y7_c00283{bottom:1013.733333pt;}
.y8_c00283{bottom:1021.093333pt;}
.y2_c00283{bottom:1056.933333pt;}
.h3_c00283{height:18.266667pt;}
.hc_c00283{height:30.982500pt;}
.hb_c00283{height:33.901875pt;}
.h9_c00283{height:33.918750pt;}
.h4_c00283{height:36.796000pt;}
.h7_c00283{height:41.456250pt;}
.hd_c00283{height:48.195000pt;}
.he_c00283{height:48.457500pt;}
.ha_c00283{height:52.736250pt;}
.h8_c00283{height:52.762500pt;}
.h2_c00283{height:57.375000pt;}
.h5_c00283{height:62.812500pt;}
.h6_c00283{height:1122.556000pt;}
.h0_c00283{height:1122.560000pt;}
.h1_c00283{height:1122.666667pt;}
.w2_c00283{width:7.346667pt;}
.w3_c00283{width:567.240000pt;}
.w1_c00283{width:793.333333pt;}
.w4_c00283{width:793.597333pt;}
.w0_c00283{width:793.600000pt;}
.x0_c00283{left:0.000000pt;}
.x3_c00283{left:113.364000pt;}
.x10_c00283{left:126.784000pt;}
.x1_c00283{left:137.346667pt;}
.x4_c00283{left:151.106667pt;}
.xb_c00283{left:243.610667pt;}
.x7_c00283{left:248.730667pt;}
.xc_c00283{left:257.053333pt;}
.x8_c00283{left:265.093333pt;}
.xf_c00283{left:305.413333pt;}
.x5_c00283{left:577.850667pt;}
.x9_c00283{left:592.570667pt;}
.x6_c00283{left:594.173333pt;}
.xa_c00283{left:608.893333pt;}
.xd_c00283{left:638.690667pt;}
.xe_c00283{left:652.133333pt;}
.x2_c00283{left:673.253333pt;}
}





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

.ir_c00284:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00284;src:url('chunks/assets/font_5aefbacd8aaf292056ffc013.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_b6ab9539b2a638f57269c052.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_a793fd998939e1fb079f09d1.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;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_c00284;src:url('chunks/assets/font_fdc6cca279f4629e2fc283ae.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_3384af110f6d694fb828bb56.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00284;src:url('chunks/assets/font_f46e6d52fb75d4a026edf055.woff2')format("woff");}.ff6_c00284{font-family:ff6_c00284;line-height:1.104004;font-style:normal;font-weight: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_c00284;src:url('chunks/assets/font_687e4ac0d12302208fdbd1b0.woff2')format("woff");}.ff7_c00284{font-family:ff7_c00284;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls13_c00284{letter-spacing:-1.416000px;}
.ls15_c00284{letter-spacing:-0.912000px;}
.ls10_c00284{letter-spacing:-0.864000px;}
.ls11_c00284{letter-spacing:-0.532800px;}
.lsf_c00284{letter-spacing:-0.360000px;}
.ls12_c00284{letter-spacing:-0.302400px;}
.lsd_c00284{letter-spacing:0.000000px;}
.lsb_c00284{letter-spacing:0.048960px;}
.lse_c00284{letter-spacing:0.288000px;}
.ls6_c00284{letter-spacing:0.504000px;}
.ls14_c00284{letter-spacing:0.521400px;}
.ls4_c00284{letter-spacing:0.720000px;}
.ls8_c00284{letter-spacing:0.720013px;}
.ls7_c00284{letter-spacing:0.728640px;}
.ls9_c00284{letter-spacing:0.739979px;}
.ls5_c00284{letter-spacing:0.840000px;}
.lsa_c00284{letter-spacing:0.900000px;}
.ls2_c00284{letter-spacing:1.440000px;}
.lsc_c00284{letter-spacing:7.920000px;}
.ls3_c00284{letter-spacing:12.240000px;}
.ls1_c00284{letter-spacing:18.000000px;}
.ls0_c00284{letter-spacing:18.120000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00284{word-spacing:-72.000000px;}
.ws6_c00284{word-spacing:-60.480000px;}
.ws0_c00284{word-spacing:-18.000000px;}
.ws2_c00284{word-spacing:-17.640000px;}
.ws5_c00284{word-spacing:-15.641400px;}
.ws3_c00284{word-spacing:-15.120000px;}
.ws4_c00284{word-spacing:-14.817600px;}
.ws7_c00284{word-spacing:-14.208000px;}
.ws8_c00284{word-spacing:0.000000px;}
._e_c00284{margin-left:-3.600000px;}
._4_c00284{margin-left:-2.592000px;}
._1_c00284{margin-left:-1.584000px;}
._0_c00284{width:1.080000px;}
._5_c00284{width:2.088000px;}
._6_c00284{width:3.096000px;}
._7_c00284{width:4.680000px;}
._f_c00284{width:6.408000px;}
._2_c00284{width:7.848000px;}
._3_c00284{width:9.720000px;}
._c_c00284{width:11.016000px;}
._d_c00284{width:12.240000px;}
._8_c00284{width:13.536000px;}
._9_c00284{width:15.492024px;}
._a_c00284{width:32.544000px;}
._b_c00284{width:34.416000px;}
.fc0_c00284{color:rgb(0,0,0);}
.fs3_c00284{font-size:38.880000px;}
.fs1_c00284{font-size:47.520000px;}
.fs2_c00284{font-size:60.480000px;}
.fs0_c00284{font-size:72.000000px;}
.y0_c00284{bottom:0.000000px;}
.y3_c00284{bottom:4.320000px;}
.y6_c00284{bottom:4.680000px;}
.y5_c00284{bottom:25.200000px;}
.y4_c00284{bottom:32.040000px;}
.y1_c00284{bottom:57.240000px;}
.y2a_c00284{bottom:130.716000px;}
.y29_c00284{bottom:137.556000px;}
.y28_c00284{bottom:148.356000px;}
.y27_c00284{bottom:179.670000px;}
.y26_c00284{bottom:210.630000px;}
.y25_c00284{bottom:241.635000px;}
.y24_c00284{bottom:272.955000px;}
.y23_c00284{bottom:303.915000px;}
.y22_c00284{bottom:334.875000px;}
.y21_c00284{bottom:365.865000px;}
.y20_c00284{bottom:403.665000px;}
.y1f_c00284{bottom:429.585000px;}
.y1e_c00284{bottom:455.505000px;}
.y1d_c00284{bottom:481.470000px;}
.y1c_c00284{bottom:516.390000px;}
.y1b_c00284{bottom:542.310000px;}
.y1a_c00284{bottom:567.870000px;}
.y19_c00284{bottom:593.790000px;}
.y18_c00284{bottom:619.740000px;}
.y17_c00284{bottom:645.660000px;}
.y16_c00284{bottom:671.580000px;}
.y15_c00284{bottom:697.500000px;}
.y14_c00284{bottom:746.850000px;}
.y13_c00284{bottom:798.690000px;}
.y12_c00284{bottom:829.650000px;}
.y11_c00284{bottom:860.655000px;}
.y10_c00284{bottom:891.975000px;}
.yf_c00284{bottom:922.935000px;}
.ye_c00284{bottom:953.895000px;}
.yd_c00284{bottom:984.885000px;}
.yc_c00284{bottom:1016.205000px;}
.yb_c00284{bottom:1047.165000px;}
.ya_c00284{bottom:1078.125000px;}
.y8_c00284{bottom:1109.130000px;}
.y9_c00284{bottom:1117.410000px;}
.y7_c00284{bottom:1140.450000px;}
.y2_c00284{bottom:1189.050000px;}
.h3_c00284{height:20.550000px;}
.ha_c00284{height:34.855313px;}
.h4_c00284{height:41.395500px;}
.h7_c00284{height:46.638281px;}
.hb_c00284{height:54.514688px;}
.h9_c00284{height:59.328281px;}
.h8_c00284{height:59.357813px;}
.h2_c00284{height:64.546875px;}
.h5_c00284{height:70.664062px;}
.h6_c00284{height:1262.875500px;}
.h0_c00284{height:1262.880000px;}
.h1_c00284{height:1263.000000px;}
.w2_c00284{width:8.265000px;}
.w3_c00284{width:638.145000px;}
.w1_c00284{width:892.500000px;}
.w4_c00284{width:892.797000px;}
.w0_c00284{width:892.800000px;}
.x0_c00284{left:0.000000px;}
.x3_c00284{left:127.534500px;}
.x8_c00284{left:142.632000px;}
.x1_c00284{left:154.515000px;}
.x6_c00284{left:169.995000px;}
.x7_c00284{left:343.590000px;}
.x4_c00284{left:351.147000px;}
.x5_c00284{left:369.510000px;}
.x2_c00284{left:757.410000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls13_c00284{letter-spacing:-1.258667pt;}
.ls15_c00284{letter-spacing:-0.810667pt;}
.ls10_c00284{letter-spacing:-0.768000pt;}
.ls11_c00284{letter-spacing:-0.473600pt;}
.lsf_c00284{letter-spacing:-0.320000pt;}
.ls12_c00284{letter-spacing:-0.268800pt;}
.lsd_c00284{letter-spacing:0.000000pt;}
.lsb_c00284{letter-spacing:0.043520pt;}
.lse_c00284{letter-spacing:0.256000pt;}
.ls6_c00284{letter-spacing:0.448000pt;}
.ls14_c00284{letter-spacing:0.463467pt;}
.ls4_c00284{letter-spacing:0.640000pt;}
.ls8_c00284{letter-spacing:0.640012pt;}
.ls7_c00284{letter-spacing:0.647680pt;}
.ls9_c00284{letter-spacing:0.657759pt;}
.ls5_c00284{letter-spacing:0.746667pt;}
.lsa_c00284{letter-spacing:0.800000pt;}
.ls2_c00284{letter-spacing:1.280000pt;}
.lsc_c00284{letter-spacing:7.040000pt;}
.ls3_c00284{letter-spacing:10.880000pt;}
.ls1_c00284{letter-spacing:16.000000pt;}
.ls0_c00284{letter-spacing:16.106667pt;}
.ws1_c00284{word-spacing:-64.000000pt;}
.ws6_c00284{word-spacing:-53.760000pt;}
.ws0_c00284{word-spacing:-16.000000pt;}
.ws2_c00284{word-spacing:-15.680000pt;}
.ws5_c00284{word-spacing:-13.903467pt;}
.ws3_c00284{word-spacing:-13.440000pt;}
.ws4_c00284{word-spacing:-13.171200pt;}
.ws7_c00284{word-spacing:-12.629333pt;}
.ws8_c00284{word-spacing:0.000000pt;}
._e_c00284{margin-left:-3.200000pt;}
._4_c00284{margin-left:-2.304000pt;}
._1_c00284{margin-left:-1.408000pt;}
._0_c00284{width:0.960000pt;}
._5_c00284{width:1.856000pt;}
._6_c00284{width:2.752000pt;}
._7_c00284{width:4.160000pt;}
._f_c00284{width:5.696000pt;}
._2_c00284{width:6.976000pt;}
._3_c00284{width:8.640000pt;}
._c_c00284{width:9.792000pt;}
._d_c00284{width:10.880000pt;}
._8_c00284{width:12.032000pt;}
._9_c00284{width:13.770688pt;}
._a_c00284{width:28.928000pt;}
._b_c00284{width:30.592000pt;}
.fs3_c00284{font-size:34.560000pt;}
.fs1_c00284{font-size:42.240000pt;}
.fs2_c00284{font-size:53.760000pt;}
.fs0_c00284{font-size:64.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y3_c00284{bottom:3.840000pt;}
.y6_c00284{bottom:4.160000pt;}
.y5_c00284{bottom:22.400000pt;}
.y4_c00284{bottom:28.480000pt;}
.y1_c00284{bottom:50.880000pt;}
.y2a_c00284{bottom:116.192000pt;}
.y29_c00284{bottom:122.272000pt;}
.y28_c00284{bottom:131.872000pt;}
.y27_c00284{bottom:159.706667pt;}
.y26_c00284{bottom:187.226667pt;}
.y25_c00284{bottom:214.786667pt;}
.y24_c00284{bottom:242.626667pt;}
.y23_c00284{bottom:270.146667pt;}
.y22_c00284{bottom:297.666667pt;}
.y21_c00284{bottom:325.213333pt;}
.y20_c00284{bottom:358.813333pt;}
.y1f_c00284{bottom:381.853333pt;}
.y1e_c00284{bottom:404.893333pt;}
.y1d_c00284{bottom:427.973333pt;}
.y1c_c00284{bottom:459.013333pt;}
.y1b_c00284{bottom:482.053333pt;}
.y1a_c00284{bottom:504.773333pt;}
.y19_c00284{bottom:527.813333pt;}
.y18_c00284{bottom:550.880000pt;}
.y17_c00284{bottom:573.920000pt;}
.y16_c00284{bottom:596.960000pt;}
.y15_c00284{bottom:620.000000pt;}
.y14_c00284{bottom:663.866667pt;}
.y13_c00284{bottom:709.946667pt;}
.y12_c00284{bottom:737.466667pt;}
.y11_c00284{bottom:765.026667pt;}
.y10_c00284{bottom:792.866667pt;}
.yf_c00284{bottom:820.386667pt;}
.ye_c00284{bottom:847.906667pt;}
.yd_c00284{bottom:875.453333pt;}
.yc_c00284{bottom:903.293333pt;}
.yb_c00284{bottom:930.813333pt;}
.ya_c00284{bottom:958.333333pt;}
.y8_c00284{bottom:985.893333pt;}
.y9_c00284{bottom:993.253333pt;}
.y7_c00284{bottom:1013.733333pt;}
.y2_c00284{bottom:1056.933333pt;}
.h3_c00284{height:18.266667pt;}
.ha_c00284{height:30.982500pt;}
.h4_c00284{height:36.796000pt;}
.h7_c00284{height:41.456250pt;}
.hb_c00284{height:48.457500pt;}
.h9_c00284{height:52.736250pt;}
.h8_c00284{height:52.762500pt;}
.h2_c00284{height:57.375000pt;}
.h5_c00284{height:62.812500pt;}
.h6_c00284{height:1122.556000pt;}
.h0_c00284{height:1122.560000pt;}
.h1_c00284{height:1122.666667pt;}
.w2_c00284{width:7.346667pt;}
.w3_c00284{width:567.240000pt;}
.w1_c00284{width:793.333333pt;}
.w4_c00284{width:793.597333pt;}
.w0_c00284{width:793.600000pt;}
.x0_c00284{left:0.000000pt;}
.x3_c00284{left:113.364000pt;}
.x8_c00284{left:126.784000pt;}
.x1_c00284{left:137.346667pt;}
.x6_c00284{left:151.106667pt;}
.x7_c00284{left:305.413333pt;}
.x4_c00284{left:312.130667pt;}
.x5_c00284{left:328.453333pt;}
.x2_c00284{left:673.253333pt;}
}





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

.ir_c00285:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00285;src:url('chunks/assets/font_3b89040c2bcc82acc21ce431.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_49ac6e9405d5b352a8f206aa.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_6bb9e0a561f31dccf3b7228e.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_2190b05c560feecffff448ed.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00285;src:url('chunks/assets/font_e7e539e1e9163ca7cc08e5b2.woff2')format("woff");}.ff5_c00285{font-family:ff5_c00285;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00285;src:url('chunks/assets/font_12cb66736d8778861802bdde.woff2')format("woff");}.ff6_c00285{font-family:ff6_c00285;line-height:1.104004;font-style:normal;font-weight: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_c00285;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff7_c00285{font-family:ff7_c00285;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.lse_c00285{letter-spacing:-1.680000px;}
.lsa_c00285{letter-spacing:-1.416000px;}
.ls10_c00285{letter-spacing:-0.936000px;}
.lsf_c00285{letter-spacing:-0.720000px;}
.ls11_c00285{letter-spacing:-0.532800px;}
.ls13_c00285{letter-spacing:-0.486600px;}
.lsc_c00285{letter-spacing:-0.302400px;}
.ls12_c00285{letter-spacing:-0.241800px;}
.ls9_c00285{letter-spacing:0.000000px;}
.lsd_c00285{letter-spacing:0.022800px;}
.ls8_c00285{letter-spacing:0.048960px;}
.ls4_c00285{letter-spacing:0.180000px;}
.lsb_c00285{letter-spacing:0.219000px;}
.ls0_c00285{letter-spacing:0.504000px;}
.ls3_c00285{letter-spacing:0.518400px;}
.ls1_c00285{letter-spacing:0.720000px;}
.ls7_c00285{letter-spacing:0.728640px;}
.ls6_c00285{letter-spacing:0.740160px;}
.ls2_c00285{letter-spacing:0.740366px;}
.ls5_c00285{letter-spacing:2.172000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00285{word-spacing:-60.699000px;}
.ws2_c00285{word-spacing:-60.480000px;}
.ws0_c00285{word-spacing:-18.000000px;}
.ws1_c00285{word-spacing:-15.120000px;}
.ws7_c00285{word-spacing:-14.878200px;}
.ws4_c00285{word-spacing:-14.817600px;}
.ws8_c00285{word-spacing:-14.633400px;}
.ws6_c00285{word-spacing:-14.587200px;}
.ws5_c00285{word-spacing:-13.440000px;}
.ws9_c00285{word-spacing:0.000000px;}
._7_c00285{margin-left:-3.204000px;}
._1_c00285{margin-left:-2.100000px;}
._4_c00285{margin-left:-1.032000px;}
._2_c00285{width:1.512000px;}
._0_c00285{width:2.676000px;}
._3_c00285{width:3.984000px;}
._c_c00285{width:5.532000px;}
._a_c00285{width:7.272000px;}
._b_c00285{width:8.328000px;}
._8_c00285{width:9.348000px;}
._9_c00285{width:11.496000px;}
._f_c00285{width:13.524000px;}
._d_c00285{width:14.568000px;}
._e_c00285{width:15.695976px;}
._5_c00285{width:16.992000px;}
._6_c00285{width:19.848000px;}
.fc0_c00285{color:rgb(0,0,0);}
.fs3_c00285{font-size:38.880000px;}
.fs1_c00285{font-size:47.520000px;}
.fs2_c00285{font-size:60.480000px;}
.fs0_c00285{font-size:72.000000px;}
.y0_c00285{bottom:0.000000px;}
.y3_c00285{bottom:4.320000px;}
.y6_c00285{bottom:4.680000px;}
.y5_c00285{bottom:25.200000px;}
.y4_c00285{bottom:32.040000px;}
.y1_c00285{bottom:57.240000px;}
.y2a_c00285{bottom:130.716000px;}
.y29_c00285{bottom:137.556000px;}
.y28_c00285{bottom:147.996000px;}
.y27_c00285{bottom:154.830000px;}
.y26_c00285{bottom:165.630000px;}
.y25_c00285{bottom:212.790000px;}
.y24_c00285{bottom:238.755000px;}
.y23_c00285{bottom:264.675000px;}
.y22_c00285{bottom:290.595000px;}
.y21_c00285{bottom:316.515000px;}
.y20_c00285{bottom:365.865000px;}
.y1f_c00285{bottom:417.705000px;}
.y1e_c00285{bottom:448.665000px;}
.y1d_c00285{bottom:480.030000px;}
.y1c_c00285{bottom:510.990000px;}
.y1b_c00285{bottom:541.950000px;}
.y1a_c00285{bottom:572.910000px;}
.y19_c00285{bottom:604.260000px;}
.y18_c00285{bottom:635.220000px;}
.y17_c00285{bottom:666.180000px;}
.y16_c00285{bottom:697.140000px;}
.y15_c00285{bottom:728.490000px;}
.y13_c00285{bottom:759.450000px;}
.y14_c00285{bottom:767.730000px;}
.y12_c00285{bottom:790.410000px;}
.y11_c00285{bottom:828.210000px;}
.y10_c00285{bottom:863.175000px;}
.yf_c00285{bottom:889.095000px;}
.ye_c00285{bottom:914.655000px;}
.yd_c00285{bottom:964.005000px;}
.yb_c00285{bottom:1016.205000px;}
.yc_c00285{bottom:1024.485000px;}
.ya_c00285{bottom:1047.165000px;}
.y9_c00285{bottom:1078.125000px;}
.y8_c00285{bottom:1109.130000px;}
.y7_c00285{bottom:1140.450000px;}
.y2_c00285{bottom:1189.050000px;}
.h3_c00285{height:20.550000px;}
.ha_c00285{height:34.855313px;}
.h4_c00285{height:41.395500px;}
.h7_c00285{height:46.638281px;}
.hb_c00285{height:54.514688px;}
.h9_c00285{height:59.328281px;}
.h8_c00285{height:59.357813px;}
.h2_c00285{height:64.546875px;}
.h5_c00285{height:70.664062px;}
.h6_c00285{height:1262.875500px;}
.h0_c00285{height:1262.880000px;}
.h1_c00285{height:1263.000000px;}
.w2_c00285{width:8.265000px;}
.w3_c00285{width:638.145000px;}
.w1_c00285{width:892.500000px;}
.w4_c00285{width:892.797000px;}
.w0_c00285{width:892.800000px;}
.x0_c00285{left:0.000000px;}
.x3_c00285{left:127.534500px;}
.x9_c00285{left:142.632000px;}
.x1_c00285{left:154.515000px;}
.x4_c00285{left:170.352000px;}
.x5_c00285{left:188.715000px;}
.x8_c00285{left:343.590000px;}
.x6_c00285{left:743.007000px;}
.x2_c00285{left:757.410000px;}
.x7_c00285{left:761.370000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.lse_c00285{letter-spacing:-1.493333pt;}
.lsa_c00285{letter-spacing:-1.258667pt;}
.ls10_c00285{letter-spacing:-0.832000pt;}
.lsf_c00285{letter-spacing:-0.640000pt;}
.ls11_c00285{letter-spacing:-0.473600pt;}
.ls13_c00285{letter-spacing:-0.432533pt;}
.lsc_c00285{letter-spacing:-0.268800pt;}
.ls12_c00285{letter-spacing:-0.214933pt;}
.ls9_c00285{letter-spacing:0.000000pt;}
.lsd_c00285{letter-spacing:0.020267pt;}
.ls8_c00285{letter-spacing:0.043520pt;}
.ls4_c00285{letter-spacing:0.160000pt;}
.lsb_c00285{letter-spacing:0.194667pt;}
.ls0_c00285{letter-spacing:0.448000pt;}
.ls3_c00285{letter-spacing:0.460800pt;}
.ls1_c00285{letter-spacing:0.640000pt;}
.ls7_c00285{letter-spacing:0.647680pt;}
.ls6_c00285{letter-spacing:0.657920pt;}
.ls2_c00285{letter-spacing:0.658103pt;}
.ls5_c00285{letter-spacing:1.930667pt;}
.ws3_c00285{word-spacing:-53.954667pt;}
.ws2_c00285{word-spacing:-53.760000pt;}
.ws0_c00285{word-spacing:-16.000000pt;}
.ws1_c00285{word-spacing:-13.440000pt;}
.ws7_c00285{word-spacing:-13.225067pt;}
.ws4_c00285{word-spacing:-13.171200pt;}
.ws8_c00285{word-spacing:-13.007467pt;}
.ws6_c00285{word-spacing:-12.966400pt;}
.ws5_c00285{word-spacing:-11.946667pt;}
.ws9_c00285{word-spacing:0.000000pt;}
._7_c00285{margin-left:-2.848000pt;}
._1_c00285{margin-left:-1.866667pt;}
._4_c00285{margin-left:-0.917333pt;}
._2_c00285{width:1.344000pt;}
._0_c00285{width:2.378667pt;}
._3_c00285{width:3.541333pt;}
._c_c00285{width:4.917333pt;}
._a_c00285{width:6.464000pt;}
._b_c00285{width:7.402667pt;}
._8_c00285{width:8.309333pt;}
._9_c00285{width:10.218667pt;}
._f_c00285{width:12.021333pt;}
._d_c00285{width:12.949333pt;}
._e_c00285{width:13.951979pt;}
._5_c00285{width:15.104000pt;}
._6_c00285{width:17.642667pt;}
.fs3_c00285{font-size:34.560000pt;}
.fs1_c00285{font-size:42.240000pt;}
.fs2_c00285{font-size:53.760000pt;}
.fs0_c00285{font-size:64.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y3_c00285{bottom:3.840000pt;}
.y6_c00285{bottom:4.160000pt;}
.y5_c00285{bottom:22.400000pt;}
.y4_c00285{bottom:28.480000pt;}
.y1_c00285{bottom:50.880000pt;}
.y2a_c00285{bottom:116.192000pt;}
.y29_c00285{bottom:122.272000pt;}
.y28_c00285{bottom:131.552000pt;}
.y27_c00285{bottom:137.626667pt;}
.y26_c00285{bottom:147.226667pt;}
.y25_c00285{bottom:189.146667pt;}
.y24_c00285{bottom:212.226667pt;}
.y23_c00285{bottom:235.266667pt;}
.y22_c00285{bottom:258.306667pt;}
.y21_c00285{bottom:281.346667pt;}
.y20_c00285{bottom:325.213333pt;}
.y1f_c00285{bottom:371.293333pt;}
.y1e_c00285{bottom:398.813333pt;}
.y1d_c00285{bottom:426.693333pt;}
.y1c_c00285{bottom:454.213333pt;}
.y1b_c00285{bottom:481.733333pt;}
.y1a_c00285{bottom:509.253333pt;}
.y19_c00285{bottom:537.120000pt;}
.y18_c00285{bottom:564.640000pt;}
.y17_c00285{bottom:592.160000pt;}
.y16_c00285{bottom:619.680000pt;}
.y15_c00285{bottom:647.546667pt;}
.y13_c00285{bottom:675.066667pt;}
.y14_c00285{bottom:682.426667pt;}
.y12_c00285{bottom:702.586667pt;}
.y11_c00285{bottom:736.186667pt;}
.y10_c00285{bottom:767.266667pt;}
.yf_c00285{bottom:790.306667pt;}
.ye_c00285{bottom:813.026667pt;}
.yd_c00285{bottom:856.893333pt;}
.yb_c00285{bottom:903.293333pt;}
.yc_c00285{bottom:910.653333pt;}
.ya_c00285{bottom:930.813333pt;}
.y9_c00285{bottom:958.333333pt;}
.y8_c00285{bottom:985.893333pt;}
.y7_c00285{bottom:1013.733333pt;}
.y2_c00285{bottom:1056.933333pt;}
.h3_c00285{height:18.266667pt;}
.ha_c00285{height:30.982500pt;}
.h4_c00285{height:36.796000pt;}
.h7_c00285{height:41.456250pt;}
.hb_c00285{height:48.457500pt;}
.h9_c00285{height:52.736250pt;}
.h8_c00285{height:52.762500pt;}
.h2_c00285{height:57.375000pt;}
.h5_c00285{height:62.812500pt;}
.h6_c00285{height:1122.556000pt;}
.h0_c00285{height:1122.560000pt;}
.h1_c00285{height:1122.666667pt;}
.w2_c00285{width:7.346667pt;}
.w3_c00285{width:567.240000pt;}
.w1_c00285{width:793.333333pt;}
.w4_c00285{width:793.597333pt;}
.w0_c00285{width:793.600000pt;}
.x0_c00285{left:0.000000pt;}
.x3_c00285{left:113.364000pt;}
.x9_c00285{left:126.784000pt;}
.x1_c00285{left:137.346667pt;}
.x4_c00285{left:151.424000pt;}
.x5_c00285{left:167.746667pt;}
.x8_c00285{left:305.413333pt;}
.x6_c00285{left:660.450667pt;}
.x2_c00285{left:673.253333pt;}
.x7_c00285{left:676.773333pt;}
}





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

.ir_c00286:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00286;src:url('chunks/assets/font_092f9bcb5bc68496d551be63.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_ef61f75d71d39468faa43ef7.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00286;src:url('chunks/assets/font_e6d77e75cd8c564cb1630bec.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_ac7c0ab184a735c60e5afba7.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_ed59841f395e26f858c6c21f.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00286;src:url('chunks/assets/font_7ef1ff77a866e93ec06451a2.woff2')format("woff");}.ff6_c00286{font-family:ff6_c00286;line-height:1.104004;font-style:normal;font-weight: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_c00286;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00286{font-family:ff7_c00286;line-height:1.311035;font-style:normal;font-weight: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_c00286;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff8_c00286{font-family:ff8_c00286;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls9_c00286{letter-spacing:-0.288000px;}
.ls7_c00286{letter-spacing:0.000000px;}
.lsa_c00286{letter-spacing:0.022800px;}
.ls5_c00286{letter-spacing:0.180000px;}
.ls1_c00286{letter-spacing:0.504000px;}
.ls3_c00286{letter-spacing:0.720000px;}
.ls4_c00286{letter-spacing:0.740160px;}
.ls6_c00286{letter-spacing:1.440000px;}
.ls0_c00286{letter-spacing:5.040000px;}
.ls2_c00286{letter-spacing:8.040000px;}
.ls8_c00286{letter-spacing:22.320000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00286{word-spacing:-72.000000px;}
.ws3_c00286{word-spacing:-60.480000px;}
.ws0_c00286{word-spacing:-18.000000px;}
.ws4_c00286{word-spacing:-15.142800px;}
.ws2_c00286{word-spacing:-15.120000px;}
.ws5_c00286{word-spacing:0.000000px;}
._7_c00286{margin-left:-3.363598px;}
._3_c00286{margin-left:-2.177401px;}
._0_c00286{margin-left:-1.028402px;}
._2_c00286{width:1.028402px;}
._1_c00286{width:2.116800px;}
._9_c00286{width:3.130197px;}
._4_c00286{width:4.172999px;}
._8_c00286{width:5.545187px;}
._5_c00286{width:6.609600px;}
._10_c00286{width:7.628999px;}
._6_c00286{width:8.780999px;}
._11_c00286{width:10.119594px;}
._13_c00286{width:11.430607px;}
._d_c00286{width:12.619797px;}
._f_c00286{width:13.928406px;}
._e_c00286{width:15.980999px;}
._14_c00286{width:20.208573px;}
._b_c00286{width:21.983403px;}
._c_c00286{width:23.049609px;}
._a_c00286{width:24.281401px;}
._12_c00286{width:46.744796px;}
.fc0_c00286{color:rgb(0,0,0);}
.fs3_c00286{font-size:38.880000px;}
.fs2_c00286{font-size:47.520000px;}
.fs1_c00286{font-size:60.480000px;}
.fs0_c00286{font-size:72.000000px;}
.y0_c00286{bottom:0.000000px;}
.y3_c00286{bottom:4.320000px;}
.y6_c00286{bottom:4.680000px;}
.y5_c00286{bottom:25.200000px;}
.y4_c00286{bottom:32.040000px;}
.y1_c00286{bottom:57.240000px;}
.y29_c00286{bottom:130.716000px;}
.y28_c00286{bottom:137.556000px;}
.y27_c00286{bottom:148.356000px;}
.y26_c00286{bottom:181.110000px;}
.y25_c00286{bottom:212.070000px;}
.y24_c00286{bottom:243.075000px;}
.y23_c00286{bottom:274.035000px;}
.y22_c00286{bottom:305.355000px;}
.y21_c00286{bottom:336.315000px;}
.y20_c00286{bottom:367.305000px;}
.y1f_c00286{bottom:398.265000px;}
.y1e_c00286{bottom:436.065000px;}
.y1d_c00286{bottom:461.985000px;}
.y1c_c00286{bottom:496.950000px;}
.y1b_c00286{bottom:522.870000px;}
.y1a_c00286{bottom:548.790000px;}
.y19_c00286{bottom:598.140000px;}
.y17_c00286{bottom:649.980000px;}
.y18_c00286{bottom:658.260000px;}
.y16_c00286{bottom:680.940000px;}
.y15_c00286{bottom:711.900000px;}
.y14_c00286{bottom:743.250000px;}
.y13_c00286{bottom:774.210000px;}
.y12_c00286{bottom:805.170000px;}
.y11_c00286{bottom:836.130000px;}
.y10_c00286{bottom:867.495000px;}
.yf_c00286{bottom:898.455000px;}
.ye_c00286{bottom:929.415000px;}
.yd_c00286{bottom:960.375000px;}
.yc_c00286{bottom:991.365000px;}
.yb_c00286{bottom:1022.685000px;}
.ya_c00286{bottom:1053.645000px;}
.y9_c00286{bottom:1091.490000px;}
.y8_c00286{bottom:1117.410000px;}
.y7_c00286{bottom:1143.330000px;}
.y2_c00286{bottom:1189.050000px;}
.h3_c00286{height:20.550000px;}
.hb_c00286{height:34.855313px;}
.h4_c00286{height:41.395500px;}
.h8_c00286{height:46.638281px;}
.hc_c00286{height:54.514688px;}
.h5_c00286{height:59.328281px;}
.h9_c00286{height:59.357813px;}
.ha_c00286{height:60.952500px;}
.h2_c00286{height:64.546875px;}
.h6_c00286{height:70.664062px;}
.h7_c00286{height:1262.875500px;}
.h0_c00286{height:1262.880000px;}
.h1_c00286{height:1263.000000px;}
.w2_c00286{width:8.265000px;}
.w3_c00286{width:638.145000px;}
.w1_c00286{width:892.500000px;}
.w4_c00286{width:892.797000px;}
.w0_c00286{width:892.800000px;}
.x0_c00286{left:0.000000px;}
.x3_c00286{left:127.534500px;}
.x8_c00286{left:142.632000px;}
.x1_c00286{left:154.515000px;}
.x4_c00286{left:169.995000px;}
.x7_c00286{left:343.590000px;}
.x5_c00286{left:441.897000px;}
.x6_c00286{left:460.260000px;}
.x2_c00286{left:757.410000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls9_c00286{letter-spacing:-0.256000pt;}
.ls7_c00286{letter-spacing:0.000000pt;}
.lsa_c00286{letter-spacing:0.020267pt;}
.ls5_c00286{letter-spacing:0.160000pt;}
.ls1_c00286{letter-spacing:0.448000pt;}
.ls3_c00286{letter-spacing:0.640000pt;}
.ls4_c00286{letter-spacing:0.657920pt;}
.ls6_c00286{letter-spacing:1.280000pt;}
.ls0_c00286{letter-spacing:4.480000pt;}
.ls2_c00286{letter-spacing:7.146667pt;}
.ls8_c00286{letter-spacing:19.840000pt;}
.ws1_c00286{word-spacing:-64.000000pt;}
.ws3_c00286{word-spacing:-53.760000pt;}
.ws0_c00286{word-spacing:-16.000000pt;}
.ws4_c00286{word-spacing:-13.460267pt;}
.ws2_c00286{word-spacing:-13.440000pt;}
.ws5_c00286{word-spacing:0.000000pt;}
._7_c00286{margin-left:-2.989865pt;}
._3_c00286{margin-left:-1.935468pt;}
._0_c00286{margin-left:-0.914135pt;}
._2_c00286{width:0.914135pt;}
._1_c00286{width:1.881600pt;}
._9_c00286{width:2.782397pt;}
._4_c00286{width:3.709332pt;}
._8_c00286{width:4.929055pt;}
._5_c00286{width:5.875200pt;}
._10_c00286{width:6.781332pt;}
._6_c00286{width:7.805332pt;}
._11_c00286{width:8.995195pt;}
._13_c00286{width:10.160539pt;}
._d_c00286{width:11.217597pt;}
._f_c00286{width:12.380805pt;}
._e_c00286{width:14.205332pt;}
._14_c00286{width:17.963176pt;}
._b_c00286{width:19.540803pt;}
._c_c00286{width:20.488541pt;}
._a_c00286{width:21.583468pt;}
._12_c00286{width:41.550930pt;}
.fs3_c00286{font-size:34.560000pt;}
.fs2_c00286{font-size:42.240000pt;}
.fs1_c00286{font-size:53.760000pt;}
.fs0_c00286{font-size:64.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y3_c00286{bottom:3.840000pt;}
.y6_c00286{bottom:4.160000pt;}
.y5_c00286{bottom:22.400000pt;}
.y4_c00286{bottom:28.480000pt;}
.y1_c00286{bottom:50.880000pt;}
.y29_c00286{bottom:116.192000pt;}
.y28_c00286{bottom:122.272000pt;}
.y27_c00286{bottom:131.872000pt;}
.y26_c00286{bottom:160.986667pt;}
.y25_c00286{bottom:188.506667pt;}
.y24_c00286{bottom:216.066667pt;}
.y23_c00286{bottom:243.586667pt;}
.y22_c00286{bottom:271.426667pt;}
.y21_c00286{bottom:298.946667pt;}
.y20_c00286{bottom:326.493333pt;}
.y1f_c00286{bottom:354.013333pt;}
.y1e_c00286{bottom:387.613333pt;}
.y1d_c00286{bottom:410.653333pt;}
.y1c_c00286{bottom:441.733333pt;}
.y1b_c00286{bottom:464.773333pt;}
.y1a_c00286{bottom:487.813333pt;}
.y19_c00286{bottom:531.680000pt;}
.y17_c00286{bottom:577.760000pt;}
.y18_c00286{bottom:585.120000pt;}
.y16_c00286{bottom:605.280000pt;}
.y15_c00286{bottom:632.800000pt;}
.y14_c00286{bottom:660.666667pt;}
.y13_c00286{bottom:688.186667pt;}
.y12_c00286{bottom:715.706667pt;}
.y11_c00286{bottom:743.226667pt;}
.y10_c00286{bottom:771.106667pt;}
.yf_c00286{bottom:798.626667pt;}
.ye_c00286{bottom:826.146667pt;}
.yd_c00286{bottom:853.666667pt;}
.yc_c00286{bottom:881.213333pt;}
.yb_c00286{bottom:909.053333pt;}
.ya_c00286{bottom:936.573333pt;}
.y9_c00286{bottom:970.213333pt;}
.y8_c00286{bottom:993.253333pt;}
.y7_c00286{bottom:1016.293333pt;}
.y2_c00286{bottom:1056.933333pt;}
.h3_c00286{height:18.266667pt;}
.hb_c00286{height:30.982500pt;}
.h4_c00286{height:36.796000pt;}
.h8_c00286{height:41.456250pt;}
.hc_c00286{height:48.457500pt;}
.h5_c00286{height:52.736250pt;}
.h9_c00286{height:52.762500pt;}
.ha_c00286{height:54.180000pt;}
.h2_c00286{height:57.375000pt;}
.h6_c00286{height:62.812500pt;}
.h7_c00286{height:1122.556000pt;}
.h0_c00286{height:1122.560000pt;}
.h1_c00286{height:1122.666667pt;}
.w2_c00286{width:7.346667pt;}
.w3_c00286{width:567.240000pt;}
.w1_c00286{width:793.333333pt;}
.w4_c00286{width:793.597333pt;}
.w0_c00286{width:793.600000pt;}
.x0_c00286{left:0.000000pt;}
.x3_c00286{left:113.364000pt;}
.x8_c00286{left:126.784000pt;}
.x1_c00286{left:137.346667pt;}
.x4_c00286{left:151.106667pt;}
.x7_c00286{left:305.413333pt;}
.x5_c00286{left:392.797333pt;}
.x6_c00286{left:409.120000pt;}
.x2_c00286{left:673.253333pt;}
}





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

.ir_c00287:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00287;src:url('chunks/assets/font_e7cdfdbf4c53064edcf98c88.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_5ba8f03bed65cab83d170487.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_39ab8fdebdd98904be75fcbf.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_93a32c5f15b30b93a23568fb.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00287;src:url('chunks/assets/font_1d2cf4270e722f63f3c7f40c.woff2')format("woff");}.ff5_c00287{font-family:ff5_c00287;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_c00287;src:url('chunks/assets/font_ba2a1145b695ad2bfb6be7a7.woff2')format("woff");}.ff6_c00287{font-family:ff6_c00287;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.lsf_c00287{letter-spacing:-0.936000px;}
.lsc_c00287{letter-spacing:-0.912000px;}
.ls7_c00287{letter-spacing:-0.532800px;}
.ls6_c00287{letter-spacing:0.000000px;}
.lse_c00287{letter-spacing:0.020400px;}
.ls8_c00287{letter-spacing:0.022800px;}
.lsb_c00287{letter-spacing:0.060600px;}
.lsa_c00287{letter-spacing:0.325200px;}
.ls9_c00287{letter-spacing:0.507000px;}
.lsd_c00287{letter-spacing:0.636000px;}
.ls0_c00287{letter-spacing:0.644160px;}
.ls1_c00287{letter-spacing:0.720000px;}
.ls2_c00287{letter-spacing:0.740447px;}
.ls5_c00287{letter-spacing:0.900000px;}
.ls3_c00287{letter-spacing:1.620000px;}
.ls4_c00287{letter-spacing:16.560000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00287{word-spacing:-60.805200px;}
.ws2_c00287{word-spacing:-60.480000px;}
.ws0_c00287{word-spacing:-18.000000px;}
.ws4_c00287{word-spacing:-15.756000px;}
.ws5_c00287{word-spacing:-15.140400px;}
.ws1_c00287{word-spacing:-15.120000px;}
.ws6_c00287{word-spacing:-14.184000px;}
.ws7_c00287{word-spacing:0.000000px;}
._0_c00287{margin-left:-2.736000px;}
._2_c00287{margin-left:-1.152000px;}
._1_c00287{width:1.368000px;}
._4_c00287{width:2.507976px;}
._3_c00287{width:3.720024px;}
._a_c00287{width:5.639976px;}
._c_c00287{width:6.972000px;}
._b_c00287{width:8.184024px;}
._8_c00287{width:10.296000px;}
._9_c00287{width:12.168000px;}
._f_c00287{width:13.282802px;}
._6_c00287{width:14.328000px;}
._7_c00287{width:15.612000px;}
._d_c00287{width:19.008000px;}
._e_c00287{width:20.376000px;}
._10_c00287{width:21.560391px;}
._5_c00287{width:151.932024px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs3_c00287{font-size:38.880000px;}
.fs2_c00287{font-size:47.520000px;}
.fs1_c00287{font-size:60.480000px;}
.fs0_c00287{font-size:72.000000px;}
.y0_c00287{bottom:0.000000px;}
.y3_c00287{bottom:4.320000px;}
.y6_c00287{bottom:4.680000px;}
.y5_c00287{bottom:25.200000px;}
.y4_c00287{bottom:32.040000px;}
.y1_c00287{bottom:57.240000px;}
.y2b_c00287{bottom:130.716000px;}
.y2a_c00287{bottom:147.996000px;}
.y29_c00287{bottom:165.270000px;}
.y28_c00287{bottom:182.550000px;}
.y27_c00287{bottom:199.830000px;}
.y26_c00287{bottom:216.750000px;}
.y25_c00287{bottom:234.075000px;}
.y24_c00287{bottom:251.355000px;}
.y23_c00287{bottom:258.195000px;}
.y22_c00287{bottom:269.355000px;}
.y21_c00287{bottom:306.075000px;}
.y20_c00287{bottom:331.995000px;}
.y1f_c00287{bottom:381.345000px;}
.y1e_c00287{bottom:433.185000px;}
.y1c_c00287{bottom:464.145000px;}
.y1d_c00287{bottom:472.425000px;}
.y1b_c00287{bottom:495.510000px;}
.y1a_c00287{bottom:526.470000px;}
.y19_c00287{bottom:557.430000px;}
.y18_c00287{bottom:588.390000px;}
.y17_c00287{bottom:619.740000px;}
.y16_c00287{bottom:650.700000px;}
.y15_c00287{bottom:681.660000px;}
.y14_c00287{bottom:712.620000px;}
.y13_c00287{bottom:743.970000px;}
.y12_c00287{bottom:774.930000px;}
.y11_c00287{bottom:805.890000px;}
.y10_c00287{bottom:843.735000px;}
.yf_c00287{bottom:869.655000px;}
.ye_c00287{bottom:904.575000px;}
.yd_c00287{bottom:930.495000px;}
.yc_c00287{bottom:956.055000px;}
.yb_c00287{bottom:982.005000px;}
.ya_c00287{bottom:1007.925000px;}
.y9_c00287{bottom:1057.245000px;}
.y8_c00287{bottom:1109.130000px;}
.y7_c00287{bottom:1140.450000px;}
.y2_c00287{bottom:1189.050000px;}
.h3_c00287{height:20.550000px;}
.ha_c00287{height:38.158594px;}
.h4_c00287{height:41.395500px;}
.h9_c00287{height:46.638281px;}
.h7_c00287{height:59.328281px;}
.h6_c00287{height:59.357813px;}
.h2_c00287{height:64.546875px;}
.h5_c00287{height:70.664062px;}
.h8_c00287{height:1262.875500px;}
.h0_c00287{height:1262.880000px;}
.h1_c00287{height:1263.000000px;}
.w2_c00287{width:8.265000px;}
.w3_c00287{width:638.145000px;}
.w1_c00287{width:892.500000px;}
.w4_c00287{width:892.797000px;}
.w0_c00287{width:892.800000px;}
.x0_c00287{left:0.000000px;}
.x3_c00287{left:127.534500px;}
.x8_c00287{left:142.632000px;}
.x1_c00287{left:154.515000px;}
.x4_c00287{left:169.995000px;}
.x7_c00287{left:343.590000px;}
.x5_c00287{left:652.602000px;}
.x6_c00287{left:670.965000px;}
.x2_c00287{left:757.410000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.lsf_c00287{letter-spacing:-0.832000pt;}
.lsc_c00287{letter-spacing:-0.810667pt;}
.ls7_c00287{letter-spacing:-0.473600pt;}
.ls6_c00287{letter-spacing:0.000000pt;}
.lse_c00287{letter-spacing:0.018133pt;}
.ls8_c00287{letter-spacing:0.020267pt;}
.lsb_c00287{letter-spacing:0.053867pt;}
.lsa_c00287{letter-spacing:0.289067pt;}
.ls9_c00287{letter-spacing:0.450667pt;}
.lsd_c00287{letter-spacing:0.565333pt;}
.ls0_c00287{letter-spacing:0.572587pt;}
.ls1_c00287{letter-spacing:0.640000pt;}
.ls2_c00287{letter-spacing:0.658175pt;}
.ls5_c00287{letter-spacing:0.800000pt;}
.ls3_c00287{letter-spacing:1.440000pt;}
.ls4_c00287{letter-spacing:14.720000pt;}
.ws3_c00287{word-spacing:-54.049067pt;}
.ws2_c00287{word-spacing:-53.760000pt;}
.ws0_c00287{word-spacing:-16.000000pt;}
.ws4_c00287{word-spacing:-14.005333pt;}
.ws5_c00287{word-spacing:-13.458133pt;}
.ws1_c00287{word-spacing:-13.440000pt;}
.ws6_c00287{word-spacing:-12.608000pt;}
.ws7_c00287{word-spacing:0.000000pt;}
._0_c00287{margin-left:-2.432000pt;}
._2_c00287{margin-left:-1.024000pt;}
._1_c00287{width:1.216000pt;}
._4_c00287{width:2.229312pt;}
._3_c00287{width:3.306688pt;}
._a_c00287{width:5.013312pt;}
._c_c00287{width:6.197333pt;}
._b_c00287{width:7.274688pt;}
._8_c00287{width:9.152000pt;}
._9_c00287{width:10.816000pt;}
._f_c00287{width:11.806935pt;}
._6_c00287{width:12.736000pt;}
._7_c00287{width:13.877333pt;}
._d_c00287{width:16.896000pt;}
._e_c00287{width:18.112000pt;}
._10_c00287{width:19.164792pt;}
._5_c00287{width:135.050688pt;}
.fs3_c00287{font-size:34.560000pt;}
.fs2_c00287{font-size:42.240000pt;}
.fs1_c00287{font-size:53.760000pt;}
.fs0_c00287{font-size:64.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y3_c00287{bottom:3.840000pt;}
.y6_c00287{bottom:4.160000pt;}
.y5_c00287{bottom:22.400000pt;}
.y4_c00287{bottom:28.480000pt;}
.y1_c00287{bottom:50.880000pt;}
.y2b_c00287{bottom:116.192000pt;}
.y2a_c00287{bottom:131.552000pt;}
.y29_c00287{bottom:146.906667pt;}
.y28_c00287{bottom:162.266667pt;}
.y27_c00287{bottom:177.626667pt;}
.y26_c00287{bottom:192.666667pt;}
.y25_c00287{bottom:208.066667pt;}
.y24_c00287{bottom:223.426667pt;}
.y23_c00287{bottom:229.506667pt;}
.y22_c00287{bottom:239.426667pt;}
.y21_c00287{bottom:272.066667pt;}
.y20_c00287{bottom:295.106667pt;}
.y1f_c00287{bottom:338.973333pt;}
.y1e_c00287{bottom:385.053333pt;}
.y1c_c00287{bottom:412.573333pt;}
.y1d_c00287{bottom:419.933333pt;}
.y1b_c00287{bottom:440.453333pt;}
.y1a_c00287{bottom:467.973333pt;}
.y19_c00287{bottom:495.493333pt;}
.y18_c00287{bottom:523.013333pt;}
.y17_c00287{bottom:550.880000pt;}
.y16_c00287{bottom:578.400000pt;}
.y15_c00287{bottom:605.920000pt;}
.y14_c00287{bottom:633.440000pt;}
.y13_c00287{bottom:661.306667pt;}
.y12_c00287{bottom:688.826667pt;}
.y11_c00287{bottom:716.346667pt;}
.y10_c00287{bottom:749.986667pt;}
.yf_c00287{bottom:773.026667pt;}
.ye_c00287{bottom:804.066667pt;}
.yd_c00287{bottom:827.106667pt;}
.yc_c00287{bottom:849.826667pt;}
.yb_c00287{bottom:872.893333pt;}
.ya_c00287{bottom:895.933333pt;}
.y9_c00287{bottom:939.773333pt;}
.y8_c00287{bottom:985.893333pt;}
.y7_c00287{bottom:1013.733333pt;}
.y2_c00287{bottom:1056.933333pt;}
.h3_c00287{height:18.266667pt;}
.ha_c00287{height:33.918750pt;}
.h4_c00287{height:36.796000pt;}
.h9_c00287{height:41.456250pt;}
.h7_c00287{height:52.736250pt;}
.h6_c00287{height:52.762500pt;}
.h2_c00287{height:57.375000pt;}
.h5_c00287{height:62.812500pt;}
.h8_c00287{height:1122.556000pt;}
.h0_c00287{height:1122.560000pt;}
.h1_c00287{height:1122.666667pt;}
.w2_c00287{width:7.346667pt;}
.w3_c00287{width:567.240000pt;}
.w1_c00287{width:793.333333pt;}
.w4_c00287{width:793.597333pt;}
.w0_c00287{width:793.600000pt;}
.x0_c00287{left:0.000000pt;}
.x3_c00287{left:113.364000pt;}
.x8_c00287{left:126.784000pt;}
.x1_c00287{left:137.346667pt;}
.x4_c00287{left:151.106667pt;}
.x7_c00287{left:305.413333pt;}
.x5_c00287{left:580.090667pt;}
.x6_c00287{left:596.413333pt;}
.x2_c00287{left:673.253333pt;}
}





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

.ir_c00288:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00288;src:url('chunks/assets/font_fcaa6eea0af8f5031b52e74e.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_ec58505f8051a1288cb65b9a.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_cff5dc5dfc928f4a6b1d40b4.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_a55aec55ed1aac6276dd120b.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00288;src:url('chunks/assets/font_2ca59b4f4ba6dfefd644fad1.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00288;src:url('chunks/assets/font_8311957cdda4d4ddca789fa6.woff2')format("woff");}.ff6_c00288{font-family:ff6_c00288;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_c00288;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00288{font-family:ff7_c00288;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.lse_c00288{letter-spacing:-1.380000px;}
.ls10_c00288{letter-spacing:-0.720000px;}
.lsb_c00288{letter-spacing:-0.241800px;}
.lsa_c00288{letter-spacing:0.000000px;}
.ls5_c00288{letter-spacing:0.180000px;}
.lsd_c00288{letter-spacing:0.486600px;}
.lsc_c00288{letter-spacing:0.504000px;}
.lsf_c00288{letter-spacing:0.521400px;}
.ls4_c00288{letter-spacing:0.708480px;}
.ls0_c00288{letter-spacing:0.720000px;}
.ls1_c00288{letter-spacing:0.740261px;}
.ls9_c00288{letter-spacing:2.016000px;}
.ls7_c00288{letter-spacing:2.160000px;}
.ls8_c00288{letter-spacing:3.600000px;}
.ls3_c00288{letter-spacing:5.040000px;}
.ls2_c00288{letter-spacing:6.480000px;}
.ls6_c00288{letter-spacing:12.240000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:-60.480000px;}
.ws3_c00288{word-spacing:-18.504000px;}
.ws2_c00288{word-spacing:-18.000000px;}
.ws5_c00288{word-spacing:-15.641400px;}
.ws4_c00288{word-spacing:-15.606600px;}
.ws1_c00288{word-spacing:-15.120000px;}
.ws6_c00288{word-spacing:0.000000px;}
._1_c00288{margin-left:-2.483520px;}
._0_c00288{margin-left:-1.270201px;}
._2_c00288{width:1.061669px;}
._5_c00288{width:2.238002px;}
._a_c00288{width:3.972024px;}
._b_c00288{width:5.742283px;}
._7_c00288{width:6.905643px;}
._4_c00288{width:8.829596px;}
._c_c00288{width:9.985976px;}
._3_c00288{width:11.007602px;}
._d_c00288{width:12.228757px;}
._e_c00288{width:13.465010px;}
._8_c00288{width:15.552000px;}
._9_c00288{width:16.836601px;}
._6_c00288{width:151.932024px;}
.fc0_c00288{color:rgb(0,0,0);}
.fs1_c00288{font-size:60.480000px;}
.fs0_c00288{font-size:72.000000px;}
.y0_c00288{bottom:0.000000px;}
.y3_c00288{bottom:4.320000px;}
.y6_c00288{bottom:4.680000px;}
.y5_c00288{bottom:25.200000px;}
.y4_c00288{bottom:32.040000px;}
.y1_c00288{bottom:57.240000px;}
.y24_c00288{bottom:254.955000px;}
.y23_c00288{bottom:285.915000px;}
.y22_c00288{bottom:323.715000px;}
.y21_c00288{bottom:349.635000px;}
.y20_c00288{bottom:375.225000px;}
.y1f_c00288{bottom:401.145000px;}
.y1e_c00288{bottom:436.065000px;}
.y1d_c00288{bottom:461.985000px;}
.y1c_c00288{bottom:487.950000px;}
.y1b_c00288{bottom:513.870000px;}
.y1a_c00288{bottom:539.790000px;}
.y19_c00288{bottom:565.710000px;}
.y18_c00288{bottom:591.270000px;}
.y17_c00288{bottom:640.620000px;}
.y16_c00288{bottom:692.820000px;}
.y15_c00288{bottom:723.810000px;}
.y14_c00288{bottom:754.770000px;}
.y13_c00288{bottom:785.730000px;}
.y12_c00288{bottom:817.050000px;}
.y11_c00288{bottom:848.055000px;}
.y10_c00288{bottom:879.015000px;}
.yf_c00288{bottom:909.975000px;}
.ye_c00288{bottom:941.295000px;}
.yd_c00288{bottom:978.765000px;}
.yc_c00288{bottom:1004.685000px;}
.yb_c00288{bottom:1030.605000px;}
.ya_c00288{bottom:1065.525000px;}
.y9_c00288{bottom:1091.490000px;}
.y8_c00288{bottom:1117.410000px;}
.y7_c00288{bottom:1143.330000px;}
.y2_c00288{bottom:1189.050000px;}
.h3_c00288{height:20.550000px;}
.h4_c00288{height:41.395500px;}
.h6_c00288{height:59.328281px;}
.h5_c00288{height:59.357813px;}
.h8_c00288{height:60.952500px;}
.h2_c00288{height:64.546875px;}
.h7_c00288{height:70.664062px;}
.h9_c00288{height:72.562500px;}
.h0_c00288{height:1262.880000px;}
.h1_c00288{height:1263.000000px;}
.w2_c00288{width:8.265000px;}
.w3_c00288{width:638.145000px;}
.w1_c00288{width:892.500000px;}
.w0_c00288{width:892.800000px;}
.x0_c00288{left:0.000000px;}
.x3_c00288{left:127.534500px;}
.x1_c00288{left:154.515000px;}
.x4_c00288{left:169.995000px;}
.x2_c00288{left:757.410000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.lse_c00288{letter-spacing:-1.226667pt;}
.ls10_c00288{letter-spacing:-0.640000pt;}
.lsb_c00288{letter-spacing:-0.214933pt;}
.lsa_c00288{letter-spacing:0.000000pt;}
.ls5_c00288{letter-spacing:0.160000pt;}
.lsd_c00288{letter-spacing:0.432533pt;}
.lsc_c00288{letter-spacing:0.448000pt;}
.lsf_c00288{letter-spacing:0.463467pt;}
.ls4_c00288{letter-spacing:0.629760pt;}
.ls0_c00288{letter-spacing:0.640000pt;}
.ls1_c00288{letter-spacing:0.658010pt;}
.ls9_c00288{letter-spacing:1.792000pt;}
.ls7_c00288{letter-spacing:1.920000pt;}
.ls8_c00288{letter-spacing:3.200000pt;}
.ls3_c00288{letter-spacing:4.480000pt;}
.ls2_c00288{letter-spacing:5.760000pt;}
.ls6_c00288{letter-spacing:10.880000pt;}
.ws0_c00288{word-spacing:-53.760000pt;}
.ws3_c00288{word-spacing:-16.448000pt;}
.ws2_c00288{word-spacing:-16.000000pt;}
.ws5_c00288{word-spacing:-13.903467pt;}
.ws4_c00288{word-spacing:-13.872533pt;}
.ws1_c00288{word-spacing:-13.440000pt;}
.ws6_c00288{word-spacing:0.000000pt;}
._1_c00288{margin-left:-2.207573pt;}
._0_c00288{margin-left:-1.129068pt;}
._2_c00288{width:0.943706pt;}
._5_c00288{width:1.989335pt;}
._a_c00288{width:3.530688pt;}
._b_c00288{width:5.104252pt;}
._7_c00288{width:6.138349pt;}
._4_c00288{width:7.848530pt;}
._c_c00288{width:8.876423pt;}
._3_c00288{width:9.784535pt;}
._d_c00288{width:10.870007pt;}
._e_c00288{width:11.968898pt;}
._8_c00288{width:13.824000pt;}
._9_c00288{width:14.965868pt;}
._6_c00288{width:135.050688pt;}
.fs1_c00288{font-size:53.760000pt;}
.fs0_c00288{font-size:64.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y3_c00288{bottom:3.840000pt;}
.y6_c00288{bottom:4.160000pt;}
.y5_c00288{bottom:22.400000pt;}
.y4_c00288{bottom:28.480000pt;}
.y1_c00288{bottom:50.880000pt;}
.y24_c00288{bottom:226.626667pt;}
.y23_c00288{bottom:254.146667pt;}
.y22_c00288{bottom:287.746667pt;}
.y21_c00288{bottom:310.786667pt;}
.y20_c00288{bottom:333.533333pt;}
.y1f_c00288{bottom:356.573333pt;}
.y1e_c00288{bottom:387.613333pt;}
.y1d_c00288{bottom:410.653333pt;}
.y1c_c00288{bottom:433.733333pt;}
.y1b_c00288{bottom:456.773333pt;}
.y1a_c00288{bottom:479.813333pt;}
.y19_c00288{bottom:502.853333pt;}
.y18_c00288{bottom:525.573333pt;}
.y17_c00288{bottom:569.440000pt;}
.y16_c00288{bottom:615.840000pt;}
.y15_c00288{bottom:643.386667pt;}
.y14_c00288{bottom:670.906667pt;}
.y13_c00288{bottom:698.426667pt;}
.y12_c00288{bottom:726.266667pt;}
.y11_c00288{bottom:753.826667pt;}
.y10_c00288{bottom:781.346667pt;}
.yf_c00288{bottom:808.866667pt;}
.ye_c00288{bottom:836.706667pt;}
.yd_c00288{bottom:870.013333pt;}
.yc_c00288{bottom:893.053333pt;}
.yb_c00288{bottom:916.093333pt;}
.ya_c00288{bottom:947.133333pt;}
.y9_c00288{bottom:970.213333pt;}
.y8_c00288{bottom:993.253333pt;}
.y7_c00288{bottom:1016.293333pt;}
.y2_c00288{bottom:1056.933333pt;}
.h3_c00288{height:18.266667pt;}
.h4_c00288{height:36.796000pt;}
.h6_c00288{height:52.736250pt;}
.h5_c00288{height:52.762500pt;}
.h8_c00288{height:54.180000pt;}
.h2_c00288{height:57.375000pt;}
.h7_c00288{height:62.812500pt;}
.h9_c00288{height:64.500000pt;}
.h0_c00288{height:1122.560000pt;}
.h1_c00288{height:1122.666667pt;}
.w2_c00288{width:7.346667pt;}
.w3_c00288{width:567.240000pt;}
.w1_c00288{width:793.333333pt;}
.w0_c00288{width:793.600000pt;}
.x0_c00288{left:0.000000pt;}
.x3_c00288{left:113.364000pt;}
.x1_c00288{left:137.346667pt;}
.x4_c00288{left:151.106667pt;}
.x2_c00288{left:673.253333pt;}
}





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

.ir_c00289:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00289;src:url('chunks/assets/font_d692c88f3a4e1d2393443158.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_12b4e39c12aec9e8f4d3cb3b.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_18eabeb6e0b57276d499b894.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;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_c00289;src:url('chunks/assets/font_7e1b0e4caab08e654ce3f09c.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00289;src:url('chunks/assets/font_1ebcaf34d20e40eebed166e0.woff2')format("woff");}.ff5_c00289{font-family:ff5_c00289;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00289;src:url('chunks/assets/font_63f7d2696643e1be013098d5.woff2')format("woff");}.ff6_c00289{font-family:ff6_c00289;line-height:1.104004;font-style:normal;font-weight: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_c00289;src:url('chunks/assets/font_0ee6634b4c42458506f44c30.woff2')format("woff");}.ff7_c00289{font-family:ff7_c00289;line-height:1.112305;font-style:normal;font-weight: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_c00289;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff8_c00289{font-family:ff8_c00289;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.lsb_c00289{letter-spacing:-1.416000px;}
.ls9_c00289{letter-spacing:-0.429000px;}
.ls7_c00289{letter-spacing:-0.302400px;}
.lse_c00289{letter-spacing:-0.241800px;}
.ls5_c00289{letter-spacing:0.000000px;}
.ls8_c00289{letter-spacing:0.166800px;}
.ls1_c00289{letter-spacing:0.180000px;}
.lsd_c00289{letter-spacing:0.313800px;}
.ls4_c00289{letter-spacing:0.466560px;}
.ls6_c00289{letter-spacing:0.504000px;}
.lsa_c00289{letter-spacing:0.529800px;}
.ls0_c00289{letter-spacing:0.720000px;}
.lsc_c00289{letter-spacing:1.440000px;}
.ls3_c00289{letter-spacing:6.480000px;}
.ls2_c00289{letter-spacing:6.500153px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00289{word-spacing:-60.480000px;}
.ws6_c00289{word-spacing:-19.440000px;}
.ws0_c00289{word-spacing:-18.000000px;}
.ws7_c00289{word-spacing:-15.433800px;}
.ws3_c00289{word-spacing:-15.286800px;}
.ws1_c00289{word-spacing:-15.120000px;}
.ws8_c00289{word-spacing:-14.878200px;}
.ws2_c00289{word-spacing:-14.817600px;}
.ws4_c00289{word-spacing:-14.691000px;}
.ws9_c00289{word-spacing:0.000000px;}
._b_c00289{margin-left:-4.176000px;}
._3_c00289{margin-left:-2.736000px;}
._0_c00289{margin-left:-1.728000px;}
._1_c00289{width:1.080000px;}
._4_c00289{width:2.808000px;}
._7_c00289{width:4.414798px;}
._11_c00289{width:5.832000px;}
._5_c00289{width:7.200000px;}
._6_c00289{width:8.496000px;}
._2_c00289{width:10.008000px;}
._10_c00289{width:13.392000px;}
._f_c00289{width:14.688000px;}
._e_c00289{width:15.840000px;}
._9_c00289{width:19.368000px;}
._a_c00289{width:21.600000px;}
._c_c00289{width:25.488000px;}
._d_c00289{width:27.000000px;}
._8_c00289{width:151.932024px;}
.fc0_c00289{color:rgb(0,0,0);}
.fs3_c00289{font-size:38.880000px;}
.fs1_c00289{font-size:47.520000px;}
.fs2_c00289{font-size:60.480000px;}
.fs0_c00289{font-size:72.000000px;}
.y0_c00289{bottom:0.000000px;}
.y3_c00289{bottom:4.320000px;}
.y6_c00289{bottom:4.680000px;}
.y5_c00289{bottom:25.200000px;}
.y4_c00289{bottom:32.040000px;}
.y1_c00289{bottom:57.240000px;}
.y2f_c00289{bottom:130.716000px;}
.y2e_c00289{bottom:147.996000px;}
.y2d_c00289{bottom:154.830000px;}
.y2c_c00289{bottom:165.270000px;}
.y2b_c00289{bottom:172.110000px;}
.y2a_c00289{bottom:182.550000px;}
.y29_c00289{bottom:199.830000px;}
.y28_c00289{bottom:206.670000px;}
.y27_c00289{bottom:217.470000px;}
.y26_c00289{bottom:252.075000px;}
.y24_c00289{bottom:283.035000px;}
.y25_c00289{bottom:291.315000px;}
.y23_c00289{bottom:314.355000px;}
.y22_c00289{bottom:345.315000px;}
.y21_c00289{bottom:376.305000px;}
.y20_c00289{bottom:407.265000px;}
.y1f_c00289{bottom:438.585000px;}
.y1e_c00289{bottom:469.545000px;}
.y1d_c00289{bottom:500.550000px;}
.y1b_c00289{bottom:531.510000px;}
.y1c_c00289{bottom:539.790000px;}
.y1a_c00289{bottom:562.830000px;}
.y19_c00289{bottom:593.790000px;}
.y18_c00289{bottom:624.780000px;}
.y17_c00289{bottom:655.740000px;}
.y16_c00289{bottom:687.060000px;}
.y15_c00289{bottom:718.020000px;}
.y14_c00289{bottom:749.010000px;}
.y13_c00289{bottom:779.970000px;}
.y12_c00289{bottom:817.770000px;}
.y11_c00289{bottom:843.735000px;}
.y10_c00289{bottom:869.655000px;}
.yf_c00289{bottom:904.575000px;}
.ye_c00289{bottom:930.495000px;}
.yd_c00289{bottom:956.055000px;}
.yc_c00289{bottom:982.005000px;}
.yb_c00289{bottom:1007.925000px;}
.ya_c00289{bottom:1057.245000px;}
.y9_c00289{bottom:1109.130000px;}
.y7_c00289{bottom:1140.450000px;}
.y8_c00289{bottom:1148.730000px;}
.y2_c00289{bottom:1189.050000px;}
.h3_c00289{height:20.550000px;}
.hb_c00289{height:34.855313px;}
.he_c00289{height:38.158594px;}
.h4_c00289{height:41.395500px;}
.h7_c00289{height:46.638281px;}
.hc_c00289{height:54.219375px;}
.hd_c00289{height:54.514688px;}
.h9_c00289{height:59.328281px;}
.h8_c00289{height:59.357813px;}
.h2_c00289{height:64.546875px;}
.ha_c00289{height:70.628906px;}
.h5_c00289{height:70.664062px;}
.h6_c00289{height:1262.875500px;}
.h0_c00289{height:1262.880000px;}
.h1_c00289{height:1263.000000px;}
.w2_c00289{width:8.265000px;}
.w3_c00289{width:638.145000px;}
.w1_c00289{width:892.500000px;}
.w4_c00289{width:892.797000px;}
.w0_c00289{width:892.800000px;}
.x0_c00289{left:0.000000px;}
.x3_c00289{left:127.534500px;}
.xc_c00289{left:142.632000px;}
.x1_c00289{left:154.515000px;}
.x6_c00289{left:169.995000px;}
.x7_c00289{left:279.822000px;}
.x8_c00289{left:298.230000px;}
.xb_c00289{left:343.590000px;}
.x4_c00289{left:428.937000px;}
.x5_c00289{left:447.300000px;}
.x9_c00289{left:504.927000px;}
.xa_c00289{left:523.290000px;}
.x2_c00289{left:757.410000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.lsb_c00289{letter-spacing:-1.258667pt;}
.ls9_c00289{letter-spacing:-0.381333pt;}
.ls7_c00289{letter-spacing:-0.268800pt;}
.lse_c00289{letter-spacing:-0.214933pt;}
.ls5_c00289{letter-spacing:0.000000pt;}
.ls8_c00289{letter-spacing:0.148267pt;}
.ls1_c00289{letter-spacing:0.160000pt;}
.lsd_c00289{letter-spacing:0.278933pt;}
.ls4_c00289{letter-spacing:0.414720pt;}
.ls6_c00289{letter-spacing:0.448000pt;}
.lsa_c00289{letter-spacing:0.470933pt;}
.ls0_c00289{letter-spacing:0.640000pt;}
.lsc_c00289{letter-spacing:1.280000pt;}
.ls3_c00289{letter-spacing:5.760000pt;}
.ls2_c00289{letter-spacing:5.777914pt;}
.ws5_c00289{word-spacing:-53.760000pt;}
.ws6_c00289{word-spacing:-17.280000pt;}
.ws0_c00289{word-spacing:-16.000000pt;}
.ws7_c00289{word-spacing:-13.718933pt;}
.ws3_c00289{word-spacing:-13.588267pt;}
.ws1_c00289{word-spacing:-13.440000pt;}
.ws8_c00289{word-spacing:-13.225067pt;}
.ws2_c00289{word-spacing:-13.171200pt;}
.ws4_c00289{word-spacing:-13.058667pt;}
.ws9_c00289{word-spacing:0.000000pt;}
._b_c00289{margin-left:-3.712000pt;}
._3_c00289{margin-left:-2.432000pt;}
._0_c00289{margin-left:-1.536000pt;}
._1_c00289{width:0.960000pt;}
._4_c00289{width:2.496000pt;}
._7_c00289{width:3.924265pt;}
._11_c00289{width:5.184000pt;}
._5_c00289{width:6.400000pt;}
._6_c00289{width:7.552000pt;}
._2_c00289{width:8.896000pt;}
._10_c00289{width:11.904000pt;}
._f_c00289{width:13.056000pt;}
._e_c00289{width:14.080000pt;}
._9_c00289{width:17.216000pt;}
._a_c00289{width:19.200000pt;}
._c_c00289{width:22.656000pt;}
._d_c00289{width:24.000000pt;}
._8_c00289{width:135.050688pt;}
.fs3_c00289{font-size:34.560000pt;}
.fs1_c00289{font-size:42.240000pt;}
.fs2_c00289{font-size:53.760000pt;}
.fs0_c00289{font-size:64.000000pt;}
.y0_c00289{bottom:0.000000pt;}
.y3_c00289{bottom:3.840000pt;}
.y6_c00289{bottom:4.160000pt;}
.y5_c00289{bottom:22.400000pt;}
.y4_c00289{bottom:28.480000pt;}
.y1_c00289{bottom:50.880000pt;}
.y2f_c00289{bottom:116.192000pt;}
.y2e_c00289{bottom:131.552000pt;}
.y2d_c00289{bottom:137.626667pt;}
.y2c_c00289{bottom:146.906667pt;}
.y2b_c00289{bottom:152.986667pt;}
.y2a_c00289{bottom:162.266667pt;}
.y29_c00289{bottom:177.626667pt;}
.y28_c00289{bottom:183.706667pt;}
.y27_c00289{bottom:193.306667pt;}
.y26_c00289{bottom:224.066667pt;}
.y24_c00289{bottom:251.586667pt;}
.y25_c00289{bottom:258.946667pt;}
.y23_c00289{bottom:279.426667pt;}
.y22_c00289{bottom:306.946667pt;}
.y21_c00289{bottom:334.493333pt;}
.y20_c00289{bottom:362.013333pt;}
.y1f_c00289{bottom:389.853333pt;}
.y1e_c00289{bottom:417.373333pt;}
.y1d_c00289{bottom:444.933333pt;}
.y1b_c00289{bottom:472.453333pt;}
.y1c_c00289{bottom:479.813333pt;}
.y1a_c00289{bottom:500.293333pt;}
.y19_c00289{bottom:527.813333pt;}
.y18_c00289{bottom:555.360000pt;}
.y17_c00289{bottom:582.880000pt;}
.y16_c00289{bottom:610.720000pt;}
.y15_c00289{bottom:638.240000pt;}
.y14_c00289{bottom:665.786667pt;}
.y13_c00289{bottom:693.306667pt;}
.y12_c00289{bottom:726.906667pt;}
.y11_c00289{bottom:749.986667pt;}
.y10_c00289{bottom:773.026667pt;}
.yf_c00289{bottom:804.066667pt;}
.ye_c00289{bottom:827.106667pt;}
.yd_c00289{bottom:849.826667pt;}
.yc_c00289{bottom:872.893333pt;}
.yb_c00289{bottom:895.933333pt;}
.ya_c00289{bottom:939.773333pt;}
.y9_c00289{bottom:985.893333pt;}
.y7_c00289{bottom:1013.733333pt;}
.y8_c00289{bottom:1021.093333pt;}
.y2_c00289{bottom:1056.933333pt;}
.h3_c00289{height:18.266667pt;}
.hb_c00289{height:30.982500pt;}
.he_c00289{height:33.918750pt;}
.h4_c00289{height:36.796000pt;}
.h7_c00289{height:41.456250pt;}
.hc_c00289{height:48.195000pt;}
.hd_c00289{height:48.457500pt;}
.h9_c00289{height:52.736250pt;}
.h8_c00289{height:52.762500pt;}
.h2_c00289{height:57.375000pt;}
.ha_c00289{height:62.781250pt;}
.h5_c00289{height:62.812500pt;}
.h6_c00289{height:1122.556000pt;}
.h0_c00289{height:1122.560000pt;}
.h1_c00289{height:1122.666667pt;}
.w2_c00289{width:7.346667pt;}
.w3_c00289{width:567.240000pt;}
.w1_c00289{width:793.333333pt;}
.w4_c00289{width:793.597333pt;}
.w0_c00289{width:793.600000pt;}
.x0_c00289{left:0.000000pt;}
.x3_c00289{left:113.364000pt;}
.xc_c00289{left:126.784000pt;}
.x1_c00289{left:137.346667pt;}
.x6_c00289{left:151.106667pt;}
.x7_c00289{left:248.730667pt;}
.x8_c00289{left:265.093333pt;}
.xb_c00289{left:305.413333pt;}
.x4_c00289{left:381.277333pt;}
.x5_c00289{left:397.600000pt;}
.x9_c00289{left:448.824000pt;}
.xa_c00289{left:465.146667pt;}
.x2_c00289{left:673.253333pt;}
}





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

.ir_c00290:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00290;src:url('chunks/assets/font_03ae7be95fb211c1d9d1c20a.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_f97cba94d0e87d1047a409e5.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00290;src:url('chunks/assets/font_5f384968584f589658988f87.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;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_c00290;src:url('chunks/assets/font_ba8ed8e2b7b9be3b4f8697ae.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00290;src:url('chunks/assets/font_687e4ac0d12302208fdbd1b0.woff2')format("woff");}.ff6_c00290{font-family:ff6_c00290;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls3_c00290{letter-spacing:-0.486600px;}
.ls2_c00290{letter-spacing:0.000000px;}
.ls0_c00290{letter-spacing:0.120000px;}
.ls1_c00290{letter-spacing:0.720000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00290{word-spacing:-72.000000px;}
.ws0_c00290{word-spacing:-40.608000px;}
.ws1_c00290{word-spacing:-18.000000px;}
.ws3_c00290{word-spacing:-15.120000px;}
.ws4_c00290{word-spacing:-14.633400px;}
.ws5_c00290{word-spacing:0.000000px;}
._2_c00290{margin-left:-2.736000px;}
._1_c00290{margin-left:-1.296000px;}
._0_c00290{width:1.080000px;}
._4_c00290{width:2.232000px;}
._15_c00290{width:3.240000px;}
._3_c00290{width:4.248000px;}
._f_c00290{width:5.760000px;}
._5_c00290{width:7.560000px;}
._6_c00290{width:9.288000px;}
._11_c00290{width:10.656000px;}
._7_c00290{width:12.168000px;}
._9_c00290{width:14.184000px;}
._a_c00290{width:15.264000px;}
._b_c00290{width:16.991976px;}
._10_c00290{width:21.528000px;}
._e_c00290{width:22.752000px;}
._c_c00290{width:23.832000px;}
._d_c00290{width:24.912000px;}
._14_c00290{width:44.352000px;}
._12_c00290{width:45.432000px;}
._13_c00290{width:47.268000px;}
._8_c00290{width:186.492024px;}
.fc0_c00290{color:rgb(0,0,0);}
.fs2_c00290{font-size:38.880000px;}
.fs1_c00290{font-size:47.520000px;}
.fs3_c00290{font-size:60.480000px;}
.fs0_c00290{font-size:72.000000px;}
.y0_c00290{bottom:0.000000px;}
.y3_c00290{bottom:4.320000px;}
.y6_c00290{bottom:4.680000px;}
.y5_c00290{bottom:25.200000px;}
.y4_c00290{bottom:32.040000px;}
.y1_c00290{bottom:57.240000px;}
.y31_c00290{bottom:130.716000px;}
.y30_c00290{bottom:137.556000px;}
.y2f_c00290{bottom:147.996000px;}
.y2e_c00290{bottom:154.830000px;}
.y2d_c00290{bottom:165.270000px;}
.y2c_c00290{bottom:172.110000px;}
.y2b_c00290{bottom:182.550000px;}
.y2a_c00290{bottom:189.390000px;}
.y29_c00290{bottom:200.190000px;}
.y28_c00290{bottom:221.790000px;}
.y27_c00290{bottom:252.795000px;}
.y26_c00290{bottom:283.755000px;}
.y25_c00290{bottom:314.715000px;}
.y24_c00290{bottom:346.035000px;}
.y23_c00290{bottom:377.025000px;}
.y22_c00290{bottom:407.985000px;}
.y21_c00290{bottom:438.945000px;}
.y1f_c00290{bottom:469.905000px;}
.y20_c00290{bottom:478.230000px;}
.y1e_c00290{bottom:501.270000px;}
.y1d_c00290{bottom:532.230000px;}
.y1c_c00290{bottom:563.190000px;}
.y1b_c00290{bottom:594.150000px;}
.y1a_c00290{bottom:625.500000px;}
.y19_c00290{bottom:665.460000px;}
.y18_c00290{bottom:696.420000px;}
.y17_c00290{bottom:727.410000px;}
.y16_c00290{bottom:758.730000px;}
.y14_c00290{bottom:789.690000px;}
.y15_c00290{bottom:797.970000px;}
.y12_c00290{bottom:820.650000px;}
.y13_c00290{bottom:828.930000px;}
.y11_c00290{bottom:851.655000px;}
.y10_c00290{bottom:882.975000px;}
.ye_c00290{bottom:913.935000px;}
.yf_c00290{bottom:922.215000px;}
.yd_c00290{bottom:944.895000px;}
.yc_c00290{bottom:975.885000px;}
.yb_c00290{bottom:1016.205000px;}
.ya_c00290{bottom:1047.165000px;}
.y9_c00290{bottom:1078.125000px;}
.y8_c00290{bottom:1109.130000px;}
.y7_c00290{bottom:1140.450000px;}
.y2_c00290{bottom:1189.050000px;}
.h3_c00290{height:20.550000px;}
.hb_c00290{height:34.855313px;}
.h4_c00290{height:41.395500px;}
.h9_c00290{height:46.615078px;}
.h7_c00290{height:46.638281px;}
.hc_c00290{height:54.514688px;}
.h2_c00290{height:64.546875px;}
.h8_c00290{height:64.898438px;}
.ha_c00290{height:70.628906px;}
.h5_c00290{height:70.664062px;}
.h6_c00290{height:1262.875500px;}
.h0_c00290{height:1262.880000px;}
.h1_c00290{height:1263.000000px;}
.w2_c00290{width:8.265000px;}
.w3_c00290{width:638.145000px;}
.w1_c00290{width:892.500000px;}
.w4_c00290{width:892.797000px;}
.w0_c00290{width:892.800000px;}
.x0_c00290{left:0.000000px;}
.x3_c00290{left:127.534500px;}
.xc_c00290{left:142.632000px;}
.x1_c00290{left:154.515000px;}
.x8_c00290{left:209.622000px;}
.x4_c00290{left:218.622000px;}
.x6_c00290{left:220.062000px;}
.x9_c00290{left:227.985000px;}
.x5_c00290{left:236.985000px;}
.x7_c00290{left:238.425000px;}
.xa_c00290{left:256.425000px;}
.xb_c00290{left:343.590000px;}
.x2_c00290{left:757.410000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls3_c00290{letter-spacing:-0.432533pt;}
.ls2_c00290{letter-spacing:0.000000pt;}
.ls0_c00290{letter-spacing:0.106667pt;}
.ls1_c00290{letter-spacing:0.640000pt;}
.ws2_c00290{word-spacing:-64.000000pt;}
.ws0_c00290{word-spacing:-36.096000pt;}
.ws1_c00290{word-spacing:-16.000000pt;}
.ws3_c00290{word-spacing:-13.440000pt;}
.ws4_c00290{word-spacing:-13.007467pt;}
.ws5_c00290{word-spacing:0.000000pt;}
._2_c00290{margin-left:-2.432000pt;}
._1_c00290{margin-left:-1.152000pt;}
._0_c00290{width:0.960000pt;}
._4_c00290{width:1.984000pt;}
._15_c00290{width:2.880000pt;}
._3_c00290{width:3.776000pt;}
._f_c00290{width:5.120000pt;}
._5_c00290{width:6.720000pt;}
._6_c00290{width:8.256000pt;}
._11_c00290{width:9.472000pt;}
._7_c00290{width:10.816000pt;}
._9_c00290{width:12.608000pt;}
._a_c00290{width:13.568000pt;}
._b_c00290{width:15.103979pt;}
._10_c00290{width:19.136000pt;}
._e_c00290{width:20.224000pt;}
._c_c00290{width:21.184000pt;}
._d_c00290{width:22.144000pt;}
._14_c00290{width:39.424000pt;}
._12_c00290{width:40.384000pt;}
._13_c00290{width:42.016000pt;}
._8_c00290{width:165.770688pt;}
.fs2_c00290{font-size:34.560000pt;}
.fs1_c00290{font-size:42.240000pt;}
.fs3_c00290{font-size:53.760000pt;}
.fs0_c00290{font-size:64.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y3_c00290{bottom:3.840000pt;}
.y6_c00290{bottom:4.160000pt;}
.y5_c00290{bottom:22.400000pt;}
.y4_c00290{bottom:28.480000pt;}
.y1_c00290{bottom:50.880000pt;}
.y31_c00290{bottom:116.192000pt;}
.y30_c00290{bottom:122.272000pt;}
.y2f_c00290{bottom:131.552000pt;}
.y2e_c00290{bottom:137.626667pt;}
.y2d_c00290{bottom:146.906667pt;}
.y2c_c00290{bottom:152.986667pt;}
.y2b_c00290{bottom:162.266667pt;}
.y2a_c00290{bottom:168.346667pt;}
.y29_c00290{bottom:177.946667pt;}
.y28_c00290{bottom:197.146667pt;}
.y27_c00290{bottom:224.706667pt;}
.y26_c00290{bottom:252.226667pt;}
.y25_c00290{bottom:279.746667pt;}
.y24_c00290{bottom:307.586667pt;}
.y23_c00290{bottom:335.133333pt;}
.y22_c00290{bottom:362.653333pt;}
.y21_c00290{bottom:390.173333pt;}
.y1f_c00290{bottom:417.693333pt;}
.y20_c00290{bottom:425.093333pt;}
.y1e_c00290{bottom:445.573333pt;}
.y1d_c00290{bottom:473.093333pt;}
.y1c_c00290{bottom:500.613333pt;}
.y1b_c00290{bottom:528.133333pt;}
.y1a_c00290{bottom:556.000000pt;}
.y19_c00290{bottom:591.520000pt;}
.y18_c00290{bottom:619.040000pt;}
.y17_c00290{bottom:646.586667pt;}
.y16_c00290{bottom:674.426667pt;}
.y14_c00290{bottom:701.946667pt;}
.y15_c00290{bottom:709.306667pt;}
.y12_c00290{bottom:729.466667pt;}
.y13_c00290{bottom:736.826667pt;}
.y11_c00290{bottom:757.026667pt;}
.y10_c00290{bottom:784.866667pt;}
.ye_c00290{bottom:812.386667pt;}
.yf_c00290{bottom:819.746667pt;}
.yd_c00290{bottom:839.906667pt;}
.yc_c00290{bottom:867.453333pt;}
.yb_c00290{bottom:903.293333pt;}
.ya_c00290{bottom:930.813333pt;}
.y9_c00290{bottom:958.333333pt;}
.y8_c00290{bottom:985.893333pt;}
.y7_c00290{bottom:1013.733333pt;}
.y2_c00290{bottom:1056.933333pt;}
.h3_c00290{height:18.266667pt;}
.hb_c00290{height:30.982500pt;}
.h4_c00290{height:36.796000pt;}
.h9_c00290{height:41.435625pt;}
.h7_c00290{height:41.456250pt;}
.hc_c00290{height:48.457500pt;}
.h2_c00290{height:57.375000pt;}
.h8_c00290{height:57.687500pt;}
.ha_c00290{height:62.781250pt;}
.h5_c00290{height:62.812500pt;}
.h6_c00290{height:1122.556000pt;}
.h0_c00290{height:1122.560000pt;}
.h1_c00290{height:1122.666667pt;}
.w2_c00290{width:7.346667pt;}
.w3_c00290{width:567.240000pt;}
.w1_c00290{width:793.333333pt;}
.w4_c00290{width:793.597333pt;}
.w0_c00290{width:793.600000pt;}
.x0_c00290{left:0.000000pt;}
.x3_c00290{left:113.364000pt;}
.xc_c00290{left:126.784000pt;}
.x1_c00290{left:137.346667pt;}
.x8_c00290{left:186.330667pt;}
.x4_c00290{left:194.330667pt;}
.x6_c00290{left:195.610667pt;}
.x9_c00290{left:202.653333pt;}
.x5_c00290{left:210.653333pt;}
.x7_c00290{left:211.933333pt;}
.xa_c00290{left:227.933333pt;}
.xb_c00290{left:305.413333pt;}
.x2_c00290{left:673.253333pt;}
}





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

.ir_c00291:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00291;src:url('chunks/assets/font_4a056728ad74bad911c0aa74.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_d519e166ac63e940ce75a2fc.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_97cc9b25fe7a9f2bd5f665d2.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_2a15a4304173c4a42973ffae.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00291;src:url('chunks/assets/font_d813ee7d1f706c987ae4e0b0.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;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_c00291;src:url('chunks/assets/font_80e37e26251a538204939259.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls5_c00291{letter-spacing:0.000000px;}
.ls6_c00291{letter-spacing:0.313800px;}
.ls7_c00291{letter-spacing:0.529800px;}
.ls3_c00291{letter-spacing:0.697103px;}
.ls2_c00291{letter-spacing:0.720000px;}
.ls4_c00291{letter-spacing:0.740160px;}
.ls1_c00291{letter-spacing:1.440000px;}
.ls0_c00291{letter-spacing:12.240000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:-72.000000px;}
.ws3_c00291{word-spacing:-60.480000px;}
.ws1_c00291{word-spacing:-18.000000px;}
.ws4_c00291{word-spacing:-15.433800px;}
.ws2_c00291{word-spacing:-15.120000px;}
.ws5_c00291{word-spacing:0.000000px;}
._1_c00291{margin-left:-2.592000px;}
._3_c00291{margin-left:-1.296000px;}
._0_c00291{width:1.512000px;}
._2_c00291{width:2.952000px;}
._f_c00291{width:4.032000px;}
._10_c00291{width:5.040000px;}
._d_c00291{width:6.480000px;}
._11_c00291{width:7.528199px;}
._e_c00291{width:8.712000px;}
._c_c00291{width:10.824000px;}
._b_c00291{width:12.144000px;}
._5_c00291{width:13.608000px;}
._4_c00291{width:14.760000px;}
._6_c00291{width:16.632000px;}
._7_c00291{width:20.460000px;}
._a_c00291{width:24.696000px;}
._9_c00291{width:25.704000px;}
._8_c00291{width:186.492024px;}
.fc0_c00291{color:rgb(0,0,0);}
.fs1_c00291{font-size:60.480000px;}
.fs0_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y3_c00291{bottom:4.320000px;}
.y6_c00291{bottom:4.680000px;}
.y5_c00291{bottom:25.200000px;}
.y4_c00291{bottom:32.040000px;}
.y1_c00291{bottom:57.240000px;}
.y27_c00291{bottom:140.796000px;}
.y26_c00291{bottom:178.590000px;}
.y25_c00291{bottom:204.510000px;}
.y24_c00291{bottom:230.430000px;}
.y23_c00291{bottom:256.395000px;}
.y22_c00291{bottom:291.315000px;}
.y21_c00291{bottom:317.235000px;}
.y20_c00291{bottom:342.795000px;}
.y1f_c00291{bottom:368.745000px;}
.y1e_c00291{bottom:394.665000px;}
.y1d_c00291{bottom:420.585000px;}
.y1c_c00291{bottom:446.505000px;}
.y1b_c00291{bottom:472.425000px;}
.y1a_c00291{bottom:498.390000px;}
.y19_c00291{bottom:524.310000px;}
.y18_c00291{bottom:573.270000px;}
.y17_c00291{bottom:625.500000px;}
.y16_c00291{bottom:665.460000px;}
.y15_c00291{bottom:696.420000px;}
.y14_c00291{bottom:727.410000px;}
.y13_c00291{bottom:758.730000px;}
.y12_c00291{bottom:789.690000px;}
.y11_c00291{bottom:820.650000px;}
.y10_c00291{bottom:851.655000px;}
.yf_c00291{bottom:882.975000px;}
.ye_c00291{bottom:913.935000px;}
.yd_c00291{bottom:944.895000px;}
.yc_c00291{bottom:975.885000px;}
.yb_c00291{bottom:1016.205000px;}
.ya_c00291{bottom:1047.165000px;}
.y9_c00291{bottom:1078.125000px;}
.y8_c00291{bottom:1109.130000px;}
.y7_c00291{bottom:1140.450000px;}
.y2_c00291{bottom:1189.050000px;}
.h3_c00291{height:20.550000px;}
.h4_c00291{height:41.395500px;}
.h8_c00291{height:59.328281px;}
.h7_c00291{height:59.357813px;}
.h2_c00291{height:64.546875px;}
.h6_c00291{height:70.628906px;}
.h5_c00291{height:70.664062px;}
.h0_c00291{height:1262.880000px;}
.h1_c00291{height:1263.000000px;}
.w2_c00291{width:8.265000px;}
.w3_c00291{width:638.145000px;}
.w1_c00291{width:892.500000px;}
.w0_c00291{width:892.800000px;}
.x0_c00291{left:0.000000px;}
.x3_c00291{left:127.534500px;}
.x1_c00291{left:154.515000px;}
.x5_c00291{left:169.995000px;}
.x4_c00291{left:180.795000px;}
.x2_c00291{left:757.410000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls5_c00291{letter-spacing:0.000000pt;}
.ls6_c00291{letter-spacing:0.278933pt;}
.ls7_c00291{letter-spacing:0.470933pt;}
.ls3_c00291{letter-spacing:0.619647pt;}
.ls2_c00291{letter-spacing:0.640000pt;}
.ls4_c00291{letter-spacing:0.657920pt;}
.ls1_c00291{letter-spacing:1.280000pt;}
.ls0_c00291{letter-spacing:10.880000pt;}
.ws0_c00291{word-spacing:-64.000000pt;}
.ws3_c00291{word-spacing:-53.760000pt;}
.ws1_c00291{word-spacing:-16.000000pt;}
.ws4_c00291{word-spacing:-13.718933pt;}
.ws2_c00291{word-spacing:-13.440000pt;}
.ws5_c00291{word-spacing:0.000000pt;}
._1_c00291{margin-left:-2.304000pt;}
._3_c00291{margin-left:-1.152000pt;}
._0_c00291{width:1.344000pt;}
._2_c00291{width:2.624000pt;}
._f_c00291{width:3.584000pt;}
._10_c00291{width:4.480000pt;}
._d_c00291{width:5.760000pt;}
._11_c00291{width:6.691732pt;}
._e_c00291{width:7.744000pt;}
._c_c00291{width:9.621333pt;}
._b_c00291{width:10.794667pt;}
._5_c00291{width:12.096000pt;}
._4_c00291{width:13.120000pt;}
._6_c00291{width:14.784000pt;}
._7_c00291{width:18.186667pt;}
._a_c00291{width:21.952000pt;}
._9_c00291{width:22.848000pt;}
._8_c00291{width:165.770688pt;}
.fs1_c00291{font-size:53.760000pt;}
.fs0_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y3_c00291{bottom:3.840000pt;}
.y6_c00291{bottom:4.160000pt;}
.y5_c00291{bottom:22.400000pt;}
.y4_c00291{bottom:28.480000pt;}
.y1_c00291{bottom:50.880000pt;}
.y27_c00291{bottom:125.152000pt;}
.y26_c00291{bottom:158.746667pt;}
.y25_c00291{bottom:181.786667pt;}
.y24_c00291{bottom:204.826667pt;}
.y23_c00291{bottom:227.906667pt;}
.y22_c00291{bottom:258.946667pt;}
.y21_c00291{bottom:281.986667pt;}
.y20_c00291{bottom:304.706667pt;}
.y1f_c00291{bottom:327.773333pt;}
.y1e_c00291{bottom:350.813333pt;}
.y1d_c00291{bottom:373.853333pt;}
.y1c_c00291{bottom:396.893333pt;}
.y1b_c00291{bottom:419.933333pt;}
.y1a_c00291{bottom:443.013333pt;}
.y19_c00291{bottom:466.053333pt;}
.y18_c00291{bottom:509.573333pt;}
.y17_c00291{bottom:556.000000pt;}
.y16_c00291{bottom:591.520000pt;}
.y15_c00291{bottom:619.040000pt;}
.y14_c00291{bottom:646.586667pt;}
.y13_c00291{bottom:674.426667pt;}
.y12_c00291{bottom:701.946667pt;}
.y11_c00291{bottom:729.466667pt;}
.y10_c00291{bottom:757.026667pt;}
.yf_c00291{bottom:784.866667pt;}
.ye_c00291{bottom:812.386667pt;}
.yd_c00291{bottom:839.906667pt;}
.yc_c00291{bottom:867.453333pt;}
.yb_c00291{bottom:903.293333pt;}
.ya_c00291{bottom:930.813333pt;}
.y9_c00291{bottom:958.333333pt;}
.y8_c00291{bottom:985.893333pt;}
.y7_c00291{bottom:1013.733333pt;}
.y2_c00291{bottom:1056.933333pt;}
.h3_c00291{height:18.266667pt;}
.h4_c00291{height:36.796000pt;}
.h8_c00291{height:52.736250pt;}
.h7_c00291{height:52.762500pt;}
.h2_c00291{height:57.375000pt;}
.h6_c00291{height:62.781250pt;}
.h5_c00291{height:62.812500pt;}
.h0_c00291{height:1122.560000pt;}
.h1_c00291{height:1122.666667pt;}
.w2_c00291{width:7.346667pt;}
.w3_c00291{width:567.240000pt;}
.w1_c00291{width:793.333333pt;}
.w0_c00291{width:793.600000pt;}
.x0_c00291{left:0.000000pt;}
.x3_c00291{left:113.364000pt;}
.x1_c00291{left:137.346667pt;}
.x5_c00291{left:151.106667pt;}
.x4_c00291{left:160.706667pt;}
.x2_c00291{left:673.253333pt;}
}





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

.ir_c00292:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00292;src:url('chunks/assets/font_c89d9525b242984a2914e3eb.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_951af47bd58bdf2319e93018.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_eb776df460de36c44256f932.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_55d49d1946f041f38b5f66f9.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_ccb99b17215961999a03e21d.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00292;src:url('chunks/assets/font_83da50f8be4088ef69956c76.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls12_c00292{letter-spacing:-2.088000px;}
.ls1b_c00292{letter-spacing:-1.128000px;}
.ls19_c00292{letter-spacing:-0.532800px;}
.ls18_c00292{letter-spacing:-0.486600px;}
.ls17_c00292{letter-spacing:-0.241800px;}
.ls16_c00292{letter-spacing:-0.144000px;}
.ls1a_c00292{letter-spacing:-0.008400px;}
.ls10_c00292{letter-spacing:0.000000px;}
.ls14_c00292{letter-spacing:0.072000px;}
.lsb_c00292{letter-spacing:0.120000px;}
.ls9_c00292{letter-spacing:0.144000px;}
.ls13_c00292{letter-spacing:0.288000px;}
.ls11_c00292{letter-spacing:0.504000px;}
.ls15_c00292{letter-spacing:0.576000px;}
.ls1_c00292{letter-spacing:0.708480px;}
.lsd_c00292{letter-spacing:0.708604px;}
.ls2_c00292{letter-spacing:0.720000px;}
.lsc_c00292{letter-spacing:0.740160px;}
.lsf_c00292{letter-spacing:0.740188px;}
.lse_c00292{letter-spacing:0.740203px;}
.ls8_c00292{letter-spacing:1.440000px;}
.lsa_c00292{letter-spacing:2.160000px;}
.ls4_c00292{letter-spacing:5.040000px;}
.ls3_c00292{letter-spacing:7.920000px;}
.ls7_c00292{letter-spacing:12.240000px;}
.ls5_c00292{letter-spacing:13.680000px;}
.ls6_c00292{letter-spacing:13.692000px;}
.ls0_c00292{letter-spacing:186.492000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00292{word-spacing:-60.480000px;}
.ws1_c00292{word-spacing:-18.504000px;}
.ws3_c00292{word-spacing:-18.072000px;}
.ws0_c00292{word-spacing:-18.000000px;}
.ws4_c00292{word-spacing:-17.856000px;}
.ws2_c00292{word-spacing:-15.912000px;}
.wsa_c00292{word-spacing:-15.840000px;}
.ws5_c00292{word-spacing:-15.120000px;}
.ws9_c00292{word-spacing:-15.111600px;}
.wsc_c00292{word-spacing:-14.878200px;}
.ws7_c00292{word-spacing:-14.633400px;}
.ws8_c00292{word-spacing:-14.587200px;}
.wsb_c00292{word-spacing:-13.992000px;}
.wsd_c00292{word-spacing:0.000000px;}
._5_c00292{margin-left:-3.384000px;}
._3_c00292{margin-left:-2.376000px;}
._0_c00292{margin-left:-1.008000px;}
._2_c00292{width:1.080000px;}
._4_c00292{width:2.448000px;}
._a_c00292{width:4.487904px;}
._f_c00292{width:5.544288px;}
._e_c00292{width:7.272000px;}
._b_c00292{width:9.000000px;}
._c_c00292{width:10.440000px;}
._d_c00292{width:11.664000px;}
._10_c00292{width:13.044024px;}
._1_c00292{width:14.256000px;}
._11_c00292{width:15.840000px;}
._13_c00292{width:16.894806px;}
._7_c00292{width:21.756024px;}
._8_c00292{width:23.112000px;}
._9_c00292{width:24.480000px;}
._6_c00292{width:26.856000px;}
._12_c00292{width:550.080000px;}
.fc0_c00292{color:rgb(0,0,0);}
.fs3_c00292{font-size:38.880000px;}
.fs1_c00292{font-size:47.520000px;}
.fs2_c00292{font-size:60.480000px;}
.fs0_c00292{font-size:72.000000px;}
.fs4_c00292{font-size:96.480000px;}
.y0_c00292{bottom:0.000000px;}
.y3_c00292{bottom:4.320000px;}
.y6_c00292{bottom:4.680000px;}
.y5_c00292{bottom:25.200000px;}
.y4_c00292{bottom:32.040000px;}
.y1_c00292{bottom:57.240000px;}
.y31_c00292{bottom:130.716000px;}
.y30_c00292{bottom:147.996000px;}
.y2f_c00292{bottom:165.270000px;}
.y2e_c00292{bottom:182.550000px;}
.y2d_c00292{bottom:199.830000px;}
.y2c_c00292{bottom:216.750000px;}
.y2b_c00292{bottom:223.590000px;}
.y2a_c00292{bottom:234.075000px;}
.y29_c00292{bottom:251.355000px;}
.y28_c00292{bottom:268.635000px;}
.y27_c00292{bottom:285.915000px;}
.y26_c00292{bottom:303.195000px;}
.y25_c00292{bottom:320.475000px;}
.y24_c00292{bottom:327.315000px;}
.y23_c00292{bottom:337.755000px;}
.y22_c00292{bottom:355.065000px;}
.y21_c00292{bottom:361.905000px;}
.y20_c00292{bottom:372.705000px;}
.y1f_c00292{bottom:454.065000px;}
.y1e_c00292{bottom:482.910000px;}
.y1d_c00292{bottom:517.470000px;}
.y1c_c00292{bottom:552.390000px;}
.y1b_c00292{bottom:578.310000px;}
.y1a_c00292{bottom:604.260000px;}
.y19_c00292{bottom:653.580000px;}
.y18_c00292{bottom:705.420000px;}
.y17_c00292{bottom:736.410000px;}
.y16_c00292{bottom:767.730000px;}
.y15_c00292{bottom:798.690000px;}
.y14_c00292{bottom:829.650000px;}
.y12_c00292{bottom:860.655000px;}
.y13_c00292{bottom:868.935000px;}
.y11_c00292{bottom:891.975000px;}
.y10_c00292{bottom:922.935000px;}
.yf_c00292{bottom:953.895000px;}
.yd_c00292{bottom:984.885000px;}
.ye_c00292{bottom:993.165000px;}
.yc_c00292{bottom:1016.205000px;}
.yb_c00292{bottom:1047.165000px;}
.ya_c00292{bottom:1078.125000px;}
.y9_c00292{bottom:1109.130000px;}
.y7_c00292{bottom:1140.450000px;}
.y8_c00292{bottom:1148.730000px;}
.y2_c00292{bottom:1189.050000px;}
.h3_c00292{height:20.550000px;}
.hc_c00292{height:38.158594px;}
.h4_c00292{height:41.395500px;}
.h7_c00292{height:46.615078px;}
.h9_c00292{height:46.638281px;}
.he_c00292{height:54.219375px;}
.hb_c00292{height:59.328281px;}
.ha_c00292{height:59.357813px;}
.h2_c00292{height:64.546875px;}
.h5_c00292{height:70.628906px;}
.h8_c00292{height:70.664062px;}
.hd_c00292{height:94.689844px;}
.h6_c00292{height:1262.875500px;}
.h0_c00292{height:1262.880000px;}
.h1_c00292{height:1263.000000px;}
.w2_c00292{width:8.265000px;}
.w3_c00292{width:638.145000px;}
.w1_c00292{width:892.500000px;}
.w4_c00292{width:892.797000px;}
.w0_c00292{width:892.800000px;}
.x0_c00292{left:0.000000px;}
.x3_c00292{left:127.534500px;}
.xc_c00292{left:142.632000px;}
.x1_c00292{left:154.515000px;}
.xa_c00292{left:169.995000px;}
.x6_c00292{left:206.352000px;}
.x7_c00292{left:224.745000px;}
.x4_c00292{left:255.702000px;}
.x5_c00292{left:274.065000px;}
.xb_c00292{left:343.590000px;}
.x8_c00292{left:442.257000px;}
.x9_c00292{left:460.620000px;}
.x2_c00292{left:757.410000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls12_c00292{letter-spacing:-1.856000pt;}
.ls1b_c00292{letter-spacing:-1.002667pt;}
.ls19_c00292{letter-spacing:-0.473600pt;}
.ls18_c00292{letter-spacing:-0.432533pt;}
.ls17_c00292{letter-spacing:-0.214933pt;}
.ls16_c00292{letter-spacing:-0.128000pt;}
.ls1a_c00292{letter-spacing:-0.007467pt;}
.ls10_c00292{letter-spacing:0.000000pt;}
.ls14_c00292{letter-spacing:0.064000pt;}
.lsb_c00292{letter-spacing:0.106667pt;}
.ls9_c00292{letter-spacing:0.128000pt;}
.ls13_c00292{letter-spacing:0.256000pt;}
.ls11_c00292{letter-spacing:0.448000pt;}
.ls15_c00292{letter-spacing:0.512000pt;}
.ls1_c00292{letter-spacing:0.629760pt;}
.lsd_c00292{letter-spacing:0.629870pt;}
.ls2_c00292{letter-spacing:0.640000pt;}
.lsc_c00292{letter-spacing:0.657920pt;}
.lsf_c00292{letter-spacing:0.657945pt;}
.lse_c00292{letter-spacing:0.657958pt;}
.ls8_c00292{letter-spacing:1.280000pt;}
.lsa_c00292{letter-spacing:1.920000pt;}
.ls4_c00292{letter-spacing:4.480000pt;}
.ls3_c00292{letter-spacing:7.040000pt;}
.ls7_c00292{letter-spacing:10.880000pt;}
.ls5_c00292{letter-spacing:12.160000pt;}
.ls6_c00292{letter-spacing:12.170667pt;}
.ls0_c00292{letter-spacing:165.770667pt;}
.ws6_c00292{word-spacing:-53.760000pt;}
.ws1_c00292{word-spacing:-16.448000pt;}
.ws3_c00292{word-spacing:-16.064000pt;}
.ws0_c00292{word-spacing:-16.000000pt;}
.ws4_c00292{word-spacing:-15.872000pt;}
.ws2_c00292{word-spacing:-14.144000pt;}
.wsa_c00292{word-spacing:-14.080000pt;}
.ws5_c00292{word-spacing:-13.440000pt;}
.ws9_c00292{word-spacing:-13.432533pt;}
.wsc_c00292{word-spacing:-13.225067pt;}
.ws7_c00292{word-spacing:-13.007467pt;}
.ws8_c00292{word-spacing:-12.966400pt;}
.wsb_c00292{word-spacing:-12.437333pt;}
.wsd_c00292{word-spacing:0.000000pt;}
._5_c00292{margin-left:-3.008000pt;}
._3_c00292{margin-left:-2.112000pt;}
._0_c00292{margin-left:-0.896000pt;}
._2_c00292{width:0.960000pt;}
._4_c00292{width:2.176000pt;}
._a_c00292{width:3.989248pt;}
._f_c00292{width:4.928256pt;}
._e_c00292{width:6.464000pt;}
._b_c00292{width:8.000000pt;}
._c_c00292{width:9.280000pt;}
._d_c00292{width:10.368000pt;}
._10_c00292{width:11.594688pt;}
._1_c00292{width:12.672000pt;}
._11_c00292{width:14.080000pt;}
._13_c00292{width:15.017605pt;}
._7_c00292{width:19.338688pt;}
._8_c00292{width:20.544000pt;}
._9_c00292{width:21.760000pt;}
._6_c00292{width:23.872000pt;}
._12_c00292{width:488.960000pt;}
.fs3_c00292{font-size:34.560000pt;}
.fs1_c00292{font-size:42.240000pt;}
.fs2_c00292{font-size:53.760000pt;}
.fs0_c00292{font-size:64.000000pt;}
.fs4_c00292{font-size:85.760000pt;}
.y0_c00292{bottom:0.000000pt;}
.y3_c00292{bottom:3.840000pt;}
.y6_c00292{bottom:4.160000pt;}
.y5_c00292{bottom:22.400000pt;}
.y4_c00292{bottom:28.480000pt;}
.y1_c00292{bottom:50.880000pt;}
.y31_c00292{bottom:116.192000pt;}
.y30_c00292{bottom:131.552000pt;}
.y2f_c00292{bottom:146.906667pt;}
.y2e_c00292{bottom:162.266667pt;}
.y2d_c00292{bottom:177.626667pt;}
.y2c_c00292{bottom:192.666667pt;}
.y2b_c00292{bottom:198.746667pt;}
.y2a_c00292{bottom:208.066667pt;}
.y29_c00292{bottom:223.426667pt;}
.y28_c00292{bottom:238.786667pt;}
.y27_c00292{bottom:254.146667pt;}
.y26_c00292{bottom:269.506667pt;}
.y25_c00292{bottom:284.866667pt;}
.y24_c00292{bottom:290.946667pt;}
.y23_c00292{bottom:300.226667pt;}
.y22_c00292{bottom:315.613333pt;}
.y21_c00292{bottom:321.693333pt;}
.y20_c00292{bottom:331.293333pt;}
.y1f_c00292{bottom:403.613333pt;}
.y1e_c00292{bottom:429.253333pt;}
.y1d_c00292{bottom:459.973333pt;}
.y1c_c00292{bottom:491.013333pt;}
.y1b_c00292{bottom:514.053333pt;}
.y1a_c00292{bottom:537.120000pt;}
.y19_c00292{bottom:580.960000pt;}
.y18_c00292{bottom:627.040000pt;}
.y17_c00292{bottom:654.586667pt;}
.y16_c00292{bottom:682.426667pt;}
.y15_c00292{bottom:709.946667pt;}
.y14_c00292{bottom:737.466667pt;}
.y12_c00292{bottom:765.026667pt;}
.y13_c00292{bottom:772.386667pt;}
.y11_c00292{bottom:792.866667pt;}
.y10_c00292{bottom:820.386667pt;}
.yf_c00292{bottom:847.906667pt;}
.yd_c00292{bottom:875.453333pt;}
.ye_c00292{bottom:882.813333pt;}
.yc_c00292{bottom:903.293333pt;}
.yb_c00292{bottom:930.813333pt;}
.ya_c00292{bottom:958.333333pt;}
.y9_c00292{bottom:985.893333pt;}
.y7_c00292{bottom:1013.733333pt;}
.y8_c00292{bottom:1021.093333pt;}
.y2_c00292{bottom:1056.933333pt;}
.h3_c00292{height:18.266667pt;}
.hc_c00292{height:33.918750pt;}
.h4_c00292{height:36.796000pt;}
.h7_c00292{height:41.435625pt;}
.h9_c00292{height:41.456250pt;}
.he_c00292{height:48.195000pt;}
.hb_c00292{height:52.736250pt;}
.ha_c00292{height:52.762500pt;}
.h2_c00292{height:57.375000pt;}
.h5_c00292{height:62.781250pt;}
.h8_c00292{height:62.812500pt;}
.hd_c00292{height:84.168750pt;}
.h6_c00292{height:1122.556000pt;}
.h0_c00292{height:1122.560000pt;}
.h1_c00292{height:1122.666667pt;}
.w2_c00292{width:7.346667pt;}
.w3_c00292{width:567.240000pt;}
.w1_c00292{width:793.333333pt;}
.w4_c00292{width:793.597333pt;}
.w0_c00292{width:793.600000pt;}
.x0_c00292{left:0.000000pt;}
.x3_c00292{left:113.364000pt;}
.xc_c00292{left:126.784000pt;}
.x1_c00292{left:137.346667pt;}
.xa_c00292{left:151.106667pt;}
.x6_c00292{left:183.424000pt;}
.x7_c00292{left:199.773333pt;}
.x4_c00292{left:227.290667pt;}
.x5_c00292{left:243.613333pt;}
.xb_c00292{left:305.413333pt;}
.x8_c00292{left:393.117333pt;}
.x9_c00292{left:409.440000pt;}
.x2_c00292{left:673.253333pt;}
}





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

.ir_c00293:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00293;src:url('chunks/assets/font_822f32f92d31b74cf397df8c.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_c88490c2b5fe79c16eadf6c5.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_f1ee91479035c54384566843.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;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_c00293;src:url('chunks/assets/font_e7a335b0df42d5533cec4ce5.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00293;src:url('chunks/assets/font_34615d1a590d0fd31eb7fb14.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00293;src:url('chunks/assets/font_7924d6d5d400ea7b218bdc65.woff2')format("woff");}.ff6_c00293{font-family:ff6_c00293;line-height:1.104004;font-style:normal;font-weight: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_c00293;src:url('chunks/assets/font_f0b15e254d66a748b87739c5.woff2')format("woff");}.ff7_c00293{font-family:ff7_c00293;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00293{vertical-align:-27.360000px;}
.v0_c00293{vertical-align:0.000000px;}
.v1_c00293{vertical-align:27.360000px;}
.ls8_c00293{letter-spacing:-0.954000px;}
.ls6_c00293{letter-spacing:-0.486600px;}
.ls7_c00293{letter-spacing:-0.466800px;}
.ls5_c00293{letter-spacing:-0.337200px;}
.ls4_c00293{letter-spacing:0.000000px;}
.ls2_c00293{letter-spacing:0.302400px;}
.ls1_c00293{letter-spacing:0.720000px;}
.ls3_c00293{letter-spacing:12.240000px;}
.ls0_c00293{letter-spacing:38.160000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00293{word-spacing:-60.480000px;}
.ws0_c00293{word-spacing:-18.000000px;}
.ws1_c00293{word-spacing:-15.120000px;}
.ws3_c00293{word-spacing:-14.782800px;}
.ws4_c00293{word-spacing:-14.653200px;}
.ws5_c00293{word-spacing:-14.166000px;}
.ws6_c00293{word-spacing:0.000000px;}
._6_c00293{margin-left:-2.928048px;}
._3_c00293{margin-left:-1.224000px;}
._2_c00293{width:1.512000px;}
._7_c00293{width:2.808000px;}
._8_c00293{width:4.200096px;}
._9_c00293{width:5.592048px;}
._e_c00293{width:7.320048px;}
._11_c00293{width:8.663952px;}
._f_c00293{width:10.584000px;}
._10_c00293{width:11.712048px;}
._13_c00293{width:12.872225px;}
._b_c00293{width:14.760000px;}
._a_c00293{width:16.272000px;}
._12_c00293{width:19.260096px;}
._c_c00293{width:20.304000px;}
._d_c00293{width:22.008048px;}
._1_c00293{width:37.368000px;}
._5_c00293{width:38.580024px;}
._4_c00293{width:40.043976px;}
._0_c00293{width:186.492024px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs3_c00293{font-size:38.880000px;}
.fs1_c00293{font-size:47.520000px;}
.fs2_c00293{font-size:60.480000px;}
.fs0_c00293{font-size:72.000000px;}
.y0_c00293{bottom:0.000000px;}
.y3_c00293{bottom:4.320000px;}
.y6_c00293{bottom:4.680000px;}
.y5_c00293{bottom:25.200000px;}
.y4_c00293{bottom:32.040000px;}
.y1_c00293{bottom:57.240000px;}
.y30_c00293{bottom:130.716000px;}
.y2f_c00293{bottom:137.556000px;}
.y2e_c00293{bottom:147.996000px;}
.y2d_c00293{bottom:165.270000px;}
.y2c_c00293{bottom:182.550000px;}
.y2b_c00293{bottom:199.830000px;}
.y2a_c00293{bottom:216.750000px;}
.y29_c00293{bottom:223.590000px;}
.y28_c00293{bottom:234.075000px;}
.y27_c00293{bottom:251.355000px;}
.y26_c00293{bottom:268.635000px;}
.y25_c00293{bottom:275.475000px;}
.y24_c00293{bottom:286.635000px;}
.y22_c00293{bottom:350.355000px;}
.y23_c00293{bottom:358.665000px;}
.y21_c00293{bottom:381.345000px;}
.y20_c00293{bottom:412.665000px;}
.y1f_c00293{bottom:443.625000px;}
.y1e_c00293{bottom:474.585000px;}
.y1c_c00293{bottom:505.590000px;}
.y1d_c00293{bottom:513.870000px;}
.y1b_c00293{bottom:536.910000px;}
.y1a_c00293{bottom:567.870000px;}
.y19_c00293{bottom:605.700000px;}
.y18_c00293{bottom:631.620000px;}
.y17_c00293{bottom:657.540000px;}
.y16_c00293{bottom:692.100000px;}
.y15_c00293{bottom:718.020000px;}
.y14_c00293{bottom:743.970000px;}
.y13_c00293{bottom:769.890000px;}
.y12_c00293{bottom:795.810000px;}
.y11_c00293{bottom:821.730000px;}
.y10_c00293{bottom:871.095000px;}
.yf_c00293{bottom:922.935000px;}
.ye_c00293{bottom:953.895000px;}
.yd_c00293{bottom:984.885000px;}
.yb_c00293{bottom:1016.205000px;}
.yc_c00293{bottom:1024.485000px;}
.ya_c00293{bottom:1047.165000px;}
.y9_c00293{bottom:1078.125000px;}
.y8_c00293{bottom:1109.130000px;}
.y7_c00293{bottom:1140.450000px;}
.y2_c00293{bottom:1189.050000px;}
.h3_c00293{height:20.550000px;}
.ha_c00293{height:34.855313px;}
.h4_c00293{height:41.395500px;}
.h7_c00293{height:46.638281px;}
.hc_c00293{height:54.219375px;}
.hd_c00293{height:54.514688px;}
.h9_c00293{height:59.328281px;}
.h8_c00293{height:59.357813px;}
.hb_c00293{height:62.215313px;}
.h2_c00293{height:64.546875px;}
.h5_c00293{height:70.664062px;}
.h6_c00293{height:1262.875500px;}
.h0_c00293{height:1262.880000px;}
.h1_c00293{height:1263.000000px;}
.w2_c00293{width:8.265000px;}
.w3_c00293{width:638.145000px;}
.w1_c00293{width:892.500000px;}
.w4_c00293{width:892.797000px;}
.w0_c00293{width:892.800000px;}
.x0_c00293{left:0.000000px;}
.x3_c00293{left:127.534500px;}
.xc_c00293{left:142.632000px;}
.x1_c00293{left:154.515000px;}
.x6_c00293{left:169.995000px;}
.x7_c00293{left:274.782000px;}
.x8_c00293{left:293.190000px;}
.xb_c00293{left:343.590000px;}
.x9_c00293{left:568.692000px;}
.xa_c00293{left:587.055000px;}
.x4_c00293{left:747.327000px;}
.x2_c00293{left:757.410000px;}
.x5_c00293{left:765.690000px;}
@media print{
.v2_c00293{vertical-align:-24.320000pt;}
.v0_c00293{vertical-align:0.000000pt;}
.v1_c00293{vertical-align:24.320000pt;}
.ls8_c00293{letter-spacing:-0.848000pt;}
.ls6_c00293{letter-spacing:-0.432533pt;}
.ls7_c00293{letter-spacing:-0.414933pt;}
.ls5_c00293{letter-spacing:-0.299733pt;}
.ls4_c00293{letter-spacing:0.000000pt;}
.ls2_c00293{letter-spacing:0.268800pt;}
.ls1_c00293{letter-spacing:0.640000pt;}
.ls3_c00293{letter-spacing:10.880000pt;}
.ls0_c00293{letter-spacing:33.920000pt;}
.ws2_c00293{word-spacing:-53.760000pt;}
.ws0_c00293{word-spacing:-16.000000pt;}
.ws1_c00293{word-spacing:-13.440000pt;}
.ws3_c00293{word-spacing:-13.140267pt;}
.ws4_c00293{word-spacing:-13.025067pt;}
.ws5_c00293{word-spacing:-12.592000pt;}
.ws6_c00293{word-spacing:0.000000pt;}
._6_c00293{margin-left:-2.602709pt;}
._3_c00293{margin-left:-1.088000pt;}
._2_c00293{width:1.344000pt;}
._7_c00293{width:2.496000pt;}
._8_c00293{width:3.733419pt;}
._9_c00293{width:4.970709pt;}
._e_c00293{width:6.506709pt;}
._11_c00293{width:7.701291pt;}
._f_c00293{width:9.408000pt;}
._10_c00293{width:10.410709pt;}
._13_c00293{width:11.441978pt;}
._b_c00293{width:13.120000pt;}
._a_c00293{width:14.464000pt;}
._12_c00293{width:17.120085pt;}
._c_c00293{width:18.048000pt;}
._d_c00293{width:19.562709pt;}
._1_c00293{width:33.216000pt;}
._5_c00293{width:34.293355pt;}
._4_c00293{width:35.594645pt;}
._0_c00293{width:165.770688pt;}
.fs3_c00293{font-size:34.560000pt;}
.fs1_c00293{font-size:42.240000pt;}
.fs2_c00293{font-size:53.760000pt;}
.fs0_c00293{font-size:64.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y3_c00293{bottom:3.840000pt;}
.y6_c00293{bottom:4.160000pt;}
.y5_c00293{bottom:22.400000pt;}
.y4_c00293{bottom:28.480000pt;}
.y1_c00293{bottom:50.880000pt;}
.y30_c00293{bottom:116.192000pt;}
.y2f_c00293{bottom:122.272000pt;}
.y2e_c00293{bottom:131.552000pt;}
.y2d_c00293{bottom:146.906667pt;}
.y2c_c00293{bottom:162.266667pt;}
.y2b_c00293{bottom:177.626667pt;}
.y2a_c00293{bottom:192.666667pt;}
.y29_c00293{bottom:198.746667pt;}
.y28_c00293{bottom:208.066667pt;}
.y27_c00293{bottom:223.426667pt;}
.y26_c00293{bottom:238.786667pt;}
.y25_c00293{bottom:244.866667pt;}
.y24_c00293{bottom:254.786667pt;}
.y22_c00293{bottom:311.426667pt;}
.y23_c00293{bottom:318.813333pt;}
.y21_c00293{bottom:338.973333pt;}
.y20_c00293{bottom:366.813333pt;}
.y1f_c00293{bottom:394.333333pt;}
.y1e_c00293{bottom:421.853333pt;}
.y1c_c00293{bottom:449.413333pt;}
.y1d_c00293{bottom:456.773333pt;}
.y1b_c00293{bottom:477.253333pt;}
.y1a_c00293{bottom:504.773333pt;}
.y19_c00293{bottom:538.400000pt;}
.y18_c00293{bottom:561.440000pt;}
.y17_c00293{bottom:584.480000pt;}
.y16_c00293{bottom:615.200000pt;}
.y15_c00293{bottom:638.240000pt;}
.y14_c00293{bottom:661.306667pt;}
.y13_c00293{bottom:684.346667pt;}
.y12_c00293{bottom:707.386667pt;}
.y11_c00293{bottom:730.426667pt;}
.y10_c00293{bottom:774.306667pt;}
.yf_c00293{bottom:820.386667pt;}
.ye_c00293{bottom:847.906667pt;}
.yd_c00293{bottom:875.453333pt;}
.yb_c00293{bottom:903.293333pt;}
.yc_c00293{bottom:910.653333pt;}
.ya_c00293{bottom:930.813333pt;}
.y9_c00293{bottom:958.333333pt;}
.y8_c00293{bottom:985.893333pt;}
.y7_c00293{bottom:1013.733333pt;}
.y2_c00293{bottom:1056.933333pt;}
.h3_c00293{height:18.266667pt;}
.ha_c00293{height:30.982500pt;}
.h4_c00293{height:36.796000pt;}
.h7_c00293{height:41.456250pt;}
.hc_c00293{height:48.195000pt;}
.hd_c00293{height:48.457500pt;}
.h9_c00293{height:52.736250pt;}
.h8_c00293{height:52.762500pt;}
.hb_c00293{height:55.302500pt;}
.h2_c00293{height:57.375000pt;}
.h5_c00293{height:62.812500pt;}
.h6_c00293{height:1122.556000pt;}
.h0_c00293{height:1122.560000pt;}
.h1_c00293{height:1122.666667pt;}
.w2_c00293{width:7.346667pt;}
.w3_c00293{width:567.240000pt;}
.w1_c00293{width:793.333333pt;}
.w4_c00293{width:793.597333pt;}
.w0_c00293{width:793.600000pt;}
.x0_c00293{left:0.000000pt;}
.x3_c00293{left:113.364000pt;}
.xc_c00293{left:126.784000pt;}
.x1_c00293{left:137.346667pt;}
.x6_c00293{left:151.106667pt;}
.x7_c00293{left:244.250667pt;}
.x8_c00293{left:260.613333pt;}
.xb_c00293{left:305.413333pt;}
.x9_c00293{left:505.504000pt;}
.xa_c00293{left:521.826667pt;}
.x4_c00293{left:664.290667pt;}
.x2_c00293{left:673.253333pt;}
.x5_c00293{left:680.613333pt;}
}





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

.ir_c00294:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00294;src:url('chunks/assets/font_b904799de2fe5e44e4058465.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_43c224c07457e2e72d35f0ff.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00294;src:url('chunks/assets/font_671ea96fa763e8d888917682.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;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_c00294;src:url('chunks/assets/font_79c9a6f214df1ed82e18c48e.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00294;src:url('chunks/assets/font_d04c653107bbb0b43c111d4c.woff2')format("woff");}.ff5_c00294{font-family:ff5_c00294;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00294;src:url('chunks/assets/font_a1d823ccf46271ca786e3ea8.woff2')format("woff");}.ff6_c00294{font-family:ff6_c00294;line-height:1.104004;font-style:normal;font-weight: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_c00294;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00294{font-family:ff7_c00294;line-height:1.311035;font-style:normal;font-weight: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_c00294;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff8_c00294{font-family:ff8_c00294;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls12_c00294{letter-spacing:-1.776000px;}
.ls17_c00294{letter-spacing:-0.532800px;}
.ls18_c00294{letter-spacing:-0.486600px;}
.ls11_c00294{letter-spacing:-0.337200px;}
.ls14_c00294{letter-spacing:-0.241800px;}
.ls10_c00294{letter-spacing:0.000000px;}
.ls15_c00294{letter-spacing:0.022800px;}
.ls3_c00294{letter-spacing:0.072000px;}
.lsf_c00294{letter-spacing:0.120000px;}
.ls1_c00294{letter-spacing:0.302400px;}
.ls16_c00294{letter-spacing:0.466800px;}
.ls6_c00294{letter-spacing:0.518400px;}
.ls13_c00294{letter-spacing:0.529800px;}
.ls9_c00294{letter-spacing:0.697321px;}
.ls0_c00294{letter-spacing:0.720000px;}
.ls5_c00294{letter-spacing:0.840000px;}
.lse_c00294{letter-spacing:6.468678px;}
.ls7_c00294{letter-spacing:6.480000px;}
.ls8_c00294{letter-spacing:6.500100px;}
.lsd_c00294{letter-spacing:7.897236px;}
.lsb_c00294{letter-spacing:7.920000px;}
.lsa_c00294{letter-spacing:7.928656px;}
.lsc_c00294{letter-spacing:7.939903px;}
.ls2_c00294{letter-spacing:16.680000px;}
.ls4_c00294{letter-spacing:79.920000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00294{word-spacing:-60.480000px;}
.ws6_c00294{word-spacing:-18.072000px;}
.ws0_c00294{word-spacing:-18.000000px;}
.ws7_c00294{word-spacing:-15.142800px;}
.ws1_c00294{word-spacing:-15.120000px;}
.ws5_c00294{word-spacing:-14.878200px;}
.ws2_c00294{word-spacing:-14.782800px;}
.ws8_c00294{word-spacing:-14.633400px;}
.ws3_c00294{word-spacing:-13.344000px;}
.ws9_c00294{word-spacing:0.000000px;}
._2_c00294{margin-left:-2.868000px;}
._0_c00294{margin-left:-1.152000px;}
._1_c00294{width:1.344000px;}
._3_c00294{width:3.269280px;}
._a_c00294{width:5.142720px;}
._9_c00294{width:6.185280px;}
._7_c00294{width:7.806720px;}
._8_c00294{width:9.278400px;}
._d_c00294{width:10.638720px;}
._e_c00294{width:13.320000px;}
._f_c00294{width:14.700000px;}
._5_c00294{width:15.768000px;}
._6_c00294{width:16.938696px;}
._14_c00294{width:19.116000px;}
._13_c00294{width:20.520000px;}
._12_c00294{width:21.744000px;}
._10_c00294{width:27.702720px;}
._11_c00294{width:29.246400px;}
._b_c00294{width:80.220000px;}
._c_c00294{width:81.432000px;}
._4_c00294{width:151.932024px;}
.fc0_c00294{color:rgb(0,0,0);}
.fs3_c00294{font-size:38.880000px;}
.fs2_c00294{font-size:47.520000px;}
.fs1_c00294{font-size:60.480000px;}
.fs0_c00294{font-size:72.000000px;}
.y0_c00294{bottom:0.000000px;}
.y3_c00294{bottom:4.320000px;}
.y6_c00294{bottom:4.680000px;}
.y5_c00294{bottom:25.200000px;}
.y4_c00294{bottom:32.040000px;}
.y1_c00294{bottom:57.240000px;}
.y30_c00294{bottom:130.716000px;}
.y2f_c00294{bottom:137.556000px;}
.y2e_c00294{bottom:147.996000px;}
.y2d_c00294{bottom:165.270000px;}
.y2c_c00294{bottom:172.110000px;}
.y2b_c00294{bottom:182.550000px;}
.y2a_c00294{bottom:199.830000px;}
.y29_c00294{bottom:216.750000px;}
.y28_c00294{bottom:234.075000px;}
.y27_c00294{bottom:251.355000px;}
.y26_c00294{bottom:258.195000px;}
.y25_c00294{bottom:269.355000px;}
.y23_c00294{bottom:319.755000px;}
.y24_c00294{bottom:328.035000px;}
.y22_c00294{bottom:350.715000px;}
.y21_c00294{bottom:381.705000px;}
.y20_c00294{bottom:413.025000px;}
.y1f_c00294{bottom:443.985000px;}
.y1e_c00294{bottom:474.945000px;}
.y1c_c00294{bottom:505.950000px;}
.y1d_c00294{bottom:514.230000px;}
.y1b_c00294{bottom:537.270000px;}
.y1a_c00294{bottom:568.230000px;}
.y19_c00294{bottom:599.220000px;}
.y18_c00294{bottom:630.180000px;}
.y17_c00294{bottom:661.140000px;}
.y16_c00294{bottom:692.460000px;}
.y15_c00294{bottom:723.450000px;}
.y13_c00294{bottom:754.410000px;}
.y14_c00294{bottom:762.690000px;}
.y12_c00294{bottom:785.370000px;}
.y11_c00294{bottom:816.690000px;}
.y10_c00294{bottom:847.695000px;}
.yf_c00294{bottom:878.655000px;}
.ye_c00294{bottom:909.615000px;}
.yd_c00294{bottom:940.935000px;}
.yc_c00294{bottom:978.765000px;}
.yb_c00294{bottom:1004.325000px;}
.ya_c00294{bottom:1039.245000px;}
.y9_c00294{bottom:1065.165000px;}
.y8_c00294{bottom:1091.130000px;}
.y7_c00294{bottom:1140.450000px;}
.y2_c00294{bottom:1189.050000px;}
.h3_c00294{height:20.550000px;}
.hc_c00294{height:34.855313px;}
.hb_c00294{height:38.158594px;}
.h4_c00294{height:41.395500px;}
.ha_c00294{height:46.638281px;}
.hd_c00294{height:54.514688px;}
.h8_c00294{height:59.328281px;}
.h6_c00294{height:59.357813px;}
.h7_c00294{height:60.952500px;}
.h2_c00294{height:64.546875px;}
.h5_c00294{height:70.664062px;}
.h9_c00294{height:1262.875500px;}
.h0_c00294{height:1262.880000px;}
.h1_c00294{height:1263.000000px;}
.w2_c00294{width:8.265000px;}
.w3_c00294{width:638.145000px;}
.w1_c00294{width:892.500000px;}
.w4_c00294{width:892.797000px;}
.w0_c00294{width:892.800000px;}
.x0_c00294{left:0.000000px;}
.x3_c00294{left:127.534500px;}
.xc_c00294{left:142.632000px;}
.x1_c00294{left:154.515000px;}
.x4_c00294{left:169.995000px;}
.x9_c00294{left:191.592000px;}
.xa_c00294{left:209.985000px;}
.xb_c00294{left:343.590000px;}
.x7_c00294{left:400.857000px;}
.x8_c00294{left:419.220000px;}
.x5_c00294{left:548.892000px;}
.x6_c00294{left:567.255000px;}
.x2_c00294{left:757.410000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls12_c00294{letter-spacing:-1.578667pt;}
.ls17_c00294{letter-spacing:-0.473600pt;}
.ls18_c00294{letter-spacing:-0.432533pt;}
.ls11_c00294{letter-spacing:-0.299733pt;}
.ls14_c00294{letter-spacing:-0.214933pt;}
.ls10_c00294{letter-spacing:0.000000pt;}
.ls15_c00294{letter-spacing:0.020267pt;}
.ls3_c00294{letter-spacing:0.064000pt;}
.lsf_c00294{letter-spacing:0.106667pt;}
.ls1_c00294{letter-spacing:0.268800pt;}
.ls16_c00294{letter-spacing:0.414933pt;}
.ls6_c00294{letter-spacing:0.460800pt;}
.ls13_c00294{letter-spacing:0.470933pt;}
.ls9_c00294{letter-spacing:0.619841pt;}
.ls0_c00294{letter-spacing:0.640000pt;}
.ls5_c00294{letter-spacing:0.746667pt;}
.lse_c00294{letter-spacing:5.749936pt;}
.ls7_c00294{letter-spacing:5.760000pt;}
.ls8_c00294{letter-spacing:5.777866pt;}
.lsd_c00294{letter-spacing:7.019765pt;}
.lsb_c00294{letter-spacing:7.040000pt;}
.lsa_c00294{letter-spacing:7.047695pt;}
.lsc_c00294{letter-spacing:7.057691pt;}
.ls2_c00294{letter-spacing:14.826667pt;}
.ls4_c00294{letter-spacing:71.040000pt;}
.ws4_c00294{word-spacing:-53.760000pt;}
.ws6_c00294{word-spacing:-16.064000pt;}
.ws0_c00294{word-spacing:-16.000000pt;}
.ws7_c00294{word-spacing:-13.460267pt;}
.ws1_c00294{word-spacing:-13.440000pt;}
.ws5_c00294{word-spacing:-13.225067pt;}
.ws2_c00294{word-spacing:-13.140267pt;}
.ws8_c00294{word-spacing:-13.007467pt;}
.ws3_c00294{word-spacing:-11.861333pt;}
.ws9_c00294{word-spacing:0.000000pt;}
._2_c00294{margin-left:-2.549333pt;}
._0_c00294{margin-left:-1.024000pt;}
._1_c00294{width:1.194667pt;}
._3_c00294{width:2.906027pt;}
._a_c00294{width:4.571307pt;}
._9_c00294{width:5.498027pt;}
._7_c00294{width:6.939307pt;}
._8_c00294{width:8.247467pt;}
._d_c00294{width:9.456640pt;}
._e_c00294{width:11.840000pt;}
._f_c00294{width:13.066667pt;}
._5_c00294{width:14.016000pt;}
._6_c00294{width:15.056619pt;}
._14_c00294{width:16.992000pt;}
._13_c00294{width:18.240000pt;}
._12_c00294{width:19.328000pt;}
._10_c00294{width:24.624640pt;}
._11_c00294{width:25.996800pt;}
._b_c00294{width:71.306667pt;}
._c_c00294{width:72.384000pt;}
._4_c00294{width:135.050688pt;}
.fs3_c00294{font-size:34.560000pt;}
.fs2_c00294{font-size:42.240000pt;}
.fs1_c00294{font-size:53.760000pt;}
.fs0_c00294{font-size:64.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y3_c00294{bottom:3.840000pt;}
.y6_c00294{bottom:4.160000pt;}
.y5_c00294{bottom:22.400000pt;}
.y4_c00294{bottom:28.480000pt;}
.y1_c00294{bottom:50.880000pt;}
.y30_c00294{bottom:116.192000pt;}
.y2f_c00294{bottom:122.272000pt;}
.y2e_c00294{bottom:131.552000pt;}
.y2d_c00294{bottom:146.906667pt;}
.y2c_c00294{bottom:152.986667pt;}
.y2b_c00294{bottom:162.266667pt;}
.y2a_c00294{bottom:177.626667pt;}
.y29_c00294{bottom:192.666667pt;}
.y28_c00294{bottom:208.066667pt;}
.y27_c00294{bottom:223.426667pt;}
.y26_c00294{bottom:229.506667pt;}
.y25_c00294{bottom:239.426667pt;}
.y23_c00294{bottom:284.226667pt;}
.y24_c00294{bottom:291.586667pt;}
.y22_c00294{bottom:311.746667pt;}
.y21_c00294{bottom:339.293333pt;}
.y20_c00294{bottom:367.133333pt;}
.y1f_c00294{bottom:394.653333pt;}
.y1e_c00294{bottom:422.173333pt;}
.y1c_c00294{bottom:449.733333pt;}
.y1d_c00294{bottom:457.093333pt;}
.y1b_c00294{bottom:477.573333pt;}
.y1a_c00294{bottom:505.093333pt;}
.y19_c00294{bottom:532.640000pt;}
.y18_c00294{bottom:560.160000pt;}
.y17_c00294{bottom:587.680000pt;}
.y16_c00294{bottom:615.520000pt;}
.y15_c00294{bottom:643.066667pt;}
.y13_c00294{bottom:670.586667pt;}
.y14_c00294{bottom:677.946667pt;}
.y12_c00294{bottom:698.106667pt;}
.y11_c00294{bottom:725.946667pt;}
.y10_c00294{bottom:753.506667pt;}
.yf_c00294{bottom:781.026667pt;}
.ye_c00294{bottom:808.546667pt;}
.yd_c00294{bottom:836.386667pt;}
.yc_c00294{bottom:870.013333pt;}
.yb_c00294{bottom:892.733333pt;}
.ya_c00294{bottom:923.773333pt;}
.y9_c00294{bottom:946.813333pt;}
.y8_c00294{bottom:969.893333pt;}
.y7_c00294{bottom:1013.733333pt;}
.y2_c00294{bottom:1056.933333pt;}
.h3_c00294{height:18.266667pt;}
.hc_c00294{height:30.982500pt;}
.hb_c00294{height:33.918750pt;}
.h4_c00294{height:36.796000pt;}
.ha_c00294{height:41.456250pt;}
.hd_c00294{height:48.457500pt;}
.h8_c00294{height:52.736250pt;}
.h6_c00294{height:52.762500pt;}
.h7_c00294{height:54.180000pt;}
.h2_c00294{height:57.375000pt;}
.h5_c00294{height:62.812500pt;}
.h9_c00294{height:1122.556000pt;}
.h0_c00294{height:1122.560000pt;}
.h1_c00294{height:1122.666667pt;}
.w2_c00294{width:7.346667pt;}
.w3_c00294{width:567.240000pt;}
.w1_c00294{width:793.333333pt;}
.w4_c00294{width:793.597333pt;}
.w0_c00294{width:793.600000pt;}
.x0_c00294{left:0.000000pt;}
.x3_c00294{left:113.364000pt;}
.xc_c00294{left:126.784000pt;}
.x1_c00294{left:137.346667pt;}
.x4_c00294{left:151.106667pt;}
.x9_c00294{left:170.304000pt;}
.xa_c00294{left:186.653333pt;}
.xb_c00294{left:305.413333pt;}
.x7_c00294{left:356.317333pt;}
.x8_c00294{left:372.640000pt;}
.x5_c00294{left:487.904000pt;}
.x6_c00294{left:504.226667pt;}
.x2_c00294{left:673.253333pt;}
}





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

.ir_c00295:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00295;src:url('chunks/assets/font_deabee70e8370eb02345b59c.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00295;src:url('chunks/assets/font_c53aeaf6d058615821bf6fc6.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_721e255bf63ca6ee9e31c6d6.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_bcb86f1194e93e4e8652a789.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00295;src:url('chunks/assets/font_973480182fa743176d4bac3e.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;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_c00295;src:url('chunks/assets/font_49e2e1e37992dcd8db020091.woff2')format("woff");}.ff6_c00295{font-family:ff6_c00295;line-height:1.104004;font-style:normal;font-weight: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_c00295;src:url('chunks/assets/font_4c7a8524c9cec901beed3f60.woff2')format("woff");}.ff7_c00295{font-family:ff7_c00295;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls8_c00295{letter-spacing:-2.880000px;}
.lsf_c00295{letter-spacing:-1.440000px;}
.lsa_c00295{letter-spacing:-0.936000px;}
.ls7_c00295{letter-spacing:0.000000px;}
.lsd_c00295{letter-spacing:0.020400px;}
.ls9_c00295{letter-spacing:0.022800px;}
.lsb_c00295{letter-spacing:0.060600px;}
.lse_c00295{letter-spacing:0.486600px;}
.lsc_c00295{letter-spacing:0.702000px;}
.ls2_c00295{letter-spacing:0.708698px;}
.ls0_c00295{letter-spacing:0.720000px;}
.ls6_c00295{letter-spacing:2.160000px;}
.ls5_c00295{letter-spacing:3.588453px;}
.ls4_c00295{letter-spacing:3.600000px;}
.ls3_c00295{letter-spacing:9.360000px;}
.ls1_c00295{letter-spacing:151.932000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:-72.000000px;}
.ws8_c00295{word-spacing:-60.966600px;}
.ws3_c00295{word-spacing:-60.480000px;}
.ws1_c00295{word-spacing:-18.000000px;}
.ws6_c00295{word-spacing:-15.822000px;}
.ws5_c00295{word-spacing:-15.180600px;}
.ws4_c00295{word-spacing:-15.142800px;}
.ws7_c00295{word-spacing:-15.140400px;}
.ws2_c00295{word-spacing:-15.120000px;}
.ws9_c00295{word-spacing:-13.680000px;}
.wsa_c00295{word-spacing:0.000000px;}
._2_c00295{margin-left:-2.724000px;}
._1_c00295{margin-left:-1.296000px;}
._0_c00295{width:1.416000px;}
._b_c00295{width:2.508000px;}
._5_c00295{width:3.924000px;}
._4_c00295{width:5.149215px;}
._3_c00295{width:6.833998px;}
._6_c00295{width:7.954788px;}
._7_c00295{width:9.058872px;}
._c_c00295{width:10.111750px;}
._8_c00295{width:23.292000px;}
._9_c00295{width:24.300000px;}
._a_c00295{width:25.968000px;}
.fc0_c00295{color:rgb(0,0,0);}
.fs3_c00295{font-size:38.880000px;}
.fs2_c00295{font-size:47.520000px;}
.fs1_c00295{font-size:60.480000px;}
.fs0_c00295{font-size:72.000000px;}
.y0_c00295{bottom:0.000000px;}
.y3_c00295{bottom:4.320000px;}
.y6_c00295{bottom:4.680000px;}
.y5_c00295{bottom:25.200000px;}
.y4_c00295{bottom:32.040000px;}
.y1_c00295{bottom:57.240000px;}
.y2f_c00295{bottom:130.716000px;}
.y2e_c00295{bottom:137.556000px;}
.y2d_c00295{bottom:147.996000px;}
.y2c_c00295{bottom:165.270000px;}
.y2b_c00295{bottom:182.550000px;}
.y2a_c00295{bottom:199.830000px;}
.y29_c00295{bottom:216.750000px;}
.y28_c00295{bottom:234.075000px;}
.y27_c00295{bottom:240.915000px;}
.y26_c00295{bottom:252.075000px;}
.y25_c00295{bottom:281.955000px;}
.y24_c00295{bottom:307.875000px;}
.y23_c00295{bottom:333.795000px;}
.y22_c00295{bottom:359.385000px;}
.y21_c00295{bottom:394.305000px;}
.y20_c00295{bottom:420.225000px;}
.y1f_c00295{bottom:446.145000px;}
.y1e_c00295{bottom:472.065000px;}
.y1d_c00295{bottom:498.030000px;}
.y1c_c00295{bottom:523.950000px;}
.y1b_c00295{bottom:549.870000px;}
.y1a_c00295{bottom:575.430000px;}
.y19_c00295{bottom:601.380000px;}
.y18_c00295{bottom:627.300000px;}
.y17_c00295{bottom:676.620000px;}
.y16_c00295{bottom:728.490000px;}
.y15_c00295{bottom:759.810000px;}
.y13_c00295{bottom:790.770000px;}
.y14_c00295{bottom:799.050000px;}
.y12_c00295{bottom:821.730000px;}
.y11_c00295{bottom:852.735000px;}
.yf_c00295{bottom:884.055000px;}
.y10_c00295{bottom:892.335000px;}
.ye_c00295{bottom:915.015000px;}
.yd_c00295{bottom:952.815000px;}
.yc_c00295{bottom:978.765000px;}
.yb_c00295{bottom:1013.325000px;}
.ya_c00295{bottom:1039.245000px;}
.y9_c00295{bottom:1065.165000px;}
.y8_c00295{bottom:1091.130000px;}
.y7_c00295{bottom:1140.450000px;}
.y2_c00295{bottom:1189.050000px;}
.h3_c00295{height:20.550000px;}
.hb_c00295{height:34.855313px;}
.h4_c00295{height:41.395500px;}
.h9_c00295{height:46.615078px;}
.ha_c00295{height:46.638281px;}
.hc_c00295{height:54.514688px;}
.h7_c00295{height:59.328281px;}
.h6_c00295{height:59.357813px;}
.h2_c00295{height:64.546875px;}
.h5_c00295{height:70.664062px;}
.h8_c00295{height:1262.875500px;}
.h0_c00295{height:1262.880000px;}
.h1_c00295{height:1263.000000px;}
.w2_c00295{width:8.265000px;}
.w3_c00295{width:638.145000px;}
.w1_c00295{width:892.500000px;}
.w4_c00295{width:892.797000px;}
.w0_c00295{width:892.800000px;}
.x0_c00295{left:0.000000px;}
.x3_c00295{left:127.534500px;}
.xa_c00295{left:142.632000px;}
.x1_c00295{left:154.515000px;}
.x4_c00295{left:169.995000px;}
.x9_c00295{left:343.590000px;}
.x5_c00295{left:394.737000px;}
.x6_c00295{left:413.100000px;}
.x7_c00295{left:669.162000px;}
.x8_c00295{left:687.525000px;}
.x2_c00295{left:757.410000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls8_c00295{letter-spacing:-2.560000pt;}
.lsf_c00295{letter-spacing:-1.280000pt;}
.lsa_c00295{letter-spacing:-0.832000pt;}
.ls7_c00295{letter-spacing:0.000000pt;}
.lsd_c00295{letter-spacing:0.018133pt;}
.ls9_c00295{letter-spacing:0.020267pt;}
.lsb_c00295{letter-spacing:0.053867pt;}
.lse_c00295{letter-spacing:0.432533pt;}
.lsc_c00295{letter-spacing:0.624000pt;}
.ls2_c00295{letter-spacing:0.629954pt;}
.ls0_c00295{letter-spacing:0.640000pt;}
.ls6_c00295{letter-spacing:1.920000pt;}
.ls5_c00295{letter-spacing:3.189736pt;}
.ls4_c00295{letter-spacing:3.200000pt;}
.ls3_c00295{letter-spacing:8.320000pt;}
.ls1_c00295{letter-spacing:135.050667pt;}
.ws0_c00295{word-spacing:-64.000000pt;}
.ws8_c00295{word-spacing:-54.192533pt;}
.ws3_c00295{word-spacing:-53.760000pt;}
.ws1_c00295{word-spacing:-16.000000pt;}
.ws6_c00295{word-spacing:-14.064000pt;}
.ws5_c00295{word-spacing:-13.493867pt;}
.ws4_c00295{word-spacing:-13.460267pt;}
.ws7_c00295{word-spacing:-13.458133pt;}
.ws2_c00295{word-spacing:-13.440000pt;}
.ws9_c00295{word-spacing:-12.160000pt;}
.wsa_c00295{word-spacing:0.000000pt;}
._2_c00295{margin-left:-2.421333pt;}
._1_c00295{margin-left:-1.152000pt;}
._0_c00295{width:1.258667pt;}
._b_c00295{width:2.229333pt;}
._5_c00295{width:3.488000pt;}
._4_c00295{width:4.577080pt;}
._3_c00295{width:6.074665pt;}
._6_c00295{width:7.070923pt;}
._7_c00295{width:8.052331pt;}
._c_c00295{width:8.988222pt;}
._8_c00295{width:20.704000pt;}
._9_c00295{width:21.600000pt;}
._a_c00295{width:23.082667pt;}
.fs3_c00295{font-size:34.560000pt;}
.fs2_c00295{font-size:42.240000pt;}
.fs1_c00295{font-size:53.760000pt;}
.fs0_c00295{font-size:64.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y3_c00295{bottom:3.840000pt;}
.y6_c00295{bottom:4.160000pt;}
.y5_c00295{bottom:22.400000pt;}
.y4_c00295{bottom:28.480000pt;}
.y1_c00295{bottom:50.880000pt;}
.y2f_c00295{bottom:116.192000pt;}
.y2e_c00295{bottom:122.272000pt;}
.y2d_c00295{bottom:131.552000pt;}
.y2c_c00295{bottom:146.906667pt;}
.y2b_c00295{bottom:162.266667pt;}
.y2a_c00295{bottom:177.626667pt;}
.y29_c00295{bottom:192.666667pt;}
.y28_c00295{bottom:208.066667pt;}
.y27_c00295{bottom:214.146667pt;}
.y26_c00295{bottom:224.066667pt;}
.y25_c00295{bottom:250.626667pt;}
.y24_c00295{bottom:273.666667pt;}
.y23_c00295{bottom:296.706667pt;}
.y22_c00295{bottom:319.453333pt;}
.y21_c00295{bottom:350.493333pt;}
.y20_c00295{bottom:373.533333pt;}
.y1f_c00295{bottom:396.573333pt;}
.y1e_c00295{bottom:419.613333pt;}
.y1d_c00295{bottom:442.693333pt;}
.y1c_c00295{bottom:465.733333pt;}
.y1b_c00295{bottom:488.773333pt;}
.y1a_c00295{bottom:511.493333pt;}
.y19_c00295{bottom:534.560000pt;}
.y18_c00295{bottom:557.600000pt;}
.y17_c00295{bottom:601.440000pt;}
.y16_c00295{bottom:647.546667pt;}
.y15_c00295{bottom:675.386667pt;}
.y13_c00295{bottom:702.906667pt;}
.y14_c00295{bottom:710.266667pt;}
.y12_c00295{bottom:730.426667pt;}
.y11_c00295{bottom:757.986667pt;}
.yf_c00295{bottom:785.826667pt;}
.y10_c00295{bottom:793.186667pt;}
.ye_c00295{bottom:813.346667pt;}
.yd_c00295{bottom:846.946667pt;}
.yc_c00295{bottom:870.013333pt;}
.yb_c00295{bottom:900.733333pt;}
.ya_c00295{bottom:923.773333pt;}
.y9_c00295{bottom:946.813333pt;}
.y8_c00295{bottom:969.893333pt;}
.y7_c00295{bottom:1013.733333pt;}
.y2_c00295{bottom:1056.933333pt;}
.h3_c00295{height:18.266667pt;}
.hb_c00295{height:30.982500pt;}
.h4_c00295{height:36.796000pt;}
.h9_c00295{height:41.435625pt;}
.ha_c00295{height:41.456250pt;}
.hc_c00295{height:48.457500pt;}
.h7_c00295{height:52.736250pt;}
.h6_c00295{height:52.762500pt;}
.h2_c00295{height:57.375000pt;}
.h5_c00295{height:62.812500pt;}
.h8_c00295{height:1122.556000pt;}
.h0_c00295{height:1122.560000pt;}
.h1_c00295{height:1122.666667pt;}
.w2_c00295{width:7.346667pt;}
.w3_c00295{width:567.240000pt;}
.w1_c00295{width:793.333333pt;}
.w4_c00295{width:793.597333pt;}
.w0_c00295{width:793.600000pt;}
.x0_c00295{left:0.000000pt;}
.x3_c00295{left:113.364000pt;}
.xa_c00295{left:126.784000pt;}
.x1_c00295{left:137.346667pt;}
.x4_c00295{left:151.106667pt;}
.x9_c00295{left:305.413333pt;}
.x5_c00295{left:350.877333pt;}
.x6_c00295{left:367.200000pt;}
.x7_c00295{left:594.810667pt;}
.x8_c00295{left:611.133333pt;}
.x2_c00295{left:673.253333pt;}
}





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

.ir_c00296:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00296;src:url('chunks/assets/font_737d927de3ff9d6287d64056.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_6c82510f1540f077ea50a9a5.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_7e09b82dcbf90f04903204c5.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;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_c00296;src:url('chunks/assets/font_87a87e3c1c084f2cec40d5cb.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_bf467a5782f9fcfd8951dc55.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00296;src:url('chunks/assets/font_b21517e2786855879e6303ee.woff2')format("woff");}.ff6_c00296{font-family:ff6_c00296;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.lse_c00296{letter-spacing:-1.440000px;}
.ls1a_c00296{letter-spacing:-1.416000px;}
.ls17_c00296{letter-spacing:-1.128000px;}
.ls19_c00296{letter-spacing:-0.918000px;}
.ls12_c00296{letter-spacing:-0.792000px;}
.ls15_c00296{letter-spacing:-0.720000px;}
.ls16_c00296{letter-spacing:-0.532800px;}
.ls18_c00296{letter-spacing:-0.429000px;}
.ls1b_c00296{letter-spacing:-0.241800px;}
.ls14_c00296{letter-spacing:-0.169800px;}
.lsd_c00296{letter-spacing:0.000000px;}
.ls9_c00296{letter-spacing:0.020640px;}
.ls4_c00296{letter-spacing:0.048960px;}
.ls10_c00296{letter-spacing:0.072000px;}
.ls1c_c00296{letter-spacing:0.166800px;}
.ls6_c00296{letter-spacing:0.167040px;}
.ls0_c00296{letter-spacing:0.180000px;}
.ls2_c00296{letter-spacing:0.288000px;}
.ls1d_c00296{letter-spacing:0.313800px;}
.ls13_c00296{letter-spacing:0.360000px;}
.lsf_c00296{letter-spacing:0.504000px;}
.ls5_c00296{letter-spacing:0.518400px;}
.ls1e_c00296{letter-spacing:0.521400px;}
.lsa_c00296{letter-spacing:0.524160px;}
.ls7_c00296{letter-spacing:0.638400px;}
.ls11_c00296{letter-spacing:0.648000px;}
.ls3_c00296{letter-spacing:0.720000px;}
.lsc_c00296{letter-spacing:0.743089px;}
.lsb_c00296{letter-spacing:0.840000px;}
.ls8_c00296{letter-spacing:2.160000px;}
.ls1_c00296{letter-spacing:7.920000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-72.000000px;}
.ws8_c00296{word-spacing:-60.480000px;}
.ws4_c00296{word-spacing:-18.648000px;}
.ws2_c00296{word-spacing:-18.504000px;}
.ws5_c00296{word-spacing:-18.360000px;}
.ws3_c00296{word-spacing:-18.072000px;}
.ws1_c00296{word-spacing:-18.000000px;}
.ws10_c00296{word-spacing:-15.840000px;}
.ws12_c00296{word-spacing:-15.641400px;}
.wsf_c00296{word-spacing:-15.433800px;}
.wse_c00296{word-spacing:-15.286800px;}
.ws6_c00296{word-spacing:-15.120000px;}
.ws7_c00296{word-spacing:-14.950200px;}
.wsd_c00296{word-spacing:-14.878200px;}
.wsb_c00296{word-spacing:-14.691000px;}
.ws9_c00296{word-spacing:-14.587200px;}
.ws11_c00296{word-spacing:-14.400000px;}
.wsc_c00296{word-spacing:-14.202000px;}
.wsa_c00296{word-spacing:-13.992000px;}
.ws13_c00296{word-spacing:0.000000px;}
._5_c00296{margin-left:-3.168000px;}
._1_c00296{margin-left:-2.160000px;}
._7_c00296{margin-left:-1.080000px;}
._3_c00296{width:1.512000px;}
._e_c00296{width:2.520000px;}
._4_c00296{width:3.647976px;}
._2_c00296{width:4.968000px;}
._b_c00296{width:6.576048px;}
._d_c00296{width:8.424000px;}
._c_c00296{width:9.503976px;}
._a_c00296{width:12.744000px;}
._9_c00296{width:14.496024px;}
._13_c00296{width:16.488000px;}
._8_c00296{width:19.872000px;}
._6_c00296{width:21.240000px;}
._12_c00296{width:30.516000px;}
._11_c00296{width:32.472000px;}
._f_c00296{width:78.984000px;}
._10_c00296{width:80.784000px;}
._0_c00296{width:151.932024px;}
.fc0_c00296{color:rgb(0,0,0);}
.fs3_c00296{font-size:38.880000px;}
.fs1_c00296{font-size:47.520000px;}
.fs2_c00296{font-size:60.480000px;}
.fs0_c00296{font-size:72.000000px;}
.y0_c00296{bottom:0.000000px;}
.y3_c00296{bottom:4.320000px;}
.y6_c00296{bottom:4.680000px;}
.y5_c00296{bottom:25.200000px;}
.y4_c00296{bottom:32.040000px;}
.y1_c00296{bottom:57.240000px;}
.y2b_c00296{bottom:130.716000px;}
.y2a_c00296{bottom:147.996000px;}
.y29_c00296{bottom:165.270000px;}
.y28_c00296{bottom:182.550000px;}
.y27_c00296{bottom:189.390000px;}
.y26_c00296{bottom:200.190000px;}
.y25_c00296{bottom:221.070000px;}
.y24_c00296{bottom:252.075000px;}
.y23_c00296{bottom:283.035000px;}
.y22_c00296{bottom:314.355000px;}
.y21_c00296{bottom:345.315000px;}
.y20_c00296{bottom:383.145000px;}
.y1f_c00296{bottom:409.065000px;}
.y1e_c00296{bottom:434.625000px;}
.y1d_c00296{bottom:469.545000px;}
.y1c_c00296{bottom:495.510000px;}
.y1b_c00296{bottom:521.430000px;}
.y1a_c00296{bottom:547.350000px;}
.y19_c00296{bottom:573.270000px;}
.y18_c00296{bottom:622.620000px;}
.y16_c00296{bottom:674.460000px;}
.y17_c00296{bottom:682.740000px;}
.y15_c00296{bottom:705.420000px;}
.y14_c00296{bottom:736.410000px;}
.y13_c00296{bottom:767.730000px;}
.y12_c00296{bottom:798.690000px;}
.y11_c00296{bottom:829.650000px;}
.y10_c00296{bottom:860.655000px;}
.yf_c00296{bottom:891.975000px;}
.ye_c00296{bottom:922.935000px;}
.yd_c00296{bottom:953.895000px;}
.yc_c00296{bottom:984.885000px;}
.yb_c00296{bottom:1016.205000px;}
.ya_c00296{bottom:1047.165000px;}
.y9_c00296{bottom:1078.125000px;}
.y8_c00296{bottom:1109.130000px;}
.y7_c00296{bottom:1140.450000px;}
.y2_c00296{bottom:1189.050000px;}
.h3_c00296{height:20.550000px;}
.ha_c00296{height:38.158594px;}
.h4_c00296{height:41.395500px;}
.h7_c00296{height:46.615078px;}
.h9_c00296{height:59.328281px;}
.h8_c00296{height:59.357813px;}
.h2_c00296{height:64.546875px;}
.h5_c00296{height:70.664062px;}
.h6_c00296{height:1262.875500px;}
.h0_c00296{height:1262.880000px;}
.h1_c00296{height:1263.000000px;}
.w2_c00296{width:8.265000px;}
.w3_c00296{width:638.145000px;}
.w1_c00296{width:892.500000px;}
.w4_c00296{width:892.797000px;}
.w0_c00296{width:892.800000px;}
.x0_c00296{left:0.000000px;}
.x3_c00296{left:127.534500px;}
.x8_c00296{left:142.632000px;}
.x1_c00296{left:154.515000px;}
.x6_c00296{left:169.995000px;}
.x7_c00296{left:343.590000px;}
.x4_c00296{left:354.027000px;}
.x5_c00296{left:372.390000px;}
.x2_c00296{left:757.410000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.lse_c00296{letter-spacing:-1.280000pt;}
.ls1a_c00296{letter-spacing:-1.258667pt;}
.ls17_c00296{letter-spacing:-1.002667pt;}
.ls19_c00296{letter-spacing:-0.816000pt;}
.ls12_c00296{letter-spacing:-0.704000pt;}
.ls15_c00296{letter-spacing:-0.640000pt;}
.ls16_c00296{letter-spacing:-0.473600pt;}
.ls18_c00296{letter-spacing:-0.381333pt;}
.ls1b_c00296{letter-spacing:-0.214933pt;}
.ls14_c00296{letter-spacing:-0.150933pt;}
.lsd_c00296{letter-spacing:0.000000pt;}
.ls9_c00296{letter-spacing:0.018347pt;}
.ls4_c00296{letter-spacing:0.043520pt;}
.ls10_c00296{letter-spacing:0.064000pt;}
.ls1c_c00296{letter-spacing:0.148267pt;}
.ls6_c00296{letter-spacing:0.148480pt;}
.ls0_c00296{letter-spacing:0.160000pt;}
.ls2_c00296{letter-spacing:0.256000pt;}
.ls1d_c00296{letter-spacing:0.278933pt;}
.ls13_c00296{letter-spacing:0.320000pt;}
.lsf_c00296{letter-spacing:0.448000pt;}
.ls5_c00296{letter-spacing:0.460800pt;}
.ls1e_c00296{letter-spacing:0.463467pt;}
.lsa_c00296{letter-spacing:0.465920pt;}
.ls7_c00296{letter-spacing:0.567467pt;}
.ls11_c00296{letter-spacing:0.576000pt;}
.ls3_c00296{letter-spacing:0.640000pt;}
.lsc_c00296{letter-spacing:0.660524pt;}
.lsb_c00296{letter-spacing:0.746667pt;}
.ls8_c00296{letter-spacing:1.920000pt;}
.ls1_c00296{letter-spacing:7.040000pt;}
.ws0_c00296{word-spacing:-64.000000pt;}
.ws8_c00296{word-spacing:-53.760000pt;}
.ws4_c00296{word-spacing:-16.576000pt;}
.ws2_c00296{word-spacing:-16.448000pt;}
.ws5_c00296{word-spacing:-16.320000pt;}
.ws3_c00296{word-spacing:-16.064000pt;}
.ws1_c00296{word-spacing:-16.000000pt;}
.ws10_c00296{word-spacing:-14.080000pt;}
.ws12_c00296{word-spacing:-13.903467pt;}
.wsf_c00296{word-spacing:-13.718933pt;}
.wse_c00296{word-spacing:-13.588267pt;}
.ws6_c00296{word-spacing:-13.440000pt;}
.ws7_c00296{word-spacing:-13.289067pt;}
.wsd_c00296{word-spacing:-13.225067pt;}
.wsb_c00296{word-spacing:-13.058667pt;}
.ws9_c00296{word-spacing:-12.966400pt;}
.ws11_c00296{word-spacing:-12.800000pt;}
.wsc_c00296{word-spacing:-12.624000pt;}
.wsa_c00296{word-spacing:-12.437333pt;}
.ws13_c00296{word-spacing:0.000000pt;}
._5_c00296{margin-left:-2.816000pt;}
._1_c00296{margin-left:-1.920000pt;}
._7_c00296{margin-left:-0.960000pt;}
._3_c00296{width:1.344000pt;}
._e_c00296{width:2.240000pt;}
._4_c00296{width:3.242645pt;}
._2_c00296{width:4.416000pt;}
._b_c00296{width:5.845376pt;}
._d_c00296{width:7.488000pt;}
._c_c00296{width:8.447979pt;}
._a_c00296{width:11.328000pt;}
._9_c00296{width:12.885355pt;}
._13_c00296{width:14.656000pt;}
._8_c00296{width:17.664000pt;}
._6_c00296{width:18.880000pt;}
._12_c00296{width:27.125333pt;}
._11_c00296{width:28.864000pt;}
._f_c00296{width:70.208000pt;}
._10_c00296{width:71.808000pt;}
._0_c00296{width:135.050688pt;}
.fs3_c00296{font-size:34.560000pt;}
.fs1_c00296{font-size:42.240000pt;}
.fs2_c00296{font-size:53.760000pt;}
.fs0_c00296{font-size:64.000000pt;}
.y0_c00296{bottom:0.000000pt;}
.y3_c00296{bottom:3.840000pt;}
.y6_c00296{bottom:4.160000pt;}
.y5_c00296{bottom:22.400000pt;}
.y4_c00296{bottom:28.480000pt;}
.y1_c00296{bottom:50.880000pt;}
.y2b_c00296{bottom:116.192000pt;}
.y2a_c00296{bottom:131.552000pt;}
.y29_c00296{bottom:146.906667pt;}
.y28_c00296{bottom:162.266667pt;}
.y27_c00296{bottom:168.346667pt;}
.y26_c00296{bottom:177.946667pt;}
.y25_c00296{bottom:196.506667pt;}
.y24_c00296{bottom:224.066667pt;}
.y23_c00296{bottom:251.586667pt;}
.y22_c00296{bottom:279.426667pt;}
.y21_c00296{bottom:306.946667pt;}
.y20_c00296{bottom:340.573333pt;}
.y1f_c00296{bottom:363.613333pt;}
.y1e_c00296{bottom:386.333333pt;}
.y1d_c00296{bottom:417.373333pt;}
.y1c_c00296{bottom:440.453333pt;}
.y1b_c00296{bottom:463.493333pt;}
.y1a_c00296{bottom:486.533333pt;}
.y19_c00296{bottom:509.573333pt;}
.y18_c00296{bottom:553.440000pt;}
.y16_c00296{bottom:599.520000pt;}
.y17_c00296{bottom:606.880000pt;}
.y15_c00296{bottom:627.040000pt;}
.y14_c00296{bottom:654.586667pt;}
.y13_c00296{bottom:682.426667pt;}
.y12_c00296{bottom:709.946667pt;}
.y11_c00296{bottom:737.466667pt;}
.y10_c00296{bottom:765.026667pt;}
.yf_c00296{bottom:792.866667pt;}
.ye_c00296{bottom:820.386667pt;}
.yd_c00296{bottom:847.906667pt;}
.yc_c00296{bottom:875.453333pt;}
.yb_c00296{bottom:903.293333pt;}
.ya_c00296{bottom:930.813333pt;}
.y9_c00296{bottom:958.333333pt;}
.y8_c00296{bottom:985.893333pt;}
.y7_c00296{bottom:1013.733333pt;}
.y2_c00296{bottom:1056.933333pt;}
.h3_c00296{height:18.266667pt;}
.ha_c00296{height:33.918750pt;}
.h4_c00296{height:36.796000pt;}
.h7_c00296{height:41.435625pt;}
.h9_c00296{height:52.736250pt;}
.h8_c00296{height:52.762500pt;}
.h2_c00296{height:57.375000pt;}
.h5_c00296{height:62.812500pt;}
.h6_c00296{height:1122.556000pt;}
.h0_c00296{height:1122.560000pt;}
.h1_c00296{height:1122.666667pt;}
.w2_c00296{width:7.346667pt;}
.w3_c00296{width:567.240000pt;}
.w1_c00296{width:793.333333pt;}
.w4_c00296{width:793.597333pt;}
.w0_c00296{width:793.600000pt;}
.x0_c00296{left:0.000000pt;}
.x3_c00296{left:113.364000pt;}
.x8_c00296{left:126.784000pt;}
.x1_c00296{left:137.346667pt;}
.x6_c00296{left:151.106667pt;}
.x7_c00296{left:305.413333pt;}
.x4_c00296{left:314.690667pt;}
.x5_c00296{left:331.013333pt;}
.x2_c00296{left:673.253333pt;}
}





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

.ir_c00297:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00297;src:url('chunks/assets/font_89fb593019e5341ded72b9ba.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_b9c7a252423d926a73946123.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_f93c6c8228947228ea58b43d.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;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_c00297;src:url('chunks/assets/font_c2d477c168e81aba4b9a6fd8.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00297;src:url('chunks/assets/font_be7d89a19db133118e146c9f.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00297;src:url('chunks/assets/font_e51f3871a3b35452b499de4d.woff2')format("woff");}.ff6_c00297{font-family:ff6_c00297;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls10_c00297{letter-spacing:-1.680000px;}
.ls8_c00297{letter-spacing:-1.416000px;}
.lsf_c00297{letter-spacing:-0.648000px;}
.ls7_c00297{letter-spacing:-0.360000px;}
.ls9_c00297{letter-spacing:-0.302400px;}
.ls6_c00297{letter-spacing:-0.288000px;}
.ls5_c00297{letter-spacing:0.000000px;}
.lsa_c00297{letter-spacing:0.022800px;}
.lsc_c00297{letter-spacing:0.060600px;}
.lse_c00297{letter-spacing:0.072000px;}
.ls3_c00297{letter-spacing:0.180000px;}
.lsd_c00297{letter-spacing:0.288000px;}
.ls2_c00297{letter-spacing:0.518400px;}
.lsb_c00297{letter-spacing:0.529800px;}
.ls1_c00297{letter-spacing:0.708480px;}
.ls0_c00297{letter-spacing:0.720000px;}
.ls4_c00297{letter-spacing:1.440000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00297{word-spacing:-72.000000px;}
.ws5_c00297{word-spacing:-60.480000px;}
.ws9_c00297{word-spacing:-18.288000px;}
.ws8_c00297{word-spacing:-18.072000px;}
.ws1_c00297{word-spacing:-18.000000px;}
.ws0_c00297{word-spacing:-17.712000px;}
.ws2_c00297{word-spacing:-17.640000px;}
.ws7_c00297{word-spacing:-15.180600px;}
.ws4_c00297{word-spacing:-15.120000px;}
.ws6_c00297{word-spacing:-14.817600px;}
.wsa_c00297{word-spacing:-13.440000px;}
.wsb_c00297{word-spacing:0.000000px;}
._3_c00297{margin-left:-2.736000px;}
._1_c00297{margin-left:-1.296000px;}
._0_c00297{width:1.080000px;}
._4_c00297{width:2.376000px;}
._2_c00297{width:3.960000px;}
._5_c00297{width:5.475001px;}
._9_c00297{width:7.272000px;}
._a_c00297{width:8.483996px;}
._b_c00297{width:13.464000px;}
._d_c00297{width:14.855976px;}
._c_c00297{width:16.043976px;}
._f_c00297{width:19.944000px;}
._e_c00297{width:21.240000px;}
._10_c00297{width:22.608000px;}
._8_c00297{width:24.264000px;}
._7_c00297{width:25.632000px;}
._6_c00297{width:151.932024px;}
.fc0_c00297{color:rgb(0,0,0);}
.fs1_c00297{font-size:60.480000px;}
.fs2_c00297{font-size:66.240000px;}
.fs0_c00297{font-size:72.000000px;}
.y0_c00297{bottom:0.000000px;}
.y3_c00297{bottom:4.320000px;}
.y6_c00297{bottom:4.680000px;}
.y5_c00297{bottom:25.200000px;}
.y4_c00297{bottom:32.040000px;}
.y1_c00297{bottom:57.240000px;}
.y26_c00297{bottom:120.996000px;}
.y25_c00297{bottom:146.556000px;}
.y24_c00297{bottom:181.470000px;}
.y23_c00297{bottom:207.390000px;}
.y22_c00297{bottom:233.355000px;}
.y21_c00297{bottom:259.275000px;}
.y20_c00297{bottom:285.195000px;}
.y1f_c00297{bottom:334.515000px;}
.y1e_c00297{bottom:386.385000px;}
.y1d_c00297{bottom:417.345000px;}
.y1c_c00297{bottom:448.305000px;}
.y1b_c00297{bottom:479.670000px;}
.y1a_c00297{bottom:510.630000px;}
.y19_c00297{bottom:541.590000px;}
.y18_c00297{bottom:572.550000px;}
.y17_c00297{bottom:603.900000px;}
.y16_c00297{bottom:634.860000px;}
.y15_c00297{bottom:665.820000px;}
.y14_c00297{bottom:696.780000px;}
.y13_c00297{bottom:728.130000px;}
.y12_c00297{bottom:759.090000px;}
.y11_c00297{bottom:796.890000px;}
.y10_c00297{bottom:822.810000px;}
.yf_c00297{bottom:857.775000px;}
.ye_c00297{bottom:883.335000px;}
.yd_c00297{bottom:909.255000px;}
.yc_c00297{bottom:935.175000px;}
.yb_c00297{bottom:961.095000px;}
.ya_c00297{bottom:1007.565000px;}
.y9_c00297{bottom:1057.245000px;}
.y8_c00297{bottom:1109.130000px;}
.y7_c00297{bottom:1140.450000px;}
.y2_c00297{bottom:1189.050000px;}
.h3_c00297{height:20.550000px;}
.h4_c00297{height:41.395500px;}
.h7_c00297{height:59.328281px;}
.h6_c00297{height:59.357813px;}
.h2_c00297{height:64.546875px;}
.h5_c00297{height:70.664062px;}
.h0_c00297{height:1262.880000px;}
.h1_c00297{height:1263.000000px;}
.w2_c00297{width:8.265000px;}
.w3_c00297{width:638.145000px;}
.w1_c00297{width:892.500000px;}
.w0_c00297{width:892.800000px;}
.x0_c00297{left:0.000000px;}
.x3_c00297{left:127.534500px;}
.x1_c00297{left:154.515000px;}
.x4_c00297{left:169.995000px;}
.x2_c00297{left:757.410000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls10_c00297{letter-spacing:-1.493333pt;}
.ls8_c00297{letter-spacing:-1.258667pt;}
.lsf_c00297{letter-spacing:-0.576000pt;}
.ls7_c00297{letter-spacing:-0.320000pt;}
.ls9_c00297{letter-spacing:-0.268800pt;}
.ls6_c00297{letter-spacing:-0.256000pt;}
.ls5_c00297{letter-spacing:0.000000pt;}
.lsa_c00297{letter-spacing:0.020267pt;}
.lsc_c00297{letter-spacing:0.053867pt;}
.lse_c00297{letter-spacing:0.064000pt;}
.ls3_c00297{letter-spacing:0.160000pt;}
.lsd_c00297{letter-spacing:0.256000pt;}
.ls2_c00297{letter-spacing:0.460800pt;}
.lsb_c00297{letter-spacing:0.470933pt;}
.ls1_c00297{letter-spacing:0.629760pt;}
.ls0_c00297{letter-spacing:0.640000pt;}
.ls4_c00297{letter-spacing:1.280000pt;}
.ws3_c00297{word-spacing:-64.000000pt;}
.ws5_c00297{word-spacing:-53.760000pt;}
.ws9_c00297{word-spacing:-16.256000pt;}
.ws8_c00297{word-spacing:-16.064000pt;}
.ws1_c00297{word-spacing:-16.000000pt;}
.ws0_c00297{word-spacing:-15.744000pt;}
.ws2_c00297{word-spacing:-15.680000pt;}
.ws7_c00297{word-spacing:-13.493867pt;}
.ws4_c00297{word-spacing:-13.440000pt;}
.ws6_c00297{word-spacing:-13.171200pt;}
.wsa_c00297{word-spacing:-11.946667pt;}
.wsb_c00297{word-spacing:0.000000pt;}
._3_c00297{margin-left:-2.432000pt;}
._1_c00297{margin-left:-1.152000pt;}
._0_c00297{width:0.960000pt;}
._4_c00297{width:2.112000pt;}
._2_c00297{width:3.520000pt;}
._5_c00297{width:4.866668pt;}
._9_c00297{width:6.464000pt;}
._a_c00297{width:7.541330pt;}
._b_c00297{width:11.968000pt;}
._d_c00297{width:13.205312pt;}
._c_c00297{width:14.261312pt;}
._f_c00297{width:17.728000pt;}
._e_c00297{width:18.880000pt;}
._10_c00297{width:20.096000pt;}
._8_c00297{width:21.568000pt;}
._7_c00297{width:22.784000pt;}
._6_c00297{width:135.050688pt;}
.fs1_c00297{font-size:53.760000pt;}
.fs2_c00297{font-size:58.880000pt;}
.fs0_c00297{font-size:64.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y3_c00297{bottom:3.840000pt;}
.y6_c00297{bottom:4.160000pt;}
.y5_c00297{bottom:22.400000pt;}
.y4_c00297{bottom:28.480000pt;}
.y1_c00297{bottom:50.880000pt;}
.y26_c00297{bottom:107.552000pt;}
.y25_c00297{bottom:130.272000pt;}
.y24_c00297{bottom:161.306667pt;}
.y23_c00297{bottom:184.346667pt;}
.y22_c00297{bottom:207.426667pt;}
.y21_c00297{bottom:230.466667pt;}
.y20_c00297{bottom:253.506667pt;}
.y1f_c00297{bottom:297.346667pt;}
.y1e_c00297{bottom:343.453333pt;}
.y1d_c00297{bottom:370.973333pt;}
.y1c_c00297{bottom:398.493333pt;}
.y1b_c00297{bottom:426.373333pt;}
.y1a_c00297{bottom:453.893333pt;}
.y19_c00297{bottom:481.413333pt;}
.y18_c00297{bottom:508.933333pt;}
.y17_c00297{bottom:536.800000pt;}
.y16_c00297{bottom:564.320000pt;}
.y15_c00297{bottom:591.840000pt;}
.y14_c00297{bottom:619.360000pt;}
.y13_c00297{bottom:647.226667pt;}
.y12_c00297{bottom:674.746667pt;}
.y11_c00297{bottom:708.346667pt;}
.y10_c00297{bottom:731.386667pt;}
.yf_c00297{bottom:762.466667pt;}
.ye_c00297{bottom:785.186667pt;}
.yd_c00297{bottom:808.226667pt;}
.yc_c00297{bottom:831.266667pt;}
.yb_c00297{bottom:854.306667pt;}
.ya_c00297{bottom:895.613333pt;}
.y9_c00297{bottom:939.773333pt;}
.y8_c00297{bottom:985.893333pt;}
.y7_c00297{bottom:1013.733333pt;}
.y2_c00297{bottom:1056.933333pt;}
.h3_c00297{height:18.266667pt;}
.h4_c00297{height:36.796000pt;}
.h7_c00297{height:52.736250pt;}
.h6_c00297{height:52.762500pt;}
.h2_c00297{height:57.375000pt;}
.h5_c00297{height:62.812500pt;}
.h0_c00297{height:1122.560000pt;}
.h1_c00297{height:1122.666667pt;}
.w2_c00297{width:7.346667pt;}
.w3_c00297{width:567.240000pt;}
.w1_c00297{width:793.333333pt;}
.w0_c00297{width:793.600000pt;}
.x0_c00297{left:0.000000pt;}
.x3_c00297{left:113.364000pt;}
.x1_c00297{left:137.346667pt;}
.x4_c00297{left:151.106667pt;}
.x2_c00297{left:673.253333pt;}
}





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

.ir_c00298:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00298;src:url('chunks/assets/font_42bd5e2291d8b1158d1af68e.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_4a0d09d9e3e88f9dd277b541.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00298;src:url('chunks/assets/font_d3857d56d4dd52e4fb378370.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;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_c00298;src:url('chunks/assets/font_c8d7937b14ff6cdba9fb37b6.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00298;src:url('chunks/assets/font_64dbc98ebf883213f2f6291f.woff2')format("woff");}.ff5_c00298{font-family:ff5_c00298;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls1_c00298{letter-spacing:0.000000px;}
.ls0_c00298{letter-spacing:0.720000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:-18.000000px;}
.ws1_c00298{word-spacing:0.000000px;}
._7_c00298{margin-left:-3.168000px;}
._1_c00298{margin-left:-2.160000px;}
._5_c00298{margin-left:-1.152000px;}
._3_c00298{width:1.512000px;}
._6_c00298{width:2.880000px;}
._f_c00298{width:4.392000px;}
._10_c00298{width:5.616000px;}
._13_c00298{width:7.632000px;}
._17_c00298{width:8.784000px;}
._e_c00298{width:9.864000px;}
._d_c00298{width:11.304000px;}
._c_c00298{width:12.312000px;}
._8_c00298{width:13.608000px;}
._9_c00298{width:14.664000px;}
._b_c00298{width:15.768000px;}
._a_c00298{width:16.992000px;}
._2_c00298{width:19.368000px;}
._4_c00298{width:20.891976px;}
._19_c00298{width:22.008048px;}
._1a_c00298{width:23.195832px;}
._11_c00298{width:24.624000px;}
._12_c00298{width:25.920000px;}
._14_c00298{width:27.576000px;}
._15_c00298{width:30.744000px;}
._16_c00298{width:32.400000px;}
._0_c00298{width:151.932024px;}
._18_c00298{width:186.492024px;}
.fc0_c00298{color:rgb(0,0,0);}
.fs0_c00298{font-size:72.000000px;}
.y0_c00298{bottom:0.000000px;}
.y3_c00298{bottom:4.320000px;}
.y6_c00298{bottom:4.680000px;}
.y5_c00298{bottom:25.200000px;}
.y4_c00298{bottom:32.040000px;}
.y1_c00298{bottom:57.240000px;}
.y27_c00298{bottom:137.556000px;}
.y26_c00298{bottom:168.510000px;}
.y25_c00298{bottom:199.470000px;}
.y24_c00298{bottom:230.790000px;}
.y23_c00298{bottom:261.795000px;}
.y22_c00298{bottom:292.755000px;}
.y21_c00298{bottom:323.715000px;}
.y20_c00298{bottom:355.065000px;}
.y1f_c00298{bottom:386.025000px;}
.y1e_c00298{bottom:416.985000px;}
.y1d_c00298{bottom:447.945000px;}
.y1c_c00298{bottom:478.950000px;}
.y1b_c00298{bottom:519.270000px;}
.y1a_c00298{bottom:550.230000px;}
.y19_c00298{bottom:581.190000px;}
.y18_c00298{bottom:612.180000px;}
.y17_c00298{bottom:643.500000px;}
.y16_c00298{bottom:674.460000px;}
.y15_c00298{bottom:705.420000px;}
.y14_c00298{bottom:736.410000px;}
.y13_c00298{bottom:767.730000px;}
.y12_c00298{bottom:798.690000px;}
.y11_c00298{bottom:829.650000px;}
.y10_c00298{bottom:860.655000px;}
.yf_c00298{bottom:891.975000px;}
.ye_c00298{bottom:922.935000px;}
.yd_c00298{bottom:953.895000px;}
.yc_c00298{bottom:984.885000px;}
.yb_c00298{bottom:1016.205000px;}
.ya_c00298{bottom:1047.165000px;}
.y9_c00298{bottom:1078.125000px;}
.y8_c00298{bottom:1109.130000px;}
.y7_c00298{bottom:1140.450000px;}
.y2_c00298{bottom:1189.050000px;}
.h3_c00298{height:20.550000px;}
.h4_c00298{height:41.395500px;}
.h2_c00298{height:64.546875px;}
.h6_c00298{height:70.628906px;}
.h5_c00298{height:70.664062px;}
.h0_c00298{height:1262.880000px;}
.h1_c00298{height:1263.000000px;}
.w2_c00298{width:8.265000px;}
.w3_c00298{width:638.145000px;}
.w1_c00298{width:892.500000px;}
.w0_c00298{width:892.800000px;}
.x0_c00298{left:0.000000px;}
.x3_c00298{left:127.534500px;}
.x1_c00298{left:154.515000px;}
.x2_c00298{left:757.410000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls1_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:0.640000pt;}
.ws0_c00298{word-spacing:-16.000000pt;}
.ws1_c00298{word-spacing:0.000000pt;}
._7_c00298{margin-left:-2.816000pt;}
._1_c00298{margin-left:-1.920000pt;}
._5_c00298{margin-left:-1.024000pt;}
._3_c00298{width:1.344000pt;}
._6_c00298{width:2.560000pt;}
._f_c00298{width:3.904000pt;}
._10_c00298{width:4.992000pt;}
._13_c00298{width:6.784000pt;}
._17_c00298{width:7.808000pt;}
._e_c00298{width:8.768000pt;}
._d_c00298{width:10.048000pt;}
._c_c00298{width:10.944000pt;}
._8_c00298{width:12.096000pt;}
._9_c00298{width:13.034667pt;}
._b_c00298{width:14.016000pt;}
._a_c00298{width:15.104000pt;}
._2_c00298{width:17.216000pt;}
._4_c00298{width:18.570645pt;}
._19_c00298{width:19.562709pt;}
._1a_c00298{width:20.618517pt;}
._11_c00298{width:21.888000pt;}
._12_c00298{width:23.040000pt;}
._14_c00298{width:24.512000pt;}
._15_c00298{width:27.328000pt;}
._16_c00298{width:28.800000pt;}
._0_c00298{width:135.050688pt;}
._18_c00298{width:165.770688pt;}
.fs0_c00298{font-size:64.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y3_c00298{bottom:3.840000pt;}
.y6_c00298{bottom:4.160000pt;}
.y5_c00298{bottom:22.400000pt;}
.y4_c00298{bottom:28.480000pt;}
.y1_c00298{bottom:50.880000pt;}
.y27_c00298{bottom:122.272000pt;}
.y26_c00298{bottom:149.786667pt;}
.y25_c00298{bottom:177.306667pt;}
.y24_c00298{bottom:205.146667pt;}
.y23_c00298{bottom:232.706667pt;}
.y22_c00298{bottom:260.226667pt;}
.y21_c00298{bottom:287.746667pt;}
.y20_c00298{bottom:315.613333pt;}
.y1f_c00298{bottom:343.133333pt;}
.y1e_c00298{bottom:370.653333pt;}
.y1d_c00298{bottom:398.173333pt;}
.y1c_c00298{bottom:425.733333pt;}
.y1b_c00298{bottom:461.573333pt;}
.y1a_c00298{bottom:489.093333pt;}
.y19_c00298{bottom:516.613333pt;}
.y18_c00298{bottom:544.160000pt;}
.y17_c00298{bottom:572.000000pt;}
.y16_c00298{bottom:599.520000pt;}
.y15_c00298{bottom:627.040000pt;}
.y14_c00298{bottom:654.586667pt;}
.y13_c00298{bottom:682.426667pt;}
.y12_c00298{bottom:709.946667pt;}
.y11_c00298{bottom:737.466667pt;}
.y10_c00298{bottom:765.026667pt;}
.yf_c00298{bottom:792.866667pt;}
.ye_c00298{bottom:820.386667pt;}
.yd_c00298{bottom:847.906667pt;}
.yc_c00298{bottom:875.453333pt;}
.yb_c00298{bottom:903.293333pt;}
.ya_c00298{bottom:930.813333pt;}
.y9_c00298{bottom:958.333333pt;}
.y8_c00298{bottom:985.893333pt;}
.y7_c00298{bottom:1013.733333pt;}
.y2_c00298{bottom:1056.933333pt;}
.h3_c00298{height:18.266667pt;}
.h4_c00298{height:36.796000pt;}
.h2_c00298{height:57.375000pt;}
.h6_c00298{height:62.781250pt;}
.h5_c00298{height:62.812500pt;}
.h0_c00298{height:1122.560000pt;}
.h1_c00298{height:1122.666667pt;}
.w2_c00298{width:7.346667pt;}
.w3_c00298{width:567.240000pt;}
.w1_c00298{width:793.333333pt;}
.w0_c00298{width:793.600000pt;}
.x0_c00298{left:0.000000pt;}
.x3_c00298{left:113.364000pt;}
.x1_c00298{left:137.346667pt;}
.x2_c00298{left:673.253333pt;}
}





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

.ir_c00299:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00299;src:url('chunks/assets/font_c89d9525b242984a2914e3eb.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_bfec8e285d43ff6cd9e17338.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_c68fa9be308e0ff265885713.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_fae0d93827e0e673ad090d3d.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;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_c00299;src:url('chunks/assets/font_242f60e2d729c146f8be4d22.woff2')format("woff");}.ff5_c00299{font-family:ff5_c00299;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00299;src:url('chunks/assets/font_650608553002207a13913cf9.woff2')format("woff");}.ff6_c00299{font-family:ff6_c00299;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls5_c00299{letter-spacing:-1.416000px;}
.ls6_c00299{letter-spacing:-0.532800px;}
.ls2_c00299{letter-spacing:0.000000px;}
.ls4_c00299{letter-spacing:0.022800px;}
.ls3_c00299{letter-spacing:0.504000px;}
.ls7_c00299{letter-spacing:0.529800px;}
.ls0_c00299{letter-spacing:0.720000px;}
.ls1_c00299{letter-spacing:5.040000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:-72.000000px;}
.ws1_c00299{word-spacing:-18.000000px;}
.ws2_c00299{word-spacing:-15.120000px;}
.ws3_c00299{word-spacing:0.000000px;}
._3_c00299{margin-left:-2.736000px;}
._0_c00299{margin-left:-1.296000px;}
._1_c00299{width:1.080000px;}
._2_c00299{width:2.808000px;}
._c_c00299{width:4.392000px;}
._d_c00299{width:5.459976px;}
._10_c00299{width:6.696000px;}
._f_c00299{width:7.776000px;}
._e_c00299{width:9.288000px;}
._6_c00299{width:12.672000px;}
._5_c00299{width:13.680000px;}
._7_c00299{width:15.336000px;}
._14_c00299{width:16.704000px;}
._a_c00299{width:19.296000px;}
._b_c00299{width:20.520000px;}
._12_c00299{width:27.360000px;}
._11_c00299{width:28.440000px;}
._8_c00299{width:29.520000px;}
._9_c00299{width:30.600000px;}
._13_c00299{width:32.256000px;}
._4_c00299{width:151.932024px;}
.fc0_c00299{color:rgb(0,0,0);}
.fs1_c00299{font-size:60.480000px;}
.fs0_c00299{font-size:72.000000px;}
.y0_c00299{bottom:0.000000px;}
.y3_c00299{bottom:4.320000px;}
.y6_c00299{bottom:4.680000px;}
.y5_c00299{bottom:25.200000px;}
.y4_c00299{bottom:32.040000px;}
.y1_c00299{bottom:57.240000px;}
.y27_c00299{bottom:130.716000px;}
.y26_c00299{bottom:161.670000px;}
.y25_c00299{bottom:192.630000px;}
.y24_c00299{bottom:223.590000px;}
.y23_c00299{bottom:254.955000px;}
.y22_c00299{bottom:283.395000px;}
.y21_c00299{bottom:309.315000px;}
.y20_c00299{bottom:335.235000px;}
.y1f_c00299{bottom:361.185000px;}
.y1e_c00299{bottom:396.105000px;}
.y1d_c00299{bottom:422.025000px;}
.y1c_c00299{bottom:447.945000px;}
.y1b_c00299{bottom:473.865000px;}
.y1a_c00299{bottom:499.470000px;}
.y19_c00299{bottom:525.390000px;}
.y18_c00299{bottom:551.310000px;}
.y17_c00299{bottom:577.230000px;}
.y16_c00299{bottom:626.580000px;}
.y15_c00299{bottom:678.420000px;}
.y14_c00299{bottom:718.380000px;}
.y13_c00299{bottom:749.730000px;}
.y12_c00299{bottom:780.690000px;}
.y11_c00299{bottom:820.650000px;}
.y10_c00299{bottom:851.655000px;}
.yf_c00299{bottom:882.975000px;}
.ye_c00299{bottom:913.935000px;}
.yd_c00299{bottom:944.895000px;}
.yc_c00299{bottom:975.885000px;}
.yb_c00299{bottom:1007.205000px;}
.ya_c00299{bottom:1038.165000px;}
.y9_c00299{bottom:1069.125000px;}
.y8_c00299{bottom:1109.130000px;}
.y7_c00299{bottom:1140.450000px;}
.y2_c00299{bottom:1189.050000px;}
.h3_c00299{height:20.550000px;}
.h4_c00299{height:41.395500px;}
.h8_c00299{height:59.328281px;}
.h7_c00299{height:59.357813px;}
.h2_c00299{height:64.546875px;}
.h6_c00299{height:70.628906px;}
.h5_c00299{height:70.664062px;}
.h0_c00299{height:1262.880000px;}
.h1_c00299{height:1263.000000px;}
.w2_c00299{width:8.265000px;}
.w3_c00299{width:638.145000px;}
.w1_c00299{width:892.500000px;}
.w0_c00299{width:892.800000px;}
.x0_c00299{left:0.000000px;}
.x3_c00299{left:127.534500px;}
.x1_c00299{left:154.515000px;}
.x5_c00299{left:169.995000px;}
.x4_c00299{left:180.795000px;}
.x2_c00299{left:757.410000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls5_c00299{letter-spacing:-1.258667pt;}
.ls6_c00299{letter-spacing:-0.473600pt;}
.ls2_c00299{letter-spacing:0.000000pt;}
.ls4_c00299{letter-spacing:0.020267pt;}
.ls3_c00299{letter-spacing:0.448000pt;}
.ls7_c00299{letter-spacing:0.470933pt;}
.ls0_c00299{letter-spacing:0.640000pt;}
.ls1_c00299{letter-spacing:4.480000pt;}
.ws0_c00299{word-spacing:-64.000000pt;}
.ws1_c00299{word-spacing:-16.000000pt;}
.ws2_c00299{word-spacing:-13.440000pt;}
.ws3_c00299{word-spacing:0.000000pt;}
._3_c00299{margin-left:-2.432000pt;}
._0_c00299{margin-left:-1.152000pt;}
._1_c00299{width:0.960000pt;}
._2_c00299{width:2.496000pt;}
._c_c00299{width:3.904000pt;}
._d_c00299{width:4.853312pt;}
._10_c00299{width:5.952000pt;}
._f_c00299{width:6.912000pt;}
._e_c00299{width:8.256000pt;}
._6_c00299{width:11.264000pt;}
._5_c00299{width:12.160000pt;}
._7_c00299{width:13.632000pt;}
._14_c00299{width:14.848000pt;}
._a_c00299{width:17.152000pt;}
._b_c00299{width:18.240000pt;}
._12_c00299{width:24.320000pt;}
._11_c00299{width:25.280000pt;}
._8_c00299{width:26.240000pt;}
._9_c00299{width:27.200000pt;}
._13_c00299{width:28.672000pt;}
._4_c00299{width:135.050688pt;}
.fs1_c00299{font-size:53.760000pt;}
.fs0_c00299{font-size:64.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y3_c00299{bottom:3.840000pt;}
.y6_c00299{bottom:4.160000pt;}
.y5_c00299{bottom:22.400000pt;}
.y4_c00299{bottom:28.480000pt;}
.y1_c00299{bottom:50.880000pt;}
.y27_c00299{bottom:116.192000pt;}
.y26_c00299{bottom:143.706667pt;}
.y25_c00299{bottom:171.226667pt;}
.y24_c00299{bottom:198.746667pt;}
.y23_c00299{bottom:226.626667pt;}
.y22_c00299{bottom:251.906667pt;}
.y21_c00299{bottom:274.946667pt;}
.y20_c00299{bottom:297.986667pt;}
.y1f_c00299{bottom:321.053333pt;}
.y1e_c00299{bottom:352.093333pt;}
.y1d_c00299{bottom:375.133333pt;}
.y1c_c00299{bottom:398.173333pt;}
.y1b_c00299{bottom:421.213333pt;}
.y1a_c00299{bottom:443.973333pt;}
.y19_c00299{bottom:467.013333pt;}
.y18_c00299{bottom:490.053333pt;}
.y17_c00299{bottom:513.093333pt;}
.y16_c00299{bottom:556.960000pt;}
.y15_c00299{bottom:603.040000pt;}
.y14_c00299{bottom:638.560000pt;}
.y13_c00299{bottom:666.426667pt;}
.y12_c00299{bottom:693.946667pt;}
.y11_c00299{bottom:729.466667pt;}
.y10_c00299{bottom:757.026667pt;}
.yf_c00299{bottom:784.866667pt;}
.ye_c00299{bottom:812.386667pt;}
.yd_c00299{bottom:839.906667pt;}
.yc_c00299{bottom:867.453333pt;}
.yb_c00299{bottom:895.293333pt;}
.ya_c00299{bottom:922.813333pt;}
.y9_c00299{bottom:950.333333pt;}
.y8_c00299{bottom:985.893333pt;}
.y7_c00299{bottom:1013.733333pt;}
.y2_c00299{bottom:1056.933333pt;}
.h3_c00299{height:18.266667pt;}
.h4_c00299{height:36.796000pt;}
.h8_c00299{height:52.736250pt;}
.h7_c00299{height:52.762500pt;}
.h2_c00299{height:57.375000pt;}
.h6_c00299{height:62.781250pt;}
.h5_c00299{height:62.812500pt;}
.h0_c00299{height:1122.560000pt;}
.h1_c00299{height:1122.666667pt;}
.w2_c00299{width:7.346667pt;}
.w3_c00299{width:567.240000pt;}
.w1_c00299{width:793.333333pt;}
.w0_c00299{width:793.600000pt;}
.x0_c00299{left:0.000000pt;}
.x3_c00299{left:113.364000pt;}
.x1_c00299{left:137.346667pt;}
.x5_c00299{left:151.106667pt;}
.x4_c00299{left:160.706667pt;}
.x2_c00299{left:673.253333pt;}
}





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

.ir_c00300:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00300;src:url('chunks/assets/font_2afb1b5c72355ce4a04edea6.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_dae68a1c42c0c0915b838067.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_5870c37977e36ef86f1c3b6d.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_12655f8b8c0637f9c8705415.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;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_c00300;src:url('chunks/assets/font_150c1c9a3ba76d65f3781e2a.woff2')format("woff");}.ff6_c00300{font-family:ff6_c00300;line-height:1.117188;font-style:normal;font-weight: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_c00300;src:url('chunks/assets/font_452d9ebe4402216dd4eab029.woff2')format("woff");}.ff7_c00300{font-family:ff7_c00300;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls5_c00300{letter-spacing:-0.241800px;}
.ls7_c00300{letter-spacing:-0.075000px;}
.ls4_c00300{letter-spacing:0.000000px;}
.ls9_c00300{letter-spacing:0.504000px;}
.ls6_c00300{letter-spacing:0.507000px;}
.ls1_c00300{letter-spacing:0.720000px;}
.ls0_c00300{letter-spacing:0.840000px;}
.ls3_c00300{letter-spacing:1.152000px;}
.ls8_c00300{letter-spacing:2.160000px;}
.ls2_c00300{letter-spacing:10.800000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00300{word-spacing:-60.480000px;}
.ws6_c00300{word-spacing:-18.504000px;}
.ws0_c00300{word-spacing:-18.000000px;}
.ws4_c00300{word-spacing:-15.627000px;}
.ws1_c00300{word-spacing:-15.120000px;}
.ws5_c00300{word-spacing:-15.045000px;}
.ws2_c00300{word-spacing:-14.878200px;}
.ws7_c00300{word-spacing:0.000000px;}
._1_c00300{margin-left:-2.736000px;}
._3_c00300{margin-left:-1.728000px;}
._0_c00300{width:1.656000px;}
._d_c00300{width:2.723976px;}
._8_c00300{width:3.744000px;}
._b_c00300{width:4.968000px;}
._6_c00300{width:6.120000px;}
._5_c00300{width:7.128000px;}
._7_c00300{width:8.208000px;}
._9_c00300{width:9.288000px;}
._a_c00300{width:11.160000px;}
._c_c00300{width:12.524999px;}
._2_c00300{width:14.112000px;}
._4_c00300{width:16.056000px;}
._12_c00300{width:19.114802px;}
._11_c00300{width:20.243969px;}
._10_c00300{width:21.672000px;}
._e_c00300{width:23.124000px;}
._f_c00300{width:24.612000px;}
.fc0_c00300{color:rgb(0,0,0);}
.fs3_c00300{font-size:38.880000px;}
.fs2_c00300{font-size:47.520000px;}
.fs1_c00300{font-size:60.480000px;}
.fs0_c00300{font-size:72.000000px;}
.y0_c00300{bottom:0.000000px;}
.y3_c00300{bottom:4.320000px;}
.y6_c00300{bottom:4.680000px;}
.y5_c00300{bottom:25.200000px;}
.y4_c00300{bottom:32.040000px;}
.y1_c00300{bottom:57.240000px;}
.y2b_c00300{bottom:130.716000px;}
.y2a_c00300{bottom:147.996000px;}
.y29_c00300{bottom:165.270000px;}
.y28_c00300{bottom:182.550000px;}
.y27_c00300{bottom:199.830000px;}
.y26_c00300{bottom:206.670000px;}
.y25_c00300{bottom:217.470000px;}
.y24_c00300{bottom:245.235000px;}
.y22_c00300{bottom:297.435000px;}
.y23_c00300{bottom:305.715000px;}
.y21_c00300{bottom:328.395000px;}
.y20_c00300{bottom:359.385000px;}
.y1f_c00300{bottom:390.345000px;}
.y1e_c00300{bottom:421.665000px;}
.y1d_c00300{bottom:452.625000px;}
.y1c_c00300{bottom:483.630000px;}
.y1b_c00300{bottom:514.590000px;}
.y1a_c00300{bottom:545.910000px;}
.y19_c00300{bottom:576.870000px;}
.y18_c00300{bottom:607.860000px;}
.y17_c00300{bottom:638.820000px;}
.y16_c00300{bottom:667.620000px;}
.y15_c00300{bottom:693.540000px;}
.y14_c00300{bottom:719.490000px;}
.y13_c00300{bottom:754.410000px;}
.y12_c00300{bottom:780.330000px;}
.y11_c00300{bottom:806.250000px;}
.y10_c00300{bottom:831.810000px;}
.yf_c00300{bottom:857.775000px;}
.ye_c00300{bottom:883.695000px;}
.yd_c00300{bottom:933.015000px;}
.yc_c00300{bottom:984.885000px;}
.yb_c00300{bottom:1016.205000px;}
.ya_c00300{bottom:1047.165000px;}
.y9_c00300{bottom:1078.125000px;}
.y8_c00300{bottom:1109.130000px;}
.y7_c00300{bottom:1140.450000px;}
.y2_c00300{bottom:1189.050000px;}
.h3_c00300{height:20.550000px;}
.hb_c00300{height:38.158594px;}
.h4_c00300{height:41.395500px;}
.ha_c00300{height:46.615078px;}
.h8_c00300{height:59.328281px;}
.h7_c00300{height:59.357813px;}
.h2_c00300{height:64.546875px;}
.h5_c00300{height:70.664062px;}
.h6_c00300{height:72.562500px;}
.h9_c00300{height:1262.875500px;}
.h0_c00300{height:1262.880000px;}
.h1_c00300{height:1263.000000px;}
.w2_c00300{width:8.265000px;}
.w3_c00300{width:638.145000px;}
.w1_c00300{width:892.500000px;}
.w4_c00300{width:892.797000px;}
.w0_c00300{width:892.800000px;}
.x0_c00300{left:0.000000px;}
.x3_c00300{left:127.534500px;}
.x8_c00300{left:142.632000px;}
.x1_c00300{left:154.515000px;}
.x4_c00300{left:169.995000px;}
.x7_c00300{left:343.590000px;}
.x5_c00300{left:618.732000px;}
.x6_c00300{left:637.125000px;}
.x2_c00300{left:757.410000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls5_c00300{letter-spacing:-0.214933pt;}
.ls7_c00300{letter-spacing:-0.066667pt;}
.ls4_c00300{letter-spacing:0.000000pt;}
.ls9_c00300{letter-spacing:0.448000pt;}
.ls6_c00300{letter-spacing:0.450667pt;}
.ls1_c00300{letter-spacing:0.640000pt;}
.ls0_c00300{letter-spacing:0.746667pt;}
.ls3_c00300{letter-spacing:1.024000pt;}
.ls8_c00300{letter-spacing:1.920000pt;}
.ls2_c00300{letter-spacing:9.600000pt;}
.ws3_c00300{word-spacing:-53.760000pt;}
.ws6_c00300{word-spacing:-16.448000pt;}
.ws0_c00300{word-spacing:-16.000000pt;}
.ws4_c00300{word-spacing:-13.890667pt;}
.ws1_c00300{word-spacing:-13.440000pt;}
.ws5_c00300{word-spacing:-13.373333pt;}
.ws2_c00300{word-spacing:-13.225067pt;}
.ws7_c00300{word-spacing:0.000000pt;}
._1_c00300{margin-left:-2.432000pt;}
._3_c00300{margin-left:-1.536000pt;}
._0_c00300{width:1.472000pt;}
._d_c00300{width:2.421312pt;}
._8_c00300{width:3.328000pt;}
._b_c00300{width:4.416000pt;}
._6_c00300{width:5.440000pt;}
._5_c00300{width:6.336000pt;}
._7_c00300{width:7.296000pt;}
._9_c00300{width:8.256000pt;}
._a_c00300{width:9.920000pt;}
._c_c00300{width:11.133332pt;}
._2_c00300{width:12.544000pt;}
._4_c00300{width:14.272000pt;}
._12_c00300{width:16.990935pt;}
._11_c00300{width:17.994639pt;}
._10_c00300{width:19.264000pt;}
._e_c00300{width:20.554667pt;}
._f_c00300{width:21.877333pt;}
.fs3_c00300{font-size:34.560000pt;}
.fs2_c00300{font-size:42.240000pt;}
.fs1_c00300{font-size:53.760000pt;}
.fs0_c00300{font-size:64.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.y3_c00300{bottom:3.840000pt;}
.y6_c00300{bottom:4.160000pt;}
.y5_c00300{bottom:22.400000pt;}
.y4_c00300{bottom:28.480000pt;}
.y1_c00300{bottom:50.880000pt;}
.y2b_c00300{bottom:116.192000pt;}
.y2a_c00300{bottom:131.552000pt;}
.y29_c00300{bottom:146.906667pt;}
.y28_c00300{bottom:162.266667pt;}
.y27_c00300{bottom:177.626667pt;}
.y26_c00300{bottom:183.706667pt;}
.y25_c00300{bottom:193.306667pt;}
.y24_c00300{bottom:217.986667pt;}
.y22_c00300{bottom:264.386667pt;}
.y23_c00300{bottom:271.746667pt;}
.y21_c00300{bottom:291.906667pt;}
.y20_c00300{bottom:319.453333pt;}
.y1f_c00300{bottom:346.973333pt;}
.y1e_c00300{bottom:374.813333pt;}
.y1d_c00300{bottom:402.333333pt;}
.y1c_c00300{bottom:429.893333pt;}
.y1b_c00300{bottom:457.413333pt;}
.y1a_c00300{bottom:485.253333pt;}
.y19_c00300{bottom:512.773333pt;}
.y18_c00300{bottom:540.320000pt;}
.y17_c00300{bottom:567.840000pt;}
.y16_c00300{bottom:593.440000pt;}
.y15_c00300{bottom:616.480000pt;}
.y14_c00300{bottom:639.546667pt;}
.y13_c00300{bottom:670.586667pt;}
.y12_c00300{bottom:693.626667pt;}
.y11_c00300{bottom:716.666667pt;}
.y10_c00300{bottom:739.386667pt;}
.yf_c00300{bottom:762.466667pt;}
.ye_c00300{bottom:785.506667pt;}
.yd_c00300{bottom:829.346667pt;}
.yc_c00300{bottom:875.453333pt;}
.yb_c00300{bottom:903.293333pt;}
.ya_c00300{bottom:930.813333pt;}
.y9_c00300{bottom:958.333333pt;}
.y8_c00300{bottom:985.893333pt;}
.y7_c00300{bottom:1013.733333pt;}
.y2_c00300{bottom:1056.933333pt;}
.h3_c00300{height:18.266667pt;}
.hb_c00300{height:33.918750pt;}
.h4_c00300{height:36.796000pt;}
.ha_c00300{height:41.435625pt;}
.h8_c00300{height:52.736250pt;}
.h7_c00300{height:52.762500pt;}
.h2_c00300{height:57.375000pt;}
.h5_c00300{height:62.812500pt;}
.h6_c00300{height:64.500000pt;}
.h9_c00300{height:1122.556000pt;}
.h0_c00300{height:1122.560000pt;}
.h1_c00300{height:1122.666667pt;}
.w2_c00300{width:7.346667pt;}
.w3_c00300{width:567.240000pt;}
.w1_c00300{width:793.333333pt;}
.w4_c00300{width:793.597333pt;}
.w0_c00300{width:793.600000pt;}
.x0_c00300{left:0.000000pt;}
.x3_c00300{left:113.364000pt;}
.x8_c00300{left:126.784000pt;}
.x1_c00300{left:137.346667pt;}
.x4_c00300{left:151.106667pt;}
.x7_c00300{left:305.413333pt;}
.x5_c00300{left:549.984000pt;}
.x6_c00300{left:566.333333pt;}
.x2_c00300{left:673.253333pt;}
}





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

.ir_c00301:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00301;src:url('chunks/assets/font_5840000a44f0aa66f81bbbda.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_fabcc02c60828ea6f8f554c4.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_c48ff752fdb892c693318f27.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;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_c00301;src:url('chunks/assets/font_646c49304033c18f1af21b1a.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00301;src:url('chunks/assets/font_46f6115eaeb16b4ebc24f8f8.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00301;src:url('chunks/assets/font_51f4d168826fdd5fe3b92a53.woff2')format("woff");}.ff6_c00301{font-family:ff6_c00301;line-height:1.117188;font-style:normal;font-weight: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_c00301;src:url('chunks/assets/font_c9876ac67aaccbe7e751d25e.woff2')format("woff");}.ff7_c00301{font-family:ff7_c00301;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls19_c00301{letter-spacing:-1.422000px;}
.ls14_c00301{letter-spacing:-1.416000px;}
.ls17_c00301{letter-spacing:-0.972000px;}
.ls16_c00301{letter-spacing:-0.954000px;}
.ls10_c00301{letter-spacing:-0.912000px;}
.lsf_c00301{letter-spacing:-0.337200px;}
.ls12_c00301{letter-spacing:-0.302400px;}
.ls13_c00301{letter-spacing:-0.241800px;}
.lse_c00301{letter-spacing:0.000000px;}
.ls15_c00301{letter-spacing:0.020400px;}
.ls18_c00301{letter-spacing:0.022800px;}
.ls3_c00301{letter-spacing:0.048960px;}
.lsc_c00301{letter-spacing:0.166800px;}
.ls11_c00301{letter-spacing:0.219000px;}
.ls1a_c00301{letter-spacing:0.466800px;}
.ls6_c00301{letter-spacing:0.518400px;}
.ls2_c00301{letter-spacing:0.524160px;}
.ls1b_c00301{letter-spacing:0.702000px;}
.lsd_c00301{letter-spacing:0.708716px;}
.ls0_c00301{letter-spacing:0.720000px;}
.ls1_c00301{letter-spacing:0.740366px;}
.ls4_c00301{letter-spacing:1.620000px;}
.ls7_c00301{letter-spacing:2.160000px;}
.ls9_c00301{letter-spacing:2.168653px;}
.lsa_c00301{letter-spacing:2.169138px;}
.ls8_c00301{letter-spacing:2.180252px;}
.ls5_c00301{letter-spacing:3.600000px;}
.lsb_c00301{letter-spacing:3.620019px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00301{word-spacing:-72.000000px;}
.ws3_c00301{word-spacing:-60.699000px;}
.ws2_c00301{word-spacing:-60.480000px;}
.ws7_c00301{word-spacing:-18.000000px;}
.wsf_c00301{word-spacing:-15.822000px;}
.wsb_c00301{word-spacing:-15.286800px;}
.wsd_c00301{word-spacing:-15.142800px;}
.ws8_c00301{word-spacing:-15.140400px;}
.ws0_c00301{word-spacing:-15.120000px;}
.ws5_c00301{word-spacing:-14.817600px;}
.ws1_c00301{word-spacing:-14.782800px;}
.ws9_c00301{word-spacing:-14.166000px;}
.wsa_c00301{word-spacing:-14.148000px;}
.wse_c00301{word-spacing:-13.704000px;}
.wsc_c00301{word-spacing:-13.698000px;}
.ws4_c00301{word-spacing:-12.600000px;}
.ws10_c00301{word-spacing:0.000000px;}
._2_c00301{margin-left:-7.948045px;}
._7_c00301{margin-left:-2.856121px;}
._0_c00301{margin-left:-1.559282px;}
._1_c00301{width:1.158240px;}
._5_c00301{width:2.445364px;}
._9_c00301{width:4.398131px;}
._8_c00301{width:5.489877px;}
._6_c00301{width:6.774002px;}
._b_c00301{width:8.568000px;}
._d_c00301{width:9.647411px;}
._c_c00301{width:11.065918px;}
._f_c00301{width:12.249135px;}
._e_c00301{width:14.243992px;}
._a_c00301{width:16.390201px;}
._4_c00301{width:188.039940px;}
._3_c00301{width:189.359977px;}
.fc1_c00301{color:rgb(38,38,38);}
.fc0_c00301{color:rgb(0,0,0);}
.fs3_c00301{font-size:38.880000px;}
.fs2_c00301{font-size:47.520000px;}
.fs1_c00301{font-size:60.480000px;}
.fs0_c00301{font-size:72.000000px;}
.y0_c00301{bottom:0.000000px;}
.y3_c00301{bottom:4.320000px;}
.y6_c00301{bottom:4.680000px;}
.y5_c00301{bottom:25.200000px;}
.y4_c00301{bottom:32.040000px;}
.y1_c00301{bottom:57.240000px;}
.y38_c00301{bottom:130.716000px;}
.y37_c00301{bottom:147.996000px;}
.y36_c00301{bottom:154.830000px;}
.y35_c00301{bottom:165.270000px;}
.y34_c00301{bottom:182.550000px;}
.y33_c00301{bottom:199.830000px;}
.y32_c00301{bottom:216.750000px;}
.y31_c00301{bottom:234.075000px;}
.y30_c00301{bottom:251.355000px;}
.y2f_c00301{bottom:268.635000px;}
.y2e_c00301{bottom:285.915000px;}
.y2d_c00301{bottom:292.755000px;}
.y2c_c00301{bottom:303.195000px;}
.y2b_c00301{bottom:320.475000px;}
.y2a_c00301{bottom:337.755000px;}
.y29_c00301{bottom:344.595000px;}
.y28_c00301{bottom:355.065000px;}
.y27_c00301{bottom:372.345000px;}
.y26_c00301{bottom:389.625000px;}
.y25_c00301{bottom:406.905000px;}
.y24_c00301{bottom:413.745000px;}
.y23_c00301{bottom:424.545000px;}
.y21_c00301{bottom:469.905000px;}
.y22_c00301{bottom:478.230000px;}
.y20_c00301{bottom:501.270000px;}
.y1f_c00301{bottom:532.230000px;}
.y1e_c00301{bottom:563.190000px;}
.y1c_c00301{bottom:594.150000px;}
.y1d_c00301{bottom:602.460000px;}
.y1a_c00301{bottom:625.500000px;}
.y1b_c00301{bottom:633.780000px;}
.y18_c00301{bottom:656.460000px;}
.y19_c00301{bottom:664.740000px;}
.y17_c00301{bottom:687.420000px;}
.y16_c00301{bottom:718.380000px;}
.y15_c00301{bottom:749.730000px;}
.y14_c00301{bottom:780.690000px;}
.y13_c00301{bottom:818.490000px;}
.y12_c00301{bottom:844.455000px;}
.y11_c00301{bottom:870.375000px;}
.y10_c00301{bottom:895.935000px;}
.yf_c00301{bottom:921.855000px;}
.ye_c00301{bottom:959.295000px;}
.yd_c00301{bottom:987.765000px;}
.yc_c00301{bottom:1013.685000px;}
.yb_c00301{bottom:1039.605000px;}
.ya_c00301{bottom:1065.525000px;}
.y9_c00301{bottom:1091.490000px;}
.y8_c00301{bottom:1117.410000px;}
.y7_c00301{bottom:1143.330000px;}
.y2_c00301{bottom:1189.050000px;}
.h3_c00301{height:20.550000px;}
.hc_c00301{height:34.855313px;}
.h4_c00301{height:41.395500px;}
.hb_c00301{height:46.615078px;}
.h9_c00301{height:46.638281px;}
.hd_c00301{height:54.219375px;}
.h7_c00301{height:59.328281px;}
.h5_c00301{height:59.357813px;}
.h2_c00301{height:64.546875px;}
.ha_c00301{height:70.628906px;}
.h6_c00301{height:70.664062px;}
.h8_c00301{height:1262.875500px;}
.h0_c00301{height:1262.880000px;}
.h1_c00301{height:1263.000000px;}
.w2_c00301{width:8.265000px;}
.w3_c00301{width:638.145000px;}
.w1_c00301{width:892.500000px;}
.w4_c00301{width:892.797000px;}
.w0_c00301{width:892.800000px;}
.x0_c00301{left:0.000000px;}
.x3_c00301{left:127.534500px;}
.x10_c00301{left:142.632000px;}
.x1_c00301{left:154.515000px;}
.x4_c00301{left:169.995000px;}
.x5_c00301{left:196.632000px;}
.x9_c00301{left:203.472000px;}
.x6_c00301{left:215.025000px;}
.xa_c00301{left:221.865000px;}
.xf_c00301{left:343.590000px;}
.xb_c00301{left:385.017000px;}
.xc_c00301{left:403.380000px;}
.xd_c00301{left:451.257000px;}
.xe_c00301{left:469.650000px;}
.x7_c00301{left:491.607000px;}
.x8_c00301{left:509.970000px;}
.x2_c00301{left:757.410000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls19_c00301{letter-spacing:-1.264000pt;}
.ls14_c00301{letter-spacing:-1.258667pt;}
.ls17_c00301{letter-spacing:-0.864000pt;}
.ls16_c00301{letter-spacing:-0.848000pt;}
.ls10_c00301{letter-spacing:-0.810667pt;}
.lsf_c00301{letter-spacing:-0.299733pt;}
.ls12_c00301{letter-spacing:-0.268800pt;}
.ls13_c00301{letter-spacing:-0.214933pt;}
.lse_c00301{letter-spacing:0.000000pt;}
.ls15_c00301{letter-spacing:0.018133pt;}
.ls18_c00301{letter-spacing:0.020267pt;}
.ls3_c00301{letter-spacing:0.043520pt;}
.lsc_c00301{letter-spacing:0.148267pt;}
.ls11_c00301{letter-spacing:0.194667pt;}
.ls1a_c00301{letter-spacing:0.414933pt;}
.ls6_c00301{letter-spacing:0.460800pt;}
.ls2_c00301{letter-spacing:0.465920pt;}
.ls1b_c00301{letter-spacing:0.624000pt;}
.lsd_c00301{letter-spacing:0.629970pt;}
.ls0_c00301{letter-spacing:0.640000pt;}
.ls1_c00301{letter-spacing:0.658103pt;}
.ls4_c00301{letter-spacing:1.440000pt;}
.ls7_c00301{letter-spacing:1.920000pt;}
.ls9_c00301{letter-spacing:1.927692pt;}
.lsa_c00301{letter-spacing:1.928123pt;}
.ls8_c00301{letter-spacing:1.938002pt;}
.ls5_c00301{letter-spacing:3.200000pt;}
.lsb_c00301{letter-spacing:3.217795pt;}
.ws6_c00301{word-spacing:-64.000000pt;}
.ws3_c00301{word-spacing:-53.954667pt;}
.ws2_c00301{word-spacing:-53.760000pt;}
.ws7_c00301{word-spacing:-16.000000pt;}
.wsf_c00301{word-spacing:-14.064000pt;}
.wsb_c00301{word-spacing:-13.588267pt;}
.wsd_c00301{word-spacing:-13.460267pt;}
.ws8_c00301{word-spacing:-13.458133pt;}
.ws0_c00301{word-spacing:-13.440000pt;}
.ws5_c00301{word-spacing:-13.171200pt;}
.ws1_c00301{word-spacing:-13.140267pt;}
.ws9_c00301{word-spacing:-12.592000pt;}
.wsa_c00301{word-spacing:-12.576000pt;}
.wse_c00301{word-spacing:-12.181333pt;}
.wsc_c00301{word-spacing:-12.176000pt;}
.ws4_c00301{word-spacing:-11.200000pt;}
.ws10_c00301{word-spacing:0.000000pt;}
._2_c00301{margin-left:-7.064929pt;}
._7_c00301{margin-left:-2.538774pt;}
._0_c00301{margin-left:-1.386028pt;}
._1_c00301{width:1.029547pt;}
._5_c00301{width:2.173657pt;}
._9_c00301{width:3.909449pt;}
._8_c00301{width:4.879891pt;}
._6_c00301{width:6.021335pt;}
._b_c00301{width:7.616000pt;}
._d_c00301{width:8.575476pt;}
._c_c00301{width:9.836372pt;}
._f_c00301{width:10.888120pt;}
._e_c00301{width:12.661327pt;}
._a_c00301{width:14.569068pt;}
._4_c00301{width:167.146614pt;}
._3_c00301{width:168.319980pt;}
.fs3_c00301{font-size:34.560000pt;}
.fs2_c00301{font-size:42.240000pt;}
.fs1_c00301{font-size:53.760000pt;}
.fs0_c00301{font-size:64.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y3_c00301{bottom:3.840000pt;}
.y6_c00301{bottom:4.160000pt;}
.y5_c00301{bottom:22.400000pt;}
.y4_c00301{bottom:28.480000pt;}
.y1_c00301{bottom:50.880000pt;}
.y38_c00301{bottom:116.192000pt;}
.y37_c00301{bottom:131.552000pt;}
.y36_c00301{bottom:137.626667pt;}
.y35_c00301{bottom:146.906667pt;}
.y34_c00301{bottom:162.266667pt;}
.y33_c00301{bottom:177.626667pt;}
.y32_c00301{bottom:192.666667pt;}
.y31_c00301{bottom:208.066667pt;}
.y30_c00301{bottom:223.426667pt;}
.y2f_c00301{bottom:238.786667pt;}
.y2e_c00301{bottom:254.146667pt;}
.y2d_c00301{bottom:260.226667pt;}
.y2c_c00301{bottom:269.506667pt;}
.y2b_c00301{bottom:284.866667pt;}
.y2a_c00301{bottom:300.226667pt;}
.y29_c00301{bottom:306.306667pt;}
.y28_c00301{bottom:315.613333pt;}
.y27_c00301{bottom:330.973333pt;}
.y26_c00301{bottom:346.333333pt;}
.y25_c00301{bottom:361.693333pt;}
.y24_c00301{bottom:367.773333pt;}
.y23_c00301{bottom:377.373333pt;}
.y21_c00301{bottom:417.693333pt;}
.y22_c00301{bottom:425.093333pt;}
.y20_c00301{bottom:445.573333pt;}
.y1f_c00301{bottom:473.093333pt;}
.y1e_c00301{bottom:500.613333pt;}
.y1c_c00301{bottom:528.133333pt;}
.y1d_c00301{bottom:535.520000pt;}
.y1a_c00301{bottom:556.000000pt;}
.y1b_c00301{bottom:563.360000pt;}
.y18_c00301{bottom:583.520000pt;}
.y19_c00301{bottom:590.880000pt;}
.y17_c00301{bottom:611.040000pt;}
.y16_c00301{bottom:638.560000pt;}
.y15_c00301{bottom:666.426667pt;}
.y14_c00301{bottom:693.946667pt;}
.y13_c00301{bottom:727.546667pt;}
.y12_c00301{bottom:750.626667pt;}
.y11_c00301{bottom:773.666667pt;}
.y10_c00301{bottom:796.386667pt;}
.yf_c00301{bottom:819.426667pt;}
.ye_c00301{bottom:852.706667pt;}
.yd_c00301{bottom:878.013333pt;}
.yc_c00301{bottom:901.053333pt;}
.yb_c00301{bottom:924.093333pt;}
.ya_c00301{bottom:947.133333pt;}
.y9_c00301{bottom:970.213333pt;}
.y8_c00301{bottom:993.253333pt;}
.y7_c00301{bottom:1016.293333pt;}
.y2_c00301{bottom:1056.933333pt;}
.h3_c00301{height:18.266667pt;}
.hc_c00301{height:30.982500pt;}
.h4_c00301{height:36.796000pt;}
.hb_c00301{height:41.435625pt;}
.h9_c00301{height:41.456250pt;}
.hd_c00301{height:48.195000pt;}
.h7_c00301{height:52.736250pt;}
.h5_c00301{height:52.762500pt;}
.h2_c00301{height:57.375000pt;}
.ha_c00301{height:62.781250pt;}
.h6_c00301{height:62.812500pt;}
.h8_c00301{height:1122.556000pt;}
.h0_c00301{height:1122.560000pt;}
.h1_c00301{height:1122.666667pt;}
.w2_c00301{width:7.346667pt;}
.w3_c00301{width:567.240000pt;}
.w1_c00301{width:793.333333pt;}
.w4_c00301{width:793.597333pt;}
.w0_c00301{width:793.600000pt;}
.x0_c00301{left:0.000000pt;}
.x3_c00301{left:113.364000pt;}
.x10_c00301{left:126.784000pt;}
.x1_c00301{left:137.346667pt;}
.x4_c00301{left:151.106667pt;}
.x5_c00301{left:174.784000pt;}
.x9_c00301{left:180.864000pt;}
.x6_c00301{left:191.133333pt;}
.xa_c00301{left:197.213333pt;}
.xf_c00301{left:305.413333pt;}
.xb_c00301{left:342.237333pt;}
.xc_c00301{left:358.560000pt;}
.xd_c00301{left:401.117333pt;}
.xe_c00301{left:417.466667pt;}
.x7_c00301{left:436.984000pt;}
.x8_c00301{left:453.306667pt;}
.x2_c00301{left:673.253333pt;}
}





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

.ir_c00302:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00302;src:url('chunks/assets/font_bc2cea549fa21c06cb7efd80.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_b69b67a15f3ff21859cb513d.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00302;src:url('chunks/assets/font_3c3ec4f04f51bdb8b1d33269.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;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_c00302;src:url('chunks/assets/font_def122598d42cf7d78578c5c.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00302;src:url('chunks/assets/font_bb1e0e4d524b3a7c12c8d6c9.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00302;src:url('chunks/assets/font_b898d15aaf6dce7958a15c8b.woff2')format("woff");}.ff6_c00302{font-family:ff6_c00302;line-height:1.104004;font-style:normal;font-weight: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_c00302;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00302{font-family:ff7_c00302;line-height:1.311035;font-style:normal;font-weight: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_c00302;src:url('chunks/assets/font_fc8f3e8ff6897c7b30fae325.woff2')format("woff");}.ff8_c00302{font-family:ff8_c00302;line-height:1.112305;font-style:normal;font-weight: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_c00302;src:url('chunks/assets/font_82bd2bcba9e3b16fe34d431e.woff2')format("woff");}.ff9_c00302{font-family:ff9_c00302;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls9_c00302{letter-spacing:-1.296000px;}
.lsa_c00302{letter-spacing:-0.337200px;}
.lsb_c00302{letter-spacing:-0.302400px;}
.ls8_c00302{letter-spacing:0.000000px;}
.ls2_c00302{letter-spacing:0.120000px;}
.ls3_c00302{letter-spacing:0.302400px;}
.ls1_c00302{letter-spacing:0.504000px;}
.ls6_c00302{letter-spacing:0.506880px;}
.ls0_c00302{letter-spacing:0.720000px;}
.ls4_c00302{letter-spacing:0.900000px;}
.ls7_c00302{letter-spacing:5.040000px;}
.ls5_c00302{letter-spacing:6.480000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00302{word-spacing:-72.000000px;}
.ws6_c00302{word-spacing:-60.480000px;}
.ws0_c00302{word-spacing:-18.000000px;}
.ws1_c00302{word-spacing:-16.704000px;}
.ws3_c00302{word-spacing:-15.120000px;}
.ws5_c00302{word-spacing:-14.817600px;}
.ws4_c00302{word-spacing:-14.782800px;}
.ws7_c00302{word-spacing:0.000000px;}
._4_c00302{margin-left:-2.736000px;}
._2_c00302{margin-left:-1.296000px;}
._1_c00302{width:1.512000px;}
._9_c00302{width:2.940000px;}
._e_c00302{width:4.380000px;}
._c_c00302{width:5.544000px;}
._d_c00302{width:6.792000px;}
._13_c00302{width:8.012411px;}
._14_c00302{width:10.670400px;}
._15_c00302{width:13.129799px;}
._3_c00302{width:14.472000px;}
._0_c00302{width:15.696000px;}
._5_c00302{width:16.848000px;}
._6_c00302{width:19.512000px;}
._7_c00302{width:21.384000px;}
._12_c00302{width:23.208000px;}
._8_c00302{width:24.696000px;}
._a_c00302{width:25.776000px;}
._b_c00302{width:27.420000px;}
._10_c00302{width:30.168000px;}
._11_c00302{width:32.040000px;}
._f_c00302{width:151.932024px;}
.fc0_c00302{color:rgb(0,0,0);}
.fs3_c00302{font-size:38.880000px;}
.fs1_c00302{font-size:47.520000px;}
.fs2_c00302{font-size:60.480000px;}
.fs0_c00302{font-size:72.000000px;}
.y0_c00302{bottom:0.000000px;}
.y3_c00302{bottom:4.320000px;}
.y6_c00302{bottom:4.680000px;}
.y5_c00302{bottom:25.200000px;}
.y4_c00302{bottom:32.040000px;}
.y1_c00302{bottom:57.240000px;}
.y31_c00302{bottom:130.716000px;}
.y30_c00302{bottom:137.556000px;}
.y2f_c00302{bottom:147.996000px;}
.y2e_c00302{bottom:165.270000px;}
.y2d_c00302{bottom:182.550000px;}
.y2c_c00302{bottom:199.830000px;}
.y2b_c00302{bottom:206.670000px;}
.y2a_c00302{bottom:216.750000px;}
.y29_c00302{bottom:234.075000px;}
.y28_c00302{bottom:251.355000px;}
.y27_c00302{bottom:258.195000px;}
.y26_c00302{bottom:268.635000px;}
.y25_c00302{bottom:275.475000px;}
.y24_c00302{bottom:286.635000px;}
.y23_c00302{bottom:329.835000px;}
.y22_c00302{bottom:360.825000px;}
.y21_c00302{bottom:391.785000px;}
.y20_c00302{bottom:422.745000px;}
.y1f_c00302{bottom:454.065000px;}
.y1e_c00302{bottom:485.070000px;}
.y1d_c00302{bottom:516.030000px;}
.y1c_c00302{bottom:546.990000px;}
.y1b_c00302{bottom:575.430000px;}
.y1a_c00302{bottom:610.740000px;}
.y19_c00302{bottom:645.660000px;}
.y18_c00302{bottom:671.580000px;}
.y17_c00302{bottom:697.500000px;}
.y16_c00302{bottom:746.850000px;}
.y14_c00302{bottom:798.690000px;}
.y15_c00302{bottom:806.970000px;}
.y13_c00302{bottom:829.650000px;}
.y12_c00302{bottom:860.655000px;}
.y11_c00302{bottom:891.975000px;}
.y10_c00302{bottom:922.935000px;}
.yf_c00302{bottom:953.895000px;}
.ye_c00302{bottom:984.885000px;}
.yd_c00302{bottom:1016.205000px;}
.yb_c00302{bottom:1047.165000px;}
.yc_c00302{bottom:1055.445000px;}
.y9_c00302{bottom:1078.125000px;}
.ya_c00302{bottom:1086.450000px;}
.y8_c00302{bottom:1109.130000px;}
.y7_c00302{bottom:1140.450000px;}
.y2_c00302{bottom:1189.050000px;}
.h3_c00302{height:20.550000px;}
.hb_c00302{height:34.855313px;}
.h4_c00302{height:41.395500px;}
.h7_c00302{height:46.638281px;}
.hc_c00302{height:54.219375px;}
.hd_c00302{height:54.514688px;}
.h9_c00302{height:59.328281px;}
.h8_c00302{height:59.357813px;}
.ha_c00302{height:60.952500px;}
.h2_c00302{height:64.546875px;}
.h5_c00302{height:70.664062px;}
.h6_c00302{height:1262.875500px;}
.h0_c00302{height:1262.880000px;}
.h1_c00302{height:1263.000000px;}
.w2_c00302{width:8.265000px;}
.w3_c00302{width:638.145000px;}
.w1_c00302{width:892.500000px;}
.w4_c00302{width:892.797000px;}
.w0_c00302{width:892.800000px;}
.x0_c00302{left:0.000000px;}
.x3_c00302{left:127.534500px;}
.xc_c00302{left:142.632000px;}
.x1_c00302{left:154.515000px;}
.x4_c00302{left:169.995000px;}
.x9_c00302{left:404.817000px;}
.x7_c00302{left:416.697000px;}
.xa_c00302{left:423.180000px;}
.x8_c00302{left:435.060000px;}
.x5_c00302{left:460.257000px;}
.x6_c00302{left:478.650000px;}
.x2_c00302{left:757.410000px;}
.xb_c00302{left:765.690000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls9_c00302{letter-spacing:-1.152000pt;}
.lsa_c00302{letter-spacing:-0.299733pt;}
.lsb_c00302{letter-spacing:-0.268800pt;}
.ls8_c00302{letter-spacing:0.000000pt;}
.ls2_c00302{letter-spacing:0.106667pt;}
.ls3_c00302{letter-spacing:0.268800pt;}
.ls1_c00302{letter-spacing:0.448000pt;}
.ls6_c00302{letter-spacing:0.450560pt;}
.ls0_c00302{letter-spacing:0.640000pt;}
.ls4_c00302{letter-spacing:0.800000pt;}
.ls7_c00302{letter-spacing:4.480000pt;}
.ls5_c00302{letter-spacing:5.760000pt;}
.ws2_c00302{word-spacing:-64.000000pt;}
.ws6_c00302{word-spacing:-53.760000pt;}
.ws0_c00302{word-spacing:-16.000000pt;}
.ws1_c00302{word-spacing:-14.848000pt;}
.ws3_c00302{word-spacing:-13.440000pt;}
.ws5_c00302{word-spacing:-13.171200pt;}
.ws4_c00302{word-spacing:-13.140267pt;}
.ws7_c00302{word-spacing:0.000000pt;}
._4_c00302{margin-left:-2.432000pt;}
._2_c00302{margin-left:-1.152000pt;}
._1_c00302{width:1.344000pt;}
._9_c00302{width:2.613333pt;}
._e_c00302{width:3.893333pt;}
._c_c00302{width:4.928000pt;}
._d_c00302{width:6.037333pt;}
._13_c00302{width:7.122143pt;}
._14_c00302{width:9.484800pt;}
._15_c00302{width:11.670932pt;}
._3_c00302{width:12.864000pt;}
._0_c00302{width:13.952000pt;}
._5_c00302{width:14.976000pt;}
._6_c00302{width:17.344000pt;}
._7_c00302{width:19.008000pt;}
._12_c00302{width:20.629333pt;}
._8_c00302{width:21.952000pt;}
._a_c00302{width:22.912000pt;}
._b_c00302{width:24.373333pt;}
._10_c00302{width:26.816000pt;}
._11_c00302{width:28.480000pt;}
._f_c00302{width:135.050688pt;}
.fs3_c00302{font-size:34.560000pt;}
.fs1_c00302{font-size:42.240000pt;}
.fs2_c00302{font-size:53.760000pt;}
.fs0_c00302{font-size:64.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y3_c00302{bottom:3.840000pt;}
.y6_c00302{bottom:4.160000pt;}
.y5_c00302{bottom:22.400000pt;}
.y4_c00302{bottom:28.480000pt;}
.y1_c00302{bottom:50.880000pt;}
.y31_c00302{bottom:116.192000pt;}
.y30_c00302{bottom:122.272000pt;}
.y2f_c00302{bottom:131.552000pt;}
.y2e_c00302{bottom:146.906667pt;}
.y2d_c00302{bottom:162.266667pt;}
.y2c_c00302{bottom:177.626667pt;}
.y2b_c00302{bottom:183.706667pt;}
.y2a_c00302{bottom:192.666667pt;}
.y29_c00302{bottom:208.066667pt;}
.y28_c00302{bottom:223.426667pt;}
.y27_c00302{bottom:229.506667pt;}
.y26_c00302{bottom:238.786667pt;}
.y25_c00302{bottom:244.866667pt;}
.y24_c00302{bottom:254.786667pt;}
.y23_c00302{bottom:293.186667pt;}
.y22_c00302{bottom:320.733333pt;}
.y21_c00302{bottom:348.253333pt;}
.y20_c00302{bottom:375.773333pt;}
.y1f_c00302{bottom:403.613333pt;}
.y1e_c00302{bottom:431.173333pt;}
.y1d_c00302{bottom:458.693333pt;}
.y1c_c00302{bottom:486.213333pt;}
.y1b_c00302{bottom:511.493333pt;}
.y1a_c00302{bottom:542.880000pt;}
.y19_c00302{bottom:573.920000pt;}
.y18_c00302{bottom:596.960000pt;}
.y17_c00302{bottom:620.000000pt;}
.y16_c00302{bottom:663.866667pt;}
.y14_c00302{bottom:709.946667pt;}
.y15_c00302{bottom:717.306667pt;}
.y13_c00302{bottom:737.466667pt;}
.y12_c00302{bottom:765.026667pt;}
.y11_c00302{bottom:792.866667pt;}
.y10_c00302{bottom:820.386667pt;}
.yf_c00302{bottom:847.906667pt;}
.ye_c00302{bottom:875.453333pt;}
.yd_c00302{bottom:903.293333pt;}
.yb_c00302{bottom:930.813333pt;}
.yc_c00302{bottom:938.173333pt;}
.y9_c00302{bottom:958.333333pt;}
.ya_c00302{bottom:965.733333pt;}
.y8_c00302{bottom:985.893333pt;}
.y7_c00302{bottom:1013.733333pt;}
.y2_c00302{bottom:1056.933333pt;}
.h3_c00302{height:18.266667pt;}
.hb_c00302{height:30.982500pt;}
.h4_c00302{height:36.796000pt;}
.h7_c00302{height:41.456250pt;}
.hc_c00302{height:48.195000pt;}
.hd_c00302{height:48.457500pt;}
.h9_c00302{height:52.736250pt;}
.h8_c00302{height:52.762500pt;}
.ha_c00302{height:54.180000pt;}
.h2_c00302{height:57.375000pt;}
.h5_c00302{height:62.812500pt;}
.h6_c00302{height:1122.556000pt;}
.h0_c00302{height:1122.560000pt;}
.h1_c00302{height:1122.666667pt;}
.w2_c00302{width:7.346667pt;}
.w3_c00302{width:567.240000pt;}
.w1_c00302{width:793.333333pt;}
.w4_c00302{width:793.597333pt;}
.w0_c00302{width:793.600000pt;}
.x0_c00302{left:0.000000pt;}
.x3_c00302{left:113.364000pt;}
.xc_c00302{left:126.784000pt;}
.x1_c00302{left:137.346667pt;}
.x4_c00302{left:151.106667pt;}
.x9_c00302{left:359.837333pt;}
.x7_c00302{left:370.397333pt;}
.xa_c00302{left:376.160000pt;}
.x8_c00302{left:386.720000pt;}
.x5_c00302{left:409.117333pt;}
.x6_c00302{left:425.466667pt;}
.x2_c00302{left:673.253333pt;}
.xb_c00302{left:680.613333pt;}
}





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

.ir_c00303:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00303;src:url('chunks/assets/font_2afb1b5c72355ce4a04edea6.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_3c2a90cd7cec6e584cef8c35.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_61bbc0c38b4618b25b8e5478.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;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_c00303;src:url('chunks/assets/font_ca7e379a4678e55576283c2e.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_28372dace7d764c0c8672b31.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00303;src:url('chunks/assets/font_38c7c3a4a6fad97ac72624e4.woff2')format("woff");}.ff6_c00303{font-family:ff6_c00303;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.lsd_c00303{letter-spacing:-1.416000px;}
.ls9_c00303{letter-spacing:-0.912000px;}
.lsc_c00303{letter-spacing:-0.532800px;}
.lsb_c00303{letter-spacing:-0.241800px;}
.ls8_c00303{letter-spacing:0.000000px;}
.lsa_c00303{letter-spacing:0.022800px;}
.ls0_c00303{letter-spacing:0.120000px;}
.lse_c00303{letter-spacing:0.166800px;}
.ls7_c00303{letter-spacing:0.302400px;}
.ls1_c00303{letter-spacing:0.720000px;}
.ls4_c00303{letter-spacing:0.728640px;}
.ls6_c00303{letter-spacing:0.740310px;}
.ls5_c00303{letter-spacing:0.740385px;}
.ls3_c00303{letter-spacing:1.728000px;}
.ls2_c00303{letter-spacing:10.800000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00303{word-spacing:-60.480000px;}
.ws0_c00303{word-spacing:-18.000000px;}
.ws4_c00303{word-spacing:-15.286800px;}
.ws1_c00303{word-spacing:-15.120000px;}
.ws3_c00303{word-spacing:-14.878200px;}
.ws5_c00303{word-spacing:0.000000px;}
._5_c00303{margin-left:-2.736000px;}
._0_c00303{margin-left:-1.080000px;}
._1_c00303{width:1.512000px;}
._4_c00303{width:2.952000px;}
._b_c00303{width:4.037406px;}
._e_c00303{width:5.461164px;}
._12_c00303{width:7.056000px;}
._9_c00303{width:8.640000px;}
._a_c00303{width:10.440000px;}
._2_c00303{width:12.744000px;}
._3_c00303{width:13.896000px;}
._d_c00303{width:15.779976px;}
._11_c00303{width:20.160000px;}
._7_c00303{width:27.216000px;}
._6_c00303{width:28.512000px;}
._8_c00303{width:30.024000px;}
._10_c00303{width:35.352000px;}
._f_c00303{width:36.360000px;}
._c_c00303{width:151.932024px;}
.fc0_c00303{color:rgb(0,0,0);}
.fs1_c00303{font-size:60.480000px;}
.fs0_c00303{font-size:72.000000px;}
.y0_c00303{bottom:0.000000px;}
.y3_c00303{bottom:4.320000px;}
.y6_c00303{bottom:4.680000px;}
.y5_c00303{bottom:25.200000px;}
.y4_c00303{bottom:32.040000px;}
.y1_c00303{bottom:57.240000px;}
.y27_c00303{bottom:114.516000px;}
.y26_c00303{bottom:140.436000px;}
.y25_c00303{bottom:166.350000px;}
.y24_c00303{bottom:192.270000px;}
.y23_c00303{bottom:218.190000px;}
.y22_c00303{bottom:244.155000px;}
.y21_c00303{bottom:293.475000px;}
.y20_c00303{bottom:345.315000px;}
.y1f_c00303{bottom:376.305000px;}
.y1e_c00303{bottom:407.265000px;}
.y1d_c00303{bottom:438.585000px;}
.y1c_c00303{bottom:469.545000px;}
.y1b_c00303{bottom:500.550000px;}
.y1a_c00303{bottom:531.510000px;}
.y19_c00303{bottom:562.830000px;}
.y18_c00303{bottom:593.790000px;}
.y17_c00303{bottom:624.780000px;}
.y16_c00303{bottom:655.740000px;}
.y15_c00303{bottom:687.060000px;}
.y14_c00303{bottom:724.530000px;}
.y13_c00303{bottom:750.450000px;}
.y12_c00303{bottom:776.370000px;}
.y11_c00303{bottom:811.290000px;}
.y10_c00303{bottom:837.210000px;}
.yf_c00303{bottom:863.175000px;}
.ye_c00303{bottom:889.095000px;}
.yd_c00303{bottom:914.655000px;}
.yc_c00303{bottom:964.005000px;}
.yb_c00303{bottom:1016.205000px;}
.ya_c00303{bottom:1047.165000px;}
.y9_c00303{bottom:1078.125000px;}
.y8_c00303{bottom:1109.130000px;}
.y7_c00303{bottom:1140.450000px;}
.y2_c00303{bottom:1189.050000px;}
.h3_c00303{height:20.550000px;}
.h4_c00303{height:41.395500px;}
.h7_c00303{height:59.328281px;}
.h6_c00303{height:59.357813px;}
.h2_c00303{height:64.546875px;}
.h8_c00303{height:70.628906px;}
.h5_c00303{height:70.664062px;}
.h0_c00303{height:1262.880000px;}
.h1_c00303{height:1263.000000px;}
.w2_c00303{width:8.265000px;}
.w3_c00303{width:638.145000px;}
.w1_c00303{width:892.500000px;}
.w0_c00303{width:892.800000px;}
.x0_c00303{left:0.000000px;}
.x3_c00303{left:127.534500px;}
.x1_c00303{left:154.515000px;}
.x4_c00303{left:169.995000px;}
.x2_c00303{left:757.410000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.lsd_c00303{letter-spacing:-1.258667pt;}
.ls9_c00303{letter-spacing:-0.810667pt;}
.lsc_c00303{letter-spacing:-0.473600pt;}
.lsb_c00303{letter-spacing:-0.214933pt;}
.ls8_c00303{letter-spacing:0.000000pt;}
.lsa_c00303{letter-spacing:0.020267pt;}
.ls0_c00303{letter-spacing:0.106667pt;}
.lse_c00303{letter-spacing:0.148267pt;}
.ls7_c00303{letter-spacing:0.268800pt;}
.ls1_c00303{letter-spacing:0.640000pt;}
.ls4_c00303{letter-spacing:0.647680pt;}
.ls6_c00303{letter-spacing:0.658053pt;}
.ls5_c00303{letter-spacing:0.658120pt;}
.ls3_c00303{letter-spacing:1.536000pt;}
.ls2_c00303{letter-spacing:9.600000pt;}
.ws2_c00303{word-spacing:-53.760000pt;}
.ws0_c00303{word-spacing:-16.000000pt;}
.ws4_c00303{word-spacing:-13.588267pt;}
.ws1_c00303{word-spacing:-13.440000pt;}
.ws3_c00303{word-spacing:-13.225067pt;}
.ws5_c00303{word-spacing:0.000000pt;}
._5_c00303{margin-left:-2.432000pt;}
._0_c00303{margin-left:-0.960000pt;}
._1_c00303{width:1.344000pt;}
._4_c00303{width:2.624000pt;}
._b_c00303{width:3.588805pt;}
._e_c00303{width:4.854368pt;}
._12_c00303{width:6.272000pt;}
._9_c00303{width:7.680000pt;}
._a_c00303{width:9.280000pt;}
._2_c00303{width:11.328000pt;}
._3_c00303{width:12.352000pt;}
._d_c00303{width:14.026645pt;}
._11_c00303{width:17.920000pt;}
._7_c00303{width:24.192000pt;}
._6_c00303{width:25.344000pt;}
._8_c00303{width:26.688000pt;}
._10_c00303{width:31.424000pt;}
._f_c00303{width:32.320000pt;}
._c_c00303{width:135.050688pt;}
.fs1_c00303{font-size:53.760000pt;}
.fs0_c00303{font-size:64.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y3_c00303{bottom:3.840000pt;}
.y6_c00303{bottom:4.160000pt;}
.y5_c00303{bottom:22.400000pt;}
.y4_c00303{bottom:28.480000pt;}
.y1_c00303{bottom:50.880000pt;}
.y27_c00303{bottom:101.792000pt;}
.y26_c00303{bottom:124.832000pt;}
.y25_c00303{bottom:147.866667pt;}
.y24_c00303{bottom:170.906667pt;}
.y23_c00303{bottom:193.946667pt;}
.y22_c00303{bottom:217.026667pt;}
.y21_c00303{bottom:260.866667pt;}
.y20_c00303{bottom:306.946667pt;}
.y1f_c00303{bottom:334.493333pt;}
.y1e_c00303{bottom:362.013333pt;}
.y1d_c00303{bottom:389.853333pt;}
.y1c_c00303{bottom:417.373333pt;}
.y1b_c00303{bottom:444.933333pt;}
.y1a_c00303{bottom:472.453333pt;}
.y19_c00303{bottom:500.293333pt;}
.y18_c00303{bottom:527.813333pt;}
.y17_c00303{bottom:555.360000pt;}
.y16_c00303{bottom:582.880000pt;}
.y15_c00303{bottom:610.720000pt;}
.y14_c00303{bottom:644.026667pt;}
.y13_c00303{bottom:667.066667pt;}
.y12_c00303{bottom:690.106667pt;}
.y11_c00303{bottom:721.146667pt;}
.y10_c00303{bottom:744.186667pt;}
.yf_c00303{bottom:767.266667pt;}
.ye_c00303{bottom:790.306667pt;}
.yd_c00303{bottom:813.026667pt;}
.yc_c00303{bottom:856.893333pt;}
.yb_c00303{bottom:903.293333pt;}
.ya_c00303{bottom:930.813333pt;}
.y9_c00303{bottom:958.333333pt;}
.y8_c00303{bottom:985.893333pt;}
.y7_c00303{bottom:1013.733333pt;}
.y2_c00303{bottom:1056.933333pt;}
.h3_c00303{height:18.266667pt;}
.h4_c00303{height:36.796000pt;}
.h7_c00303{height:52.736250pt;}
.h6_c00303{height:52.762500pt;}
.h2_c00303{height:57.375000pt;}
.h8_c00303{height:62.781250pt;}
.h5_c00303{height:62.812500pt;}
.h0_c00303{height:1122.560000pt;}
.h1_c00303{height:1122.666667pt;}
.w2_c00303{width:7.346667pt;}
.w3_c00303{width:567.240000pt;}
.w1_c00303{width:793.333333pt;}
.w0_c00303{width:793.600000pt;}
.x0_c00303{left:0.000000pt;}
.x3_c00303{left:113.364000pt;}
.x1_c00303{left:137.346667pt;}
.x4_c00303{left:151.106667pt;}
.x2_c00303{left:673.253333pt;}
}





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

.ir_c00304:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_8f5ec4bc0b498aa10cef6f2a.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_d618feb1644ccbe07ea1593a.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_80cd9a0b46ff56e529903ec3.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_2b1f15e5a8ff3039304da139.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_cf5cd93d6715e22782774ba7.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00304;src:url('chunks/assets/font_f71046b9e139bb17674748e5.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.lsb_c00304{letter-spacing:-1.668000px;}
.ls11_c00304{letter-spacing:-1.440000px;}
.ls9_c00304{letter-spacing:-1.416000px;}
.ls12_c00304{letter-spacing:-0.954000px;}
.ls13_c00304{letter-spacing:-0.912000px;}
.lsf_c00304{letter-spacing:-0.288000px;}
.ls14_c00304{letter-spacing:-0.241800px;}
.ls8_c00304{letter-spacing:0.000000px;}
.ls4_c00304{letter-spacing:0.020400px;}
.ls16_c00304{letter-spacing:0.022800px;}
.ls6_c00304{letter-spacing:0.046080px;}
.ls15_c00304{letter-spacing:0.060600px;}
.ls10_c00304{letter-spacing:0.072000px;}
.ls2_c00304{letter-spacing:0.302400px;}
.lsa_c00304{letter-spacing:0.313800px;}
.lsd_c00304{letter-spacing:0.385800px;}
.ls1_c00304{letter-spacing:0.518400px;}
.lsc_c00304{letter-spacing:0.521400px;}
.ls7_c00304{letter-spacing:0.529920px;}
.lse_c00304{letter-spacing:0.702000px;}
.ls0_c00304{letter-spacing:0.720000px;}
.ls3_c00304{letter-spacing:2.016000px;}
.ls5_c00304{letter-spacing:12.252000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00304{word-spacing:-60.480000px;}
.ws8_c00304{word-spacing:-18.072000px;}
.ws0_c00304{word-spacing:-18.000000px;}
.ws7_c00304{word-spacing:-17.712000px;}
.ws6_c00304{word-spacing:-15.822000px;}
.ws5_c00304{word-spacing:-15.641400px;}
.ws2_c00304{word-spacing:-15.433800px;}
.wsd_c00304{word-spacing:-15.180600px;}
.wse_c00304{word-spacing:-15.142800px;}
.ws9_c00304{word-spacing:-15.140400px;}
.ws1_c00304{word-spacing:-15.120000px;}
.wsc_c00304{word-spacing:-14.878200px;}
.wsb_c00304{word-spacing:-14.166000px;}
.wsa_c00304{word-spacing:-13.680000px;}
.ws4_c00304{word-spacing:-13.452000px;}
.wsf_c00304{word-spacing:0.000000px;}
._d_c00304{margin-left:-3.454255px;}
._4_c00304{margin-left:-2.230140px;}
._2_c00304{margin-left:-1.029007px;}
._0_c00304{width:1.390798px;}
._3_c00304{width:2.965213px;}
._1_c00304{width:4.476004px;}
._7_c00304{width:6.073404px;}
._9_c00304{width:7.389481px;}
._e_c00304{width:9.360006px;}
._f_c00304{width:10.391577px;}
._10_c00304{width:11.604540px;}
._c_c00304{width:12.632637px;}
._b_c00304{width:14.328000px;}
._8_c00304{width:16.437007px;}
._6_c00304{width:19.472752px;}
._a_c00304{width:21.096000px;}
._5_c00304{width:151.932024px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs3_c00304{font-size:38.880000px;}
.fs2_c00304{font-size:47.520000px;}
.fs1_c00304{font-size:60.480000px;}
.fs0_c00304{font-size:72.000000px;}
.fs4_c00304{font-size:96.480000px;}
.y0_c00304{bottom:0.000000px;}
.y3_c00304{bottom:4.320000px;}
.y6_c00304{bottom:4.680000px;}
.y5_c00304{bottom:25.200000px;}
.y4_c00304{bottom:32.040000px;}
.y1_c00304{bottom:57.240000px;}
.y32_c00304{bottom:130.716000px;}
.y31_c00304{bottom:147.996000px;}
.y30_c00304{bottom:165.270000px;}
.y2f_c00304{bottom:182.550000px;}
.y2e_c00304{bottom:189.390000px;}
.y2d_c00304{bottom:199.830000px;}
.y2c_c00304{bottom:216.750000px;}
.y2b_c00304{bottom:234.075000px;}
.y2a_c00304{bottom:240.915000px;}
.y29_c00304{bottom:251.355000px;}
.y28_c00304{bottom:268.635000px;}
.y27_c00304{bottom:285.915000px;}
.y26_c00304{bottom:303.195000px;}
.y25_c00304{bottom:320.475000px;}
.y24_c00304{bottom:327.315000px;}
.y23_c00304{bottom:338.115000px;}
.y22_c00304{bottom:377.745000px;}
.y21_c00304{bottom:408.705000px;}
.y20_c00304{bottom:439.665000px;}
.y1f_c00304{bottom:470.985000px;}
.y1e_c00304{bottom:508.470000px;}
.y1d_c00304{bottom:534.390000px;}
.y1c_c00304{bottom:569.310000px;}
.y1b_c00304{bottom:595.230000px;}
.y1a_c00304{bottom:621.180000px;}
.y19_c00304{bottom:647.100000px;}
.y18_c00304{bottom:673.020000px;}
.y17_c00304{bottom:722.370000px;}
.y16_c00304{bottom:774.210000px;}
.y15_c00304{bottom:805.170000px;}
.y14_c00304{bottom:836.130000px;}
.y12_c00304{bottom:867.495000px;}
.y13_c00304{bottom:875.775000px;}
.y11_c00304{bottom:898.455000px;}
.yf_c00304{bottom:929.415000px;}
.y10_c00304{bottom:937.695000px;}
.yd_c00304{bottom:960.375000px;}
.ye_c00304{bottom:968.685000px;}
.yc_c00304{bottom:991.365000px;}
.yb_c00304{bottom:1022.685000px;}
.ya_c00304{bottom:1053.645000px;}
.y9_c00304{bottom:1091.490000px;}
.y8_c00304{bottom:1117.410000px;}
.y7_c00304{bottom:1143.330000px;}
.y2_c00304{bottom:1189.050000px;}
.h3_c00304{height:20.550000px;}
.hb_c00304{height:34.855313px;}
.ha_c00304{height:38.158594px;}
.h4_c00304{height:41.395500px;}
.h8_c00304{height:46.638281px;}
.hd_c00304{height:54.219375px;}
.h5_c00304{height:59.328281px;}
.h9_c00304{height:59.357813px;}
.h2_c00304{height:64.546875px;}
.h6_c00304{height:70.664062px;}
.hc_c00304{height:94.689844px;}
.h7_c00304{height:1262.875500px;}
.h0_c00304{height:1262.880000px;}
.h1_c00304{height:1263.000000px;}
.w2_c00304{width:8.265000px;}
.w3_c00304{width:638.145000px;}
.w1_c00304{width:892.500000px;}
.w4_c00304{width:892.797000px;}
.w0_c00304{width:892.800000px;}
.x0_c00304{left:0.000000px;}
.x3_c00304{left:127.534500px;}
.xc_c00304{left:142.632000px;}
.x1_c00304{left:154.515000px;}
.x4_c00304{left:169.995000px;}
.xb_c00304{left:343.590000px;}
.x7_c00304{left:348.627000px;}
.x8_c00304{left:366.990000px;}
.x5_c00304{left:508.887000px;}
.x9_c00304{left:520.767000px;}
.x6_c00304{left:527.250000px;}
.xa_c00304{left:539.130000px;}
.x2_c00304{left:757.410000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.lsb_c00304{letter-spacing:-1.482667pt;}
.ls11_c00304{letter-spacing:-1.280000pt;}
.ls9_c00304{letter-spacing:-1.258667pt;}
.ls12_c00304{letter-spacing:-0.848000pt;}
.ls13_c00304{letter-spacing:-0.810667pt;}
.lsf_c00304{letter-spacing:-0.256000pt;}
.ls14_c00304{letter-spacing:-0.214933pt;}
.ls8_c00304{letter-spacing:0.000000pt;}
.ls4_c00304{letter-spacing:0.018133pt;}
.ls16_c00304{letter-spacing:0.020267pt;}
.ls6_c00304{letter-spacing:0.040960pt;}
.ls15_c00304{letter-spacing:0.053867pt;}
.ls10_c00304{letter-spacing:0.064000pt;}
.ls2_c00304{letter-spacing:0.268800pt;}
.lsa_c00304{letter-spacing:0.278933pt;}
.lsd_c00304{letter-spacing:0.342933pt;}
.ls1_c00304{letter-spacing:0.460800pt;}
.lsc_c00304{letter-spacing:0.463467pt;}
.ls7_c00304{letter-spacing:0.471040pt;}
.lse_c00304{letter-spacing:0.624000pt;}
.ls0_c00304{letter-spacing:0.640000pt;}
.ls3_c00304{letter-spacing:1.792000pt;}
.ls5_c00304{letter-spacing:10.890667pt;}
.ws3_c00304{word-spacing:-53.760000pt;}
.ws8_c00304{word-spacing:-16.064000pt;}
.ws0_c00304{word-spacing:-16.000000pt;}
.ws7_c00304{word-spacing:-15.744000pt;}
.ws6_c00304{word-spacing:-14.064000pt;}
.ws5_c00304{word-spacing:-13.903467pt;}
.ws2_c00304{word-spacing:-13.718933pt;}
.wsd_c00304{word-spacing:-13.493867pt;}
.wse_c00304{word-spacing:-13.460267pt;}
.ws9_c00304{word-spacing:-13.458133pt;}
.ws1_c00304{word-spacing:-13.440000pt;}
.wsc_c00304{word-spacing:-13.225067pt;}
.wsb_c00304{word-spacing:-12.592000pt;}
.wsa_c00304{word-spacing:-12.160000pt;}
.ws4_c00304{word-spacing:-11.957333pt;}
.wsf_c00304{word-spacing:0.000000pt;}
._d_c00304{margin-left:-3.070449pt;}
._4_c00304{margin-left:-1.982346pt;}
._2_c00304{margin-left:-0.914673pt;}
._0_c00304{width:1.236265pt;}
._3_c00304{width:2.635745pt;}
._1_c00304{width:3.978670pt;}
._7_c00304{width:5.398581pt;}
._9_c00304{width:6.568428pt;}
._e_c00304{width:8.320005pt;}
._f_c00304{width:9.236957pt;}
._10_c00304{width:10.315146pt;}
._c_c00304{width:11.229011pt;}
._b_c00304{width:12.736000pt;}
._8_c00304{width:14.610673pt;}
._6_c00304{width:17.309113pt;}
._a_c00304{width:18.752000pt;}
._5_c00304{width:135.050688pt;}
.fs3_c00304{font-size:34.560000pt;}
.fs2_c00304{font-size:42.240000pt;}
.fs1_c00304{font-size:53.760000pt;}
.fs0_c00304{font-size:64.000000pt;}
.fs4_c00304{font-size:85.760000pt;}
.y0_c00304{bottom:0.000000pt;}
.y3_c00304{bottom:3.840000pt;}
.y6_c00304{bottom:4.160000pt;}
.y5_c00304{bottom:22.400000pt;}
.y4_c00304{bottom:28.480000pt;}
.y1_c00304{bottom:50.880000pt;}
.y32_c00304{bottom:116.192000pt;}
.y31_c00304{bottom:131.552000pt;}
.y30_c00304{bottom:146.906667pt;}
.y2f_c00304{bottom:162.266667pt;}
.y2e_c00304{bottom:168.346667pt;}
.y2d_c00304{bottom:177.626667pt;}
.y2c_c00304{bottom:192.666667pt;}
.y2b_c00304{bottom:208.066667pt;}
.y2a_c00304{bottom:214.146667pt;}
.y29_c00304{bottom:223.426667pt;}
.y28_c00304{bottom:238.786667pt;}
.y27_c00304{bottom:254.146667pt;}
.y26_c00304{bottom:269.506667pt;}
.y25_c00304{bottom:284.866667pt;}
.y24_c00304{bottom:290.946667pt;}
.y23_c00304{bottom:300.546667pt;}
.y22_c00304{bottom:335.773333pt;}
.y21_c00304{bottom:363.293333pt;}
.y20_c00304{bottom:390.813333pt;}
.y1f_c00304{bottom:418.653333pt;}
.y1e_c00304{bottom:451.973333pt;}
.y1d_c00304{bottom:475.013333pt;}
.y1c_c00304{bottom:506.053333pt;}
.y1b_c00304{bottom:529.093333pt;}
.y1a_c00304{bottom:552.160000pt;}
.y19_c00304{bottom:575.200000pt;}
.y18_c00304{bottom:598.240000pt;}
.y17_c00304{bottom:642.106667pt;}
.y16_c00304{bottom:688.186667pt;}
.y15_c00304{bottom:715.706667pt;}
.y14_c00304{bottom:743.226667pt;}
.y12_c00304{bottom:771.106667pt;}
.y13_c00304{bottom:778.466667pt;}
.y11_c00304{bottom:798.626667pt;}
.yf_c00304{bottom:826.146667pt;}
.y10_c00304{bottom:833.506667pt;}
.yd_c00304{bottom:853.666667pt;}
.ye_c00304{bottom:861.053333pt;}
.yc_c00304{bottom:881.213333pt;}
.yb_c00304{bottom:909.053333pt;}
.ya_c00304{bottom:936.573333pt;}
.y9_c00304{bottom:970.213333pt;}
.y8_c00304{bottom:993.253333pt;}
.y7_c00304{bottom:1016.293333pt;}
.y2_c00304{bottom:1056.933333pt;}
.h3_c00304{height:18.266667pt;}
.hb_c00304{height:30.982500pt;}
.ha_c00304{height:33.918750pt;}
.h4_c00304{height:36.796000pt;}
.h8_c00304{height:41.456250pt;}
.hd_c00304{height:48.195000pt;}
.h5_c00304{height:52.736250pt;}
.h9_c00304{height:52.762500pt;}
.h2_c00304{height:57.375000pt;}
.h6_c00304{height:62.812500pt;}
.hc_c00304{height:84.168750pt;}
.h7_c00304{height:1122.556000pt;}
.h0_c00304{height:1122.560000pt;}
.h1_c00304{height:1122.666667pt;}
.w2_c00304{width:7.346667pt;}
.w3_c00304{width:567.240000pt;}
.w1_c00304{width:793.333333pt;}
.w4_c00304{width:793.597333pt;}
.w0_c00304{width:793.600000pt;}
.x0_c00304{left:0.000000pt;}
.x3_c00304{left:113.364000pt;}
.xc_c00304{left:126.784000pt;}
.x1_c00304{left:137.346667pt;}
.x4_c00304{left:151.106667pt;}
.xb_c00304{left:305.413333pt;}
.x7_c00304{left:309.890667pt;}
.x8_c00304{left:326.213333pt;}
.x5_c00304{left:452.344000pt;}
.x9_c00304{left:462.904000pt;}
.x6_c00304{left:468.666667pt;}
.xa_c00304{left:479.226667pt;}
.x2_c00304{left:673.253333pt;}
}





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

.ir_c00305:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00305;src:url('chunks/assets/font_af07adb80b0b6afebd5a477e.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_7362b257af3635c1f3c212c7.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_9843df73facf5a2eaf2e5f38.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_380803441e33f30036e12a1c.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;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_c00305;src:url('chunks/assets/font_99467004a675eddaa3084c6f.woff2')format("woff");}.ff5_c00305{font-family:ff5_c00305;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00305;src:url('chunks/assets/font_2acadfe042bee3bb993460a5.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls6_c00305{letter-spacing:-0.432000px;}
.ls8_c00305{letter-spacing:-0.288000px;}
.ls5_c00305{letter-spacing:0.000000px;}
.ls2_c00305{letter-spacing:0.120000px;}
.ls3_c00305{letter-spacing:0.180000px;}
.ls4_c00305{letter-spacing:0.288000px;}
.ls0_c00305{letter-spacing:0.360000px;}
.ls7_c00305{letter-spacing:0.529800px;}
.ls1_c00305{letter-spacing:0.720000px;}
.ls9_c00305{letter-spacing:2.160000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00305{word-spacing:-60.480000px;}
.ws1_c00305{word-spacing:-18.288000px;}
.ws0_c00305{word-spacing:-18.000000px;}
.ws4_c00305{word-spacing:-17.712000px;}
.ws2_c00305{word-spacing:-15.120000px;}
.ws5_c00305{word-spacing:0.000000px;}
._2_c00305{margin-left:-2.892000px;}
._1_c00305{margin-left:-1.584000px;}
._3_c00305{width:1.356000px;}
._7_c00305{width:2.412000px;}
._6_c00305{width:3.468000px;}
._9_c00305{width:4.823976px;}
._a_c00305{width:5.976000px;}
._e_c00305{width:6.996024px;}
._f_c00305{width:8.100024px;}
._b_c00305{width:9.372000px;}
._4_c00305{width:10.668000px;}
._0_c00305{width:12.684000px;}
._5_c00305{width:13.824000px;}
._10_c00305{width:14.856000px;}
._11_c00305{width:16.356000px;}
._c_c00305{width:20.976000px;}
._d_c00305{width:22.116000px;}
._12_c00305{width:23.196000px;}
._13_c00305{width:26.016000px;}
._8_c00305{width:151.932024px;}
.fc0_c00305{color:rgb(0,0,0);}
.fs3_c00305{font-size:38.880000px;}
.fs2_c00305{font-size:47.520000px;}
.fs1_c00305{font-size:60.480000px;}
.fs0_c00305{font-size:72.000000px;}
.y0_c00305{bottom:0.000000px;}
.y3_c00305{bottom:4.320000px;}
.y6_c00305{bottom:4.680000px;}
.y5_c00305{bottom:25.200000px;}
.y4_c00305{bottom:32.040000px;}
.y1_c00305{bottom:57.240000px;}
.y29_c00305{bottom:130.716000px;}
.y28_c00305{bottom:147.996000px;}
.y27_c00305{bottom:154.830000px;}
.y26_c00305{bottom:165.630000px;}
.y25_c00305{bottom:195.150000px;}
.y24_c00305{bottom:226.110000px;}
.y23_c00305{bottom:257.115000px;}
.y22_c00305{bottom:288.435000px;}
.y21_c00305{bottom:319.395000px;}
.y1f_c00305{bottom:350.355000px;}
.y20_c00305{bottom:358.665000px;}
.y1e_c00305{bottom:381.345000px;}
.y1d_c00305{bottom:412.665000px;}
.y1c_c00305{bottom:443.625000px;}
.y1b_c00305{bottom:474.585000px;}
.y1a_c00305{bottom:505.590000px;}
.y19_c00305{bottom:536.910000px;}
.y18_c00305{bottom:567.870000px;}
.y17_c00305{bottom:598.860000px;}
.y16_c00305{bottom:629.820000px;}
.y15_c00305{bottom:661.140000px;}
.y14_c00305{bottom:692.100000px;}
.y13_c00305{bottom:723.090000px;}
.y12_c00305{bottom:754.050000px;}
.y11_c00305{bottom:785.370000px;}
.y10_c00305{bottom:816.330000px;}
.yf_c00305{bottom:847.335000px;}
.ye_c00305{bottom:878.295000px;}
.yd_c00305{bottom:916.095000px;}
.yc_c00305{bottom:951.015000px;}
.yb_c00305{bottom:976.965000px;}
.ya_c00305{bottom:1026.285000px;}
.y9_c00305{bottom:1078.125000px;}
.y8_c00305{bottom:1109.130000px;}
.y7_c00305{bottom:1140.450000px;}
.y2_c00305{bottom:1189.050000px;}
.h3_c00305{height:20.550000px;}
.hb_c00305{height:38.158594px;}
.h4_c00305{height:41.395500px;}
.ha_c00305{height:46.615078px;}
.h7_c00305{height:59.328281px;}
.h6_c00305{height:59.357813px;}
.h2_c00305{height:64.546875px;}
.h8_c00305{height:70.628906px;}
.h5_c00305{height:70.664062px;}
.h9_c00305{height:1262.875500px;}
.h0_c00305{height:1262.880000px;}
.h1_c00305{height:1263.000000px;}
.w2_c00305{width:8.265000px;}
.w3_c00305{width:638.145000px;}
.w1_c00305{width:892.500000px;}
.w4_c00305{width:892.797000px;}
.w0_c00305{width:892.800000px;}
.x0_c00305{left:0.000000px;}
.x3_c00305{left:127.534500px;}
.x8_c00305{left:142.632000px;}
.x1_c00305{left:154.515000px;}
.x4_c00305{left:169.995000px;}
.x5_c00305{left:172.512000px;}
.x6_c00305{left:190.875000px;}
.x7_c00305{left:343.590000px;}
.x2_c00305{left:757.410000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls6_c00305{letter-spacing:-0.384000pt;}
.ls8_c00305{letter-spacing:-0.256000pt;}
.ls5_c00305{letter-spacing:0.000000pt;}
.ls2_c00305{letter-spacing:0.106667pt;}
.ls3_c00305{letter-spacing:0.160000pt;}
.ls4_c00305{letter-spacing:0.256000pt;}
.ls0_c00305{letter-spacing:0.320000pt;}
.ls7_c00305{letter-spacing:0.470933pt;}
.ls1_c00305{letter-spacing:0.640000pt;}
.ls9_c00305{letter-spacing:1.920000pt;}
.ws3_c00305{word-spacing:-53.760000pt;}
.ws1_c00305{word-spacing:-16.256000pt;}
.ws0_c00305{word-spacing:-16.000000pt;}
.ws4_c00305{word-spacing:-15.744000pt;}
.ws2_c00305{word-spacing:-13.440000pt;}
.ws5_c00305{word-spacing:0.000000pt;}
._2_c00305{margin-left:-2.570667pt;}
._1_c00305{margin-left:-1.408000pt;}
._3_c00305{width:1.205333pt;}
._7_c00305{width:2.144000pt;}
._6_c00305{width:3.082667pt;}
._9_c00305{width:4.287979pt;}
._a_c00305{width:5.312000pt;}
._e_c00305{width:6.218688pt;}
._f_c00305{width:7.200021pt;}
._b_c00305{width:8.330667pt;}
._4_c00305{width:9.482667pt;}
._0_c00305{width:11.274667pt;}
._5_c00305{width:12.288000pt;}
._10_c00305{width:13.205333pt;}
._11_c00305{width:14.538667pt;}
._c_c00305{width:18.645333pt;}
._d_c00305{width:19.658667pt;}
._12_c00305{width:20.618667pt;}
._13_c00305{width:23.125333pt;}
._8_c00305{width:135.050688pt;}
.fs3_c00305{font-size:34.560000pt;}
.fs2_c00305{font-size:42.240000pt;}
.fs1_c00305{font-size:53.760000pt;}
.fs0_c00305{font-size:64.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y3_c00305{bottom:3.840000pt;}
.y6_c00305{bottom:4.160000pt;}
.y5_c00305{bottom:22.400000pt;}
.y4_c00305{bottom:28.480000pt;}
.y1_c00305{bottom:50.880000pt;}
.y29_c00305{bottom:116.192000pt;}
.y28_c00305{bottom:131.552000pt;}
.y27_c00305{bottom:137.626667pt;}
.y26_c00305{bottom:147.226667pt;}
.y25_c00305{bottom:173.466667pt;}
.y24_c00305{bottom:200.986667pt;}
.y23_c00305{bottom:228.546667pt;}
.y22_c00305{bottom:256.386667pt;}
.y21_c00305{bottom:283.906667pt;}
.y1f_c00305{bottom:311.426667pt;}
.y20_c00305{bottom:318.813333pt;}
.y1e_c00305{bottom:338.973333pt;}
.y1d_c00305{bottom:366.813333pt;}
.y1c_c00305{bottom:394.333333pt;}
.y1b_c00305{bottom:421.853333pt;}
.y1a_c00305{bottom:449.413333pt;}
.y19_c00305{bottom:477.253333pt;}
.y18_c00305{bottom:504.773333pt;}
.y17_c00305{bottom:532.320000pt;}
.y16_c00305{bottom:559.840000pt;}
.y15_c00305{bottom:587.680000pt;}
.y14_c00305{bottom:615.200000pt;}
.y13_c00305{bottom:642.746667pt;}
.y12_c00305{bottom:670.266667pt;}
.y11_c00305{bottom:698.106667pt;}
.y10_c00305{bottom:725.626667pt;}
.yf_c00305{bottom:753.186667pt;}
.ye_c00305{bottom:780.706667pt;}
.yd_c00305{bottom:814.306667pt;}
.yc_c00305{bottom:845.346667pt;}
.yb_c00305{bottom:868.413333pt;}
.ya_c00305{bottom:912.253333pt;}
.y9_c00305{bottom:958.333333pt;}
.y8_c00305{bottom:985.893333pt;}
.y7_c00305{bottom:1013.733333pt;}
.y2_c00305{bottom:1056.933333pt;}
.h3_c00305{height:18.266667pt;}
.hb_c00305{height:33.918750pt;}
.h4_c00305{height:36.796000pt;}
.ha_c00305{height:41.435625pt;}
.h7_c00305{height:52.736250pt;}
.h6_c00305{height:52.762500pt;}
.h2_c00305{height:57.375000pt;}
.h8_c00305{height:62.781250pt;}
.h5_c00305{height:62.812500pt;}
.h9_c00305{height:1122.556000pt;}
.h0_c00305{height:1122.560000pt;}
.h1_c00305{height:1122.666667pt;}
.w2_c00305{width:7.346667pt;}
.w3_c00305{width:567.240000pt;}
.w1_c00305{width:793.333333pt;}
.w4_c00305{width:793.597333pt;}
.w0_c00305{width:793.600000pt;}
.x0_c00305{left:0.000000pt;}
.x3_c00305{left:113.364000pt;}
.x8_c00305{left:126.784000pt;}
.x1_c00305{left:137.346667pt;}
.x4_c00305{left:151.106667pt;}
.x5_c00305{left:153.344000pt;}
.x6_c00305{left:169.666667pt;}
.x7_c00305{left:305.413333pt;}
.x2_c00305{left:673.253333pt;}
}





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

.ir_c00306:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00306;src:url('chunks/assets/font_c9791c5449c36494089c7bdf.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_2af0a9371c8f652b53b31a82.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_dd72e76e9bd3e0abb0efd04e.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;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_c00306;src:url('chunks/assets/font_0bc4a7ff136325d53a04b51a.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_561d77724a5627ee1fbaa382.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00306;src:url('chunks/assets/font_c7abbcf4dd2cbef1f3590cfb.woff2')format("woff");}.ff6_c00306{font-family:ff6_c00306;line-height:1.104004;font-style:normal;font-weight: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_c00306;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff7_c00306{font-family:ff7_c00306;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.lsf_c00306{letter-spacing:-1.380000px;}
.ls16_c00306{letter-spacing:-0.936000px;}
.lsa_c00306{letter-spacing:-0.912000px;}
.ls9_c00306{letter-spacing:-0.532800px;}
.ls14_c00306{letter-spacing:-0.466800px;}
.lse_c00306{letter-spacing:-0.241800px;}
.ls8_c00306{letter-spacing:0.000000px;}
.ls11_c00306{letter-spacing:0.020400px;}
.ls10_c00306{letter-spacing:0.022800px;}
.ls0_c00306{letter-spacing:0.120000px;}
.lsb_c00306{letter-spacing:0.166800px;}
.ls6_c00306{letter-spacing:0.180000px;}
.ls3_c00306{letter-spacing:0.302400px;}
.ls5_c00306{letter-spacing:0.506880px;}
.ls13_c00306{letter-spacing:0.507000px;}
.lsc_c00306{letter-spacing:0.521400px;}
.lsd_c00306{letter-spacing:0.529800px;}
.ls12_c00306{letter-spacing:0.648000px;}
.ls2_c00306{letter-spacing:0.720000px;}
.ls1_c00306{letter-spacing:0.728640px;}
.ls15_c00306{letter-spacing:1.440000px;}
.ls7_c00306{letter-spacing:3.600000px;}
.ls4_c00306{letter-spacing:12.240000px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00306{word-spacing:-72.000000px;}
.ws3_c00306{word-spacing:-60.480000px;}
.ws7_c00306{word-spacing:-18.648000px;}
.ws0_c00306{word-spacing:-18.000000px;}
.ws9_c00306{word-spacing:-16.560000px;}
.ws5_c00306{word-spacing:-15.641400px;}
.ws4_c00306{word-spacing:-15.286800px;}
.ws2_c00306{word-spacing:-15.120000px;}
.ws6_c00306{word-spacing:-14.878200px;}
.ws8_c00306{word-spacing:-14.653200px;}
.wsa_c00306{word-spacing:-14.184000px;}
.wsb_c00306{word-spacing:0.000000px;}
._e_c00306{margin-left:-3.600000px;}
._2_c00306{margin-left:-2.460000px;}
._1_c00306{margin-left:-1.224000px;}
._0_c00306{width:1.368000px;}
._3_c00306{width:2.664000px;}
._4_c00306{width:3.863976px;}
._7_c00306{width:5.064024px;}
._9_c00306{width:6.480000px;}
._8_c00306{width:7.488000px;}
._a_c00306{width:8.724000px;}
._b_c00306{width:9.948024px;}
._12_c00306{width:11.291904px;}
._c_c00306{width:13.044000px;}
._5_c00306{width:14.832000px;}
._6_c00306{width:15.876000px;}
._d_c00306{width:17.019598px;}
._f_c00306{width:28.740000px;}
._11_c00306{width:29.880000px;}
._10_c00306{width:31.032000px;}
.fc0_c00306{color:rgb(0,0,0);}
.fs3_c00306{font-size:38.880000px;}
.fs1_c00306{font-size:47.520000px;}
.fs2_c00306{font-size:60.480000px;}
.fs0_c00306{font-size:72.000000px;}
.y0_c00306{bottom:0.000000px;}
.y3_c00306{bottom:4.320000px;}
.y6_c00306{bottom:4.680000px;}
.y5_c00306{bottom:25.200000px;}
.y4_c00306{bottom:32.040000px;}
.y1_c00306{bottom:57.240000px;}
.y2e_c00306{bottom:130.716000px;}
.y2d_c00306{bottom:147.996000px;}
.y2c_c00306{bottom:165.270000px;}
.y2b_c00306{bottom:182.550000px;}
.y2a_c00306{bottom:199.830000px;}
.y29_c00306{bottom:216.750000px;}
.y28_c00306{bottom:234.075000px;}
.y27_c00306{bottom:240.915000px;}
.y26_c00306{bottom:251.355000px;}
.y25_c00306{bottom:258.195000px;}
.y24_c00306{bottom:269.355000px;}
.y23_c00306{bottom:320.835000px;}
.y22_c00306{bottom:351.795000px;}
.y21_c00306{bottom:382.785000px;}
.y20_c00306{bottom:413.745000px;}
.y1e_c00306{bottom:445.065000px;}
.y1f_c00306{bottom:453.345000px;}
.y1d_c00306{bottom:476.070000px;}
.y1c_c00306{bottom:513.870000px;}
.y1b_c00306{bottom:539.790000px;}
.y1a_c00306{bottom:565.710000px;}
.y19_c00306{bottom:591.270000px;}
.y18_c00306{bottom:626.220000px;}
.y17_c00306{bottom:652.140000px;}
.y16_c00306{bottom:678.060000px;}
.y15_c00306{bottom:703.980000px;}
.y14_c00306{bottom:729.930000px;}
.y13_c00306{bottom:755.850000px;}
.y12_c00306{bottom:781.410000px;}
.y11_c00306{bottom:830.730000px;}
.y10_c00306{bottom:882.975000px;}
.yf_c00306{bottom:922.935000px;}
.yd_c00306{bottom:953.895000px;}
.ye_c00306{bottom:962.175000px;}
.yc_c00306{bottom:984.885000px;}
.yb_c00306{bottom:1016.205000px;}
.ya_c00306{bottom:1047.165000px;}
.y9_c00306{bottom:1078.125000px;}
.y8_c00306{bottom:1109.130000px;}
.y7_c00306{bottom:1140.450000px;}
.y2_c00306{bottom:1189.050000px;}
.h3_c00306{height:20.550000px;}
.hb_c00306{height:34.855313px;}
.h4_c00306{height:41.395500px;}
.h7_c00306{height:46.615078px;}
.hc_c00306{height:54.514688px;}
.ha_c00306{height:59.328281px;}
.h9_c00306{height:59.357813px;}
.h2_c00306{height:64.546875px;}
.h8_c00306{height:70.628906px;}
.h5_c00306{height:70.664062px;}
.h6_c00306{height:1262.875500px;}
.h0_c00306{height:1262.880000px;}
.h1_c00306{height:1263.000000px;}
.w2_c00306{width:8.265000px;}
.w3_c00306{width:638.145000px;}
.w1_c00306{width:892.500000px;}
.w4_c00306{width:892.797000px;}
.w0_c00306{width:892.800000px;}
.x0_c00306{left:0.000000px;}
.x3_c00306{left:127.534500px;}
.xb_c00306{left:142.632000px;}
.x1_c00306{left:154.515000px;}
.x7_c00306{left:169.995000px;}
.x6_c00306{left:180.795000px;}
.x8_c00306{left:293.547000px;}
.x9_c00306{left:311.910000px;}
.xa_c00306{left:343.590000px;}
.x4_c00306{left:612.612000px;}
.x5_c00306{left:631.005000px;}
.x2_c00306{left:757.410000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.lsf_c00306{letter-spacing:-1.226667pt;}
.ls16_c00306{letter-spacing:-0.832000pt;}
.lsa_c00306{letter-spacing:-0.810667pt;}
.ls9_c00306{letter-spacing:-0.473600pt;}
.ls14_c00306{letter-spacing:-0.414933pt;}
.lse_c00306{letter-spacing:-0.214933pt;}
.ls8_c00306{letter-spacing:0.000000pt;}
.ls11_c00306{letter-spacing:0.018133pt;}
.ls10_c00306{letter-spacing:0.020267pt;}
.ls0_c00306{letter-spacing:0.106667pt;}
.lsb_c00306{letter-spacing:0.148267pt;}
.ls6_c00306{letter-spacing:0.160000pt;}
.ls3_c00306{letter-spacing:0.268800pt;}
.ls5_c00306{letter-spacing:0.450560pt;}
.ls13_c00306{letter-spacing:0.450667pt;}
.lsc_c00306{letter-spacing:0.463467pt;}
.lsd_c00306{letter-spacing:0.470933pt;}
.ls12_c00306{letter-spacing:0.576000pt;}
.ls2_c00306{letter-spacing:0.640000pt;}
.ls1_c00306{letter-spacing:0.647680pt;}
.ls15_c00306{letter-spacing:1.280000pt;}
.ls7_c00306{letter-spacing:3.200000pt;}
.ls4_c00306{letter-spacing:10.880000pt;}
.ws1_c00306{word-spacing:-64.000000pt;}
.ws3_c00306{word-spacing:-53.760000pt;}
.ws7_c00306{word-spacing:-16.576000pt;}
.ws0_c00306{word-spacing:-16.000000pt;}
.ws9_c00306{word-spacing:-14.720000pt;}
.ws5_c00306{word-spacing:-13.903467pt;}
.ws4_c00306{word-spacing:-13.588267pt;}
.ws2_c00306{word-spacing:-13.440000pt;}
.ws6_c00306{word-spacing:-13.225067pt;}
.ws8_c00306{word-spacing:-13.025067pt;}
.wsa_c00306{word-spacing:-12.608000pt;}
.wsb_c00306{word-spacing:0.000000pt;}
._e_c00306{margin-left:-3.200000pt;}
._2_c00306{margin-left:-2.186667pt;}
._1_c00306{margin-left:-1.088000pt;}
._0_c00306{width:1.216000pt;}
._3_c00306{width:2.368000pt;}
._4_c00306{width:3.434645pt;}
._7_c00306{width:4.501355pt;}
._9_c00306{width:5.760000pt;}
._8_c00306{width:6.656000pt;}
._a_c00306{width:7.754667pt;}
._b_c00306{width:8.842688pt;}
._12_c00306{width:10.037248pt;}
._c_c00306{width:11.594667pt;}
._5_c00306{width:13.184000pt;}
._6_c00306{width:14.112000pt;}
._d_c00306{width:15.128532pt;}
._f_c00306{width:25.546667pt;}
._11_c00306{width:26.560000pt;}
._10_c00306{width:27.584000pt;}
.fs3_c00306{font-size:34.560000pt;}
.fs1_c00306{font-size:42.240000pt;}
.fs2_c00306{font-size:53.760000pt;}
.fs0_c00306{font-size:64.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y3_c00306{bottom:3.840000pt;}
.y6_c00306{bottom:4.160000pt;}
.y5_c00306{bottom:22.400000pt;}
.y4_c00306{bottom:28.480000pt;}
.y1_c00306{bottom:50.880000pt;}
.y2e_c00306{bottom:116.192000pt;}
.y2d_c00306{bottom:131.552000pt;}
.y2c_c00306{bottom:146.906667pt;}
.y2b_c00306{bottom:162.266667pt;}
.y2a_c00306{bottom:177.626667pt;}
.y29_c00306{bottom:192.666667pt;}
.y28_c00306{bottom:208.066667pt;}
.y27_c00306{bottom:214.146667pt;}
.y26_c00306{bottom:223.426667pt;}
.y25_c00306{bottom:229.506667pt;}
.y24_c00306{bottom:239.426667pt;}
.y23_c00306{bottom:285.186667pt;}
.y22_c00306{bottom:312.706667pt;}
.y21_c00306{bottom:340.253333pt;}
.y20_c00306{bottom:367.773333pt;}
.y1e_c00306{bottom:395.613333pt;}
.y1f_c00306{bottom:402.973333pt;}
.y1d_c00306{bottom:423.173333pt;}
.y1c_c00306{bottom:456.773333pt;}
.y1b_c00306{bottom:479.813333pt;}
.y1a_c00306{bottom:502.853333pt;}
.y19_c00306{bottom:525.573333pt;}
.y18_c00306{bottom:556.640000pt;}
.y17_c00306{bottom:579.680000pt;}
.y16_c00306{bottom:602.720000pt;}
.y15_c00306{bottom:625.760000pt;}
.y14_c00306{bottom:648.826667pt;}
.y13_c00306{bottom:671.866667pt;}
.y12_c00306{bottom:694.586667pt;}
.y11_c00306{bottom:738.426667pt;}
.y10_c00306{bottom:784.866667pt;}
.yf_c00306{bottom:820.386667pt;}
.yd_c00306{bottom:847.906667pt;}
.ye_c00306{bottom:855.266667pt;}
.yc_c00306{bottom:875.453333pt;}
.yb_c00306{bottom:903.293333pt;}
.ya_c00306{bottom:930.813333pt;}
.y9_c00306{bottom:958.333333pt;}
.y8_c00306{bottom:985.893333pt;}
.y7_c00306{bottom:1013.733333pt;}
.y2_c00306{bottom:1056.933333pt;}
.h3_c00306{height:18.266667pt;}
.hb_c00306{height:30.982500pt;}
.h4_c00306{height:36.796000pt;}
.h7_c00306{height:41.435625pt;}
.hc_c00306{height:48.457500pt;}
.ha_c00306{height:52.736250pt;}
.h9_c00306{height:52.762500pt;}
.h2_c00306{height:57.375000pt;}
.h8_c00306{height:62.781250pt;}
.h5_c00306{height:62.812500pt;}
.h6_c00306{height:1122.556000pt;}
.h0_c00306{height:1122.560000pt;}
.h1_c00306{height:1122.666667pt;}
.w2_c00306{width:7.346667pt;}
.w3_c00306{width:567.240000pt;}
.w1_c00306{width:793.333333pt;}
.w4_c00306{width:793.597333pt;}
.w0_c00306{width:793.600000pt;}
.x0_c00306{left:0.000000pt;}
.x3_c00306{left:113.364000pt;}
.xb_c00306{left:126.784000pt;}
.x1_c00306{left:137.346667pt;}
.x7_c00306{left:151.106667pt;}
.x6_c00306{left:160.706667pt;}
.x8_c00306{left:260.930667pt;}
.x9_c00306{left:277.253333pt;}
.xa_c00306{left:305.413333pt;}
.x4_c00306{left:544.544000pt;}
.x5_c00306{left:560.893333pt;}
.x2_c00306{left:673.253333pt;}
}





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

.ir_c00307:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00307;src:url('chunks/assets/font_151f99ff55748b77486e1a86.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_c14dff9ec95ebe9d282b38c0.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_b2e42137218297dbed003e6e.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;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_c00307;src:url('chunks/assets/font_939968ce704dd82916f9bba1.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00307;src:url('chunks/assets/font_51acd414acc774dd0de9eb8c.woff2')format("woff");}.ff5_c00307{font-family:ff5_c00307;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00307;src:url('chunks/assets/font_63f7d2696643e1be013098d5.woff2')format("woff");}.ff6_c00307{font-family:ff6_c00307;line-height:1.104004;font-style:normal;font-weight: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_c00307;src:url('chunks/assets/font_3fc1f0046a261a3c121d861e.woff2')format("woff");}.ff7_c00307{font-family:ff7_c00307;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.lsb_c00307{letter-spacing:-2.880000px;}
.ls9_c00307{letter-spacing:-0.912000px;}
.ls7_c00307{letter-spacing:-0.720000px;}
.ls6_c00307{letter-spacing:0.000000px;}
.lsa_c00307{letter-spacing:0.313800px;}
.ls0_c00307{letter-spacing:0.504000px;}
.ls8_c00307{letter-spacing:0.529800px;}
.ls2_c00307{letter-spacing:0.720000px;}
.ls3_c00307{letter-spacing:0.840000px;}
.ls1_c00307{letter-spacing:1.440000px;}
.ls5_c00307{letter-spacing:12.240000px;}
.ls4_c00307{letter-spacing:15.120000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00307{word-spacing:-72.000000px;}
.ws3_c00307{word-spacing:-60.480000px;}
.ws0_c00307{word-spacing:-18.000000px;}
.ws4_c00307{word-spacing:-15.433800px;}
.ws2_c00307{word-spacing:-15.120000px;}
.ws5_c00307{word-spacing:0.000000px;}
._3_c00307{margin-left:-3.096000px;}
._0_c00307{margin-left:-2.088000px;}
._7_c00307{margin-left:-1.008000px;}
._1_c00307{width:1.512000px;}
._b_c00307{width:3.096000px;}
._2_c00307{width:4.536000px;}
._4_c00307{width:6.408000px;}
._9_c00307{width:8.064000px;}
._a_c00307{width:9.216000px;}
._f_c00307{width:11.016000px;}
._10_c00307{width:12.312000px;}
._e_c00307{width:13.320000px;}
._8_c00307{width:14.616000px;}
._d_c00307{width:15.635976px;}
._6_c00307{width:16.656000px;}
._5_c00307{width:19.728000px;}
._c_c00307{width:151.932024px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs3_c00307{font-size:38.880000px;}
.fs1_c00307{font-size:47.520000px;}
.fs2_c00307{font-size:60.480000px;}
.fs0_c00307{font-size:72.000000px;}
.y0_c00307{bottom:0.000000px;}
.y3_c00307{bottom:4.320000px;}
.y6_c00307{bottom:4.680000px;}
.y5_c00307{bottom:25.200000px;}
.y4_c00307{bottom:32.040000px;}
.y1_c00307{bottom:57.240000px;}
.y2e_c00307{bottom:130.716000px;}
.y2d_c00307{bottom:137.556000px;}
.y2c_c00307{bottom:147.996000px;}
.y2b_c00307{bottom:154.830000px;}
.y2a_c00307{bottom:165.270000px;}
.y29_c00307{bottom:182.550000px;}
.y28_c00307{bottom:189.390000px;}
.y27_c00307{bottom:200.190000px;}
.y26_c00307{bottom:252.075000px;}
.y25_c00307{bottom:283.035000px;}
.y24_c00307{bottom:314.355000px;}
.y22_c00307{bottom:345.315000px;}
.y23_c00307{bottom:353.625000px;}
.y21_c00307{bottom:376.305000px;}
.y20_c00307{bottom:407.265000px;}
.y1f_c00307{bottom:438.585000px;}
.y1e_c00307{bottom:469.545000px;}
.y1d_c00307{bottom:500.550000px;}
.y1b_c00307{bottom:531.510000px;}
.y1c_c00307{bottom:539.790000px;}
.y1a_c00307{bottom:562.830000px;}
.y19_c00307{bottom:593.790000px;}
.y18_c00307{bottom:631.620000px;}
.y17_c00307{bottom:657.540000px;}
.y16_c00307{bottom:683.100000px;}
.y15_c00307{bottom:718.020000px;}
.y14_c00307{bottom:743.970000px;}
.y13_c00307{bottom:769.890000px;}
.y12_c00307{bottom:795.810000px;}
.y11_c00307{bottom:821.730000px;}
.y10_c00307{bottom:871.095000px;}
.yf_c00307{bottom:922.935000px;}
.ye_c00307{bottom:953.895000px;}
.yc_c00307{bottom:984.885000px;}
.yd_c00307{bottom:993.165000px;}
.yb_c00307{bottom:1016.205000px;}
.ya_c00307{bottom:1047.165000px;}
.y9_c00307{bottom:1078.125000px;}
.y8_c00307{bottom:1109.130000px;}
.y7_c00307{bottom:1140.450000px;}
.y2_c00307{bottom:1189.050000px;}
.h3_c00307{height:20.550000px;}
.ha_c00307{height:34.855313px;}
.h4_c00307{height:41.395500px;}
.h7_c00307{height:46.638281px;}
.hb_c00307{height:54.514688px;}
.h9_c00307{height:59.328281px;}
.h8_c00307{height:59.357813px;}
.h2_c00307{height:64.546875px;}
.h5_c00307{height:70.664062px;}
.h6_c00307{height:1262.875500px;}
.h0_c00307{height:1262.880000px;}
.h1_c00307{height:1263.000000px;}
.w2_c00307{width:8.265000px;}
.w3_c00307{width:638.145000px;}
.w1_c00307{width:892.500000px;}
.w4_c00307{width:892.797000px;}
.w0_c00307{width:892.800000px;}
.x0_c00307{left:0.000000px;}
.x3_c00307{left:127.534500px;}
.xc_c00307{left:142.632000px;}
.x1_c00307{left:154.515000px;}
.x6_c00307{left:169.995000px;}
.xb_c00307{left:343.590000px;}
.x7_c00307{left:479.727000px;}
.x8_c00307{left:498.090000px;}
.x9_c00307{left:662.322000px;}
.xa_c00307{left:680.685000px;}
.x4_c00307{left:743.007000px;}
.x2_c00307{left:757.410000px;}
.x5_c00307{left:761.370000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.lsb_c00307{letter-spacing:-2.560000pt;}
.ls9_c00307{letter-spacing:-0.810667pt;}
.ls7_c00307{letter-spacing:-0.640000pt;}
.ls6_c00307{letter-spacing:0.000000pt;}
.lsa_c00307{letter-spacing:0.278933pt;}
.ls0_c00307{letter-spacing:0.448000pt;}
.ls8_c00307{letter-spacing:0.470933pt;}
.ls2_c00307{letter-spacing:0.640000pt;}
.ls3_c00307{letter-spacing:0.746667pt;}
.ls1_c00307{letter-spacing:1.280000pt;}
.ls5_c00307{letter-spacing:10.880000pt;}
.ls4_c00307{letter-spacing:13.440000pt;}
.ws1_c00307{word-spacing:-64.000000pt;}
.ws3_c00307{word-spacing:-53.760000pt;}
.ws0_c00307{word-spacing:-16.000000pt;}
.ws4_c00307{word-spacing:-13.718933pt;}
.ws2_c00307{word-spacing:-13.440000pt;}
.ws5_c00307{word-spacing:0.000000pt;}
._3_c00307{margin-left:-2.752000pt;}
._0_c00307{margin-left:-1.856000pt;}
._7_c00307{margin-left:-0.896000pt;}
._1_c00307{width:1.344000pt;}
._b_c00307{width:2.752000pt;}
._2_c00307{width:4.032000pt;}
._4_c00307{width:5.696000pt;}
._9_c00307{width:7.168000pt;}
._a_c00307{width:8.192000pt;}
._f_c00307{width:9.792000pt;}
._10_c00307{width:10.944000pt;}
._e_c00307{width:11.840000pt;}
._8_c00307{width:12.992000pt;}
._d_c00307{width:13.898645pt;}
._6_c00307{width:14.805333pt;}
._5_c00307{width:17.536000pt;}
._c_c00307{width:135.050688pt;}
.fs3_c00307{font-size:34.560000pt;}
.fs1_c00307{font-size:42.240000pt;}
.fs2_c00307{font-size:53.760000pt;}
.fs0_c00307{font-size:64.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y3_c00307{bottom:3.840000pt;}
.y6_c00307{bottom:4.160000pt;}
.y5_c00307{bottom:22.400000pt;}
.y4_c00307{bottom:28.480000pt;}
.y1_c00307{bottom:50.880000pt;}
.y2e_c00307{bottom:116.192000pt;}
.y2d_c00307{bottom:122.272000pt;}
.y2c_c00307{bottom:131.552000pt;}
.y2b_c00307{bottom:137.626667pt;}
.y2a_c00307{bottom:146.906667pt;}
.y29_c00307{bottom:162.266667pt;}
.y28_c00307{bottom:168.346667pt;}
.y27_c00307{bottom:177.946667pt;}
.y26_c00307{bottom:224.066667pt;}
.y25_c00307{bottom:251.586667pt;}
.y24_c00307{bottom:279.426667pt;}
.y22_c00307{bottom:306.946667pt;}
.y23_c00307{bottom:314.333333pt;}
.y21_c00307{bottom:334.493333pt;}
.y20_c00307{bottom:362.013333pt;}
.y1f_c00307{bottom:389.853333pt;}
.y1e_c00307{bottom:417.373333pt;}
.y1d_c00307{bottom:444.933333pt;}
.y1b_c00307{bottom:472.453333pt;}
.y1c_c00307{bottom:479.813333pt;}
.y1a_c00307{bottom:500.293333pt;}
.y19_c00307{bottom:527.813333pt;}
.y18_c00307{bottom:561.440000pt;}
.y17_c00307{bottom:584.480000pt;}
.y16_c00307{bottom:607.200000pt;}
.y15_c00307{bottom:638.240000pt;}
.y14_c00307{bottom:661.306667pt;}
.y13_c00307{bottom:684.346667pt;}
.y12_c00307{bottom:707.386667pt;}
.y11_c00307{bottom:730.426667pt;}
.y10_c00307{bottom:774.306667pt;}
.yf_c00307{bottom:820.386667pt;}
.ye_c00307{bottom:847.906667pt;}
.yc_c00307{bottom:875.453333pt;}
.yd_c00307{bottom:882.813333pt;}
.yb_c00307{bottom:903.293333pt;}
.ya_c00307{bottom:930.813333pt;}
.y9_c00307{bottom:958.333333pt;}
.y8_c00307{bottom:985.893333pt;}
.y7_c00307{bottom:1013.733333pt;}
.y2_c00307{bottom:1056.933333pt;}
.h3_c00307{height:18.266667pt;}
.ha_c00307{height:30.982500pt;}
.h4_c00307{height:36.796000pt;}
.h7_c00307{height:41.456250pt;}
.hb_c00307{height:48.457500pt;}
.h9_c00307{height:52.736250pt;}
.h8_c00307{height:52.762500pt;}
.h2_c00307{height:57.375000pt;}
.h5_c00307{height:62.812500pt;}
.h6_c00307{height:1122.556000pt;}
.h0_c00307{height:1122.560000pt;}
.h1_c00307{height:1122.666667pt;}
.w2_c00307{width:7.346667pt;}
.w3_c00307{width:567.240000pt;}
.w1_c00307{width:793.333333pt;}
.w4_c00307{width:793.597333pt;}
.w0_c00307{width:793.600000pt;}
.x0_c00307{left:0.000000pt;}
.x3_c00307{left:113.364000pt;}
.xc_c00307{left:126.784000pt;}
.x1_c00307{left:137.346667pt;}
.x6_c00307{left:151.106667pt;}
.xb_c00307{left:305.413333pt;}
.x7_c00307{left:426.424000pt;}
.x8_c00307{left:442.746667pt;}
.x9_c00307{left:588.730667pt;}
.xa_c00307{left:605.053333pt;}
.x4_c00307{left:660.450667pt;}
.x2_c00307{left:673.253333pt;}
.x5_c00307{left:676.773333pt;}
}





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

.ir_c00308:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00308;src:url('chunks/assets/font_28cdf0e6d8f91bd5a59ab051.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_0f0230be6dfcd0535b642b2f.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_d3b8b787369385ffa9813677.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_54cd1e93db9fc32f0e7975f2.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00308;src:url('chunks/assets/font_5cee8e271da069787ccebb8d.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;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_c00308;src:url('chunks/assets/font_17e7dd0c9b84f57e078fb930.woff2')format("woff");}.ff6_c00308{font-family:ff6_c00308;line-height:1.104004;font-style:normal;font-weight: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_c00308;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00308{font-family:ff7_c00308;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.lsf_c00308{letter-spacing:-1.416000px;}
.lse_c00308{letter-spacing:-0.429000px;}
.lsa_c00308{letter-spacing:-0.360000px;}
.ls7_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:0.120000px;}
.lsd_c00308{letter-spacing:0.166800px;}
.ls3_c00308{letter-spacing:0.180000px;}
.ls8_c00308{letter-spacing:0.486600px;}
.lsb_c00308{letter-spacing:0.504000px;}
.ls6_c00308{letter-spacing:0.524160px;}
.lsc_c00308{letter-spacing:0.576000px;}
.ls1_c00308{letter-spacing:0.720000px;}
.ls2_c00308{letter-spacing:0.740036px;}
.ls9_c00308{letter-spacing:1.152000px;}
.ls4_c00308{letter-spacing:6.480000px;}
.ls5_c00308{letter-spacing:20.880000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00308{word-spacing:-60.480000px;}
.ws4_c00308{word-spacing:-19.152000px;}
.ws6_c00308{word-spacing:-18.504000px;}
.ws0_c00308{word-spacing:-18.000000px;}
.ws5_c00308{word-spacing:-17.640000px;}
.ws1_c00308{word-spacing:-15.606600px;}
.ws7_c00308{word-spacing:-15.286800px;}
.ws2_c00308{word-spacing:-15.120000px;}
.ws8_c00308{word-spacing:-14.691000px;}
.ws9_c00308{word-spacing:0.000000px;}
._2_c00308{margin-left:-2.916000px;}
._1_c00308{margin-left:-1.032000px;}
._0_c00308{width:1.656000px;}
._6_c00308{width:2.808000px;}
._7_c00308{width:3.960000px;}
._5_c00308{width:5.891976px;}
._4_c00308{width:7.164000px;}
._e_c00308{width:8.236215px;}
._c_c00308{width:13.584000px;}
._b_c00308{width:14.868000px;}
._d_c00308{width:16.020000px;}
._a_c00308{width:19.200000px;}
._8_c00308{width:21.180000px;}
._9_c00308{width:22.248000px;}
._3_c00308{width:151.932024px;}
.fc0_c00308{color:rgb(0,0,0);}
.fs1_c00308{font-size:60.480000px;}
.fs0_c00308{font-size:72.000000px;}
.y0_c00308{bottom:0.000000px;}
.y3_c00308{bottom:4.320000px;}
.y6_c00308{bottom:4.680000px;}
.y5_c00308{bottom:25.200000px;}
.y4_c00308{bottom:32.040000px;}
.y1_c00308{bottom:57.240000px;}
.y24_c00308{bottom:192.270000px;}
.y23_c00308{bottom:223.590000px;}
.y22_c00308{bottom:254.595000px;}
.y21_c00308{bottom:285.555000px;}
.y20_c00308{bottom:316.515000px;}
.y1f_c00308{bottom:354.345000px;}
.y1e_c00308{bottom:380.265000px;}
.y1d_c00308{bottom:415.185000px;}
.y1c_c00308{bottom:441.105000px;}
.y1b_c00308{bottom:467.025000px;}
.y1a_c00308{bottom:516.390000px;}
.y19_c00308{bottom:568.230000px;}
.y18_c00308{bottom:599.220000px;}
.y17_c00308{bottom:630.180000px;}
.y16_c00308{bottom:661.140000px;}
.y15_c00308{bottom:692.460000px;}
.y14_c00308{bottom:723.450000px;}
.y13_c00308{bottom:754.410000px;}
.y12_c00308{bottom:785.370000px;}
.y11_c00308{bottom:816.690000px;}
.y10_c00308{bottom:847.695000px;}
.yf_c00308{bottom:878.655000px;}
.ye_c00308{bottom:909.615000px;}
.yd_c00308{bottom:940.935000px;}
.yc_c00308{bottom:978.765000px;}
.yb_c00308{bottom:1004.325000px;}
.ya_c00308{bottom:1039.245000px;}
.y9_c00308{bottom:1065.165000px;}
.y8_c00308{bottom:1091.130000px;}
.y7_c00308{bottom:1140.450000px;}
.y2_c00308{bottom:1189.050000px;}
.h3_c00308{height:20.550000px;}
.h4_c00308{height:41.395500px;}
.h8_c00308{height:59.328281px;}
.h6_c00308{height:59.357813px;}
.h7_c00308{height:60.952500px;}
.h2_c00308{height:64.546875px;}
.h5_c00308{height:70.664062px;}
.h0_c00308{height:1262.880000px;}
.h1_c00308{height:1263.000000px;}
.w2_c00308{width:8.265000px;}
.w3_c00308{width:638.145000px;}
.w1_c00308{width:892.500000px;}
.w0_c00308{width:892.800000px;}
.x0_c00308{left:0.000000px;}
.x3_c00308{left:127.534500px;}
.x1_c00308{left:154.515000px;}
.x4_c00308{left:169.995000px;}
.x2_c00308{left:757.410000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.lsf_c00308{letter-spacing:-1.258667pt;}
.lse_c00308{letter-spacing:-0.381333pt;}
.lsa_c00308{letter-spacing:-0.320000pt;}
.ls7_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:0.106667pt;}
.lsd_c00308{letter-spacing:0.148267pt;}
.ls3_c00308{letter-spacing:0.160000pt;}
.ls8_c00308{letter-spacing:0.432533pt;}
.lsb_c00308{letter-spacing:0.448000pt;}
.ls6_c00308{letter-spacing:0.465920pt;}
.lsc_c00308{letter-spacing:0.512000pt;}
.ls1_c00308{letter-spacing:0.640000pt;}
.ls2_c00308{letter-spacing:0.657810pt;}
.ls9_c00308{letter-spacing:1.024000pt;}
.ls4_c00308{letter-spacing:5.760000pt;}
.ls5_c00308{letter-spacing:18.560000pt;}
.ws3_c00308{word-spacing:-53.760000pt;}
.ws4_c00308{word-spacing:-17.024000pt;}
.ws6_c00308{word-spacing:-16.448000pt;}
.ws0_c00308{word-spacing:-16.000000pt;}
.ws5_c00308{word-spacing:-15.680000pt;}
.ws1_c00308{word-spacing:-13.872533pt;}
.ws7_c00308{word-spacing:-13.588267pt;}
.ws2_c00308{word-spacing:-13.440000pt;}
.ws8_c00308{word-spacing:-13.058667pt;}
.ws9_c00308{word-spacing:0.000000pt;}
._2_c00308{margin-left:-2.592000pt;}
._1_c00308{margin-left:-0.917333pt;}
._0_c00308{width:1.472000pt;}
._6_c00308{width:2.496000pt;}
._7_c00308{width:3.520000pt;}
._5_c00308{width:5.237312pt;}
._4_c00308{width:6.368000pt;}
._e_c00308{width:7.321080pt;}
._c_c00308{width:12.074667pt;}
._b_c00308{width:13.216000pt;}
._d_c00308{width:14.240000pt;}
._a_c00308{width:17.066667pt;}
._8_c00308{width:18.826667pt;}
._9_c00308{width:19.776000pt;}
._3_c00308{width:135.050688pt;}
.fs1_c00308{font-size:53.760000pt;}
.fs0_c00308{font-size:64.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y3_c00308{bottom:3.840000pt;}
.y6_c00308{bottom:4.160000pt;}
.y5_c00308{bottom:22.400000pt;}
.y4_c00308{bottom:28.480000pt;}
.y1_c00308{bottom:50.880000pt;}
.y24_c00308{bottom:170.906667pt;}
.y23_c00308{bottom:198.746667pt;}
.y22_c00308{bottom:226.306667pt;}
.y21_c00308{bottom:253.826667pt;}
.y20_c00308{bottom:281.346667pt;}
.y1f_c00308{bottom:314.973333pt;}
.y1e_c00308{bottom:338.013333pt;}
.y1d_c00308{bottom:369.053333pt;}
.y1c_c00308{bottom:392.093333pt;}
.y1b_c00308{bottom:415.133333pt;}
.y1a_c00308{bottom:459.013333pt;}
.y19_c00308{bottom:505.093333pt;}
.y18_c00308{bottom:532.640000pt;}
.y17_c00308{bottom:560.160000pt;}
.y16_c00308{bottom:587.680000pt;}
.y15_c00308{bottom:615.520000pt;}
.y14_c00308{bottom:643.066667pt;}
.y13_c00308{bottom:670.586667pt;}
.y12_c00308{bottom:698.106667pt;}
.y11_c00308{bottom:725.946667pt;}
.y10_c00308{bottom:753.506667pt;}
.yf_c00308{bottom:781.026667pt;}
.ye_c00308{bottom:808.546667pt;}
.yd_c00308{bottom:836.386667pt;}
.yc_c00308{bottom:870.013333pt;}
.yb_c00308{bottom:892.733333pt;}
.ya_c00308{bottom:923.773333pt;}
.y9_c00308{bottom:946.813333pt;}
.y8_c00308{bottom:969.893333pt;}
.y7_c00308{bottom:1013.733333pt;}
.y2_c00308{bottom:1056.933333pt;}
.h3_c00308{height:18.266667pt;}
.h4_c00308{height:36.796000pt;}
.h8_c00308{height:52.736250pt;}
.h6_c00308{height:52.762500pt;}
.h7_c00308{height:54.180000pt;}
.h2_c00308{height:57.375000pt;}
.h5_c00308{height:62.812500pt;}
.h0_c00308{height:1122.560000pt;}
.h1_c00308{height:1122.666667pt;}
.w2_c00308{width:7.346667pt;}
.w3_c00308{width:567.240000pt;}
.w1_c00308{width:793.333333pt;}
.w0_c00308{width:793.600000pt;}
.x0_c00308{left:0.000000pt;}
.x3_c00308{left:113.364000pt;}
.x1_c00308{left:137.346667pt;}
.x4_c00308{left:151.106667pt;}
.x2_c00308{left:673.253333pt;}
}





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

.ir_c00309:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00309;src:url('chunks/assets/font_a2736725a68050ab4a48b8f7.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_27aff2fb073d7a644121c14f.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_7cb6c05df9033ed514e41ad8.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_de45473a910840906db25562.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_c1561dc60ad614921a819924.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;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_c00309;src:url('chunks/assets/font_65681c267d30ef696adab97f.woff2')format("woff");}.ff6_c00309{font-family:ff6_c00309;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls5_c00309{letter-spacing:-1.512000px;}
.lsb_c00309{letter-spacing:-1.152000px;}
.ls8_c00309{letter-spacing:-0.912000px;}
.ls6_c00309{letter-spacing:-0.720000px;}
.ls4_c00309{letter-spacing:-0.648000px;}
.ls9_c00309{letter-spacing:-0.169800px;}
.ls3_c00309{letter-spacing:0.000000px;}
.ls1_c00309{letter-spacing:0.180000px;}
.ls7_c00309{letter-spacing:0.288000px;}
.lsa_c00309{letter-spacing:0.529800px;}
.ls0_c00309{letter-spacing:0.720000px;}
.ls2_c00309{letter-spacing:7.920000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00309{word-spacing:-60.480000px;}
.ws0_c00309{word-spacing:-18.000000px;}
.ws1_c00309{word-spacing:-17.352000px;}
.ws2_c00309{word-spacing:-15.120000px;}
.ws4_c00309{word-spacing:-14.950200px;}
.ws5_c00309{word-spacing:0.000000px;}
._8_c00309{margin-left:-3.456000px;}
._3_c00309{margin-left:-2.232000px;}
._1_c00309{margin-left:-1.080000px;}
._0_c00309{width:1.800000px;}
._2_c00309{width:2.808000px;}
._4_c00309{width:4.032000px;}
._a_c00309{width:5.976000px;}
._b_c00309{width:7.296000px;}
._6_c00309{width:9.288000px;}
._5_c00309{width:11.376000px;}
._7_c00309{width:12.600000px;}
._c_c00309{width:13.679971px;}
._9_c00309{width:151.932024px;}
.fc0_c00309{color:rgb(0,0,0);}
.fs3_c00309{font-size:38.880000px;}
.fs1_c00309{font-size:47.520000px;}
.fs2_c00309{font-size:60.480000px;}
.fs0_c00309{font-size:72.000000px;}
.y0_c00309{bottom:0.000000px;}
.y3_c00309{bottom:4.320000px;}
.y6_c00309{bottom:4.680000px;}
.y5_c00309{bottom:25.200000px;}
.y4_c00309{bottom:32.040000px;}
.y1_c00309{bottom:57.240000px;}
.y2b_c00309{bottom:130.716000px;}
.y2a_c00309{bottom:147.996000px;}
.y29_c00309{bottom:154.830000px;}
.y28_c00309{bottom:165.270000px;}
.y27_c00309{bottom:182.550000px;}
.y26_c00309{bottom:189.390000px;}
.y25_c00309{bottom:200.190000px;}
.y24_c00309{bottom:238.755000px;}
.y23_c00309{bottom:269.715000px;}
.y22_c00309{bottom:300.675000px;}
.y21_c00309{bottom:331.995000px;}
.y20_c00309{bottom:362.985000px;}
.y1f_c00309{bottom:400.785000px;}
.y1e_c00309{bottom:426.705000px;}
.y1d_c00309{bottom:452.265000px;}
.y1c_c00309{bottom:487.230000px;}
.y1b_c00309{bottom:513.150000px;}
.y1a_c00309{bottom:539.070000px;}
.y19_c00309{bottom:564.990000px;}
.y18_c00309{bottom:590.910000px;}
.y17_c00309{bottom:640.260000px;}
.y16_c00309{bottom:692.100000px;}
.y15_c00309{bottom:723.090000px;}
.y14_c00309{bottom:754.050000px;}
.y13_c00309{bottom:785.370000px;}
.y11_c00309{bottom:816.330000px;}
.y12_c00309{bottom:824.610000px;}
.y10_c00309{bottom:847.335000px;}
.yf_c00309{bottom:878.295000px;}
.ye_c00309{bottom:916.095000px;}
.yd_c00309{bottom:951.015000px;}
.yc_c00309{bottom:976.965000px;}
.yb_c00309{bottom:1026.285000px;}
.ya_c00309{bottom:1078.125000px;}
.y9_c00309{bottom:1109.130000px;}
.y7_c00309{bottom:1140.450000px;}
.y8_c00309{bottom:1148.730000px;}
.y2_c00309{bottom:1189.050000px;}
.h3_c00309{height:20.550000px;}
.ha_c00309{height:34.855313px;}
.h4_c00309{height:41.395500px;}
.h7_c00309{height:46.638281px;}
.h9_c00309{height:59.328281px;}
.h8_c00309{height:59.357813px;}
.h2_c00309{height:64.546875px;}
.h5_c00309{height:70.664062px;}
.h6_c00309{height:1262.875500px;}
.h0_c00309{height:1262.880000px;}
.h1_c00309{height:1263.000000px;}
.w2_c00309{width:8.265000px;}
.w3_c00309{width:638.145000px;}
.w1_c00309{width:892.500000px;}
.w4_c00309{width:892.797000px;}
.w0_c00309{width:892.800000px;}
.x0_c00309{left:0.000000px;}
.x3_c00309{left:127.534500px;}
.xa_c00309{left:142.632000px;}
.x1_c00309{left:154.515000px;}
.x6_c00309{left:169.995000px;}
.x9_c00309{left:343.590000px;}
.x7_c00309{left:672.402000px;}
.x4_c00309{left:676.722000px;}
.x8_c00309{left:690.765000px;}
.x5_c00309{left:695.085000px;}
.x2_c00309{left:757.410000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls5_c00309{letter-spacing:-1.344000pt;}
.lsb_c00309{letter-spacing:-1.024000pt;}
.ls8_c00309{letter-spacing:-0.810667pt;}
.ls6_c00309{letter-spacing:-0.640000pt;}
.ls4_c00309{letter-spacing:-0.576000pt;}
.ls9_c00309{letter-spacing:-0.150933pt;}
.ls3_c00309{letter-spacing:0.000000pt;}
.ls1_c00309{letter-spacing:0.160000pt;}
.ls7_c00309{letter-spacing:0.256000pt;}
.lsa_c00309{letter-spacing:0.470933pt;}
.ls0_c00309{letter-spacing:0.640000pt;}
.ls2_c00309{letter-spacing:7.040000pt;}
.ws3_c00309{word-spacing:-53.760000pt;}
.ws0_c00309{word-spacing:-16.000000pt;}
.ws1_c00309{word-spacing:-15.424000pt;}
.ws2_c00309{word-spacing:-13.440000pt;}
.ws4_c00309{word-spacing:-13.289067pt;}
.ws5_c00309{word-spacing:0.000000pt;}
._8_c00309{margin-left:-3.072000pt;}
._3_c00309{margin-left:-1.984000pt;}
._1_c00309{margin-left:-0.960000pt;}
._0_c00309{width:1.600000pt;}
._2_c00309{width:2.496000pt;}
._4_c00309{width:3.584000pt;}
._a_c00309{width:5.312000pt;}
._b_c00309{width:6.485333pt;}
._6_c00309{width:8.256000pt;}
._5_c00309{width:10.112000pt;}
._7_c00309{width:11.200000pt;}
._c_c00309{width:12.159974pt;}
._9_c00309{width:135.050688pt;}
.fs3_c00309{font-size:34.560000pt;}
.fs1_c00309{font-size:42.240000pt;}
.fs2_c00309{font-size:53.760000pt;}
.fs0_c00309{font-size:64.000000pt;}
.y0_c00309{bottom:0.000000pt;}
.y3_c00309{bottom:3.840000pt;}
.y6_c00309{bottom:4.160000pt;}
.y5_c00309{bottom:22.400000pt;}
.y4_c00309{bottom:28.480000pt;}
.y1_c00309{bottom:50.880000pt;}
.y2b_c00309{bottom:116.192000pt;}
.y2a_c00309{bottom:131.552000pt;}
.y29_c00309{bottom:137.626667pt;}
.y28_c00309{bottom:146.906667pt;}
.y27_c00309{bottom:162.266667pt;}
.y26_c00309{bottom:168.346667pt;}
.y25_c00309{bottom:177.946667pt;}
.y24_c00309{bottom:212.226667pt;}
.y23_c00309{bottom:239.746667pt;}
.y22_c00309{bottom:267.266667pt;}
.y21_c00309{bottom:295.106667pt;}
.y20_c00309{bottom:322.653333pt;}
.y1f_c00309{bottom:356.253333pt;}
.y1e_c00309{bottom:379.293333pt;}
.y1d_c00309{bottom:402.013333pt;}
.y1c_c00309{bottom:433.093333pt;}
.y1b_c00309{bottom:456.133333pt;}
.y1a_c00309{bottom:479.173333pt;}
.y19_c00309{bottom:502.213333pt;}
.y18_c00309{bottom:525.253333pt;}
.y17_c00309{bottom:569.120000pt;}
.y16_c00309{bottom:615.200000pt;}
.y15_c00309{bottom:642.746667pt;}
.y14_c00309{bottom:670.266667pt;}
.y13_c00309{bottom:698.106667pt;}
.y11_c00309{bottom:725.626667pt;}
.y12_c00309{bottom:732.986667pt;}
.y10_c00309{bottom:753.186667pt;}
.yf_c00309{bottom:780.706667pt;}
.ye_c00309{bottom:814.306667pt;}
.yd_c00309{bottom:845.346667pt;}
.yc_c00309{bottom:868.413333pt;}
.yb_c00309{bottom:912.253333pt;}
.ya_c00309{bottom:958.333333pt;}
.y9_c00309{bottom:985.893333pt;}
.y7_c00309{bottom:1013.733333pt;}
.y8_c00309{bottom:1021.093333pt;}
.y2_c00309{bottom:1056.933333pt;}
.h3_c00309{height:18.266667pt;}
.ha_c00309{height:30.982500pt;}
.h4_c00309{height:36.796000pt;}
.h7_c00309{height:41.456250pt;}
.h9_c00309{height:52.736250pt;}
.h8_c00309{height:52.762500pt;}
.h2_c00309{height:57.375000pt;}
.h5_c00309{height:62.812500pt;}
.h6_c00309{height:1122.556000pt;}
.h0_c00309{height:1122.560000pt;}
.h1_c00309{height:1122.666667pt;}
.w2_c00309{width:7.346667pt;}
.w3_c00309{width:567.240000pt;}
.w1_c00309{width:793.333333pt;}
.w4_c00309{width:793.597333pt;}
.w0_c00309{width:793.600000pt;}
.x0_c00309{left:0.000000pt;}
.x3_c00309{left:113.364000pt;}
.xa_c00309{left:126.784000pt;}
.x1_c00309{left:137.346667pt;}
.x6_c00309{left:151.106667pt;}
.x9_c00309{left:305.413333pt;}
.x7_c00309{left:597.690667pt;}
.x4_c00309{left:601.530667pt;}
.x8_c00309{left:614.013333pt;}
.x5_c00309{left:617.853333pt;}
.x2_c00309{left:673.253333pt;}
}





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

.ir_c00310:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00310;src:url('chunks/assets/font_18038cb7a59f3d5a7619591c.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_aa982f6ab3580747332cc4ff.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_d246c6336428e8bed0d532eb.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;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_c00310;src:url('chunks/assets/font_88ce08f30aceb6d43fe32f2f.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00310;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff5_c00310{font-family:ff5_c00310;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls3_c00310{letter-spacing:-1.440000px;}
.ls2_c00310{letter-spacing:0.000000px;}
.ls0_c00310{letter-spacing:0.720000px;}
.ls1_c00310{letter-spacing:2.160000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00310{word-spacing:-40.608000px;}
.ws0_c00310{word-spacing:-18.000000px;}
.ws2_c00310{word-spacing:0.000000px;}
._5_c00310{margin-left:-3.024000px;}
._0_c00310{margin-left:-1.440000px;}
._1_c00310{width:1.368000px;}
._4_c00310{width:2.808000px;}
._6_c00310{width:4.488000px;}
._a_c00310{width:6.024000px;}
._c_c00310{width:7.968000px;}
._13_c00310{width:9.120000px;}
._e_c00310{width:10.584000px;}
._d_c00310{width:11.880000px;}
._10_c00310{width:14.976000px;}
._11_c00310{width:16.344000px;}
._f_c00310{width:19.152000px;}
._8_c00310{width:22.896000px;}
._7_c00310{width:24.624000px;}
._9_c00310{width:25.776000px;}
._14_c00310{width:27.648000px;}
._12_c00310{width:28.656000px;}
._15_c00310{width:29.808000px;}
._2_c00310{width:31.752000px;}
._3_c00310{width:32.904000px;}
._b_c00310{width:151.932024px;}
.fc0_c00310{color:rgb(0,0,0);}
.fs1_c00310{font-size:60.480000px;}
.fs0_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y3_c00310{bottom:4.320000px;}
.y6_c00310{bottom:4.680000px;}
.y5_c00310{bottom:25.200000px;}
.y4_c00310{bottom:32.040000px;}
.y1_c00310{bottom:57.240000px;}
.y26_c00310{bottom:138.636000px;}
.y25_c00310{bottom:169.590000px;}
.y24_c00310{bottom:200.550000px;}
.y23_c00310{bottom:231.555000px;}
.y22_c00310{bottom:262.875000px;}
.y21_c00310{bottom:293.835000px;}
.y20_c00310{bottom:333.795000px;}
.y1f_c00310{bottom:364.785000px;}
.y1e_c00310{bottom:396.105000px;}
.y1d_c00310{bottom:427.065000px;}
.y1c_c00310{bottom:458.385000px;}
.y1b_c00310{bottom:504.150000px;}
.y1a_c00310{bottom:535.110000px;}
.y19_c00310{bottom:566.430000px;}
.y18_c00310{bottom:597.420000px;}
.y17_c00310{bottom:628.380000px;}
.y16_c00310{bottom:659.340000px;}
.y15_c00310{bottom:690.660000px;}
.y14_c00310{bottom:721.650000px;}
.y13_c00310{bottom:752.610000px;}
.y12_c00310{bottom:783.570000px;}
.y11_c00310{bottom:814.530000px;}
.y10_c00310{bottom:845.895000px;}
.yf_c00310{bottom:876.855000px;}
.ye_c00310{bottom:907.815000px;}
.yd_c00310{bottom:938.775000px;}
.yc_c00310{bottom:970.125000px;}
.yb_c00310{bottom:1001.445000px;}
.ya_c00310{bottom:1047.165000px;}
.y9_c00310{bottom:1078.125000px;}
.y8_c00310{bottom:1109.130000px;}
.y7_c00310{bottom:1140.450000px;}
.y2_c00310{bottom:1189.050000px;}
.h3_c00310{height:20.550000px;}
.h4_c00310{height:41.395500px;}
.h2_c00310{height:64.546875px;}
.h6_c00310{height:70.628906px;}
.h5_c00310{height:70.664062px;}
.h0_c00310{height:1262.880000px;}
.h1_c00310{height:1263.000000px;}
.w2_c00310{width:8.265000px;}
.w3_c00310{width:638.145000px;}
.w1_c00310{width:892.500000px;}
.w0_c00310{width:892.800000px;}
.x0_c00310{left:0.000000px;}
.x3_c00310{left:127.534500px;}
.x1_c00310{left:154.515000px;}
.x2_c00310{left:757.410000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls3_c00310{letter-spacing:-1.280000pt;}
.ls2_c00310{letter-spacing:0.000000pt;}
.ls0_c00310{letter-spacing:0.640000pt;}
.ls1_c00310{letter-spacing:1.920000pt;}
.ws1_c00310{word-spacing:-36.096000pt;}
.ws0_c00310{word-spacing:-16.000000pt;}
.ws2_c00310{word-spacing:0.000000pt;}
._5_c00310{margin-left:-2.688000pt;}
._0_c00310{margin-left:-1.280000pt;}
._1_c00310{width:1.216000pt;}
._4_c00310{width:2.496000pt;}
._6_c00310{width:3.989333pt;}
._a_c00310{width:5.354667pt;}
._c_c00310{width:7.082667pt;}
._13_c00310{width:8.106667pt;}
._e_c00310{width:9.408000pt;}
._d_c00310{width:10.560000pt;}
._10_c00310{width:13.312000pt;}
._11_c00310{width:14.528000pt;}
._f_c00310{width:17.024000pt;}
._8_c00310{width:20.352000pt;}
._7_c00310{width:21.888000pt;}
._9_c00310{width:22.912000pt;}
._14_c00310{width:24.576000pt;}
._12_c00310{width:25.472000pt;}
._15_c00310{width:26.496000pt;}
._2_c00310{width:28.224000pt;}
._3_c00310{width:29.248000pt;}
._b_c00310{width:135.050688pt;}
.fs1_c00310{font-size:53.760000pt;}
.fs0_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y3_c00310{bottom:3.840000pt;}
.y6_c00310{bottom:4.160000pt;}
.y5_c00310{bottom:22.400000pt;}
.y4_c00310{bottom:28.480000pt;}
.y1_c00310{bottom:50.880000pt;}
.y26_c00310{bottom:123.232000pt;}
.y25_c00310{bottom:150.746667pt;}
.y24_c00310{bottom:178.266667pt;}
.y23_c00310{bottom:205.826667pt;}
.y22_c00310{bottom:233.666667pt;}
.y21_c00310{bottom:261.186667pt;}
.y20_c00310{bottom:296.706667pt;}
.y1f_c00310{bottom:324.253333pt;}
.y1e_c00310{bottom:352.093333pt;}
.y1d_c00310{bottom:379.613333pt;}
.y1c_c00310{bottom:407.453333pt;}
.y1b_c00310{bottom:448.133333pt;}
.y1a_c00310{bottom:475.653333pt;}
.y19_c00310{bottom:503.493333pt;}
.y18_c00310{bottom:531.040000pt;}
.y17_c00310{bottom:558.560000pt;}
.y16_c00310{bottom:586.080000pt;}
.y15_c00310{bottom:613.920000pt;}
.y14_c00310{bottom:641.466667pt;}
.y13_c00310{bottom:668.986667pt;}
.y12_c00310{bottom:696.506667pt;}
.y11_c00310{bottom:724.026667pt;}
.y10_c00310{bottom:751.906667pt;}
.yf_c00310{bottom:779.426667pt;}
.ye_c00310{bottom:806.946667pt;}
.yd_c00310{bottom:834.466667pt;}
.yc_c00310{bottom:862.333333pt;}
.yb_c00310{bottom:890.173333pt;}
.ya_c00310{bottom:930.813333pt;}
.y9_c00310{bottom:958.333333pt;}
.y8_c00310{bottom:985.893333pt;}
.y7_c00310{bottom:1013.733333pt;}
.y2_c00310{bottom:1056.933333pt;}
.h3_c00310{height:18.266667pt;}
.h4_c00310{height:36.796000pt;}
.h2_c00310{height:57.375000pt;}
.h6_c00310{height:62.781250pt;}
.h5_c00310{height:62.812500pt;}
.h0_c00310{height:1122.560000pt;}
.h1_c00310{height:1122.666667pt;}
.w2_c00310{width:7.346667pt;}
.w3_c00310{width:567.240000pt;}
.w1_c00310{width:793.333333pt;}
.w0_c00310{width:793.600000pt;}
.x0_c00310{left:0.000000pt;}
.x3_c00310{left:113.364000pt;}
.x1_c00310{left:137.346667pt;}
.x2_c00310{left:673.253333pt;}
}





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

.ir_c00311:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00311;src:url('chunks/assets/font_6d947b290fabe9607faec709.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_c6bff86b6484374cf67722ae.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_689d91ce3861eca55b2eb278.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;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_c00311;src:url('chunks/assets/font_4233625bfed47434f87e4e87.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00311;src:url('chunks/assets/font_a725d99679fce9eb4108d60b.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00311;src:url('chunks/assets/font_c6a2611488543804e8d2c5dc.woff2')format("woff");}.ff6_c00311{font-family:ff6_c00311;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls8_c00311{letter-spacing:-1.416000px;}
.ls6_c00311{letter-spacing:-0.912000px;}
.ls5_c00311{letter-spacing:0.000000px;}
.ls7_c00311{letter-spacing:0.166800px;}
.lsb_c00311{letter-spacing:0.288000px;}
.ls0_c00311{letter-spacing:0.504000px;}
.ls9_c00311{letter-spacing:0.529800px;}
.ls1_c00311{letter-spacing:0.720000px;}
.ls2_c00311{letter-spacing:0.840000px;}
.lsa_c00311{letter-spacing:1.152000px;}
.ls3_c00311{letter-spacing:1.440000px;}
.ls4_c00311{letter-spacing:33.840000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00311{word-spacing:-60.480000px;}
.ws5_c00311{word-spacing:-19.152000px;}
.ws4_c00311{word-spacing:-18.504000px;}
.ws0_c00311{word-spacing:-18.000000px;}
.ws2_c00311{word-spacing:-15.286800px;}
.ws1_c00311{word-spacing:-15.120000px;}
.ws6_c00311{word-spacing:0.000000px;}
._3_c00311{margin-left:-2.736000px;}
._2_c00311{margin-left:-1.440000px;}
._0_c00311{width:1.368000px;}
._6_c00311{width:2.460024px;}
._1_c00311{width:4.032000px;}
._4_c00311{width:5.184000px;}
._5_c00311{width:6.984000px;}
._7_c00311{width:8.027928px;}
._12_c00311{width:9.659976px;}
._11_c00311{width:10.872000px;}
._b_c00311{width:11.880000px;}
._c_c00311{width:12.960024px;}
._d_c00311{width:14.315976px;}
._e_c00311{width:15.479976px;}
._14_c00311{width:16.632000px;}
._13_c00311{width:19.296000px;}
._f_c00311{width:20.460024px;}
._10_c00311{width:21.827832px;}
._a_c00311{width:33.275976px;}
._9_c00311{width:34.488000px;}
._8_c00311{width:151.932024px;}
.fc0_c00311{color:rgb(0,0,0);}
.fs3_c00311{font-size:38.880000px;}
.fs2_c00311{font-size:47.520000px;}
.fs1_c00311{font-size:60.480000px;}
.fs0_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y3_c00311{bottom:4.320000px;}
.y6_c00311{bottom:4.680000px;}
.y5_c00311{bottom:25.200000px;}
.y4_c00311{bottom:32.040000px;}
.y1_c00311{bottom:57.240000px;}
.y26_c00311{bottom:130.716000px;}
.y25_c00311{bottom:137.556000px;}
.y24_c00311{bottom:148.356000px;}
.y23_c00311{bottom:268.995000px;}
.y22_c00311{bottom:299.955000px;}
.y21_c00311{bottom:330.915000px;}
.y20_c00311{bottom:362.265000px;}
.y1f_c00311{bottom:393.225000px;}
.y1d_c00311{bottom:424.185000px;}
.y1e_c00311{bottom:432.465000px;}
.y1c_c00311{bottom:455.145000px;}
.y1b_c00311{bottom:486.510000px;}
.y1a_c00311{bottom:517.470000px;}
.y19_c00311{bottom:548.430000px;}
.y18_c00311{bottom:579.390000px;}
.y17_c00311{bottom:610.740000px;}
.y16_c00311{bottom:641.700000px;}
.y15_c00311{bottom:672.660000px;}
.y14_c00311{bottom:703.620000px;}
.y13_c00311{bottom:734.970000px;}
.y12_c00311{bottom:772.410000px;}
.y11_c00311{bottom:798.330000px;}
.y10_c00311{bottom:833.250000px;}
.yf_c00311{bottom:859.215000px;}
.ye_c00311{bottom:885.135000px;}
.yd_c00311{bottom:911.055000px;}
.yc_c00311{bottom:936.975000px;}
.yb_c00311{bottom:986.325000px;}
.ya_c00311{bottom:1038.165000px;}
.y9_c00311{bottom:1078.125000px;}
.y8_c00311{bottom:1109.130000px;}
.y7_c00311{bottom:1140.450000px;}
.y2_c00311{bottom:1189.050000px;}
.h3_c00311{height:20.550000px;}
.hb_c00311{height:38.158594px;}
.h4_c00311{height:41.395500px;}
.ha_c00311{height:46.638281px;}
.h8_c00311{height:59.328281px;}
.h7_c00311{height:59.357813px;}
.h2_c00311{height:64.546875px;}
.h6_c00311{height:70.628906px;}
.h5_c00311{height:70.664062px;}
.h9_c00311{height:1262.875500px;}
.h0_c00311{height:1262.880000px;}
.h1_c00311{height:1263.000000px;}
.w2_c00311{width:8.265000px;}
.w3_c00311{width:638.145000px;}
.w1_c00311{width:892.500000px;}
.w4_c00311{width:892.797000px;}
.w0_c00311{width:892.800000px;}
.x0_c00311{left:0.000000px;}
.x3_c00311{left:127.534500px;}
.x9_c00311{left:142.632000px;}
.x1_c00311{left:154.515000px;}
.x5_c00311{left:169.995000px;}
.x4_c00311{left:180.795000px;}
.x6_c00311{left:249.942000px;}
.x7_c00311{left:268.305000px;}
.x8_c00311{left:343.590000px;}
.x2_c00311{left:757.410000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls8_c00311{letter-spacing:-1.258667pt;}
.ls6_c00311{letter-spacing:-0.810667pt;}
.ls5_c00311{letter-spacing:0.000000pt;}
.ls7_c00311{letter-spacing:0.148267pt;}
.lsb_c00311{letter-spacing:0.256000pt;}
.ls0_c00311{letter-spacing:0.448000pt;}
.ls9_c00311{letter-spacing:0.470933pt;}
.ls1_c00311{letter-spacing:0.640000pt;}
.ls2_c00311{letter-spacing:0.746667pt;}
.lsa_c00311{letter-spacing:1.024000pt;}
.ls3_c00311{letter-spacing:1.280000pt;}
.ls4_c00311{letter-spacing:30.080000pt;}
.ws3_c00311{word-spacing:-53.760000pt;}
.ws5_c00311{word-spacing:-17.024000pt;}
.ws4_c00311{word-spacing:-16.448000pt;}
.ws0_c00311{word-spacing:-16.000000pt;}
.ws2_c00311{word-spacing:-13.588267pt;}
.ws1_c00311{word-spacing:-13.440000pt;}
.ws6_c00311{word-spacing:0.000000pt;}
._3_c00311{margin-left:-2.432000pt;}
._2_c00311{margin-left:-1.280000pt;}
._0_c00311{width:1.216000pt;}
._6_c00311{width:2.186688pt;}
._1_c00311{width:3.584000pt;}
._4_c00311{width:4.608000pt;}
._5_c00311{width:6.208000pt;}
._7_c00311{width:7.135936pt;}
._12_c00311{width:8.586645pt;}
._11_c00311{width:9.664000pt;}
._b_c00311{width:10.560000pt;}
._c_c00311{width:11.520021pt;}
._d_c00311{width:12.725312pt;}
._e_c00311{width:13.759979pt;}
._14_c00311{width:14.784000pt;}
._13_c00311{width:17.152000pt;}
._f_c00311{width:18.186688pt;}
._10_c00311{width:19.402517pt;}
._a_c00311{width:29.578645pt;}
._9_c00311{width:30.656000pt;}
._8_c00311{width:135.050688pt;}
.fs3_c00311{font-size:34.560000pt;}
.fs2_c00311{font-size:42.240000pt;}
.fs1_c00311{font-size:53.760000pt;}
.fs0_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y3_c00311{bottom:3.840000pt;}
.y6_c00311{bottom:4.160000pt;}
.y5_c00311{bottom:22.400000pt;}
.y4_c00311{bottom:28.480000pt;}
.y1_c00311{bottom:50.880000pt;}
.y26_c00311{bottom:116.192000pt;}
.y25_c00311{bottom:122.272000pt;}
.y24_c00311{bottom:131.872000pt;}
.y23_c00311{bottom:239.106667pt;}
.y22_c00311{bottom:266.626667pt;}
.y21_c00311{bottom:294.146667pt;}
.y20_c00311{bottom:322.013333pt;}
.y1f_c00311{bottom:349.533333pt;}
.y1d_c00311{bottom:377.053333pt;}
.y1e_c00311{bottom:384.413333pt;}
.y1c_c00311{bottom:404.573333pt;}
.y1b_c00311{bottom:432.453333pt;}
.y1a_c00311{bottom:459.973333pt;}
.y19_c00311{bottom:487.493333pt;}
.y18_c00311{bottom:515.013333pt;}
.y17_c00311{bottom:542.880000pt;}
.y16_c00311{bottom:570.400000pt;}
.y15_c00311{bottom:597.920000pt;}
.y14_c00311{bottom:625.440000pt;}
.y13_c00311{bottom:653.306667pt;}
.y12_c00311{bottom:686.586667pt;}
.y11_c00311{bottom:709.626667pt;}
.y10_c00311{bottom:740.666667pt;}
.yf_c00311{bottom:763.746667pt;}
.ye_c00311{bottom:786.786667pt;}
.yd_c00311{bottom:809.826667pt;}
.yc_c00311{bottom:832.866667pt;}
.yb_c00311{bottom:876.733333pt;}
.ya_c00311{bottom:922.813333pt;}
.y9_c00311{bottom:958.333333pt;}
.y8_c00311{bottom:985.893333pt;}
.y7_c00311{bottom:1013.733333pt;}
.y2_c00311{bottom:1056.933333pt;}
.h3_c00311{height:18.266667pt;}
.hb_c00311{height:33.918750pt;}
.h4_c00311{height:36.796000pt;}
.ha_c00311{height:41.456250pt;}
.h8_c00311{height:52.736250pt;}
.h7_c00311{height:52.762500pt;}
.h2_c00311{height:57.375000pt;}
.h6_c00311{height:62.781250pt;}
.h5_c00311{height:62.812500pt;}
.h9_c00311{height:1122.556000pt;}
.h0_c00311{height:1122.560000pt;}
.h1_c00311{height:1122.666667pt;}
.w2_c00311{width:7.346667pt;}
.w3_c00311{width:567.240000pt;}
.w1_c00311{width:793.333333pt;}
.w4_c00311{width:793.597333pt;}
.w0_c00311{width:793.600000pt;}
.x0_c00311{left:0.000000pt;}
.x3_c00311{left:113.364000pt;}
.x9_c00311{left:126.784000pt;}
.x1_c00311{left:137.346667pt;}
.x5_c00311{left:151.106667pt;}
.x4_c00311{left:160.706667pt;}
.x6_c00311{left:222.170667pt;}
.x7_c00311{left:238.493333pt;}
.x8_c00311{left:305.413333pt;}
.x2_c00311{left:673.253333pt;}
}





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

.ir_c00312:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00312;src:url('chunks/assets/font_84f15573d4325742a1ce2279.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_4f5f77a696d9cb69b717d012.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_10a7c75f619534469c294008.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_5cc30d1c50a9edfd364a052e.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_21cb9061e415eab27f103ff7.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;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_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls6_c00312{letter-spacing:-1.440000px;}
.ls5_c00312{letter-spacing:0.000000px;}
.lsa_c00312{letter-spacing:0.020400px;}
.ls2_c00312{letter-spacing:0.022800px;}
.ls3_c00312{letter-spacing:0.048960px;}
.ls8_c00312{letter-spacing:0.060600px;}
.ls9_c00312{letter-spacing:0.166800px;}
.ls7_c00312{letter-spacing:0.313800px;}
.ls4_c00312{letter-spacing:0.708716px;}
.ls1_c00312{letter-spacing:0.720000px;}
.ls0_c00312{letter-spacing:22.320000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00312{word-spacing:-18.000000px;}
.ws2_c00312{word-spacing:-15.433800px;}
.ws5_c00312{word-spacing:-15.286800px;}
.ws3_c00312{word-spacing:-15.180600px;}
.ws4_c00312{word-spacing:-15.142800px;}
.ws6_c00312{word-spacing:-15.140400px;}
.ws1_c00312{word-spacing:-15.120000px;}
.ws7_c00312{word-spacing:0.000000px;}
._6_c00312{margin-left:-2.736000px;}
._0_c00312{margin-left:-1.296000px;}
._2_c00312{width:1.080000px;}
._3_c00312{width:2.184000px;}
._9_c00312{width:3.324000px;}
._10_c00312{width:4.511976px;}
._d_c00312{width:5.628000px;}
._c_c00312{width:6.900000px;}
._a_c00312{width:7.968000px;}
._b_c00312{width:9.000000px;}
._f_c00312{width:10.379976px;}
._e_c00312{width:11.664000px;}
._4_c00312{width:21.396000px;}
._1_c00312{width:22.668000px;}
._5_c00312{width:23.892024px;}
._7_c00312{width:25.007952px;}
._11_c00312{width:65.948427px;}
._8_c00312{width:66.960000px;}
.fc0_c00312{color:rgb(0,0,0);}
.fs2_c00312{font-size:38.880000px;}
.fs1_c00312{font-size:47.520000px;}
.fs3_c00312{font-size:60.480000px;}
.fs0_c00312{font-size:72.000000px;}
.y0_c00312{bottom:0.000000px;}
.y3_c00312{bottom:4.320000px;}
.y6_c00312{bottom:4.680000px;}
.y5_c00312{bottom:25.200000px;}
.y4_c00312{bottom:32.040000px;}
.y1_c00312{bottom:57.240000px;}
.y23_c00312{bottom:130.716000px;}
.y22_c00312{bottom:147.996000px;}
.y21_c00312{bottom:165.270000px;}
.y20_c00312{bottom:182.550000px;}
.y1f_c00312{bottom:189.390000px;}
.y1e_c00312{bottom:199.830000px;}
.y1d_c00312{bottom:216.750000px;}
.y1c_c00312{bottom:234.075000px;}
.y1b_c00312{bottom:240.915000px;}
.y1a_c00312{bottom:252.075000px;}
.y19_c00312{bottom:583.350000px;}
.y18_c00312{bottom:614.340000px;}
.y17_c00312{bottom:645.660000px;}
.y16_c00312{bottom:676.620000px;}
.y15_c00312{bottom:707.580000px;}
.y14_c00312{bottom:738.570000px;}
.y12_c00312{bottom:769.530000px;}
.y13_c00312{bottom:777.810000px;}
.y11_c00312{bottom:800.850000px;}
.y10_c00312{bottom:846.975000px;}
.yf_c00312{bottom:893.055000px;}
.ye_c00312{bottom:924.015000px;}
.yd_c00312{bottom:954.975000px;}
.yc_c00312{bottom:986.325000px;}
.yb_c00312{bottom:1032.045000px;}
.ya_c00312{bottom:1063.365000px;}
.y8_c00312{bottom:1109.130000px;}
.y9_c00312{bottom:1117.410000px;}
.y7_c00312{bottom:1140.450000px;}
.y2_c00312{bottom:1189.050000px;}
.h3_c00312{height:20.550000px;}
.ha_c00312{height:38.158594px;}
.h4_c00312{height:41.395500px;}
.h7_c00312{height:46.615078px;}
.h9_c00312{height:46.638281px;}
.hb_c00312{height:59.357813px;}
.h2_c00312{height:64.546875px;}
.h8_c00312{height:70.628906px;}
.h5_c00312{height:70.664062px;}
.h6_c00312{height:1262.875500px;}
.h0_c00312{height:1262.880000px;}
.h1_c00312{height:1263.000000px;}
.w2_c00312{width:8.265000px;}
.w3_c00312{width:638.145000px;}
.w1_c00312{width:892.500000px;}
.w4_c00312{width:892.797000px;}
.w0_c00312{width:892.800000px;}
.x0_c00312{left:0.000000px;}
.x3_c00312{left:127.534500px;}
.x9_c00312{left:142.632000px;}
.x1_c00312{left:154.515000px;}
.x6_c00312{left:195.552000px;}
.x7_c00312{left:213.945000px;}
.x4_c00312{left:253.542000px;}
.x5_c00312{left:271.905000px;}
.x8_c00312{left:343.590000px;}
.x2_c00312{left:757.410000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls6_c00312{letter-spacing:-1.280000pt;}
.ls5_c00312{letter-spacing:0.000000pt;}
.lsa_c00312{letter-spacing:0.018133pt;}
.ls2_c00312{letter-spacing:0.020267pt;}
.ls3_c00312{letter-spacing:0.043520pt;}
.ls8_c00312{letter-spacing:0.053867pt;}
.ls9_c00312{letter-spacing:0.148267pt;}
.ls7_c00312{letter-spacing:0.278933pt;}
.ls4_c00312{letter-spacing:0.629970pt;}
.ls1_c00312{letter-spacing:0.640000pt;}
.ls0_c00312{letter-spacing:19.840000pt;}
.ws0_c00312{word-spacing:-16.000000pt;}
.ws2_c00312{word-spacing:-13.718933pt;}
.ws5_c00312{word-spacing:-13.588267pt;}
.ws3_c00312{word-spacing:-13.493867pt;}
.ws4_c00312{word-spacing:-13.460267pt;}
.ws6_c00312{word-spacing:-13.458133pt;}
.ws1_c00312{word-spacing:-13.440000pt;}
.ws7_c00312{word-spacing:0.000000pt;}
._6_c00312{margin-left:-2.432000pt;}
._0_c00312{margin-left:-1.152000pt;}
._2_c00312{width:0.960000pt;}
._3_c00312{width:1.941333pt;}
._9_c00312{width:2.954667pt;}
._10_c00312{width:4.010645pt;}
._d_c00312{width:5.002667pt;}
._c_c00312{width:6.133333pt;}
._a_c00312{width:7.082667pt;}
._b_c00312{width:8.000000pt;}
._f_c00312{width:9.226645pt;}
._e_c00312{width:10.368000pt;}
._4_c00312{width:19.018667pt;}
._1_c00312{width:20.149333pt;}
._5_c00312{width:21.237355pt;}
._7_c00312{width:22.229291pt;}
._11_c00312{width:58.620824pt;}
._8_c00312{width:59.520000pt;}
.fs2_c00312{font-size:34.560000pt;}
.fs1_c00312{font-size:42.240000pt;}
.fs3_c00312{font-size:53.760000pt;}
.fs0_c00312{font-size:64.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.y3_c00312{bottom:3.840000pt;}
.y6_c00312{bottom:4.160000pt;}
.y5_c00312{bottom:22.400000pt;}
.y4_c00312{bottom:28.480000pt;}
.y1_c00312{bottom:50.880000pt;}
.y23_c00312{bottom:116.192000pt;}
.y22_c00312{bottom:131.552000pt;}
.y21_c00312{bottom:146.906667pt;}
.y20_c00312{bottom:162.266667pt;}
.y1f_c00312{bottom:168.346667pt;}
.y1e_c00312{bottom:177.626667pt;}
.y1d_c00312{bottom:192.666667pt;}
.y1c_c00312{bottom:208.066667pt;}
.y1b_c00312{bottom:214.146667pt;}
.y1a_c00312{bottom:224.066667pt;}
.y19_c00312{bottom:518.533333pt;}
.y18_c00312{bottom:546.080000pt;}
.y17_c00312{bottom:573.920000pt;}
.y16_c00312{bottom:601.440000pt;}
.y15_c00312{bottom:628.960000pt;}
.y14_c00312{bottom:656.506667pt;}
.y12_c00312{bottom:684.026667pt;}
.y13_c00312{bottom:691.386667pt;}
.y11_c00312{bottom:711.866667pt;}
.y10_c00312{bottom:752.866667pt;}
.yf_c00312{bottom:793.826667pt;}
.ye_c00312{bottom:821.346667pt;}
.yd_c00312{bottom:848.866667pt;}
.yc_c00312{bottom:876.733333pt;}
.yb_c00312{bottom:917.373333pt;}
.ya_c00312{bottom:945.213333pt;}
.y8_c00312{bottom:985.893333pt;}
.y9_c00312{bottom:993.253333pt;}
.y7_c00312{bottom:1013.733333pt;}
.y2_c00312{bottom:1056.933333pt;}
.h3_c00312{height:18.266667pt;}
.ha_c00312{height:33.918750pt;}
.h4_c00312{height:36.796000pt;}
.h7_c00312{height:41.435625pt;}
.h9_c00312{height:41.456250pt;}
.hb_c00312{height:52.762500pt;}
.h2_c00312{height:57.375000pt;}
.h8_c00312{height:62.781250pt;}
.h5_c00312{height:62.812500pt;}
.h6_c00312{height:1122.556000pt;}
.h0_c00312{height:1122.560000pt;}
.h1_c00312{height:1122.666667pt;}
.w2_c00312{width:7.346667pt;}
.w3_c00312{width:567.240000pt;}
.w1_c00312{width:793.333333pt;}
.w4_c00312{width:793.597333pt;}
.w0_c00312{width:793.600000pt;}
.x0_c00312{left:0.000000pt;}
.x3_c00312{left:113.364000pt;}
.x9_c00312{left:126.784000pt;}
.x1_c00312{left:137.346667pt;}
.x6_c00312{left:173.824000pt;}
.x7_c00312{left:190.173333pt;}
.x4_c00312{left:225.370667pt;}
.x5_c00312{left:241.693333pt;}
.x8_c00312{left:305.413333pt;}
.x2_c00312{left:673.253333pt;}
}





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

.ir_c00313:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00313;src:url('chunks/assets/font_0bdad0c660ae39ac2ee982e7.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_f63ee12a30adf3245da344d3.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_f4f80e5e165fe86e3ee89763.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;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_c00313;src:url('chunks/assets/font_3c31eefaf12c330abab944eb.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00313;src:url('chunks/assets/font_71b6f757b4361867dca2a3b4.woff2')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00313;src:url('chunks/assets/font_23c1855c25bc0fc81e7bfadb.woff2')format("woff");}.ff6_c00313{font-family:ff6_c00313;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.lsb_c00313{letter-spacing:-1.416000px;}
.ls10_c00313{letter-spacing:-1.380000px;}
.lsf_c00313{letter-spacing:-1.128000px;}
.ls9_c00313{letter-spacing:-0.912000px;}
.ls6_c00313{letter-spacing:-0.720000px;}
.lse_c00313{letter-spacing:-0.532800px;}
.ls14_c00313{letter-spacing:-0.302400px;}
.lsd_c00313{letter-spacing:-0.241800px;}
.ls5_c00313{letter-spacing:0.000000px;}
.lsc_c00313{letter-spacing:0.022800px;}
.ls2_c00313{letter-spacing:0.048960px;}
.ls11_c00313{letter-spacing:0.060600px;}
.ls8_c00313{letter-spacing:0.166800px;}
.ls1_c00313{letter-spacing:0.168480px;}
.ls13_c00313{letter-spacing:0.325200px;}
.ls3_c00313{letter-spacing:0.518400px;}
.ls12_c00313{letter-spacing:0.529800px;}
.ls7_c00313{letter-spacing:0.636000px;}
.lsa_c00313{letter-spacing:0.702000px;}
.ls0_c00313{letter-spacing:0.720000px;}
.ls4_c00313{letter-spacing:0.840000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:-18.000000px;}
.ws4_c00313{word-spacing:-15.822000px;}
.ws2_c00313{word-spacing:-15.756000px;}
.ws8_c00313{word-spacing:-15.649800px;}
.ws3_c00313{word-spacing:-15.286800px;}
.ws7_c00313{word-spacing:-15.180600px;}
.ws1_c00313{word-spacing:-15.120000px;}
.ws9_c00313{word-spacing:-14.878200px;}
.wsa_c00313{word-spacing:-14.817600px;}
.ws5_c00313{word-spacing:-14.587200px;}
.ws6_c00313{word-spacing:-13.992000px;}
.wsb_c00313{word-spacing:0.000000px;}
._4_c00313{margin-left:-3.031200px;}
._1_c00313{margin-left:-1.584000px;}
._0_c00313{width:1.296000px;}
._3_c00313{width:2.304000px;}
._2_c00313{width:3.384000px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs1_c00313{font-size:60.480000px;}
.fs0_c00313{font-size:72.000000px;}
.y0_c00313{bottom:0.000000px;}
.yc_c00313{bottom:12.225000px;}
.y1c_c00313{bottom:12.595500px;}
.y1b_c00313{bottom:38.509500px;}
.y1a_c00313{bottom:64.474500px;}
.y19_c00313{bottom:90.394500px;}
.y18_c00313{bottom:115.954500px;}
.yd_c00313{bottom:134.320500px;}
.y17_c00313{bottom:141.904500px;}
.y16_c00313{bottom:167.824500px;}
.y15_c00313{bottom:193.744500px;}
.y14_c00313{bottom:219.709500px;}
.y13_c00313{bottom:245.269500px;}
.y1d_c00313{bottom:245.629500px;}
.y12_c00313{bottom:271.549500px;}
.y11_c00313{bottom:297.499500px;}
.y10_c00313{bottom:323.059500px;}
.yf_c00313{bottom:348.979500px;}
.ye_c00313{bottom:374.899500px;}
.yb_c00313{bottom:523.305000px;}
.ya_c00313{bottom:564.690000px;}
.y9_c00313{bottom:593.490000px;}
.y8_c00313{bottom:630.975000px;}
.y7_c00313{bottom:670.575000px;}
.y6_c00313{bottom:710.925000px;}
.y5_c00313{bottom:740.805000px;}
.y4_c00313{bottom:761.325000px;}
.y3_c00313{bottom:782.250000px;}
.y2_c00313{bottom:802.770000px;}
.y1_c00313{bottom:823.650000px;}
.h7_c00313{height:25.905000px;}
.h6_c00313{height:59.357813px;}
.h8_c00313{height:60.952500px;}
.h2_c00313{height:64.546875px;}
.h5_c00313{height:70.628906px;}
.h3_c00313{height:70.664062px;}
.h4_c00313{height:72.562500px;}
.h9_c00313{height:388.255500px;}
.h1_c00313{height:892.500000px;}
.h0_c00313{height:892.800000px;}
.w2_c00313{width:346.770000px;}
.w3_c00313{width:354.705000px;}
.w4_c00313{width:355.050000px;}
.w0_c00313{width:1262.880000px;}
.w1_c00313{width:1263.000000px;}
.x0_c00313{left:0.000000px;}
.xb_c00313{left:4.306500px;}
.xc_c00313{left:7.920000px;}
.x5_c00313{left:98.689500px;}
.x1_c00313{left:106.236000px;}
.x6_c00313{left:146.905500px;}
.x2_c00313{left:148.716000px;}
.xa_c00313{left:151.575000px;}
.x4_c00313{left:157.350000px;}
.x8_c00313{left:158.430000px;}
.x3_c00313{left:159.510000px;}
.x7_c00313{left:446.190000px;}
.x9_c00313{left:801.630000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.lsb_c00313{letter-spacing:-1.258667pt;}
.ls10_c00313{letter-spacing:-1.226667pt;}
.lsf_c00313{letter-spacing:-1.002667pt;}
.ls9_c00313{letter-spacing:-0.810667pt;}
.ls6_c00313{letter-spacing:-0.640000pt;}
.lse_c00313{letter-spacing:-0.473600pt;}
.ls14_c00313{letter-spacing:-0.268800pt;}
.lsd_c00313{letter-spacing:-0.214933pt;}
.ls5_c00313{letter-spacing:0.000000pt;}
.lsc_c00313{letter-spacing:0.020267pt;}
.ls2_c00313{letter-spacing:0.043520pt;}
.ls11_c00313{letter-spacing:0.053867pt;}
.ls8_c00313{letter-spacing:0.148267pt;}
.ls1_c00313{letter-spacing:0.149760pt;}
.ls13_c00313{letter-spacing:0.289067pt;}
.ls3_c00313{letter-spacing:0.460800pt;}
.ls12_c00313{letter-spacing:0.470933pt;}
.ls7_c00313{letter-spacing:0.565333pt;}
.lsa_c00313{letter-spacing:0.624000pt;}
.ls0_c00313{letter-spacing:0.640000pt;}
.ls4_c00313{letter-spacing:0.746667pt;}
.ws0_c00313{word-spacing:-16.000000pt;}
.ws4_c00313{word-spacing:-14.064000pt;}
.ws2_c00313{word-spacing:-14.005333pt;}
.ws8_c00313{word-spacing:-13.910933pt;}
.ws3_c00313{word-spacing:-13.588267pt;}
.ws7_c00313{word-spacing:-13.493867pt;}
.ws1_c00313{word-spacing:-13.440000pt;}
.ws9_c00313{word-spacing:-13.225067pt;}
.wsa_c00313{word-spacing:-13.171200pt;}
.ws5_c00313{word-spacing:-12.966400pt;}
.ws6_c00313{word-spacing:-12.437333pt;}
.wsb_c00313{word-spacing:0.000000pt;}
._4_c00313{margin-left:-2.694400pt;}
._1_c00313{margin-left:-1.408000pt;}
._0_c00313{width:1.152000pt;}
._3_c00313{width:2.048000pt;}
._2_c00313{width:3.008000pt;}
.fs1_c00313{font-size:53.760000pt;}
.fs0_c00313{font-size:64.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.yc_c00313{bottom:10.866667pt;}
.y1c_c00313{bottom:11.196000pt;}
.y1b_c00313{bottom:34.230667pt;}
.y1a_c00313{bottom:57.310667pt;}
.y19_c00313{bottom:80.350667pt;}
.y18_c00313{bottom:103.070667pt;}
.yd_c00313{bottom:119.396000pt;}
.y17_c00313{bottom:126.137333pt;}
.y16_c00313{bottom:149.177333pt;}
.y15_c00313{bottom:172.217333pt;}
.y14_c00313{bottom:195.297333pt;}
.y13_c00313{bottom:218.017333pt;}
.y1d_c00313{bottom:218.337333pt;}
.y12_c00313{bottom:241.377333pt;}
.y11_c00313{bottom:264.444000pt;}
.y10_c00313{bottom:287.164000pt;}
.yf_c00313{bottom:310.204000pt;}
.ye_c00313{bottom:333.244000pt;}
.yb_c00313{bottom:465.160000pt;}
.ya_c00313{bottom:501.946667pt;}
.y9_c00313{bottom:527.546667pt;}
.y8_c00313{bottom:560.866667pt;}
.y7_c00313{bottom:596.066667pt;}
.y6_c00313{bottom:631.933333pt;}
.y5_c00313{bottom:658.493333pt;}
.y4_c00313{bottom:676.733333pt;}
.y3_c00313{bottom:695.333333pt;}
.y2_c00313{bottom:713.573333pt;}
.y1_c00313{bottom:732.133333pt;}
.h7_c00313{height:23.026667pt;}
.h6_c00313{height:52.762500pt;}
.h8_c00313{height:54.180000pt;}
.h2_c00313{height:57.375000pt;}
.h5_c00313{height:62.781250pt;}
.h3_c00313{height:62.812500pt;}
.h4_c00313{height:64.500000pt;}
.h9_c00313{height:345.116000pt;}
.h1_c00313{height:793.333333pt;}
.h0_c00313{height:793.600000pt;}
.w2_c00313{width:308.240000pt;}
.w3_c00313{width:315.293333pt;}
.w4_c00313{width:315.600000pt;}
.w0_c00313{width:1122.560000pt;}
.w1_c00313{width:1122.666667pt;}
.x0_c00313{left:0.000000pt;}
.xb_c00313{left:3.828000pt;}
.xc_c00313{left:7.040000pt;}
.x5_c00313{left:87.724000pt;}
.x1_c00313{left:94.432000pt;}
.x6_c00313{left:130.582667pt;}
.x2_c00313{left:132.192000pt;}
.xa_c00313{left:134.733333pt;}
.x4_c00313{left:139.866667pt;}
.x8_c00313{left:140.826667pt;}
.x3_c00313{left:141.786667pt;}
.x7_c00313{left:396.613333pt;}
.x9_c00313{left:712.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_c00314 {
    display:none;
  }
  .loading-indicator_c00314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00314 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00314 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00314" -> "#page-container .classname_c00314")
 */
.pf_c00314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00314 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00314 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00314 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00314 {overflow:visible;}
  }
}
.c_c00314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00314 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00314:after { /* webkit #35443 */
  content: '';
}
.t_c00314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00314 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00314 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00314 { /* info for Javascript */
  display:none;
}
.l_c00314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00314:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00314;src:url('chunks/assets/font_dc39f37a3a059faa5218c5f9.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_3235963ada44a04fe559dc4e.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_0d99058be26a7cb5847ec39d.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;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_c00314;src:url('chunks/assets/font_0c7cc12335c30d9b9f4e6de8.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00314;src:url('chunks/assets/font_3e6b2d84694c636557031667.woff2')format("woff");}.ff6_c00314{font-family:ff6_c00314;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls14_c00314{letter-spacing:-1.680000px;}
.ls10_c00314{letter-spacing:-1.416000px;}
.ls15_c00314{letter-spacing:-0.936000px;}
.lsb_c00314{letter-spacing:-0.912000px;}
.ls8_c00314{letter-spacing:-0.532800px;}
.ls9_c00314{letter-spacing:-0.302400px;}
.lse_c00314{letter-spacing:-0.241800px;}
.ls7_c00314{letter-spacing:0.000000px;}
.ls0_c00314{letter-spacing:0.020160px;}
.lsa_c00314{letter-spacing:0.022800px;}
.ls4_c00314{letter-spacing:0.048960px;}
.lsf_c00314{letter-spacing:0.060600px;}
.ls6_c00314{letter-spacing:0.140160px;}
.lsc_c00314{letter-spacing:0.166800px;}
.ls13_c00314{letter-spacing:0.219000px;}
.ls2_c00314{letter-spacing:0.302400px;}
.ls16_c00314{letter-spacing:0.325200px;}
.ls12_c00314{letter-spacing:0.507000px;}
.ls5_c00314{letter-spacing:0.518400px;}
.lsd_c00314{letter-spacing:0.521400px;}
.ls3_c00314{letter-spacing:0.524160px;}
.ls11_c00314{letter-spacing:0.529800px;}
.ls1_c00314{letter-spacing:0.720000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00314{word-spacing:-15.649800px;}
.ws4_c00314{word-spacing:-15.641400px;}
.ws7_c00314{word-spacing:-15.627000px;}
.wsb_c00314{word-spacing:-15.445200px;}
.ws9_c00314{word-spacing:-15.339000px;}
.ws3_c00314{word-spacing:-15.286800px;}
.ws0_c00314{word-spacing:-15.120000px;}
.ws5_c00314{word-spacing:-14.878200px;}
.ws2_c00314{word-spacing:-14.817600px;}
.ws1_c00314{word-spacing:-14.587200px;}
.ws6_c00314{word-spacing:-14.208000px;}
.wsa_c00314{word-spacing:-13.440000px;}
.wsc_c00314{word-spacing:0.000000px;}
._3_c00314{margin-left:-3.286919px;}
._0_c00314{margin-left:-1.935602px;}
._1_c00314{width:1.391403px;}
._2_c00314{width:2.457600px;}
.fc0_c00314{color:rgb(0,0,0);}
.fs1_c00314{font-size:60.480000px;}
.fs0_c00314{font-size:72.000000px;}
.y0_c00314{bottom:0.000000px;}
.y1c_c00314{bottom:12.589500px;}
.y1b_c00314{bottom:38.194500px;}
.y3_c00314{bottom:57.240000px;}
.y1a_c00314{bottom:64.114500px;}
.y2_c00314{bottom:77.760000px;}
.y19_c00314{bottom:89.674500px;}
.y20_c00314{bottom:90.034500px;}
.y18_c00314{bottom:115.954500px;}
.y17_c00314{bottom:141.904500px;}
.y4_c00314{bottom:143.320500px;}
.y16_c00314{bottom:167.824500px;}
.y15_c00314{bottom:193.744500px;}
.y14_c00314{bottom:219.709500px;}
.y13_c00314{bottom:244.909500px;}
.y1f_c00314{bottom:245.269500px;}
.y12_c00314{bottom:271.189500px;}
.y11_c00314{bottom:297.139500px;}
.y10_c00314{bottom:323.059500px;}
.yf_c00314{bottom:348.979500px;}
.ye_c00314{bottom:374.929500px;}
.yd_c00314{bottom:400.849500px;}
.yc_c00314{bottom:426.409500px;}
.yb_c00314{bottom:451.969500px;}
.y1e_c00314{bottom:452.329500px;}
.ya_c00314{bottom:478.294500px;}
.y9_c00314{bottom:504.214500px;}
.y8_c00314{bottom:530.134500px;}
.y7_c00314{bottom:556.084500px;}
.y6_c00314{bottom:582.004500px;}
.y5_c00314{bottom:607.564500px;}
.y1d_c00314{bottom:607.924500px;}
.y1_c00314{bottom:823.650000px;}
.h5_c00314{height:59.357813px;}
.h4_c00314{height:60.952500px;}
.h2_c00314{height:64.546875px;}
.h3_c00314{height:621.225000px;}
.h1_c00314{height:892.500000px;}
.h0_c00314{height:892.800000px;}
.w2_c00314{width:346.770000px;}
.w3_c00314{width:354.705000px;}
.w4_c00314{width:355.050000px;}
.w0_c00314{width:1262.880000px;}
.w1_c00314{width:1263.000000px;}
.x0_c00314{left:0.000000px;}
.x4_c00314{left:7.546500px;}
.x3_c00314{left:98.689500px;}
.x1_c00314{left:106.236000px;}
.x5_c00314{left:446.190000px;}
.x2_c00314{left:617.940000px;}
.x6_c00314{left:801.630000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls14_c00314{letter-spacing:-1.493333pt;}
.ls10_c00314{letter-spacing:-1.258667pt;}
.ls15_c00314{letter-spacing:-0.832000pt;}
.lsb_c00314{letter-spacing:-0.810667pt;}
.ls8_c00314{letter-spacing:-0.473600pt;}
.ls9_c00314{letter-spacing:-0.268800pt;}
.lse_c00314{letter-spacing:-0.214933pt;}
.ls7_c00314{letter-spacing:0.000000pt;}
.ls0_c00314{letter-spacing:0.017920pt;}
.lsa_c00314{letter-spacing:0.020267pt;}
.ls4_c00314{letter-spacing:0.043520pt;}
.lsf_c00314{letter-spacing:0.053867pt;}
.ls6_c00314{letter-spacing:0.124587pt;}
.lsc_c00314{letter-spacing:0.148267pt;}
.ls13_c00314{letter-spacing:0.194667pt;}
.ls2_c00314{letter-spacing:0.268800pt;}
.ls16_c00314{letter-spacing:0.289067pt;}
.ls12_c00314{letter-spacing:0.450667pt;}
.ls5_c00314{letter-spacing:0.460800pt;}
.lsd_c00314{letter-spacing:0.463467pt;}
.ls3_c00314{letter-spacing:0.465920pt;}
.ls11_c00314{letter-spacing:0.470933pt;}
.ls1_c00314{letter-spacing:0.640000pt;}
.ws8_c00314{word-spacing:-13.910933pt;}
.ws4_c00314{word-spacing:-13.903467pt;}
.ws7_c00314{word-spacing:-13.890667pt;}
.wsb_c00314{word-spacing:-13.729067pt;}
.ws9_c00314{word-spacing:-13.634667pt;}
.ws3_c00314{word-spacing:-13.588267pt;}
.ws0_c00314{word-spacing:-13.440000pt;}
.ws5_c00314{word-spacing:-13.225067pt;}
.ws2_c00314{word-spacing:-13.171200pt;}
.ws1_c00314{word-spacing:-12.966400pt;}
.ws6_c00314{word-spacing:-12.629333pt;}
.wsa_c00314{word-spacing:-11.946667pt;}
.wsc_c00314{word-spacing:0.000000pt;}
._3_c00314{margin-left:-2.921706pt;}
._0_c00314{margin-left:-1.720535pt;}
._1_c00314{width:1.236803pt;}
._2_c00314{width:2.184533pt;}
.fs1_c00314{font-size:53.760000pt;}
.fs0_c00314{font-size:64.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y1c_c00314{bottom:11.190667pt;}
.y1b_c00314{bottom:33.950667pt;}
.y3_c00314{bottom:50.880000pt;}
.y1a_c00314{bottom:56.990667pt;}
.y2_c00314{bottom:69.120000pt;}
.y19_c00314{bottom:79.710667pt;}
.y20_c00314{bottom:80.030667pt;}
.y18_c00314{bottom:103.070667pt;}
.y17_c00314{bottom:126.137333pt;}
.y4_c00314{bottom:127.396000pt;}
.y16_c00314{bottom:149.177333pt;}
.y15_c00314{bottom:172.217333pt;}
.y14_c00314{bottom:195.297333pt;}
.y13_c00314{bottom:217.697333pt;}
.y1f_c00314{bottom:218.017333pt;}
.y12_c00314{bottom:241.057333pt;}
.y11_c00314{bottom:264.124000pt;}
.y10_c00314{bottom:287.164000pt;}
.yf_c00314{bottom:310.204000pt;}
.ye_c00314{bottom:333.270667pt;}
.yd_c00314{bottom:356.310667pt;}
.yc_c00314{bottom:379.030667pt;}
.yb_c00314{bottom:401.750667pt;}
.y1e_c00314{bottom:402.070667pt;}
.ya_c00314{bottom:425.150667pt;}
.y9_c00314{bottom:448.190667pt;}
.y8_c00314{bottom:471.230667pt;}
.y7_c00314{bottom:494.297333pt;}
.y6_c00314{bottom:517.337333pt;}
.y5_c00314{bottom:540.057333pt;}
.y1d_c00314{bottom:540.377333pt;}
.y1_c00314{bottom:732.133333pt;}
.h5_c00314{height:52.762500pt;}
.h4_c00314{height:54.180000pt;}
.h2_c00314{height:57.375000pt;}
.h3_c00314{height:552.200000pt;}
.h1_c00314{height:793.333333pt;}
.h0_c00314{height:793.600000pt;}
.w2_c00314{width:308.240000pt;}
.w3_c00314{width:315.293333pt;}
.w4_c00314{width:315.600000pt;}
.w0_c00314{width:1122.560000pt;}
.w1_c00314{width:1122.666667pt;}
.x0_c00314{left:0.000000pt;}
.x4_c00314{left:6.708000pt;}
.x3_c00314{left:87.724000pt;}
.x1_c00314{left:94.432000pt;}
.x5_c00314{left:396.613333pt;}
.x2_c00314{left:549.280000pt;}
.x6_c00314{left:712.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_c00315 {
    display:none;
  }
  .loading-indicator_c00315.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00315 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00315 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00315" -> "#page-container .classname_c00315")
 */
.pf_c00315 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00315 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00315 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00315 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00315 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00315 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00315 {overflow:visible;}
  }
}
.c_c00315 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00315 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00315:after { /* webkit #35443 */
  content: '';
}
.t_c00315:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00315 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00315 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00315 { /* info for Javascript */
  display:none;
}
.l_c00315 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00315 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00315 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00315:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00315;src:url('chunks/assets/font_46bba75469c8b5c39f90027c.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_e46cf2a7eb211b6c9eeef298.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_6e6373b8b32e168fb92862bb.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00315;src:url('chunks/assets/font_b43159e6af9e98b25e3fddf6.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00315;src:url('chunks/assets/font_0f85087cf76ed81e1c6ad9b2.woff2')format("woff");}.ff6_c00315{font-family:ff6_c00315;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_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.lsf_c00315{letter-spacing:-1.380000px;}
.ls9_c00315{letter-spacing:-0.912000px;}
.ls10_c00315{letter-spacing:-0.720000px;}
.lse_c00315{letter-spacing:-0.241800px;}
.lsa_c00315{letter-spacing:-0.169800px;}
.ls5_c00315{letter-spacing:0.000000px;}
.ls4_c00315{letter-spacing:0.020160px;}
.ls6_c00315{letter-spacing:0.022800px;}
.lsc_c00315{letter-spacing:0.060600px;}
.ls7_c00315{letter-spacing:0.166800px;}
.ls1_c00315{letter-spacing:0.302400px;}
.ls11_c00315{letter-spacing:0.313800px;}
.ls2_c00315{letter-spacing:0.466560px;}
.lsb_c00315{letter-spacing:0.521400px;}
.ls8_c00315{letter-spacing:0.529800px;}
.lsd_c00315{letter-spacing:0.636000px;}
.ls0_c00315{letter-spacing:0.720000px;}
.ls3_c00315{letter-spacing:0.840000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:-60.480000px;}
.ws5_c00315{word-spacing:-15.756000px;}
.ws4_c00315{word-spacing:-15.641400px;}
.ws7_c00315{word-spacing:-15.433800px;}
.ws2_c00315{word-spacing:-15.286800px;}
.ws6_c00315{word-spacing:-15.180600px;}
.ws1_c00315{word-spacing:-15.120000px;}
.ws3_c00315{word-spacing:-14.950200px;}
.ws8_c00315{word-spacing:0.000000px;}
._0_c00315{margin-left:-1.440000px;}
._1_c00315{width:1.134720px;}
._2_c00315{width:2.715840px;}
.fc0_c00315{color:rgb(0,0,0);}
.fs1_c00315{font-size:60.480000px;}
.fs0_c00315{font-size:72.000000px;}
.y0_c00315{bottom:0.000000px;}
.y1c_c00315{bottom:12.229500px;}
.y2a_c00315{bottom:12.589500px;}
.y1b_c00315{bottom:37.834500px;}
.y29_c00315{bottom:38.194500px;}
.y3_c00315{bottom:57.240000px;}
.y1a_c00315{bottom:63.754500px;}
.y28_c00315{bottom:64.114500px;}
.y2_c00315{bottom:77.760000px;}
.y19_c00315{bottom:89.674500px;}
.y27_c00315{bottom:90.034500px;}
.y18_c00315{bottom:115.594500px;}
.y26_c00315{bottom:115.954500px;}
.y17_c00315{bottom:141.544500px;}
.y25_c00315{bottom:141.904500px;}
.y4_c00315{bottom:143.320500px;}
.y16_c00315{bottom:167.464500px;}
.y24_c00315{bottom:167.824500px;}
.y15_c00315{bottom:193.384500px;}
.y23_c00315{bottom:193.744500px;}
.y14_c00315{bottom:219.349500px;}
.y22_c00315{bottom:219.709500px;}
.y13_c00315{bottom:244.909500px;}
.y21_c00315{bottom:245.269500px;}
.y12_c00315{bottom:270.829500px;}
.y20_c00315{bottom:271.189500px;}
.y11_c00315{bottom:297.139500px;}
.y10_c00315{bottom:323.059500px;}
.yf_c00315{bottom:348.979500px;}
.ye_c00315{bottom:374.929500px;}
.yd_c00315{bottom:400.849500px;}
.yc_c00315{bottom:426.049500px;}
.y1f_c00315{bottom:426.409500px;}
.yb_c00315{bottom:452.329500px;}
.ya_c00315{bottom:478.294500px;}
.y9_c00315{bottom:503.854500px;}
.y1e_c00315{bottom:504.214500px;}
.y8_c00315{bottom:529.774500px;}
.y1d_c00315{bottom:530.134500px;}
.y7_c00315{bottom:556.084500px;}
.y6_c00315{bottom:582.004500px;}
.y5_c00315{bottom:607.924500px;}
.y1_c00315{bottom:823.650000px;}
.h5_c00315{height:59.357813px;}
.h4_c00315{height:60.952500px;}
.h2_c00315{height:64.546875px;}
.h3_c00315{height:621.225000px;}
.h1_c00315{height:892.500000px;}
.h0_c00315{height:892.800000px;}
.w2_c00315{width:346.770000px;}
.w3_c00315{width:354.705000px;}
.w0_c00315{width:1262.880000px;}
.w1_c00315{width:1263.000000px;}
.x0_c00315{left:0.000000px;}
.x4_c00315{left:7.546500px;}
.x3_c00315{left:98.689500px;}
.x1_c00315{left:106.236000px;}
.x5_c00315{left:446.190000px;}
.x2_c00315{left:617.940000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.lsf_c00315{letter-spacing:-1.226667pt;}
.ls9_c00315{letter-spacing:-0.810667pt;}
.ls10_c00315{letter-spacing:-0.640000pt;}
.lse_c00315{letter-spacing:-0.214933pt;}
.lsa_c00315{letter-spacing:-0.150933pt;}
.ls5_c00315{letter-spacing:0.000000pt;}
.ls4_c00315{letter-spacing:0.017920pt;}
.ls6_c00315{letter-spacing:0.020267pt;}
.lsc_c00315{letter-spacing:0.053867pt;}
.ls7_c00315{letter-spacing:0.148267pt;}
.ls1_c00315{letter-spacing:0.268800pt;}
.ls11_c00315{letter-spacing:0.278933pt;}
.ls2_c00315{letter-spacing:0.414720pt;}
.lsb_c00315{letter-spacing:0.463467pt;}
.ls8_c00315{letter-spacing:0.470933pt;}
.lsd_c00315{letter-spacing:0.565333pt;}
.ls0_c00315{letter-spacing:0.640000pt;}
.ls3_c00315{letter-spacing:0.746667pt;}
.ws0_c00315{word-spacing:-53.760000pt;}
.ws5_c00315{word-spacing:-14.005333pt;}
.ws4_c00315{word-spacing:-13.903467pt;}
.ws7_c00315{word-spacing:-13.718933pt;}
.ws2_c00315{word-spacing:-13.588267pt;}
.ws6_c00315{word-spacing:-13.493867pt;}
.ws1_c00315{word-spacing:-13.440000pt;}
.ws3_c00315{word-spacing:-13.289067pt;}
.ws8_c00315{word-spacing:0.000000pt;}
._0_c00315{margin-left:-1.280000pt;}
._1_c00315{width:1.008640pt;}
._2_c00315{width:2.414080pt;}
.fs1_c00315{font-size:53.760000pt;}
.fs0_c00315{font-size:64.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y1c_c00315{bottom:10.870667pt;}
.y2a_c00315{bottom:11.190667pt;}
.y1b_c00315{bottom:33.630667pt;}
.y29_c00315{bottom:33.950667pt;}
.y3_c00315{bottom:50.880000pt;}
.y1a_c00315{bottom:56.670667pt;}
.y28_c00315{bottom:56.990667pt;}
.y2_c00315{bottom:69.120000pt;}
.y19_c00315{bottom:79.710667pt;}
.y27_c00315{bottom:80.030667pt;}
.y18_c00315{bottom:102.750667pt;}
.y26_c00315{bottom:103.070667pt;}
.y17_c00315{bottom:125.817333pt;}
.y25_c00315{bottom:126.137333pt;}
.y4_c00315{bottom:127.396000pt;}
.y16_c00315{bottom:148.857333pt;}
.y24_c00315{bottom:149.177333pt;}
.y15_c00315{bottom:171.897333pt;}
.y23_c00315{bottom:172.217333pt;}
.y14_c00315{bottom:194.977333pt;}
.y22_c00315{bottom:195.297333pt;}
.y13_c00315{bottom:217.697333pt;}
.y21_c00315{bottom:218.017333pt;}
.y12_c00315{bottom:240.737333pt;}
.y20_c00315{bottom:241.057333pt;}
.y11_c00315{bottom:264.124000pt;}
.y10_c00315{bottom:287.164000pt;}
.yf_c00315{bottom:310.204000pt;}
.ye_c00315{bottom:333.270667pt;}
.yd_c00315{bottom:356.310667pt;}
.yc_c00315{bottom:378.710667pt;}
.y1f_c00315{bottom:379.030667pt;}
.yb_c00315{bottom:402.070667pt;}
.ya_c00315{bottom:425.150667pt;}
.y9_c00315{bottom:447.870667pt;}
.y1e_c00315{bottom:448.190667pt;}
.y8_c00315{bottom:470.910667pt;}
.y1d_c00315{bottom:471.230667pt;}
.y7_c00315{bottom:494.297333pt;}
.y6_c00315{bottom:517.337333pt;}
.y5_c00315{bottom:540.377333pt;}
.y1_c00315{bottom:732.133333pt;}
.h5_c00315{height:52.762500pt;}
.h4_c00315{height:54.180000pt;}
.h2_c00315{height:57.375000pt;}
.h3_c00315{height:552.200000pt;}
.h1_c00315{height:793.333333pt;}
.h0_c00315{height:793.600000pt;}
.w2_c00315{width:308.240000pt;}
.w3_c00315{width:315.293333pt;}
.w0_c00315{width:1122.560000pt;}
.w1_c00315{width:1122.666667pt;}
.x0_c00315{left:0.000000pt;}
.x4_c00315{left:6.708000pt;}
.x3_c00315{left:87.724000pt;}
.x1_c00315{left:94.432000pt;}
.x5_c00315{left:396.613333pt;}
.x2_c00315{left:549.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_c00316 {
    display:none;
  }
  .loading-indicator_c00316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00316 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00316 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00316" -> "#page-container .classname_c00316")
 */
.pf_c00316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00316 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00316 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00316 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00316 {overflow:visible;}
  }
}
.c_c00316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00316 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00316:after { /* webkit #35443 */
  content: '';
}
.t_c00316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00316 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00316 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00316 { /* info for Javascript */
  display:none;
}
.l_c00316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00316:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00316;src:url('chunks/assets/font_5e9acd5e3a8929289581246b.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_2b080791589ecacab349f900.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_dfc7992f36687f50a3eefe37.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_0d99058be26a7cb5847ec39d.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;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_c00316;src:url('chunks/assets/font_20fdbee7f7c57be8638d31cc.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00316;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00316{font-family:ff6_c00316;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls5_c00316{letter-spacing:-1.776000px;}
.ls6_c00316{letter-spacing:-0.337200px;}
.ls4_c00316{letter-spacing:-0.241800px;}
.ls2_c00316{letter-spacing:0.000000px;}
.ls8_c00316{letter-spacing:0.022800px;}
.ls3_c00316{letter-spacing:0.060600px;}
.ls1_c00316{letter-spacing:0.302400px;}
.ls7_c00316{letter-spacing:0.529800px;}
.ls0_c00316{letter-spacing:0.720000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00316{word-spacing:-60.480000px;}
.ws1_c00316{word-spacing:-15.180600px;}
.ws0_c00316{word-spacing:-15.120000px;}
.ws4_c00316{word-spacing:-14.782800px;}
.ws3_c00316{word-spacing:-13.344000px;}
.ws5_c00316{word-spacing:0.000000px;}
._0_c00316{margin-left:-2.039280px;}
._2_c00316{margin-left:-1.005598px;}
._1_c00316{width:1.474800px;}
._3_c00316{width:2.499600px;}
.fc0_c00316{color:rgb(0,0,0);}
.fs1_c00316{font-size:60.480000px;}
.fs0_c00316{font-size:72.000000px;}
.y0_c00316{bottom:0.000000px;}
.y1c_c00316{bottom:12.589500px;}
.y1b_c00316{bottom:38.194500px;}
.y3_c00316{bottom:57.240000px;}
.y1a_c00316{bottom:64.114500px;}
.y2_c00316{bottom:77.760000px;}
.y19_c00316{bottom:90.034500px;}
.y18_c00316{bottom:115.954500px;}
.y17_c00316{bottom:141.904500px;}
.y4_c00316{bottom:143.320500px;}
.y16_c00316{bottom:167.824500px;}
.y15_c00316{bottom:193.744500px;}
.y14_c00316{bottom:219.709500px;}
.y13_c00316{bottom:245.269500px;}
.y12_c00316{bottom:271.189500px;}
.y11_c00316{bottom:297.139500px;}
.y10_c00316{bottom:323.059500px;}
.yf_c00316{bottom:348.979500px;}
.ye_c00316{bottom:374.929500px;}
.yd_c00316{bottom:400.849500px;}
.yc_c00316{bottom:426.409500px;}
.yb_c00316{bottom:452.329500px;}
.ya_c00316{bottom:478.294500px;}
.y9_c00316{bottom:504.214500px;}
.y8_c00316{bottom:530.134500px;}
.y7_c00316{bottom:556.084500px;}
.y6_c00316{bottom:582.004500px;}
.y5_c00316{bottom:607.924500px;}
.y1_c00316{bottom:823.650000px;}
.h4_c00316{height:59.357813px;}
.h5_c00316{height:60.952500px;}
.h2_c00316{height:64.546875px;}
.h3_c00316{height:621.225000px;}
.h1_c00316{height:892.500000px;}
.h0_c00316{height:892.800000px;}
.w2_c00316{width:354.705000px;}
.w0_c00316{width:1262.880000px;}
.w1_c00316{width:1263.000000px;}
.x0_c00316{left:0.000000px;}
.x4_c00316{left:7.920000px;}
.x1_c00316{left:106.236000px;}
.x3_c00316{left:446.190000px;}
.x2_c00316{left:617.940000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls5_c00316{letter-spacing:-1.578667pt;}
.ls6_c00316{letter-spacing:-0.299733pt;}
.ls4_c00316{letter-spacing:-0.214933pt;}
.ls2_c00316{letter-spacing:0.000000pt;}
.ls8_c00316{letter-spacing:0.020267pt;}
.ls3_c00316{letter-spacing:0.053867pt;}
.ls1_c00316{letter-spacing:0.268800pt;}
.ls7_c00316{letter-spacing:0.470933pt;}
.ls0_c00316{letter-spacing:0.640000pt;}
.ws2_c00316{word-spacing:-53.760000pt;}
.ws1_c00316{word-spacing:-13.493867pt;}
.ws0_c00316{word-spacing:-13.440000pt;}
.ws4_c00316{word-spacing:-13.140267pt;}
.ws3_c00316{word-spacing:-11.861333pt;}
.ws5_c00316{word-spacing:0.000000pt;}
._0_c00316{margin-left:-1.812693pt;}
._2_c00316{margin-left:-0.893865pt;}
._1_c00316{width:1.310933pt;}
._3_c00316{width:2.221867pt;}
.fs1_c00316{font-size:53.760000pt;}
.fs0_c00316{font-size:64.000000pt;}
.y0_c00316{bottom:0.000000pt;}
.y1c_c00316{bottom:11.190667pt;}
.y1b_c00316{bottom:33.950667pt;}
.y3_c00316{bottom:50.880000pt;}
.y1a_c00316{bottom:56.990667pt;}
.y2_c00316{bottom:69.120000pt;}
.y19_c00316{bottom:80.030667pt;}
.y18_c00316{bottom:103.070667pt;}
.y17_c00316{bottom:126.137333pt;}
.y4_c00316{bottom:127.396000pt;}
.y16_c00316{bottom:149.177333pt;}
.y15_c00316{bottom:172.217333pt;}
.y14_c00316{bottom:195.297333pt;}
.y13_c00316{bottom:218.017333pt;}
.y12_c00316{bottom:241.057333pt;}
.y11_c00316{bottom:264.124000pt;}
.y10_c00316{bottom:287.164000pt;}
.yf_c00316{bottom:310.204000pt;}
.ye_c00316{bottom:333.270667pt;}
.yd_c00316{bottom:356.310667pt;}
.yc_c00316{bottom:379.030667pt;}
.yb_c00316{bottom:402.070667pt;}
.ya_c00316{bottom:425.150667pt;}
.y9_c00316{bottom:448.190667pt;}
.y8_c00316{bottom:471.230667pt;}
.y7_c00316{bottom:494.297333pt;}
.y6_c00316{bottom:517.337333pt;}
.y5_c00316{bottom:540.377333pt;}
.y1_c00316{bottom:732.133333pt;}
.h4_c00316{height:52.762500pt;}
.h5_c00316{height:54.180000pt;}
.h2_c00316{height:57.375000pt;}
.h3_c00316{height:552.200000pt;}
.h1_c00316{height:793.333333pt;}
.h0_c00316{height:793.600000pt;}
.w2_c00316{width:315.293333pt;}
.w0_c00316{width:1122.560000pt;}
.w1_c00316{width:1122.666667pt;}
.x0_c00316{left:0.000000pt;}
.x4_c00316{left:7.040000pt;}
.x1_c00316{left:94.432000pt;}
.x3_c00316{left:396.613333pt;}
.x2_c00316{left:549.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_c00317 {
    display:none;
  }
  .loading-indicator_c00317.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00317 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00317 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00317" -> "#page-container .classname_c00317")
 */
.pf_c00317 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00317 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00317 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00317 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00317 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00317 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00317 {overflow:visible;}
  }
}
.c_c00317 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00317 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00317:after { /* webkit #35443 */
  content: '';
}
.t_c00317:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00317 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00317 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00317 { /* info for Javascript */
  display:none;
}
.l_c00317 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00317 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00317 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00317:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00317;src:url('chunks/assets/font_d329ce74c6bee90520d0de18.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_8be57fe6c460db6711821608.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_f1bcbd6bef4ab374d6856a9a.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;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_c00317;src:url('chunks/assets/font_f9c65487d4e680bf6a60511b.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00317;src:url('chunks/assets/font_898f35e686d941d82183a9dd.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00317;src:url('chunks/assets/font_84c26b07eb16c798864ae0c0.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:1.311035;font-style:normal;font-weight: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_c00317;src:url('chunks/assets/font_7d3f43323e4098c10f3f7f88.woff2')format("woff");}.ff7_c00317{font-family:ff7_c00317;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls8_c00317{letter-spacing:-1.512000px;}
.ls9_c00317{letter-spacing:-0.337200px;}
.ls3_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:0.020160px;}
.ls4_c00317{letter-spacing:0.022800px;}
.ls5_c00317{letter-spacing:0.060600px;}
.ls6_c00317{letter-spacing:0.521400px;}
.ls7_c00317{letter-spacing:0.702000px;}
.ls1_c00317{letter-spacing:0.720000px;}
.ls2_c00317{letter-spacing:0.840000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00317{word-spacing:-60.480000px;}
.ws7_c00317{word-spacing:-58.968000px;}
.ws5_c00317{word-spacing:-18.000000px;}
.ws4_c00317{word-spacing:-15.822000px;}
.ws3_c00317{word-spacing:-15.641400px;}
.ws2_c00317{word-spacing:-15.180600px;}
.ws1_c00317{word-spacing:-15.142800px;}
.ws0_c00317{word-spacing:-15.120000px;}
.ws8_c00317{word-spacing:-14.782800px;}
.ws9_c00317{word-spacing:0.000000px;}
._0_c00317{margin-left:-1.451399px;}
._1_c00317{width:1.390798px;}
._2_c00317{width:2.923676px;}
.fc0_c00317{color:rgb(0,0,0);}
.fs1_c00317{font-size:60.480000px;}
.fs0_c00317{font-size:72.000000px;}
.y0_c00317{bottom:0.000000px;}
.y10_c00317{bottom:12.600000px;}
.yf_c00317{bottom:38.520000px;}
.y3_c00317{bottom:57.240000px;}
.ye_c00317{bottom:64.470000px;}
.y2_c00317{bottom:77.760000px;}
.yd_c00317{bottom:90.390000px;}
.yc_c00317{bottom:115.950000px;}
.y1c_c00317{bottom:134.316000px;}
.yb_c00317{bottom:141.870000px;}
.y1b_c00317{bottom:160.230000px;}
.ya_c00317{bottom:167.835000px;}
.y1a_c00317{bottom:186.195000px;}
.y9_c00317{bottom:193.755000px;}
.y19_c00317{bottom:212.115000px;}
.y8_c00317{bottom:219.675000px;}
.y18_c00317{bottom:240.195000px;}
.y7_c00317{bottom:245.625000px;}
.y17_c00317{bottom:271.185000px;}
.y6_c00317{bottom:271.545000px;}
.y5_c00317{bottom:297.465000px;}
.y16_c00317{bottom:299.985000px;}
.y15_c00317{bottom:325.905000px;}
.y14_c00317{bottom:351.870000px;}
.y13_c00317{bottom:377.790000px;}
.y12_c00317{bottom:405.870000px;}
.y11_c00317{bottom:436.860000px;}
.y4_c00317{bottom:453.780000px;}
.y1_c00317{bottom:823.650000px;}
.h4_c00317{height:59.357813px;}
.h5_c00317{height:60.952500px;}
.h2_c00317{height:64.546875px;}
.h6_c00317{height:70.628906px;}
.h3_c00317{height:310.770000px;}
.h1_c00317{height:892.500000px;}
.h0_c00317{height:892.800000px;}
.w2_c00317{width:354.705000px;}
.w0_c00317{width:1262.880000px;}
.w1_c00317{width:1263.000000px;}
.x0_c00317{left:0.000000px;}
.x5_c00317{left:4.680000px;}
.x4_c00317{left:7.920000px;}
.x1_c00317{left:106.236000px;}
.x7_c00317{left:157.350000px;}
.x3_c00317{left:446.190000px;}
.x6_c00317{left:512.430000px;}
.x2_c00317{left:617.940000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls8_c00317{letter-spacing:-1.344000pt;}
.ls9_c00317{letter-spacing:-0.299733pt;}
.ls3_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:0.017920pt;}
.ls4_c00317{letter-spacing:0.020267pt;}
.ls5_c00317{letter-spacing:0.053867pt;}
.ls6_c00317{letter-spacing:0.463467pt;}
.ls7_c00317{letter-spacing:0.624000pt;}
.ls1_c00317{letter-spacing:0.640000pt;}
.ls2_c00317{letter-spacing:0.746667pt;}
.ws6_c00317{word-spacing:-53.760000pt;}
.ws7_c00317{word-spacing:-52.416000pt;}
.ws5_c00317{word-spacing:-16.000000pt;}
.ws4_c00317{word-spacing:-14.064000pt;}
.ws3_c00317{word-spacing:-13.903467pt;}
.ws2_c00317{word-spacing:-13.493867pt;}
.ws1_c00317{word-spacing:-13.460267pt;}
.ws0_c00317{word-spacing:-13.440000pt;}
.ws8_c00317{word-spacing:-13.140267pt;}
.ws9_c00317{word-spacing:0.000000pt;}
._0_c00317{margin-left:-1.290132pt;}
._1_c00317{width:1.236265pt;}
._2_c00317{width:2.598823pt;}
.fs1_c00317{font-size:53.760000pt;}
.fs0_c00317{font-size:64.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y10_c00317{bottom:11.200000pt;}
.yf_c00317{bottom:34.240000pt;}
.y3_c00317{bottom:50.880000pt;}
.ye_c00317{bottom:57.306667pt;}
.y2_c00317{bottom:69.120000pt;}
.yd_c00317{bottom:80.346667pt;}
.yc_c00317{bottom:103.066667pt;}
.y1c_c00317{bottom:119.392000pt;}
.yb_c00317{bottom:126.106667pt;}
.y1b_c00317{bottom:142.426667pt;}
.ya_c00317{bottom:149.186667pt;}
.y1a_c00317{bottom:165.506667pt;}
.y9_c00317{bottom:172.226667pt;}
.y19_c00317{bottom:188.546667pt;}
.y8_c00317{bottom:195.266667pt;}
.y18_c00317{bottom:213.506667pt;}
.y7_c00317{bottom:218.333333pt;}
.y17_c00317{bottom:241.053333pt;}
.y6_c00317{bottom:241.373333pt;}
.y5_c00317{bottom:264.413333pt;}
.y16_c00317{bottom:266.653333pt;}
.y15_c00317{bottom:289.693333pt;}
.y14_c00317{bottom:312.773333pt;}
.y13_c00317{bottom:335.813333pt;}
.y12_c00317{bottom:360.773333pt;}
.y11_c00317{bottom:388.320000pt;}
.y4_c00317{bottom:403.360000pt;}
.y1_c00317{bottom:732.133333pt;}
.h4_c00317{height:52.762500pt;}
.h5_c00317{height:54.180000pt;}
.h2_c00317{height:57.375000pt;}
.h6_c00317{height:62.781250pt;}
.h3_c00317{height:276.240000pt;}
.h1_c00317{height:793.333333pt;}
.h0_c00317{height:793.600000pt;}
.w2_c00317{width:315.293333pt;}
.w0_c00317{width:1122.560000pt;}
.w1_c00317{width:1122.666667pt;}
.x0_c00317{left:0.000000pt;}
.x5_c00317{left:4.160000pt;}
.x4_c00317{left:7.040000pt;}
.x1_c00317{left:94.432000pt;}
.x7_c00317{left:139.866667pt;}
.x3_c00317{left:396.613333pt;}
.x6_c00317{left:455.493333pt;}
.x2_c00317{left:549.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_c00318 {
    display:none;
  }
  .loading-indicator_c00318.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00318 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00318 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00318" -> "#page-container .classname_c00318")
 */
.pf_c00318 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00318 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00318 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00318 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00318 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00318 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00318 {overflow:visible;}
  }
}
.c_c00318 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00318 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00318:after { /* webkit #35443 */
  content: '';
}
.t_c00318:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00318 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00318 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00318 { /* info for Javascript */
  display:none;
}
.l_c00318 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00318 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00318 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00318:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00318;src:url('chunks/assets/font_9ecb614671228184e350f3c4.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_84c26b07eb16c798864ae0c0.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_48abe06a5f446f3eaf544c5a.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_5034860781933580457fc4ee.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00318;src:url('chunks/assets/font_7d3f43323e4098c10f3f7f88.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00318;src:url('chunks/assets/font_39393ba64ced41198f08fcdf.woff2')format("woff");}.ff6_c00318{font-family:ff6_c00318;line-height:1.284668;font-style:normal;font-weight: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_c00318;src:url('chunks/assets/font_0d99058be26a7cb5847ec39d.woff2')format("woff");}.ff7_c00318{font-family:ff7_c00318;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_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls18_c00318{letter-spacing:-1.776000px;}
.ls1c_c00318{letter-spacing:-1.680000px;}
.ls8_c00318{letter-spacing:-1.512000px;}
.lsf_c00318{letter-spacing:-1.416000px;}
.ls14_c00318{letter-spacing:-0.912000px;}
.ls13_c00318{letter-spacing:-0.720000px;}
.lsd_c00318{letter-spacing:-0.532800px;}
.ls9_c00318{letter-spacing:-0.337200px;}
.ls19_c00318{letter-spacing:-0.241800px;}
.lsc_c00318{letter-spacing:-0.072000px;}
.ls1a_c00318{letter-spacing:-0.011400px;}
.ls7_c00318{letter-spacing:0.000000px;}
.ls2_c00318{letter-spacing:0.020160px;}
.lse_c00318{letter-spacing:0.022800px;}
.ls3_c00318{letter-spacing:0.048960px;}
.ls11_c00318{letter-spacing:0.060600px;}
.ls1_c00318{letter-spacing:0.072000px;}
.ls5_c00318{letter-spacing:0.108480px;}
.ls1b_c00318{letter-spacing:0.166800px;}
.lsb_c00318{letter-spacing:0.325200px;}
.lsa_c00318{letter-spacing:0.466800px;}
.ls17_c00318{letter-spacing:0.507000px;}
.ls6_c00318{letter-spacing:0.518400px;}
.ls10_c00318{letter-spacing:0.521400px;}
.ls4_c00318{letter-spacing:0.524160px;}
.ls15_c00318{letter-spacing:0.529800px;}
.ls12_c00318{letter-spacing:0.630000px;}
.ls16_c00318{letter-spacing:0.702000px;}
.ls0_c00318{letter-spacing:0.720000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00318{word-spacing:-60.480000px;}
.ws6_c00318{word-spacing:-60.408000px;}
.ws3_c00318{word-spacing:-58.968000px;}
.ws1_c00318{word-spacing:-18.000000px;}
.wsa_c00318{word-spacing:-15.822000px;}
.ws9_c00318{word-spacing:-15.750000px;}
.ws8_c00318{word-spacing:-15.641400px;}
.wsb_c00318{word-spacing:-15.627000px;}
.ws5_c00318{word-spacing:-15.586800px;}
.wsf_c00318{word-spacing:-15.286800px;}
.ws0_c00318{word-spacing:-15.120000px;}
.wse_c00318{word-spacing:-15.108600px;}
.wsd_c00318{word-spacing:-14.878200px;}
.ws4_c00318{word-spacing:-14.782800px;}
.ws7_c00318{word-spacing:-14.587200px;}
.ws10_c00318{word-spacing:-13.440000px;}
.wsc_c00318{word-spacing:-13.344000px;}
.ws11_c00318{word-spacing:0.000000px;}
._3_c00318{margin-left:-2.841120px;}
._0_c00318{margin-left:-1.673280px;}
._1_c00318{width:1.205280px;}
._2_c00318{width:3.133920px;}
.fc0_c00318{color:rgb(0,0,0);}
.fs1_c00318{font-size:60.480000px;}
.fs0_c00318{font-size:72.000000px;}
.y0_c00318{bottom:0.000000px;}
.y33_c00318{bottom:12.229500px;}
.y1b_c00318{bottom:17.629500px;}
.y32_c00318{bottom:38.194500px;}
.y1a_c00318{bottom:43.594500px;}
.y3_c00318{bottom:57.240000px;}
.y31_c00318{bottom:64.114500px;}
.y19_c00318{bottom:69.514500px;}
.y2_c00318{bottom:77.760000px;}
.y30_c00318{bottom:90.034500px;}
.y18_c00318{bottom:95.074500px;}
.y2f_c00318{bottom:115.954500px;}
.y17_c00318{bottom:121.024500px;}
.y2e_c00318{bottom:141.904500px;}
.y4_c00318{bottom:142.600500px;}
.y16_c00318{bottom:149.464500px;}
.y2d_c00318{bottom:167.824500px;}
.y15_c00318{bottom:177.904500px;}
.y2c_c00318{bottom:193.744500px;}
.y14_c00318{bottom:203.824500px;}
.y2b_c00318{bottom:219.349500px;}
.y13_c00318{bottom:229.789500px;}
.y2a_c00318{bottom:245.269500px;}
.y12_c00318{bottom:255.709500px;}
.y29_c00318{bottom:271.189500px;}
.y11_c00318{bottom:283.789500px;}
.y28_c00318{bottom:297.139500px;}
.y10_c00318{bottom:312.619500px;}
.y27_c00318{bottom:323.059500px;}
.yf_c00318{bottom:338.539500px;}
.y26_c00318{bottom:348.979500px;}
.ye_c00318{bottom:364.459500px;}
.y25_c00318{bottom:374.929500px;}
.yd_c00318{bottom:390.409500px;}
.y34_c00318{bottom:400.489500px;}
.y24_c00318{bottom:400.849500px;}
.yc_c00318{bottom:418.489500px;}
.y23_c00318{bottom:426.409500px;}
.yb_c00318{bottom:446.929500px;}
.y22_c00318{bottom:452.329500px;}
.ya_c00318{bottom:473.254500px;}
.y21_c00318{bottom:478.294500px;}
.y9_c00318{bottom:499.174500px;}
.y20_c00318{bottom:504.214500px;}
.y8_c00318{bottom:524.734500px;}
.y1f_c00318{bottom:530.134500px;}
.y7_c00318{bottom:550.684500px;}
.y1e_c00318{bottom:556.084500px;}
.y6_c00318{bottom:579.124500px;}
.y1d_c00318{bottom:582.004500px;}
.y5_c00318{bottom:607.204500px;}
.y1c_c00318{bottom:607.564500px;}
.y1_c00318{bottom:823.650000px;}
.h5_c00318{height:59.357813px;}
.h4_c00318{height:60.952500px;}
.h2_c00318{height:64.546875px;}
.h3_c00318{height:620.865000px;}
.h1_c00318{height:892.500000px;}
.h0_c00318{height:892.800000px;}
.w2_c00318{width:352.890000px;}
.w3_c00318{width:353.625000px;}
.w0_c00318{width:1262.880000px;}
.w1_c00318{width:1263.000000px;}
.x0_c00318{left:0.000000px;}
.x6_c00318{left:7.186500px;}
.xb_c00318{left:8.265000px;}
.x5_c00318{left:56.860500px;}
.x8_c00318{left:65.860500px;}
.x3_c00318{left:99.049500px;}
.x1_c00318{left:106.236000px;}
.x4_c00318{left:150.505500px;}
.x7_c00318{left:169.945500px;}
.x9_c00318{left:451.950000px;}
.x2_c00318{left:617.940000px;}
.xa_c00318{left:805.590000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls18_c00318{letter-spacing:-1.578667pt;}
.ls1c_c00318{letter-spacing:-1.493333pt;}
.ls8_c00318{letter-spacing:-1.344000pt;}
.lsf_c00318{letter-spacing:-1.258667pt;}
.ls14_c00318{letter-spacing:-0.810667pt;}
.ls13_c00318{letter-spacing:-0.640000pt;}
.lsd_c00318{letter-spacing:-0.473600pt;}
.ls9_c00318{letter-spacing:-0.299733pt;}
.ls19_c00318{letter-spacing:-0.214933pt;}
.lsc_c00318{letter-spacing:-0.064000pt;}
.ls1a_c00318{letter-spacing:-0.010133pt;}
.ls7_c00318{letter-spacing:0.000000pt;}
.ls2_c00318{letter-spacing:0.017920pt;}
.lse_c00318{letter-spacing:0.020267pt;}
.ls3_c00318{letter-spacing:0.043520pt;}
.ls11_c00318{letter-spacing:0.053867pt;}
.ls1_c00318{letter-spacing:0.064000pt;}
.ls5_c00318{letter-spacing:0.096427pt;}
.ls1b_c00318{letter-spacing:0.148267pt;}
.lsb_c00318{letter-spacing:0.289067pt;}
.lsa_c00318{letter-spacing:0.414933pt;}
.ls17_c00318{letter-spacing:0.450667pt;}
.ls6_c00318{letter-spacing:0.460800pt;}
.ls10_c00318{letter-spacing:0.463467pt;}
.ls4_c00318{letter-spacing:0.465920pt;}
.ls15_c00318{letter-spacing:0.470933pt;}
.ls12_c00318{letter-spacing:0.560000pt;}
.ls16_c00318{letter-spacing:0.624000pt;}
.ls0_c00318{letter-spacing:0.640000pt;}
.ws2_c00318{word-spacing:-53.760000pt;}
.ws6_c00318{word-spacing:-53.696000pt;}
.ws3_c00318{word-spacing:-52.416000pt;}
.ws1_c00318{word-spacing:-16.000000pt;}
.wsa_c00318{word-spacing:-14.064000pt;}
.ws9_c00318{word-spacing:-14.000000pt;}
.ws8_c00318{word-spacing:-13.903467pt;}
.wsb_c00318{word-spacing:-13.890667pt;}
.ws5_c00318{word-spacing:-13.854933pt;}
.wsf_c00318{word-spacing:-13.588267pt;}
.ws0_c00318{word-spacing:-13.440000pt;}
.wse_c00318{word-spacing:-13.429867pt;}
.wsd_c00318{word-spacing:-13.225067pt;}
.ws4_c00318{word-spacing:-13.140267pt;}
.ws7_c00318{word-spacing:-12.966400pt;}
.ws10_c00318{word-spacing:-11.946667pt;}
.wsc_c00318{word-spacing:-11.861333pt;}
.ws11_c00318{word-spacing:0.000000pt;}
._3_c00318{margin-left:-2.525440pt;}
._0_c00318{margin-left:-1.487360pt;}
._1_c00318{width:1.071360pt;}
._2_c00318{width:2.785707pt;}
.fs1_c00318{font-size:53.760000pt;}
.fs0_c00318{font-size:64.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y33_c00318{bottom:10.870667pt;}
.y1b_c00318{bottom:15.670667pt;}
.y32_c00318{bottom:33.950667pt;}
.y1a_c00318{bottom:38.750667pt;}
.y3_c00318{bottom:50.880000pt;}
.y31_c00318{bottom:56.990667pt;}
.y19_c00318{bottom:61.790667pt;}
.y2_c00318{bottom:69.120000pt;}
.y30_c00318{bottom:80.030667pt;}
.y18_c00318{bottom:84.510667pt;}
.y2f_c00318{bottom:103.070667pt;}
.y17_c00318{bottom:107.577333pt;}
.y2e_c00318{bottom:126.137333pt;}
.y4_c00318{bottom:126.756000pt;}
.y16_c00318{bottom:132.857333pt;}
.y2d_c00318{bottom:149.177333pt;}
.y15_c00318{bottom:158.137333pt;}
.y2c_c00318{bottom:172.217333pt;}
.y14_c00318{bottom:181.177333pt;}
.y2b_c00318{bottom:194.977333pt;}
.y13_c00318{bottom:204.257333pt;}
.y2a_c00318{bottom:218.017333pt;}
.y12_c00318{bottom:227.297333pt;}
.y29_c00318{bottom:241.057333pt;}
.y11_c00318{bottom:252.257333pt;}
.y28_c00318{bottom:264.124000pt;}
.y10_c00318{bottom:277.884000pt;}
.y27_c00318{bottom:287.164000pt;}
.yf_c00318{bottom:300.924000pt;}
.y26_c00318{bottom:310.204000pt;}
.ye_c00318{bottom:323.964000pt;}
.y25_c00318{bottom:333.270667pt;}
.yd_c00318{bottom:347.030667pt;}
.y34_c00318{bottom:355.990667pt;}
.y24_c00318{bottom:356.310667pt;}
.yc_c00318{bottom:371.990667pt;}
.y23_c00318{bottom:379.030667pt;}
.yb_c00318{bottom:397.270667pt;}
.y22_c00318{bottom:402.070667pt;}
.ya_c00318{bottom:420.670667pt;}
.y21_c00318{bottom:425.150667pt;}
.y9_c00318{bottom:443.710667pt;}
.y20_c00318{bottom:448.190667pt;}
.y8_c00318{bottom:466.430667pt;}
.y1f_c00318{bottom:471.230667pt;}
.y7_c00318{bottom:489.497333pt;}
.y1e_c00318{bottom:494.297333pt;}
.y6_c00318{bottom:514.777333pt;}
.y1d_c00318{bottom:517.337333pt;}
.y5_c00318{bottom:539.737333pt;}
.y1c_c00318{bottom:540.057333pt;}
.y1_c00318{bottom:732.133333pt;}
.h5_c00318{height:52.762500pt;}
.h4_c00318{height:54.180000pt;}
.h2_c00318{height:57.375000pt;}
.h3_c00318{height:551.880000pt;}
.h1_c00318{height:793.333333pt;}
.h0_c00318{height:793.600000pt;}
.w2_c00318{width:313.680000pt;}
.w3_c00318{width:314.333333pt;}
.w0_c00318{width:1122.560000pt;}
.w1_c00318{width:1122.666667pt;}
.x0_c00318{left:0.000000pt;}
.x6_c00318{left:6.388000pt;}
.xb_c00318{left:7.346667pt;}
.x5_c00318{left:50.542667pt;}
.x8_c00318{left:58.542667pt;}
.x3_c00318{left:88.044000pt;}
.x1_c00318{left:94.432000pt;}
.x4_c00318{left:133.782667pt;}
.x7_c00318{left:151.062667pt;}
.x9_c00318{left:401.733333pt;}
.x2_c00318{left:549.280000pt;}
.xa_c00318{left:716.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_c00319 {
    display:none;
  }
  .loading-indicator_c00319.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00319 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00319 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00319" -> "#page-container .classname_c00319")
 */
.pf_c00319 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00319 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00319 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00319 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00319 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00319 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00319 {overflow:visible;}
  }
}
.c_c00319 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00319 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00319:after { /* webkit #35443 */
  content: '';
}
.t_c00319:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00319 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00319 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00319 { /* info for Javascript */
  display:none;
}
.l_c00319 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00319 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00319 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00319:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00319;src:url('chunks/assets/font_eb3e7854f96a24254f755477.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_2956f698c7d0df07577379c1.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_477d03509e3c91d5f36029c5.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_e6a7d3a35389f22813c6f7a1.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00319;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00319;src:url('chunks/assets/font_0f85087cf76ed81e1c6ad9b2.woff2')format("woff");}.ff6_c00319{font-family:ff6_c00319;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_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls8_c00319{letter-spacing:-1.416000px;}
.ls9_c00319{letter-spacing:-0.810000px;}
.ls4_c00319{letter-spacing:-0.337200px;}
.ls7_c00319{letter-spacing:-0.241800px;}
.ls3_c00319{letter-spacing:0.000000px;}
.ls2_c00319{letter-spacing:0.020160px;}
.ls5_c00319{letter-spacing:0.022800px;}
.ls6_c00319{letter-spacing:0.166800px;}
.ls1_c00319{letter-spacing:0.290880px;}
.lsa_c00319{letter-spacing:0.529800px;}
.ls0_c00319{letter-spacing:0.720000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00319{word-spacing:-15.286800px;}
.ws2_c00319{word-spacing:-15.142800px;}
.ws1_c00319{word-spacing:-15.120000px;}
.ws4_c00319{word-spacing:-14.878200px;}
.ws0_c00319{word-spacing:-14.782800px;}
.ws5_c00319{word-spacing:-14.310000px;}
.ws6_c00319{word-spacing:0.000000px;}
._2_c00319{margin-left:-2.520123px;}
._0_c00319{margin-left:-1.390798px;}
._1_c00319{width:1.390798px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs1_c00319{font-size:60.480000px;}
.fs0_c00319{font-size:72.000000px;}
.y0_c00319{bottom:0.000000px;}
.y1c_c00319{bottom:12.229500px;}
.y1b_c00319{bottom:37.834500px;}
.y3_c00319{bottom:57.240000px;}
.y1a_c00319{bottom:64.114500px;}
.y2_c00319{bottom:77.760000px;}
.y19_c00319{bottom:90.034500px;}
.y18_c00319{bottom:115.954500px;}
.y17_c00319{bottom:141.904500px;}
.y4_c00319{bottom:142.600500px;}
.y16_c00319{bottom:167.464500px;}
.y15_c00319{bottom:193.744500px;}
.y14_c00319{bottom:219.349500px;}
.y13_c00319{bottom:245.269500px;}
.y12_c00319{bottom:271.189500px;}
.y11_c00319{bottom:297.139500px;}
.y10_c00319{bottom:323.059500px;}
.yf_c00319{bottom:348.979500px;}
.ye_c00319{bottom:374.929500px;}
.yd_c00319{bottom:400.489500px;}
.y1d_c00319{bottom:400.849500px;}
.yc_c00319{bottom:426.409500px;}
.yb_c00319{bottom:452.329500px;}
.ya_c00319{bottom:478.294500px;}
.y9_c00319{bottom:504.214500px;}
.y8_c00319{bottom:530.134500px;}
.y7_c00319{bottom:556.084500px;}
.y6_c00319{bottom:582.004500px;}
.y5_c00319{bottom:607.564500px;}
.y1_c00319{bottom:823.650000px;}
.h4_c00319{height:59.357813px;}
.h5_c00319{height:60.952500px;}
.h2_c00319{height:64.546875px;}
.h3_c00319{height:620.865000px;}
.h1_c00319{height:892.500000px;}
.h0_c00319{height:892.800000px;}
.w2_c00319{width:352.890000px;}
.w3_c00319{width:353.625000px;}
.w0_c00319{width:1262.880000px;}
.w1_c00319{width:1263.000000px;}
.x0_c00319{left:0.000000px;}
.x5_c00319{left:3.946500px;}
.x4_c00319{left:7.186500px;}
.x3_c00319{left:99.049500px;}
.x1_c00319{left:106.236000px;}
.x6_c00319{left:451.950000px;}
.x2_c00319{left:617.940000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls8_c00319{letter-spacing:-1.258667pt;}
.ls9_c00319{letter-spacing:-0.720000pt;}
.ls4_c00319{letter-spacing:-0.299733pt;}
.ls7_c00319{letter-spacing:-0.214933pt;}
.ls3_c00319{letter-spacing:0.000000pt;}
.ls2_c00319{letter-spacing:0.017920pt;}
.ls5_c00319{letter-spacing:0.020267pt;}
.ls6_c00319{letter-spacing:0.148267pt;}
.ls1_c00319{letter-spacing:0.258560pt;}
.lsa_c00319{letter-spacing:0.470933pt;}
.ls0_c00319{letter-spacing:0.640000pt;}
.ws3_c00319{word-spacing:-13.588267pt;}
.ws2_c00319{word-spacing:-13.460267pt;}
.ws1_c00319{word-spacing:-13.440000pt;}
.ws4_c00319{word-spacing:-13.225067pt;}
.ws0_c00319{word-spacing:-13.140267pt;}
.ws5_c00319{word-spacing:-12.720000pt;}
.ws6_c00319{word-spacing:0.000000pt;}
._2_c00319{margin-left:-2.240109pt;}
._0_c00319{margin-left:-1.236265pt;}
._1_c00319{width:1.236265pt;}
.fs1_c00319{font-size:53.760000pt;}
.fs0_c00319{font-size:64.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y1c_c00319{bottom:10.870667pt;}
.y1b_c00319{bottom:33.630667pt;}
.y3_c00319{bottom:50.880000pt;}
.y1a_c00319{bottom:56.990667pt;}
.y2_c00319{bottom:69.120000pt;}
.y19_c00319{bottom:80.030667pt;}
.y18_c00319{bottom:103.070667pt;}
.y17_c00319{bottom:126.137333pt;}
.y4_c00319{bottom:126.756000pt;}
.y16_c00319{bottom:148.857333pt;}
.y15_c00319{bottom:172.217333pt;}
.y14_c00319{bottom:194.977333pt;}
.y13_c00319{bottom:218.017333pt;}
.y12_c00319{bottom:241.057333pt;}
.y11_c00319{bottom:264.124000pt;}
.y10_c00319{bottom:287.164000pt;}
.yf_c00319{bottom:310.204000pt;}
.ye_c00319{bottom:333.270667pt;}
.yd_c00319{bottom:355.990667pt;}
.y1d_c00319{bottom:356.310667pt;}
.yc_c00319{bottom:379.030667pt;}
.yb_c00319{bottom:402.070667pt;}
.ya_c00319{bottom:425.150667pt;}
.y9_c00319{bottom:448.190667pt;}
.y8_c00319{bottom:471.230667pt;}
.y7_c00319{bottom:494.297333pt;}
.y6_c00319{bottom:517.337333pt;}
.y5_c00319{bottom:540.057333pt;}
.y1_c00319{bottom:732.133333pt;}
.h4_c00319{height:52.762500pt;}
.h5_c00319{height:54.180000pt;}
.h2_c00319{height:57.375000pt;}
.h3_c00319{height:551.880000pt;}
.h1_c00319{height:793.333333pt;}
.h0_c00319{height:793.600000pt;}
.w2_c00319{width:313.680000pt;}
.w3_c00319{width:314.333333pt;}
.w0_c00319{width:1122.560000pt;}
.w1_c00319{width:1122.666667pt;}
.x0_c00319{left:0.000000pt;}
.x5_c00319{left:3.508000pt;}
.x4_c00319{left:6.388000pt;}
.x3_c00319{left:88.044000pt;}
.x1_c00319{left:94.432000pt;}
.x6_c00319{left:401.733333pt;}
.x2_c00319{left:549.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_c00320 {
    display:none;
  }
  .loading-indicator_c00320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00320 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00320 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00320" -> "#page-container .classname_c00320")
 */
.pf_c00320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00320 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00320 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00320 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00320 {overflow:visible;}
  }
}
.c_c00320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00320 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00320:after { /* webkit #35443 */
  content: '';
}
.t_c00320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00320 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00320 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00320 { /* info for Javascript */
  display:none;
}
.l_c00320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00320:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00320;src:url('chunks/assets/font_a58e950984c3e474c8e890a1.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_18e14f6140fa58d1a8bbe13b.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_88854265cbf5f168f01b8677.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_a9b6d5b8c03047eec0062750.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00320;src:url('chunks/assets/font_0d99058be26a7cb5847ec39d.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;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_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls6_c00320{letter-spacing:-1.416000px;}
.lsb_c00320{letter-spacing:-0.912000px;}
.ls7_c00320{letter-spacing:-0.532800px;}
.lsa_c00320{letter-spacing:-0.337200px;}
.lsd_c00320{letter-spacing:-0.302400px;}
.ls9_c00320{letter-spacing:-0.241800px;}
.ls4_c00320{letter-spacing:0.000000px;}
.ls5_c00320{letter-spacing:0.022800px;}
.ls3_c00320{letter-spacing:0.048960px;}
.lsc_c00320{letter-spacing:0.219000px;}
.ls2_c00320{letter-spacing:0.524160px;}
.ls8_c00320{letter-spacing:0.529800px;}
.ls0_c00320{letter-spacing:0.720000px;}
.ls1_c00320{letter-spacing:0.900000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00320{word-spacing:-60.699000px;}
.ws1_c00320{word-spacing:-60.480000px;}
.ws4_c00320{word-spacing:-15.649800px;}
.ws0_c00320{word-spacing:-15.120000px;}
.ws3_c00320{word-spacing:-14.878200px;}
.ws7_c00320{word-spacing:-14.817600px;}
.ws5_c00320{word-spacing:-14.782800px;}
.ws2_c00320{word-spacing:-14.587200px;}
.ws8_c00320{word-spacing:0.000000px;}
._2_c00320{margin-left:-2.295602px;}
._0_c00320{margin-left:-1.180558px;}
._1_c00320{width:1.035598px;}
._3_c00320{width:2.200086px;}
.fc0_c00320{color:rgb(0,0,0);}
.fs1_c00320{font-size:60.480000px;}
.fs0_c00320{font-size:72.000000px;}
.y0_c00320{bottom:0.000000px;}
.y1c_c00320{bottom:11.869500px;}
.y1b_c00320{bottom:38.194500px;}
.y3_c00320{bottom:57.240000px;}
.y1a_c00320{bottom:64.114500px;}
.y2_c00320{bottom:77.760000px;}
.y19_c00320{bottom:90.034500px;}
.y18_c00320{bottom:115.954500px;}
.y17_c00320{bottom:141.904500px;}
.y4_c00320{bottom:142.600500px;}
.y16_c00320{bottom:167.824500px;}
.y15_c00320{bottom:193.744500px;}
.y14_c00320{bottom:219.349500px;}
.y13_c00320{bottom:244.909500px;}
.y12_c00320{bottom:271.189500px;}
.y11_c00320{bottom:297.139500px;}
.y10_c00320{bottom:323.059500px;}
.yf_c00320{bottom:348.979500px;}
.ye_c00320{bottom:374.929500px;}
.yd_c00320{bottom:400.849500px;}
.yc_c00320{bottom:426.049500px;}
.yb_c00320{bottom:452.329500px;}
.ya_c00320{bottom:478.294500px;}
.y9_c00320{bottom:504.214500px;}
.y8_c00320{bottom:530.134500px;}
.y7_c00320{bottom:556.084500px;}
.y6_c00320{bottom:582.004500px;}
.y5_c00320{bottom:607.564500px;}
.y1_c00320{bottom:823.650000px;}
.h4_c00320{height:60.952500px;}
.h2_c00320{height:64.546875px;}
.h3_c00320{height:620.865000px;}
.h1_c00320{height:892.500000px;}
.h0_c00320{height:892.800000px;}
.w2_c00320{width:352.890000px;}
.w0_c00320{width:1262.880000px;}
.w1_c00320{width:1263.000000px;}
.x0_c00320{left:0.000000px;}
.x4_c00320{left:7.186500px;}
.x3_c00320{left:99.049500px;}
.x1_c00320{left:106.236000px;}
.x2_c00320{left:617.940000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls6_c00320{letter-spacing:-1.258667pt;}
.lsb_c00320{letter-spacing:-0.810667pt;}
.ls7_c00320{letter-spacing:-0.473600pt;}
.lsa_c00320{letter-spacing:-0.299733pt;}
.lsd_c00320{letter-spacing:-0.268800pt;}
.ls9_c00320{letter-spacing:-0.214933pt;}
.ls4_c00320{letter-spacing:0.000000pt;}
.ls5_c00320{letter-spacing:0.020267pt;}
.ls3_c00320{letter-spacing:0.043520pt;}
.lsc_c00320{letter-spacing:0.194667pt;}
.ls2_c00320{letter-spacing:0.465920pt;}
.ls8_c00320{letter-spacing:0.470933pt;}
.ls0_c00320{letter-spacing:0.640000pt;}
.ls1_c00320{letter-spacing:0.800000pt;}
.ws6_c00320{word-spacing:-53.954667pt;}
.ws1_c00320{word-spacing:-53.760000pt;}
.ws4_c00320{word-spacing:-13.910933pt;}
.ws0_c00320{word-spacing:-13.440000pt;}
.ws3_c00320{word-spacing:-13.225067pt;}
.ws7_c00320{word-spacing:-13.171200pt;}
.ws5_c00320{word-spacing:-13.140267pt;}
.ws2_c00320{word-spacing:-12.966400pt;}
.ws8_c00320{word-spacing:0.000000pt;}
._2_c00320{margin-left:-2.040535pt;}
._0_c00320{margin-left:-1.049385pt;}
._1_c00320{width:0.920532pt;}
._3_c00320{width:1.955632pt;}
.fs1_c00320{font-size:53.760000pt;}
.fs0_c00320{font-size:64.000000pt;}
.y0_c00320{bottom:0.000000pt;}
.y1c_c00320{bottom:10.550667pt;}
.y1b_c00320{bottom:33.950667pt;}
.y3_c00320{bottom:50.880000pt;}
.y1a_c00320{bottom:56.990667pt;}
.y2_c00320{bottom:69.120000pt;}
.y19_c00320{bottom:80.030667pt;}
.y18_c00320{bottom:103.070667pt;}
.y17_c00320{bottom:126.137333pt;}
.y4_c00320{bottom:126.756000pt;}
.y16_c00320{bottom:149.177333pt;}
.y15_c00320{bottom:172.217333pt;}
.y14_c00320{bottom:194.977333pt;}
.y13_c00320{bottom:217.697333pt;}
.y12_c00320{bottom:241.057333pt;}
.y11_c00320{bottom:264.124000pt;}
.y10_c00320{bottom:287.164000pt;}
.yf_c00320{bottom:310.204000pt;}
.ye_c00320{bottom:333.270667pt;}
.yd_c00320{bottom:356.310667pt;}
.yc_c00320{bottom:378.710667pt;}
.yb_c00320{bottom:402.070667pt;}
.ya_c00320{bottom:425.150667pt;}
.y9_c00320{bottom:448.190667pt;}
.y8_c00320{bottom:471.230667pt;}
.y7_c00320{bottom:494.297333pt;}
.y6_c00320{bottom:517.337333pt;}
.y5_c00320{bottom:540.057333pt;}
.y1_c00320{bottom:732.133333pt;}
.h4_c00320{height:54.180000pt;}
.h2_c00320{height:57.375000pt;}
.h3_c00320{height:551.880000pt;}
.h1_c00320{height:793.333333pt;}
.h0_c00320{height:793.600000pt;}
.w2_c00320{width:313.680000pt;}
.w0_c00320{width:1122.560000pt;}
.w1_c00320{width:1122.666667pt;}
.x0_c00320{left:0.000000pt;}
.x4_c00320{left:6.388000pt;}
.x3_c00320{left:88.044000pt;}
.x1_c00320{left:94.432000pt;}
.x2_c00320{left:549.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_c00321 {
    display:none;
  }
  .loading-indicator_c00321.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00321 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00321 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00321" -> "#page-container .classname_c00321")
 */
.pf_c00321 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00321 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00321 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00321 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00321 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00321 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00321 {overflow:visible;}
  }
}
.c_c00321 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00321 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00321:after { /* webkit #35443 */
  content: '';
}
.t_c00321:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00321 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00321 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00321 { /* info for Javascript */
  display:none;
}
.l_c00321 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00321 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00321 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00321:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00321;src:url('chunks/assets/font_84f15573d4325742a1ce2279.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_193d4914986b8e8e56dd1d23.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_cfc12ec7b87884120240bbaa.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;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_c00321;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_675f06ac6703fc610fa51177.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00321;src:url('chunks/assets/font_e3d646c13bd4b480ff1745f4.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls6_c00321{letter-spacing:-0.912000px;}
.ls4_c00321{letter-spacing:-0.337200px;}
.ls5_c00321{letter-spacing:-0.302400px;}
.ls3_c00321{letter-spacing:0.000000px;}
.ls7_c00321{letter-spacing:0.166800px;}
.ls0_c00321{letter-spacing:0.302400px;}
.ls1_c00321{letter-spacing:0.720000px;}
.ls2_c00321{letter-spacing:0.900000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00321{word-spacing:-60.480000px;}
.ws4_c00321{word-spacing:-15.286800px;}
.ws0_c00321{word-spacing:-15.120000px;}
.ws2_c00321{word-spacing:-14.817600px;}
.ws1_c00321{word-spacing:-14.782800px;}
.ws5_c00321{word-spacing:0.000000px;}
._0_c00321{margin-left:-1.875001px;}
._1_c00321{width:1.089003px;}
._2_c00321{width:2.234158px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs1_c00321{font-size:60.480000px;}
.fs0_c00321{font-size:72.000000px;}
.y0_c00321{bottom:0.000000px;}
.y13_c00321{bottom:12.240000px;}
.y12_c00321{bottom:38.520000px;}
.y3_c00321{bottom:57.240000px;}
.y11_c00321{bottom:64.470000px;}
.y2_c00321{bottom:77.760000px;}
.y10_c00321{bottom:90.390000px;}
.yf_c00321{bottom:116.310000px;}
.ye_c00321{bottom:141.900000px;}
.yd_c00321{bottom:168.180000px;}
.yc_c00321{bottom:193.740000px;}
.yb_c00321{bottom:219.660000px;}
.ya_c00321{bottom:245.625000px;}
.y9_c00321{bottom:271.545000px;}
.y8_c00321{bottom:297.105000px;}
.y7_c00321{bottom:323.415000px;}
.y6_c00321{bottom:349.335000px;}
.y5_c00321{bottom:374.895000px;}
.y4_c00321{bottom:375.270000px;}
.y1_c00321{bottom:823.650000px;}
.h4_c00321{height:60.952500px;}
.h2_c00321{height:64.546875px;}
.h3_c00321{height:388.200000px;}
.h1_c00321{height:892.500000px;}
.h0_c00321{height:892.800000px;}
.w2_c00321{width:352.890000px;}
.w0_c00321{width:1262.880000px;}
.w1_c00321{width:1263.000000px;}
.x0_c00321{left:0.000000px;}
.x4_c00321{left:7.186500px;}
.x3_c00321{left:99.049500px;}
.x1_c00321{left:106.236000px;}
.x2_c00321{left:617.940000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls6_c00321{letter-spacing:-0.810667pt;}
.ls4_c00321{letter-spacing:-0.299733pt;}
.ls5_c00321{letter-spacing:-0.268800pt;}
.ls3_c00321{letter-spacing:0.000000pt;}
.ls7_c00321{letter-spacing:0.148267pt;}
.ls0_c00321{letter-spacing:0.268800pt;}
.ls1_c00321{letter-spacing:0.640000pt;}
.ls2_c00321{letter-spacing:0.800000pt;}
.ws3_c00321{word-spacing:-53.760000pt;}
.ws4_c00321{word-spacing:-13.588267pt;}
.ws0_c00321{word-spacing:-13.440000pt;}
.ws2_c00321{word-spacing:-13.171200pt;}
.ws1_c00321{word-spacing:-13.140267pt;}
.ws5_c00321{word-spacing:0.000000pt;}
._0_c00321{margin-left:-1.666668pt;}
._1_c00321{width:0.968003pt;}
._2_c00321{width:1.985918pt;}
.fs1_c00321{font-size:53.760000pt;}
.fs0_c00321{font-size:64.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y13_c00321{bottom:10.880000pt;}
.y12_c00321{bottom:34.240000pt;}
.y3_c00321{bottom:50.880000pt;}
.y11_c00321{bottom:57.306667pt;}
.y2_c00321{bottom:69.120000pt;}
.y10_c00321{bottom:80.346667pt;}
.yf_c00321{bottom:103.386667pt;}
.ye_c00321{bottom:126.133333pt;}
.yd_c00321{bottom:149.493333pt;}
.yc_c00321{bottom:172.213333pt;}
.yb_c00321{bottom:195.253333pt;}
.ya_c00321{bottom:218.333333pt;}
.y9_c00321{bottom:241.373333pt;}
.y8_c00321{bottom:264.093333pt;}
.y7_c00321{bottom:287.480000pt;}
.y6_c00321{bottom:310.520000pt;}
.y5_c00321{bottom:333.240000pt;}
.y4_c00321{bottom:333.573333pt;}
.y1_c00321{bottom:732.133333pt;}
.h4_c00321{height:54.180000pt;}
.h2_c00321{height:57.375000pt;}
.h3_c00321{height:345.066667pt;}
.h1_c00321{height:793.333333pt;}
.h0_c00321{height:793.600000pt;}
.w2_c00321{width:313.680000pt;}
.w0_c00321{width:1122.560000pt;}
.w1_c00321{width:1122.666667pt;}
.x0_c00321{left:0.000000pt;}
.x4_c00321{left:6.388000pt;}
.x3_c00321{left:88.044000pt;}
.x1_c00321{left:94.432000pt;}
.x2_c00321{left:549.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_c00322 {
    display:none;
  }
  .loading-indicator_c00322.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00322 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00322 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00322" -> "#page-container .classname_c00322")
 */
.pf_c00322 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00322 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00322 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00322 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00322 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00322 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00322 {overflow:visible;}
  }
}
.c_c00322 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00322 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00322:after { /* webkit #35443 */
  content: '';
}
.t_c00322:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00322 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00322 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00322 { /* info for Javascript */
  display:none;
}
.l_c00322 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00322 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00322 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00322:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00322;src:url('chunks/assets/font_99d700480e0e958fdc8e93c3.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_190e1e1a39327744848008f1.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_86ddce08cd3fa6e14ed920c1.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;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_c00322;src:url('chunks/assets/font_7e39d3aee859c04493ce0670.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls2_c00322{letter-spacing:-1.152000px;}
.ls3_c00322{letter-spacing:-0.972000px;}
.ls4_c00322{letter-spacing:-0.486600px;}
.ls1_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:0.720000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-18.000000px;}
.ws1_c00322{word-spacing:-16.848000px;}
.ws3_c00322{word-spacing:-15.120000px;}
.ws4_c00322{word-spacing:-14.633400px;}
.ws2_c00322{word-spacing:-14.148000px;}
.ws5_c00322{word-spacing:0.000000px;}
._4_c00322{margin-left:-3.312000px;}
._1_c00322{margin-left:-1.440000px;}
._0_c00322{width:1.296000px;}
._5_c00322{width:2.808000px;}
._8_c00322{width:4.116024px;}
._7_c00322{width:5.472000px;}
._9_c00322{width:6.611976px;}
._f_c00322{width:8.136000px;}
._10_c00322{width:11.388024px;}
._11_c00322{width:13.032000px;}
._6_c00322{width:14.544000px;}
._3_c00322{width:15.984000px;}
._e_c00322{width:20.100024px;}
._d_c00322{width:21.384000px;}
._a_c00322{width:23.040000px;}
._b_c00322{width:24.336000px;}
._c_c00322{width:25.416000px;}
._2_c00322{width:151.932024px;}
.fc0_c00322{color:rgb(0,0,0);}
.fs2_c00322{font-size:38.880000px;}
.fs1_c00322{font-size:47.520000px;}
.fs3_c00322{font-size:60.480000px;}
.fs0_c00322{font-size:72.000000px;}
.y0_c00322{bottom:0.000000px;}
.y25_c00322{bottom:130.716000px;}
.y24_c00322{bottom:147.996000px;}
.y23_c00322{bottom:154.830000px;}
.y22_c00322{bottom:165.630000px;}
.y21_c00322{bottom:246.675000px;}
.y20_c00322{bottom:277.635000px;}
.y1f_c00322{bottom:317.595000px;}
.y1e_c00322{bottom:348.555000px;}
.y1d_c00322{bottom:379.905000px;}
.y1c_c00322{bottom:410.865000px;}
.y1b_c00322{bottom:441.825000px;}
.y1a_c00322{bottom:472.785000px;}
.y19_c00322{bottom:504.150000px;}
.y17_c00322{bottom:544.110000px;}
.y18_c00322{bottom:552.390000px;}
.y16_c00322{bottom:575.070000px;}
.y15_c00322{bottom:606.060000px;}
.y14_c00322{bottom:637.380000px;}
.y13_c00322{bottom:668.340000px;}
.y12_c00322{bottom:699.300000px;}
.y11_c00322{bottom:730.290000px;}
.y10_c00322{bottom:761.610000px;}
.yf_c00322{bottom:792.570000px;}
.ye_c00322{bottom:823.530000px;}
.yd_c00322{bottom:854.535000px;}
.yc_c00322{bottom:885.855000px;}
.yb_c00322{bottom:916.815000px;}
.ya_c00322{bottom:947.775000px;}
.y9_c00322{bottom:978.765000px;}
.y8_c00322{bottom:1010.085000px;}
.y7_c00322{bottom:1050.045000px;}
.y6_c00322{bottom:1090.050000px;}
.y5_c00322{bottom:1110.930000px;}
.y4_c00322{bottom:1131.450000px;}
.y3_c00322{bottom:1152.330000px;}
.y2_c00322{bottom:1172.850000px;}
.y1_c00322{bottom:1193.730000px;}
.h7_c00322{height:34.855313px;}
.h6_c00322{height:46.638281px;}
.h8_c00322{height:54.219375px;}
.h9_c00322{height:54.514688px;}
.h2_c00322{height:64.546875px;}
.h4_c00322{height:70.628906px;}
.h3_c00322{height:70.664062px;}
.h5_c00322{height:1262.875500px;}
.h0_c00322{height:1262.880000px;}
.h1_c00322{height:1263.000000px;}
.w1_c00322{width:892.500000px;}
.w2_c00322{width:892.797000px;}
.w0_c00322{width:892.800000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:127.512000px;}
.x6_c00322{left:142.632000px;}
.x2_c00322{left:180.795000px;}
.x3_c00322{left:195.552000px;}
.x4_c00322{left:213.945000px;}
.x5_c00322{left:343.590000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls2_c00322{letter-spacing:-1.024000pt;}
.ls3_c00322{letter-spacing:-0.864000pt;}
.ls4_c00322{letter-spacing:-0.432533pt;}
.ls1_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:0.640000pt;}
.ws0_c00322{word-spacing:-16.000000pt;}
.ws1_c00322{word-spacing:-14.976000pt;}
.ws3_c00322{word-spacing:-13.440000pt;}
.ws4_c00322{word-spacing:-13.007467pt;}
.ws2_c00322{word-spacing:-12.576000pt;}
.ws5_c00322{word-spacing:0.000000pt;}
._4_c00322{margin-left:-2.944000pt;}
._1_c00322{margin-left:-1.280000pt;}
._0_c00322{width:1.152000pt;}
._5_c00322{width:2.496000pt;}
._8_c00322{width:3.658688pt;}
._7_c00322{width:4.864000pt;}
._9_c00322{width:5.877312pt;}
._f_c00322{width:7.232000pt;}
._10_c00322{width:10.122688pt;}
._11_c00322{width:11.584000pt;}
._6_c00322{width:12.928000pt;}
._3_c00322{width:14.208000pt;}
._e_c00322{width:17.866688pt;}
._d_c00322{width:19.008000pt;}
._a_c00322{width:20.480000pt;}
._b_c00322{width:21.632000pt;}
._c_c00322{width:22.592000pt;}
._2_c00322{width:135.050688pt;}
.fs2_c00322{font-size:34.560000pt;}
.fs1_c00322{font-size:42.240000pt;}
.fs3_c00322{font-size:53.760000pt;}
.fs0_c00322{font-size:64.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y25_c00322{bottom:116.192000pt;}
.y24_c00322{bottom:131.552000pt;}
.y23_c00322{bottom:137.626667pt;}
.y22_c00322{bottom:147.226667pt;}
.y21_c00322{bottom:219.266667pt;}
.y20_c00322{bottom:246.786667pt;}
.y1f_c00322{bottom:282.306667pt;}
.y1e_c00322{bottom:309.826667pt;}
.y1d_c00322{bottom:337.693333pt;}
.y1c_c00322{bottom:365.213333pt;}
.y1b_c00322{bottom:392.733333pt;}
.y1a_c00322{bottom:420.253333pt;}
.y19_c00322{bottom:448.133333pt;}
.y17_c00322{bottom:483.653333pt;}
.y18_c00322{bottom:491.013333pt;}
.y16_c00322{bottom:511.173333pt;}
.y15_c00322{bottom:538.720000pt;}
.y14_c00322{bottom:566.560000pt;}
.y13_c00322{bottom:594.080000pt;}
.y12_c00322{bottom:621.600000pt;}
.y11_c00322{bottom:649.146667pt;}
.y10_c00322{bottom:676.986667pt;}
.yf_c00322{bottom:704.506667pt;}
.ye_c00322{bottom:732.026667pt;}
.yd_c00322{bottom:759.586667pt;}
.yc_c00322{bottom:787.426667pt;}
.yb_c00322{bottom:814.946667pt;}
.ya_c00322{bottom:842.466667pt;}
.y9_c00322{bottom:870.013333pt;}
.y8_c00322{bottom:897.853333pt;}
.y7_c00322{bottom:933.373333pt;}
.y6_c00322{bottom:968.933333pt;}
.y5_c00322{bottom:987.493333pt;}
.y4_c00322{bottom:1005.733333pt;}
.y3_c00322{bottom:1024.293333pt;}
.y2_c00322{bottom:1042.533333pt;}
.y1_c00322{bottom:1061.093333pt;}
.h7_c00322{height:30.982500pt;}
.h6_c00322{height:41.456250pt;}
.h8_c00322{height:48.195000pt;}
.h9_c00322{height:48.457500pt;}
.h2_c00322{height:57.375000pt;}
.h4_c00322{height:62.781250pt;}
.h3_c00322{height:62.812500pt;}
.h5_c00322{height:1122.556000pt;}
.h0_c00322{height:1122.560000pt;}
.h1_c00322{height:1122.666667pt;}
.w1_c00322{width:793.333333pt;}
.w2_c00322{width:793.597333pt;}
.w0_c00322{width:793.600000pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:113.344000pt;}
.x6_c00322{left:126.784000pt;}
.x2_c00322{left:160.706667pt;}
.x3_c00322{left:173.824000pt;}
.x4_c00322{left:190.173333pt;}
.x5_c00322{left:305.413333pt;}
}





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

.ir_c00323:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00323;src:url('chunks/assets/font_8d3c8bbb4daacd6acb1a3a4b.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00323;src:url('chunks/assets/font_3b4047af02d75e959c97ff97.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_2ad683402bed4dc01033c5b0.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;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_c00323;src:url('chunks/assets/font_c68fa9be308e0ff265885713.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls0_c00323{letter-spacing:0.000000px;}
.ls1_c00323{letter-spacing:1.944000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:-72.000000px;}
.ws1_c00323{word-spacing:0.000000px;}
._1_c00323{margin-left:-2.736000px;}
._2_c00323{margin-left:-1.296000px;}
._0_c00323{width:1.080000px;}
._4_c00323{width:2.304000px;}
._b_c00323{width:3.384000px;}
._3_c00323{width:4.680000px;}
._5_c00323{width:6.552000px;}
._7_c00323{width:8.064000px;}
._8_c00323{width:9.936000px;}
._d_c00323{width:10.944000px;}
._e_c00323{width:12.456000px;}
._11_c00323{width:14.112000px;}
._12_c00323{width:15.552000px;}
._c_c00323{width:16.992000px;}
._14_c00323{width:19.656000px;}
._9_c00323{width:20.880000px;}
._a_c00323{width:22.680000px;}
._13_c00323{width:23.760000px;}
._f_c00323{width:28.656000px;}
._10_c00323{width:30.600000px;}
._6_c00323{width:151.932024px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs0_c00323{font-size:72.000000px;}
.y0_c00323{bottom:0.000000px;}
.y3_c00323{bottom:57.240000px;}
.y2_c00323{bottom:78.120000px;}
.y23_c00323{bottom:123.516000px;}
.y22_c00323{bottom:154.830000px;}
.y21_c00323{bottom:185.790000px;}
.y20_c00323{bottom:216.750000px;}
.y1f_c00323{bottom:247.755000px;}
.y1e_c00323{bottom:278.715000px;}
.y1d_c00323{bottom:319.035000px;}
.y1c_c00323{bottom:359.025000px;}
.y1b_c00323{bottom:398.985000px;}
.y1a_c00323{bottom:429.945000px;}
.y19_c00323{bottom:461.265000px;}
.y18_c00323{bottom:492.270000px;}
.y17_c00323{bottom:523.230000px;}
.y16_c00323{bottom:554.190000px;}
.y15_c00323{bottom:585.510000px;}
.y14_c00323{bottom:625.500000px;}
.y13_c00323{bottom:656.460000px;}
.y12_c00323{bottom:687.420000px;}
.y11_c00323{bottom:718.770000px;}
.y10_c00323{bottom:749.730000px;}
.yf_c00323{bottom:780.690000px;}
.ye_c00323{bottom:811.650000px;}
.yd_c00323{bottom:843.015000px;}
.yc_c00323{bottom:873.975000px;}
.yb_c00323{bottom:904.935000px;}
.ya_c00323{bottom:935.895000px;}
.y9_c00323{bottom:967.245000px;}
.y8_c00323{bottom:998.205000px;}
.y7_c00323{bottom:1029.165000px;}
.y6_c00323{bottom:1069.125000px;}
.y5_c00323{bottom:1109.490000px;}
.y4_c00323{bottom:1140.450000px;}
.y1_c00323{bottom:1193.730000px;}
.h2_c00323{height:64.546875px;}
.h4_c00323{height:70.628906px;}
.h3_c00323{height:70.664062px;}
.h0_c00323{height:1262.880000px;}
.h1_c00323{height:1263.000000px;}
.w1_c00323{width:892.500000px;}
.w0_c00323{width:892.800000px;}
.x0_c00323{left:0.000000px;}
.x1_c00323{left:127.512000px;}
.x4_c00323{left:138.312000px;}
.x3_c00323{left:180.795000px;}
.x2_c00323{left:432.900000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ls1_c00323{letter-spacing:1.728000pt;}
.ws0_c00323{word-spacing:-64.000000pt;}
.ws1_c00323{word-spacing:0.000000pt;}
._1_c00323{margin-left:-2.432000pt;}
._2_c00323{margin-left:-1.152000pt;}
._0_c00323{width:0.960000pt;}
._4_c00323{width:2.048000pt;}
._b_c00323{width:3.008000pt;}
._3_c00323{width:4.160000pt;}
._5_c00323{width:5.824000pt;}
._7_c00323{width:7.168000pt;}
._8_c00323{width:8.832000pt;}
._d_c00323{width:9.728000pt;}
._e_c00323{width:11.072000pt;}
._11_c00323{width:12.544000pt;}
._12_c00323{width:13.824000pt;}
._c_c00323{width:15.104000pt;}
._14_c00323{width:17.472000pt;}
._9_c00323{width:18.560000pt;}
._a_c00323{width:20.160000pt;}
._13_c00323{width:21.120000pt;}
._f_c00323{width:25.472000pt;}
._10_c00323{width:27.200000pt;}
._6_c00323{width:135.050688pt;}
.fs0_c00323{font-size:64.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y3_c00323{bottom:50.880000pt;}
.y2_c00323{bottom:69.440000pt;}
.y23_c00323{bottom:109.792000pt;}
.y22_c00323{bottom:137.626667pt;}
.y21_c00323{bottom:165.146667pt;}
.y20_c00323{bottom:192.666667pt;}
.y1f_c00323{bottom:220.226667pt;}
.y1e_c00323{bottom:247.746667pt;}
.y1d_c00323{bottom:283.586667pt;}
.y1c_c00323{bottom:319.133333pt;}
.y1b_c00323{bottom:354.653333pt;}
.y1a_c00323{bottom:382.173333pt;}
.y19_c00323{bottom:410.013333pt;}
.y18_c00323{bottom:437.573333pt;}
.y17_c00323{bottom:465.093333pt;}
.y16_c00323{bottom:492.613333pt;}
.y15_c00323{bottom:520.453333pt;}
.y14_c00323{bottom:556.000000pt;}
.y13_c00323{bottom:583.520000pt;}
.y12_c00323{bottom:611.040000pt;}
.y11_c00323{bottom:638.906667pt;}
.y10_c00323{bottom:666.426667pt;}
.yf_c00323{bottom:693.946667pt;}
.ye_c00323{bottom:721.466667pt;}
.yd_c00323{bottom:749.346667pt;}
.yc_c00323{bottom:776.866667pt;}
.yb_c00323{bottom:804.386667pt;}
.ya_c00323{bottom:831.906667pt;}
.y9_c00323{bottom:859.773333pt;}
.y8_c00323{bottom:887.293333pt;}
.y7_c00323{bottom:914.813333pt;}
.y6_c00323{bottom:950.333333pt;}
.y5_c00323{bottom:986.213333pt;}
.y4_c00323{bottom:1013.733333pt;}
.y1_c00323{bottom:1061.093333pt;}
.h2_c00323{height:57.375000pt;}
.h4_c00323{height:62.781250pt;}
.h3_c00323{height:62.812500pt;}
.h0_c00323{height:1122.560000pt;}
.h1_c00323{height:1122.666667pt;}
.w1_c00323{width:793.333333pt;}
.w0_c00323{width:793.600000pt;}
.x0_c00323{left:0.000000pt;}
.x1_c00323{left:113.344000pt;}
.x4_c00323{left:122.944000pt;}
.x3_c00323{left:160.706667pt;}
.x2_c00323{left:384.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_c00324 {
    display:none;
  }
  .loading-indicator_c00324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00324 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00324 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00324" -> "#page-container .classname_c00324")
 */
.pf_c00324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00324 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00324 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00324 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00324 {overflow:visible;}
  }
}
.c_c00324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00324 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00324:after { /* webkit #35443 */
  content: '';
}
.t_c00324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00324 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00324 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00324 { /* info for Javascript */
  display:none;
}
.l_c00324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00324:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00324;src:url('chunks/assets/font_f3ddb91be14d2891e2b92c0a.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_2632fea39e87e534bd31783c.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_d63ecf28ef3034db37061a6e.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;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_c00324;src:url('chunks/assets/font_e2411ac04b2cd6aa13702ce9.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00324;src:url('chunks/assets/font_6b7a4327c84451d4a2575e6e.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00324;src:url('chunks/assets/font_c5ebb6c4ca92e5cb6b928538.woff2')format("woff");}.ff6_c00324{font-family:ff6_c00324;line-height:1.104004;font-style:normal;font-weight: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_c00324;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00324{font-family:ff7_c00324;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.lsc_c00324{letter-spacing:-2.880000px;}
.lsb_c00324{letter-spacing:-1.440000px;}
.ls10_c00324{letter-spacing:-1.416000px;}
.lse_c00324{letter-spacing:-1.056000px;}
.ls11_c00324{letter-spacing:-0.532800px;}
.ls12_c00324{letter-spacing:-0.241800px;}
.lsa_c00324{letter-spacing:0.000000px;}
.lsf_c00324{letter-spacing:0.022800px;}
.ls5_c00324{letter-spacing:0.032160px;}
.ls8_c00324{letter-spacing:0.048960px;}
.ls9_c00324{letter-spacing:0.168480px;}
.ls6_c00324{letter-spacing:0.200160px;}
.ls4_c00324{letter-spacing:0.518400px;}
.lsd_c00324{letter-spacing:0.521400px;}
.ls13_c00324{letter-spacing:0.529800px;}
.ls1_c00324{letter-spacing:0.720000px;}
.ls3_c00324{letter-spacing:0.732000px;}
.ls7_c00324{letter-spacing:0.900000px;}
.ls2_c00324{letter-spacing:2.160000px;}
.ls0_c00324{letter-spacing:23.760000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00324{word-spacing:-60.480000px;}
.ws0_c00324{word-spacing:-18.000000px;}
.ws2_c00324{word-spacing:-15.641400px;}
.ws3_c00324{word-spacing:-15.142800px;}
.ws1_c00324{word-spacing:-15.120000px;}
.ws6_c00324{word-spacing:-14.878200px;}
.ws4_c00324{word-spacing:-14.587200px;}
.ws7_c00324{word-spacing:0.000000px;}
._f_c00324{margin-left:-3.456000px;}
._0_c00324{margin-left:-2.016000px;}
._6_c00324{margin-left:-1.008000px;}
._1_c00324{width:1.368000px;}
._4_c00324{width:2.736000px;}
._e_c00324{width:4.392000px;}
._7_c00324{width:6.192000px;}
._5_c00324{width:7.704000px;}
._2_c00324{width:9.288000px;}
._3_c00324{width:10.440000px;}
._12_c00324{width:12.612024px;}
._a_c00324{width:14.184000px;}
._b_c00324{width:15.840000px;}
._c_c00324{width:16.992000px;}
._d_c00324{width:20.520000px;}
._9_c00324{width:22.392000px;}
._8_c00324{width:23.688000px;}
._10_c00324{width:38.808000px;}
._11_c00324{width:40.248000px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs1_c00324{font-size:60.480000px;}
.fs0_c00324{font-size:72.000000px;}
.y0_c00324{bottom:0.000000px;}
.y26_c00324{bottom:12.235500px;}
.y1e_c00324{bottom:12.585000px;}
.y25_c00324{bottom:38.149500px;}
.y3_c00324{bottom:57.240000px;}
.y24_c00324{bottom:64.069500px;}
.y2_c00324{bottom:78.120000px;}
.y23_c00324{bottom:89.989500px;}
.y22_c00324{bottom:115.954500px;}
.y1f_c00324{bottom:117.760500px;}
.y21_c00324{bottom:141.874500px;}
.y20_c00324{bottom:167.794500px;}
.y1d_c00324{bottom:299.610000px;}
.y1c_c00324{bottom:340.995000px;}
.y1b_c00324{bottom:371.985000px;}
.y1a_c00324{bottom:402.945000px;}
.y19_c00324{bottom:434.265000px;}
.y18_c00324{bottom:465.225000px;}
.y17_c00324{bottom:496.230000px;}
.y16_c00324{bottom:536.190000px;}
.y15_c00324{bottom:567.510000px;}
.y14_c00324{bottom:598.500000px;}
.y13_c00324{bottom:638.460000px;}
.y12_c00324{bottom:669.420000px;}
.y11_c00324{bottom:700.740000px;}
.y10_c00324{bottom:731.730000px;}
.yf_c00324{bottom:762.690000px;}
.ye_c00324{bottom:793.650000px;}
.yd_c00324{bottom:824.970000px;}
.yc_c00324{bottom:864.975000px;}
.yb_c00324{bottom:904.935000px;}
.ya_c00324{bottom:935.895000px;}
.y9_c00324{bottom:967.245000px;}
.y8_c00324{bottom:998.205000px;}
.y7_c00324{bottom:1038.165000px;}
.y6_c00324{bottom:1078.125000px;}
.y5_c00324{bottom:1109.490000px;}
.y4_c00324{bottom:1140.450000px;}
.y1_c00324{bottom:1193.730000px;}
.h5_c00324{height:25.905000px;}
.h6_c00324{height:59.357813px;}
.h8_c00324{height:60.952500px;}
.h2_c00324{height:64.546875px;}
.h4_c00324{height:70.628906px;}
.h3_c00324{height:70.664062px;}
.h7_c00324{height:181.105500px;}
.h0_c00324{height:1262.880000px;}
.h1_c00324{height:1263.000000px;}
.w2_c00324{width:323.415000px;}
.w3_c00324{width:323.775000px;}
.w1_c00324{width:892.500000px;}
.w0_c00324{width:892.800000px;}
.x0_c00324{left:0.000000px;}
.x6_c00324{left:7.582500px;}
.x5_c00324{left:119.929500px;}
.x1_c00324{left:127.512000px;}
.x4_c00324{left:178.635000px;}
.x3_c00324{left:180.795000px;}
.x2_c00324{left:432.900000px;}
.x7_c00324{left:444.060000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.lsc_c00324{letter-spacing:-2.560000pt;}
.lsb_c00324{letter-spacing:-1.280000pt;}
.ls10_c00324{letter-spacing:-1.258667pt;}
.lse_c00324{letter-spacing:-0.938667pt;}
.ls11_c00324{letter-spacing:-0.473600pt;}
.ls12_c00324{letter-spacing:-0.214933pt;}
.lsa_c00324{letter-spacing:0.000000pt;}
.lsf_c00324{letter-spacing:0.020267pt;}
.ls5_c00324{letter-spacing:0.028587pt;}
.ls8_c00324{letter-spacing:0.043520pt;}
.ls9_c00324{letter-spacing:0.149760pt;}
.ls6_c00324{letter-spacing:0.177920pt;}
.ls4_c00324{letter-spacing:0.460800pt;}
.lsd_c00324{letter-spacing:0.463467pt;}
.ls13_c00324{letter-spacing:0.470933pt;}
.ls1_c00324{letter-spacing:0.640000pt;}
.ls3_c00324{letter-spacing:0.650667pt;}
.ls7_c00324{letter-spacing:0.800000pt;}
.ls2_c00324{letter-spacing:1.920000pt;}
.ls0_c00324{letter-spacing:21.120000pt;}
.ws5_c00324{word-spacing:-53.760000pt;}
.ws0_c00324{word-spacing:-16.000000pt;}
.ws2_c00324{word-spacing:-13.903467pt;}
.ws3_c00324{word-spacing:-13.460267pt;}
.ws1_c00324{word-spacing:-13.440000pt;}
.ws6_c00324{word-spacing:-13.225067pt;}
.ws4_c00324{word-spacing:-12.966400pt;}
.ws7_c00324{word-spacing:0.000000pt;}
._f_c00324{margin-left:-3.072000pt;}
._0_c00324{margin-left:-1.792000pt;}
._6_c00324{margin-left:-0.896000pt;}
._1_c00324{width:1.216000pt;}
._4_c00324{width:2.432000pt;}
._e_c00324{width:3.904000pt;}
._7_c00324{width:5.504000pt;}
._5_c00324{width:6.848000pt;}
._2_c00324{width:8.256000pt;}
._3_c00324{width:9.280000pt;}
._12_c00324{width:11.210688pt;}
._a_c00324{width:12.608000pt;}
._b_c00324{width:14.080000pt;}
._c_c00324{width:15.104000pt;}
._d_c00324{width:18.240000pt;}
._9_c00324{width:19.904000pt;}
._8_c00324{width:21.056000pt;}
._10_c00324{width:34.496000pt;}
._11_c00324{width:35.776000pt;}
.fs1_c00324{font-size:53.760000pt;}
.fs0_c00324{font-size:64.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y26_c00324{bottom:10.876000pt;}
.y1e_c00324{bottom:11.186667pt;}
.y25_c00324{bottom:33.910667pt;}
.y3_c00324{bottom:50.880000pt;}
.y24_c00324{bottom:56.950667pt;}
.y2_c00324{bottom:69.440000pt;}
.y23_c00324{bottom:79.990667pt;}
.y22_c00324{bottom:103.070667pt;}
.y1f_c00324{bottom:104.676000pt;}
.y21_c00324{bottom:126.110667pt;}
.y20_c00324{bottom:149.150667pt;}
.y1d_c00324{bottom:266.320000pt;}
.y1c_c00324{bottom:303.106667pt;}
.y1b_c00324{bottom:330.653333pt;}
.y1a_c00324{bottom:358.173333pt;}
.y19_c00324{bottom:386.013333pt;}
.y18_c00324{bottom:413.533333pt;}
.y17_c00324{bottom:441.093333pt;}
.y16_c00324{bottom:476.613333pt;}
.y15_c00324{bottom:504.453333pt;}
.y14_c00324{bottom:532.000000pt;}
.y13_c00324{bottom:567.520000pt;}
.y12_c00324{bottom:595.040000pt;}
.y11_c00324{bottom:622.880000pt;}
.y10_c00324{bottom:650.426667pt;}
.yf_c00324{bottom:677.946667pt;}
.ye_c00324{bottom:705.466667pt;}
.yd_c00324{bottom:733.306667pt;}
.yc_c00324{bottom:768.866667pt;}
.yb_c00324{bottom:804.386667pt;}
.ya_c00324{bottom:831.906667pt;}
.y9_c00324{bottom:859.773333pt;}
.y8_c00324{bottom:887.293333pt;}
.y7_c00324{bottom:922.813333pt;}
.y6_c00324{bottom:958.333333pt;}
.y5_c00324{bottom:986.213333pt;}
.y4_c00324{bottom:1013.733333pt;}
.y1_c00324{bottom:1061.093333pt;}
.h5_c00324{height:23.026667pt;}
.h6_c00324{height:52.762500pt;}
.h8_c00324{height:54.180000pt;}
.h2_c00324{height:57.375000pt;}
.h4_c00324{height:62.781250pt;}
.h3_c00324{height:62.812500pt;}
.h7_c00324{height:160.982667pt;}
.h0_c00324{height:1122.560000pt;}
.h1_c00324{height:1122.666667pt;}
.w2_c00324{width:287.480000pt;}
.w3_c00324{width:287.800000pt;}
.w1_c00324{width:793.333333pt;}
.w0_c00324{width:793.600000pt;}
.x0_c00324{left:0.000000pt;}
.x6_c00324{left:6.740000pt;}
.x5_c00324{left:106.604000pt;}
.x1_c00324{left:113.344000pt;}
.x4_c00324{left:158.786667pt;}
.x3_c00324{left:160.706667pt;}
.x2_c00324{left:384.800000pt;}
.x7_c00324{left:394.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_c00325 {
    display:none;
  }
  .loading-indicator_c00325.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00325 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00325 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00325" -> "#page-container .classname_c00325")
 */
.pf_c00325 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00325 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00325 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00325 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00325 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00325 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00325 {overflow:visible;}
  }
}
.c_c00325 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00325 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00325:after { /* webkit #35443 */
  content: '';
}
.t_c00325:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00325 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00325 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00325 { /* info for Javascript */
  display:none;
}
.l_c00325 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00325 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00325 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00325:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00325;src:url('chunks/assets/font_2bde916a3779b3399bbbe027.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00325;src:url('chunks/assets/font_22a5b0e45a1c4da85e88037c.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_b9e2b2d14c02d39c79220619.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_b9f52aa4e2cf9008d19584e6.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00325;src:url('chunks/assets/font_d0812b536e8ebbef29483583.woff2')format("woff");}.ff6_c00325{font-family:ff6_c00325;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_c00325;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff7_c00325{font-family:ff7_c00325;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls12_c00325{letter-spacing:-1.416000px;}
.ls16_c00325{letter-spacing:-1.128000px;}
.ls15_c00325{letter-spacing:-0.912000px;}
.lsc_c00325{letter-spacing:-0.532800px;}
.ls10_c00325{letter-spacing:-0.241800px;}
.lsb_c00325{letter-spacing:0.000000px;}
.ls9_c00325{letter-spacing:0.020400px;}
.ls13_c00325{letter-spacing:0.022800px;}
.ls1_c00325{letter-spacing:0.032160px;}
.ls6_c00325{letter-spacing:0.048960px;}
.ls14_c00325{letter-spacing:0.166800px;}
.ls5_c00325{letter-spacing:0.302400px;}
.ls11_c00325{letter-spacing:0.507000px;}
.ls3_c00325{letter-spacing:0.518400px;}
.lsf_c00325{letter-spacing:0.521400px;}
.ls2_c00325{letter-spacing:0.524160px;}
.lsd_c00325{letter-spacing:0.529800px;}
.lse_c00325{letter-spacing:0.702000px;}
.ls0_c00325{letter-spacing:0.720000px;}
.ls4_c00325{letter-spacing:0.732000px;}
.lsa_c00325{letter-spacing:0.792000px;}
.ls7_c00325{letter-spacing:0.840000px;}
.ls8_c00325{letter-spacing:0.900000px;}
.ls17_c00325{letter-spacing:12.240000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00325{word-spacing:-72.000000px;}
.wsa_c00325{word-spacing:-18.000000px;}
.ws2_c00325{word-spacing:-15.822000px;}
.ws3_c00325{word-spacing:-15.641400px;}
.ws6_c00325{word-spacing:-15.286800px;}
.ws5_c00325{word-spacing:-15.142800px;}
.ws9_c00325{word-spacing:-15.140400px;}
.ws0_c00325{word-spacing:-15.120000px;}
.ws4_c00325{word-spacing:-14.878200px;}
.ws1_c00325{word-spacing:-14.587200px;}
.ws8_c00325{word-spacing:-14.208000px;}
.ws7_c00325{word-spacing:-13.992000px;}
.wsc_c00325{word-spacing:0.000000px;}
._2_c00325{margin-left:-3.109682px;}
._0_c00325{margin-left:-1.961280px;}
._1_c00325{width:1.572601px;}
._3_c00325{width:2.760119px;}
._5_c00325{width:4.993081px;}
._6_c00325{width:6.436679px;}
._7_c00325{width:7.878952px;}
._a_c00325{width:11.789760px;}
._b_c00325{width:13.695235px;}
._8_c00325{width:23.400000px;}
._9_c00325{width:24.868679px;}
._4_c00325{width:2253.732000px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs1_c00325{font-size:60.480000px;}
.fs0_c00325{font-size:72.000000px;}
.y0_c00325{bottom:0.000000px;}
.y27_c00325{bottom:12.585000px;}
.y26_c00325{bottom:38.505000px;}
.y3_c00325{bottom:57.240000px;}
.y25_c00325{bottom:64.425000px;}
.y2_c00325{bottom:78.120000px;}
.y24_c00325{bottom:90.345000px;}
.y2c_c00325{bottom:114.156000px;}
.y23_c00325{bottom:116.295000px;}
.y22_c00325{bottom:142.215000px;}
.y2b_c00325{bottom:145.116000px;}
.y21_c00325{bottom:167.775000px;}
.y2a_c00325{bottom:176.070000px;}
.y20_c00325{bottom:193.695000px;}
.y29_c00325{bottom:207.030000px;}
.y1f_c00325{bottom:219.615000px;}
.y28_c00325{bottom:235.875000px;}
.y1e_c00325{bottom:245.580000px;}
.y4_c00325{bottom:249.930000px;}
.y1d_c00325{bottom:271.500000px;}
.y1c_c00325{bottom:297.420000px;}
.y1b_c00325{bottom:323.340000px;}
.y1a_c00325{bottom:348.930000px;}
.y19_c00325{bottom:374.850000px;}
.y18_c00325{bottom:400.770000px;}
.y17_c00325{bottom:426.690000px;}
.y16_c00325{bottom:452.610000px;}
.y15_c00325{bottom:478.560000px;}
.y14_c00325{bottom:504.480000px;}
.y13_c00325{bottom:530.400000px;}
.y12_c00325{bottom:555.960000px;}
.y11_c00325{bottom:581.880000px;}
.y10_c00325{bottom:607.845000px;}
.yf_c00325{bottom:633.765000px;}
.ye_c00325{bottom:659.685000px;}
.yd_c00325{bottom:685.605000px;}
.yc_c00325{bottom:711.525000px;}
.yb_c00325{bottom:737.115000px;}
.ya_c00325{bottom:763.035000px;}
.y9_c00325{bottom:788.955000px;}
.y8_c00325{bottom:814.875000px;}
.y7_c00325{bottom:840.840000px;}
.y6_c00325{bottom:866.760000px;}
.y5_c00325{bottom:892.680000px;}
.y1_c00325{bottom:1193.730000px;}
.h5_c00325{height:59.357813px;}
.h4_c00325{height:60.952500px;}
.h2_c00325{height:64.546875px;}
.h6_c00325{height:70.664062px;}
.h3_c00325{height:905.985000px;}
.h0_c00325{height:1262.880000px;}
.h1_c00325{height:1263.000000px;}
.w2_c00325{width:323.415000px;}
.w3_c00325{width:323.775000px;}
.w1_c00325{width:892.500000px;}
.w0_c00325{width:892.800000px;}
.x0_c00325{left:0.000000px;}
.x4_c00325{left:7.582500px;}
.x3_c00325{left:119.929500px;}
.x1_c00325{left:127.512000px;}
.x6_c00325{left:178.635000px;}
.x2_c00325{left:432.900000px;}
.x5_c00325{left:444.060000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls12_c00325{letter-spacing:-1.258667pt;}
.ls16_c00325{letter-spacing:-1.002667pt;}
.ls15_c00325{letter-spacing:-0.810667pt;}
.lsc_c00325{letter-spacing:-0.473600pt;}
.ls10_c00325{letter-spacing:-0.214933pt;}
.lsb_c00325{letter-spacing:0.000000pt;}
.ls9_c00325{letter-spacing:0.018133pt;}
.ls13_c00325{letter-spacing:0.020267pt;}
.ls1_c00325{letter-spacing:0.028587pt;}
.ls6_c00325{letter-spacing:0.043520pt;}
.ls14_c00325{letter-spacing:0.148267pt;}
.ls5_c00325{letter-spacing:0.268800pt;}
.ls11_c00325{letter-spacing:0.450667pt;}
.ls3_c00325{letter-spacing:0.460800pt;}
.lsf_c00325{letter-spacing:0.463467pt;}
.ls2_c00325{letter-spacing:0.465920pt;}
.lsd_c00325{letter-spacing:0.470933pt;}
.lse_c00325{letter-spacing:0.624000pt;}
.ls0_c00325{letter-spacing:0.640000pt;}
.ls4_c00325{letter-spacing:0.650667pt;}
.lsa_c00325{letter-spacing:0.704000pt;}
.ls7_c00325{letter-spacing:0.746667pt;}
.ls8_c00325{letter-spacing:0.800000pt;}
.ls17_c00325{letter-spacing:10.880000pt;}
.wsb_c00325{word-spacing:-64.000000pt;}
.wsa_c00325{word-spacing:-16.000000pt;}
.ws2_c00325{word-spacing:-14.064000pt;}
.ws3_c00325{word-spacing:-13.903467pt;}
.ws6_c00325{word-spacing:-13.588267pt;}
.ws5_c00325{word-spacing:-13.460267pt;}
.ws9_c00325{word-spacing:-13.458133pt;}
.ws0_c00325{word-spacing:-13.440000pt;}
.ws4_c00325{word-spacing:-13.225067pt;}
.ws1_c00325{word-spacing:-12.966400pt;}
.ws8_c00325{word-spacing:-12.629333pt;}
.ws7_c00325{word-spacing:-12.437333pt;}
.wsc_c00325{word-spacing:0.000000pt;}
._2_c00325{margin-left:-2.764162pt;}
._0_c00325{margin-left:-1.743360pt;}
._1_c00325{width:1.397868pt;}
._3_c00325{width:2.453439pt;}
._5_c00325{width:4.438294pt;}
._6_c00325{width:5.721492pt;}
._7_c00325{width:7.003513pt;}
._a_c00325{width:10.479787pt;}
._b_c00325{width:12.173542pt;}
._8_c00325{width:20.800000pt;}
._9_c00325{width:22.105492pt;}
._4_c00325{width:2003.317333pt;}
.fs1_c00325{font-size:53.760000pt;}
.fs0_c00325{font-size:64.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y27_c00325{bottom:11.186667pt;}
.y26_c00325{bottom:34.226667pt;}
.y3_c00325{bottom:50.880000pt;}
.y25_c00325{bottom:57.266667pt;}
.y2_c00325{bottom:69.440000pt;}
.y24_c00325{bottom:80.306667pt;}
.y2c_c00325{bottom:101.472000pt;}
.y23_c00325{bottom:103.373333pt;}
.y22_c00325{bottom:126.413333pt;}
.y2b_c00325{bottom:128.992000pt;}
.y21_c00325{bottom:149.133333pt;}
.y2a_c00325{bottom:156.506667pt;}
.y20_c00325{bottom:172.173333pt;}
.y29_c00325{bottom:184.026667pt;}
.y1f_c00325{bottom:195.213333pt;}
.y28_c00325{bottom:209.666667pt;}
.y1e_c00325{bottom:218.293333pt;}
.y4_c00325{bottom:222.160000pt;}
.y1d_c00325{bottom:241.333333pt;}
.y1c_c00325{bottom:264.373333pt;}
.y1b_c00325{bottom:287.413333pt;}
.y1a_c00325{bottom:310.160000pt;}
.y19_c00325{bottom:333.200000pt;}
.y18_c00325{bottom:356.240000pt;}
.y17_c00325{bottom:379.280000pt;}
.y16_c00325{bottom:402.320000pt;}
.y15_c00325{bottom:425.386667pt;}
.y14_c00325{bottom:448.426667pt;}
.y13_c00325{bottom:471.466667pt;}
.y12_c00325{bottom:494.186667pt;}
.y11_c00325{bottom:517.226667pt;}
.y10_c00325{bottom:540.306667pt;}
.yf_c00325{bottom:563.346667pt;}
.ye_c00325{bottom:586.386667pt;}
.yd_c00325{bottom:609.426667pt;}
.yc_c00325{bottom:632.466667pt;}
.yb_c00325{bottom:655.213333pt;}
.ya_c00325{bottom:678.253333pt;}
.y9_c00325{bottom:701.293333pt;}
.y8_c00325{bottom:724.333333pt;}
.y7_c00325{bottom:747.413333pt;}
.y6_c00325{bottom:770.453333pt;}
.y5_c00325{bottom:793.493333pt;}
.y1_c00325{bottom:1061.093333pt;}
.h5_c00325{height:52.762500pt;}
.h4_c00325{height:54.180000pt;}
.h2_c00325{height:57.375000pt;}
.h6_c00325{height:62.812500pt;}
.h3_c00325{height:805.320000pt;}
.h0_c00325{height:1122.560000pt;}
.h1_c00325{height:1122.666667pt;}
.w2_c00325{width:287.480000pt;}
.w3_c00325{width:287.800000pt;}
.w1_c00325{width:793.333333pt;}
.w0_c00325{width:793.600000pt;}
.x0_c00325{left:0.000000pt;}
.x4_c00325{left:6.740000pt;}
.x3_c00325{left:106.604000pt;}
.x1_c00325{left:113.344000pt;}
.x6_c00325{left:158.786667pt;}
.x2_c00325{left:384.800000pt;}
.x5_c00325{left:394.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_c00326 {
    display:none;
  }
  .loading-indicator_c00326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00326 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00326 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00326" -> "#page-container .classname_c00326")
 */
.pf_c00326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00326 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00326 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00326 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00326 {overflow:visible;}
  }
}
.c_c00326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00326 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00326:after { /* webkit #35443 */
  content: '';
}
.t_c00326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00326 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00326 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00326 { /* info for Javascript */
  display:none;
}
.l_c00326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00326:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00326;src:url('chunks/assets/font_fc2940bd14a0a23c965dc4cf.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_c32bb0ee4d7e36038387fcf3.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_03d38d37668d8116f61d56fd.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;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_c00326;src:url('chunks/assets/font_a6d31141204d8f28d64a576a.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00326;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00326{font-family:ff5_c00326;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00326;src:url('chunks/assets/font_17658fdf1424aeaef29c8816.woff2')format("woff");}.ff6_c00326{font-family:ff6_c00326;line-height:1.112305;font-style:normal;font-weight: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_c00326;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff7_c00326{font-family:ff7_c00326;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.lsd_c00326{letter-spacing:-2.880000px;}
.lsc_c00326{letter-spacing:-1.440000px;}
.ls13_c00326{letter-spacing:-0.972000px;}
.ls10_c00326{letter-spacing:-0.912000px;}
.lsf_c00326{letter-spacing:-0.738000px;}
.lse_c00326{letter-spacing:-0.466800px;}
.ls15_c00326{letter-spacing:-0.429000px;}
.lsb_c00326{letter-spacing:0.000000px;}
.ls16_c00326{letter-spacing:0.022800px;}
.ls9_c00326{letter-spacing:0.048960px;}
.ls7_c00326{letter-spacing:0.302400px;}
.ls12_c00326{letter-spacing:0.466800px;}
.ls14_c00326{letter-spacing:0.518400px;}
.ls11_c00326{letter-spacing:0.521400px;}
.ls3_c00326{letter-spacing:0.720000px;}
.ls6_c00326{letter-spacing:0.740042px;}
.ls0_c00326{letter-spacing:0.792000px;}
.lsa_c00326{letter-spacing:0.900000px;}
.ls4_c00326{letter-spacing:2.160000px;}
.ls8_c00326{letter-spacing:2.180160px;}
.ls5_c00326{letter-spacing:2.180389px;}
.ls1_c00326{letter-spacing:6.480000px;}
.ls2_c00326{letter-spacing:12.420000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:-18.000000px;}
.ws4_c00326{word-spacing:-15.641400px;}
.ws5_c00326{word-spacing:-15.638400px;}
.ws1_c00326{word-spacing:-15.120000px;}
.ws6_c00326{word-spacing:-14.691000px;}
.ws2_c00326{word-spacing:-14.653200px;}
.ws3_c00326{word-spacing:-14.382000px;}
.ws7_c00326{word-spacing:0.000000px;}
._1_c00326{margin-left:-2.736000px;}
._3_c00326{margin-left:-1.296000px;}
._0_c00326{width:1.080000px;}
._5_c00326{width:2.327904px;}
._6_c00326{width:3.672000px;}
._b_c00326{width:4.800096px;}
._c_c00326{width:5.820408px;}
._13_c00326{width:7.031376px;}
._4_c00326{width:8.328024px;}
._2_c00326{width:9.576000px;}
._12_c00326{width:10.607904px;}
._10_c00326{width:11.640096px;}
._f_c00326{width:13.680000px;}
._11_c00326{width:15.227640px;}
._7_c00326{width:16.488000px;}
._e_c00326{width:20.016000px;}
._d_c00326{width:21.384000px;}
._15_c00326{width:25.992000px;}
._14_c00326{width:27.864000px;}
._9_c00326{width:30.312288px;}
._8_c00326{width:31.464000px;}
._a_c00326{width:32.615424px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs2_c00326{font-size:38.880000px;}
.fs1_c00326{font-size:47.520000px;}
.fs3_c00326{font-size:60.480000px;}
.fs0_c00326{font-size:72.000000px;}
.y0_c00326{bottom:0.000000px;}
.y3_c00326{bottom:57.240000px;}
.y2_c00326{bottom:78.120000px;}
.y2b_c00326{bottom:130.716000px;}
.y2a_c00326{bottom:147.996000px;}
.y29_c00326{bottom:165.270000px;}
.y28_c00326{bottom:172.110000px;}
.y27_c00326{bottom:182.190000px;}
.y26_c00326{bottom:199.470000px;}
.y25_c00326{bottom:216.750000px;}
.y24_c00326{bottom:234.075000px;}
.y23_c00326{bottom:251.355000px;}
.y22_c00326{bottom:268.635000px;}
.y21_c00326{bottom:275.475000px;}
.y20_c00326{bottom:285.915000px;}
.y1f_c00326{bottom:292.755000px;}
.y1e_c00326{bottom:303.555000px;}
.y1d_c00326{bottom:429.945000px;}
.y1c_c00326{bottom:461.265000px;}
.y1b_c00326{bottom:492.270000px;}
.y1a_c00326{bottom:523.230000px;}
.y19_c00326{bottom:563.190000px;}
.y18_c00326{bottom:594.510000px;}
.y17_c00326{bottom:625.500000px;}
.y15_c00326{bottom:656.460000px;}
.y16_c00326{bottom:664.740000px;}
.y13_c00326{bottom:687.420000px;}
.y14_c00326{bottom:695.700000px;}
.y12_c00326{bottom:718.770000px;}
.y11_c00326{bottom:749.730000px;}
.y10_c00326{bottom:789.690000px;}
.yf_c00326{bottom:820.650000px;}
.ye_c00326{bottom:852.015000px;}
.yd_c00326{bottom:882.975000px;}
.yc_c00326{bottom:913.935000px;}
.yb_c00326{bottom:944.895000px;}
.ya_c00326{bottom:976.245000px;}
.y9_c00326{bottom:1016.205000px;}
.y7_c00326{bottom:1047.165000px;}
.y8_c00326{bottom:1055.445000px;}
.y6_c00326{bottom:1078.125000px;}
.y5_c00326{bottom:1109.490000px;}
.y4_c00326{bottom:1140.450000px;}
.y1_c00326{bottom:1193.730000px;}
.h7_c00326{height:34.855313px;}
.h9_c00326{height:38.158594px;}
.h5_c00326{height:46.638281px;}
.h8_c00326{height:54.514688px;}
.ha_c00326{height:59.357813px;}
.h2_c00326{height:64.546875px;}
.h3_c00326{height:70.664062px;}
.h6_c00326{height:72.562500px;}
.h4_c00326{height:1262.875500px;}
.h0_c00326{height:1262.880000px;}
.h1_c00326{height:1263.000000px;}
.w1_c00326{width:892.500000px;}
.w2_c00326{width:892.797000px;}
.w0_c00326{width:892.800000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:127.512000px;}
.xb_c00326{left:142.632000px;}
.x5_c00326{left:178.635000px;}
.x3_c00326{left:288.462000px;}
.x4_c00326{left:306.870000px;}
.xa_c00326{left:343.590000px;}
.x8_c00326{left:357.267000px;}
.x9_c00326{left:375.630000px;}
.x2_c00326{left:432.900000px;}
.x6_c00326{left:554.292000px;}
.x7_c00326{left:572.655000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.lsd_c00326{letter-spacing:-2.560000pt;}
.lsc_c00326{letter-spacing:-1.280000pt;}
.ls13_c00326{letter-spacing:-0.864000pt;}
.ls10_c00326{letter-spacing:-0.810667pt;}
.lsf_c00326{letter-spacing:-0.656000pt;}
.lse_c00326{letter-spacing:-0.414933pt;}
.ls15_c00326{letter-spacing:-0.381333pt;}
.lsb_c00326{letter-spacing:0.000000pt;}
.ls16_c00326{letter-spacing:0.020267pt;}
.ls9_c00326{letter-spacing:0.043520pt;}
.ls7_c00326{letter-spacing:0.268800pt;}
.ls12_c00326{letter-spacing:0.414933pt;}
.ls14_c00326{letter-spacing:0.460800pt;}
.ls11_c00326{letter-spacing:0.463467pt;}
.ls3_c00326{letter-spacing:0.640000pt;}
.ls6_c00326{letter-spacing:0.657815pt;}
.ls0_c00326{letter-spacing:0.704000pt;}
.lsa_c00326{letter-spacing:0.800000pt;}
.ls4_c00326{letter-spacing:1.920000pt;}
.ls8_c00326{letter-spacing:1.937920pt;}
.ls5_c00326{letter-spacing:1.938124pt;}
.ls1_c00326{letter-spacing:5.760000pt;}
.ls2_c00326{letter-spacing:11.040000pt;}
.ws0_c00326{word-spacing:-16.000000pt;}
.ws4_c00326{word-spacing:-13.903467pt;}
.ws5_c00326{word-spacing:-13.900800pt;}
.ws1_c00326{word-spacing:-13.440000pt;}
.ws6_c00326{word-spacing:-13.058667pt;}
.ws2_c00326{word-spacing:-13.025067pt;}
.ws3_c00326{word-spacing:-12.784000pt;}
.ws7_c00326{word-spacing:0.000000pt;}
._1_c00326{margin-left:-2.432000pt;}
._3_c00326{margin-left:-1.152000pt;}
._0_c00326{width:0.960000pt;}
._5_c00326{width:2.069248pt;}
._6_c00326{width:3.264000pt;}
._b_c00326{width:4.266752pt;}
._c_c00326{width:5.173696pt;}
._13_c00326{width:6.250112pt;}
._4_c00326{width:7.402688pt;}
._2_c00326{width:8.512000pt;}
._12_c00326{width:9.429248pt;}
._10_c00326{width:10.346752pt;}
._f_c00326{width:12.160000pt;}
._11_c00326{width:13.535680pt;}
._7_c00326{width:14.656000pt;}
._e_c00326{width:17.792000pt;}
._d_c00326{width:19.008000pt;}
._15_c00326{width:23.104000pt;}
._14_c00326{width:24.768000pt;}
._9_c00326{width:26.944256pt;}
._8_c00326{width:27.968000pt;}
._a_c00326{width:28.991488pt;}
.fs2_c00326{font-size:34.560000pt;}
.fs1_c00326{font-size:42.240000pt;}
.fs3_c00326{font-size:53.760000pt;}
.fs0_c00326{font-size:64.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y3_c00326{bottom:50.880000pt;}
.y2_c00326{bottom:69.440000pt;}
.y2b_c00326{bottom:116.192000pt;}
.y2a_c00326{bottom:131.552000pt;}
.y29_c00326{bottom:146.906667pt;}
.y28_c00326{bottom:152.986667pt;}
.y27_c00326{bottom:161.946667pt;}
.y26_c00326{bottom:177.306667pt;}
.y25_c00326{bottom:192.666667pt;}
.y24_c00326{bottom:208.066667pt;}
.y23_c00326{bottom:223.426667pt;}
.y22_c00326{bottom:238.786667pt;}
.y21_c00326{bottom:244.866667pt;}
.y20_c00326{bottom:254.146667pt;}
.y1f_c00326{bottom:260.226667pt;}
.y1e_c00326{bottom:269.826667pt;}
.y1d_c00326{bottom:382.173333pt;}
.y1c_c00326{bottom:410.013333pt;}
.y1b_c00326{bottom:437.573333pt;}
.y1a_c00326{bottom:465.093333pt;}
.y19_c00326{bottom:500.613333pt;}
.y18_c00326{bottom:528.453333pt;}
.y17_c00326{bottom:556.000000pt;}
.y15_c00326{bottom:583.520000pt;}
.y16_c00326{bottom:590.880000pt;}
.y13_c00326{bottom:611.040000pt;}
.y14_c00326{bottom:618.400000pt;}
.y12_c00326{bottom:638.906667pt;}
.y11_c00326{bottom:666.426667pt;}
.y10_c00326{bottom:701.946667pt;}
.yf_c00326{bottom:729.466667pt;}
.ye_c00326{bottom:757.346667pt;}
.yd_c00326{bottom:784.866667pt;}
.yc_c00326{bottom:812.386667pt;}
.yb_c00326{bottom:839.906667pt;}
.ya_c00326{bottom:867.773333pt;}
.y9_c00326{bottom:903.293333pt;}
.y7_c00326{bottom:930.813333pt;}
.y8_c00326{bottom:938.173333pt;}
.y6_c00326{bottom:958.333333pt;}
.y5_c00326{bottom:986.213333pt;}
.y4_c00326{bottom:1013.733333pt;}
.y1_c00326{bottom:1061.093333pt;}
.h7_c00326{height:30.982500pt;}
.h9_c00326{height:33.918750pt;}
.h5_c00326{height:41.456250pt;}
.h8_c00326{height:48.457500pt;}
.ha_c00326{height:52.762500pt;}
.h2_c00326{height:57.375000pt;}
.h3_c00326{height:62.812500pt;}
.h6_c00326{height:64.500000pt;}
.h4_c00326{height:1122.556000pt;}
.h0_c00326{height:1122.560000pt;}
.h1_c00326{height:1122.666667pt;}
.w1_c00326{width:793.333333pt;}
.w2_c00326{width:793.597333pt;}
.w0_c00326{width:793.600000pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:113.344000pt;}
.xb_c00326{left:126.784000pt;}
.x5_c00326{left:158.786667pt;}
.x3_c00326{left:256.410667pt;}
.x4_c00326{left:272.773333pt;}
.xa_c00326{left:305.413333pt;}
.x8_c00326{left:317.570667pt;}
.x9_c00326{left:333.893333pt;}
.x2_c00326{left:384.800000pt;}
.x6_c00326{left:492.704000pt;}
.x7_c00326{left:509.026667pt;}
}





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

.ir_c00327:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00327;src:url('chunks/assets/font_7d66509668c15a6ab9f04297.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_36c34e6ecb6a87a62cee9948.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_3b1b2d99b6b9582be293c8ed.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00327;src:url('chunks/assets/font_30916b6570c4e3e03543605c.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;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_c00327;src:url('chunks/assets/font_bb42b9726b579d2cd9249d7a.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00327;src:url('chunks/assets/font_9607fec14a453d93aa4e4f2c.woff2')format("woff");}.ff6_c00327{font-family:ff6_c00327;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls7_c00327{letter-spacing:-1.740000px;}
.ls9_c00327{letter-spacing:-0.720000px;}
.ls5_c00327{letter-spacing:0.000000px;}
.ls4_c00327{letter-spacing:0.020400px;}
.ls6_c00327{letter-spacing:0.022800px;}
.ls3_c00327{letter-spacing:0.048960px;}
.lsb_c00327{letter-spacing:0.060600px;}
.ls2_c00327{letter-spacing:0.466560px;}
.ls1_c00327{letter-spacing:0.518400px;}
.ls8_c00327{letter-spacing:0.529800px;}
.lsa_c00327{letter-spacing:0.702000px;}
.ls0_c00327{letter-spacing:0.720000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00327{word-spacing:-15.822000px;}
.ws6_c00327{word-spacing:-15.180600px;}
.ws7_c00327{word-spacing:-15.142800px;}
.ws8_c00327{word-spacing:-15.140400px;}
.ws0_c00327{word-spacing:-15.120000px;}
.ws2_c00327{word-spacing:-13.380000px;}
.ws3_c00327{word-spacing:-12.600000px;}
.ws1_c00327{word-spacing:-11.880000px;}
.ws4_c00327{word-spacing:-11.160000px;}
.ws9_c00327{word-spacing:0.000000px;}
._5_c00327{margin-left:-2.736000px;}
._2_c00327{margin-left:-1.224000px;}
._0_c00327{width:1.008000px;}
._7_c00327{width:2.448000px;}
._8_c00327{width:3.672000px;}
._3_c00327{width:5.112000px;}
._1_c00327{width:6.408000px;}
._6_c00327{width:7.488000px;}
._4_c00327{width:8.568000px;}
._a_c00327{width:9.995976px;}
._9_c00327{width:186.600000px;}
.fc1_c00327{color:transparent;}
.fc0_c00327{color:rgb(0,0,0);}
.fs2_c00327{font-size:47.520000px;}
.fs1_c00327{font-size:60.480000px;}
.fs0_c00327{font-size:72.000000px;}
.y0_c00327{bottom:0.000000px;}
.yc_c00327{bottom:12.585000px;}
.y1d_c00327{bottom:12.600000px;}
.y24_c00327{bottom:15.825000px;}
.y23_c00327{bottom:16.185000px;}
.y27_c00327{bottom:17.265000px;}
.y2d_c00327{bottom:17.269500px;}
.y29_c00327{bottom:17.310000px;}
.y1c_c00327{bottom:38.160000px;}
.y3_c00327{bottom:57.240000px;}
.y1b_c00327{bottom:64.080000px;}
.y2_c00327{bottom:78.120000px;}
.y1a_c00327{bottom:90.000000px;}
.y19_c00327{bottom:115.950000px;}
.y2c_c00327{bottom:134.320500px;}
.y18_c00327{bottom:141.870000px;}
.y2b_c00327{bottom:165.645000px;}
.y17_c00327{bottom:167.790000px;}
.y16_c00327{bottom:193.710000px;}
.y2a_c00327{bottom:196.965000px;}
.y15_c00327{bottom:219.270000px;}
.y28_c00327{bottom:227.205000px;}
.y14_c00327{bottom:245.220000px;}
.y26_c00327{bottom:258.570000px;}
.y13_c00327{bottom:271.140000px;}
.y25_c00327{bottom:289.890000px;}
.y12_c00327{bottom:297.060000px;}
.y22_c00327{bottom:320.130000px;}
.y11_c00327{bottom:322.980000px;}
.y10_c00327{bottom:348.945000px;}
.y21_c00327{bottom:365.145000px;}
.yf_c00327{bottom:374.865000px;}
.ye_c00327{bottom:400.785000px;}
.y20_c00327{bottom:414.105000px;}
.y1f_c00327{bottom:445.065000px;}
.y1e_c00327{bottom:476.430000px;}
.yd_c00327{bottom:493.350000px;}
.yb_c00327{bottom:908.190000px;}
.ya_c00327{bottom:949.575000px;}
.y9_c00327{bottom:980.565000px;}
.y8_c00327{bottom:1011.525000px;}
.y7_c00327{bottom:1042.845000px;}
.y6_c00327{bottom:1073.805000px;}
.y5_c00327{bottom:1109.490000px;}
.y4_c00327{bottom:1140.090000px;}
.y1_c00327{bottom:1193.730000px;}
.h5_c00327{height:25.905000px;}
.h8_c00327{height:29.505000px;}
.ha_c00327{height:30.585000px;}
.hc_c00327{height:30.595500px;}
.hb_c00327{height:30.621000px;}
.h6_c00327{height:59.357813px;}
.h9_c00327{height:60.952500px;}
.h2_c00327{height:64.546875px;}
.h3_c00327{height:70.628906px;}
.h4_c00327{height:70.664062px;}
.h7_c00327{height:414.105000px;}
.h0_c00327{height:1262.880000px;}
.h1_c00327{height:1263.000000px;}
.w4_c00327{width:160.245000px;}
.w5_c00327{width:160.275000px;}
.w2_c00327{width:323.415000px;}
.w3_c00327{width:323.775000px;}
.w1_c00327{width:892.500000px;}
.w0_c00327{width:892.800000px;}
.x0_c00327{left:0.000000px;}
.x5_c00327{left:7.582500px;}
.x4_c00327{left:119.929500px;}
.x1_c00327{left:127.512000px;}
.x3_c00327{left:178.635000px;}
.x7_c00327{left:280.905000px;}
.x2_c00327{left:432.900000px;}
.x8_c00327{left:442.260000px;}
.x6_c00327{left:444.060000px;}
.x9_c00327{left:603.270000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls7_c00327{letter-spacing:-1.546667pt;}
.ls9_c00327{letter-spacing:-0.640000pt;}
.ls5_c00327{letter-spacing:0.000000pt;}
.ls4_c00327{letter-spacing:0.018133pt;}
.ls6_c00327{letter-spacing:0.020267pt;}
.ls3_c00327{letter-spacing:0.043520pt;}
.lsb_c00327{letter-spacing:0.053867pt;}
.ls2_c00327{letter-spacing:0.414720pt;}
.ls1_c00327{letter-spacing:0.460800pt;}
.ls8_c00327{letter-spacing:0.470933pt;}
.lsa_c00327{letter-spacing:0.624000pt;}
.ls0_c00327{letter-spacing:0.640000pt;}
.ws5_c00327{word-spacing:-14.064000pt;}
.ws6_c00327{word-spacing:-13.493867pt;}
.ws7_c00327{word-spacing:-13.460267pt;}
.ws8_c00327{word-spacing:-13.458133pt;}
.ws0_c00327{word-spacing:-13.440000pt;}
.ws2_c00327{word-spacing:-11.893333pt;}
.ws3_c00327{word-spacing:-11.200000pt;}
.ws1_c00327{word-spacing:-10.560000pt;}
.ws4_c00327{word-spacing:-9.920000pt;}
.ws9_c00327{word-spacing:0.000000pt;}
._5_c00327{margin-left:-2.432000pt;}
._2_c00327{margin-left:-1.088000pt;}
._0_c00327{width:0.896000pt;}
._7_c00327{width:2.176000pt;}
._8_c00327{width:3.264000pt;}
._3_c00327{width:4.544000pt;}
._1_c00327{width:5.696000pt;}
._6_c00327{width:6.656000pt;}
._4_c00327{width:7.616000pt;}
._a_c00327{width:8.885312pt;}
._9_c00327{width:165.866667pt;}
.fs2_c00327{font-size:42.240000pt;}
.fs1_c00327{font-size:53.760000pt;}
.fs0_c00327{font-size:64.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.yc_c00327{bottom:11.186667pt;}
.y1d_c00327{bottom:11.200000pt;}
.y24_c00327{bottom:14.066667pt;}
.y23_c00327{bottom:14.386667pt;}
.y27_c00327{bottom:15.346667pt;}
.y2d_c00327{bottom:15.350667pt;}
.y29_c00327{bottom:15.386667pt;}
.y1c_c00327{bottom:33.920000pt;}
.y3_c00327{bottom:50.880000pt;}
.y1b_c00327{bottom:56.960000pt;}
.y2_c00327{bottom:69.440000pt;}
.y1a_c00327{bottom:80.000000pt;}
.y19_c00327{bottom:103.066667pt;}
.y2c_c00327{bottom:119.396000pt;}
.y18_c00327{bottom:126.106667pt;}
.y2b_c00327{bottom:147.240000pt;}
.y17_c00327{bottom:149.146667pt;}
.y16_c00327{bottom:172.186667pt;}
.y2a_c00327{bottom:175.080000pt;}
.y15_c00327{bottom:194.906667pt;}
.y28_c00327{bottom:201.960000pt;}
.y14_c00327{bottom:217.973333pt;}
.y26_c00327{bottom:229.840000pt;}
.y13_c00327{bottom:241.013333pt;}
.y25_c00327{bottom:257.680000pt;}
.y12_c00327{bottom:264.053333pt;}
.y22_c00327{bottom:284.560000pt;}
.y11_c00327{bottom:287.093333pt;}
.y10_c00327{bottom:310.173333pt;}
.y21_c00327{bottom:324.573333pt;}
.yf_c00327{bottom:333.213333pt;}
.ye_c00327{bottom:356.253333pt;}
.y20_c00327{bottom:368.093333pt;}
.y1f_c00327{bottom:395.613333pt;}
.y1e_c00327{bottom:423.493333pt;}
.yd_c00327{bottom:438.533333pt;}
.yb_c00327{bottom:807.280000pt;}
.ya_c00327{bottom:844.066667pt;}
.y9_c00327{bottom:871.613333pt;}
.y8_c00327{bottom:899.133333pt;}
.y7_c00327{bottom:926.973333pt;}
.y6_c00327{bottom:954.493333pt;}
.y5_c00327{bottom:986.213333pt;}
.y4_c00327{bottom:1013.413333pt;}
.y1_c00327{bottom:1061.093333pt;}
.h5_c00327{height:23.026667pt;}
.h8_c00327{height:26.226667pt;}
.ha_c00327{height:27.186667pt;}
.hc_c00327{height:27.196000pt;}
.hb_c00327{height:27.218667pt;}
.h6_c00327{height:52.762500pt;}
.h9_c00327{height:54.180000pt;}
.h2_c00327{height:57.375000pt;}
.h3_c00327{height:62.781250pt;}
.h4_c00327{height:62.812500pt;}
.h7_c00327{height:368.093333pt;}
.h0_c00327{height:1122.560000pt;}
.h1_c00327{height:1122.666667pt;}
.w4_c00327{width:142.440000pt;}
.w5_c00327{width:142.466667pt;}
.w2_c00327{width:287.480000pt;}
.w3_c00327{width:287.800000pt;}
.w1_c00327{width:793.333333pt;}
.w0_c00327{width:793.600000pt;}
.x0_c00327{left:0.000000pt;}
.x5_c00327{left:6.740000pt;}
.x4_c00327{left:106.604000pt;}
.x1_c00327{left:113.344000pt;}
.x3_c00327{left:158.786667pt;}
.x7_c00327{left:249.693333pt;}
.x2_c00327{left:384.800000pt;}
.x8_c00327{left:393.120000pt;}
.x6_c00327{left:394.720000pt;}
.x9_c00327{left:536.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_c00328 {
    display:none;
  }
  .loading-indicator_c00328.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00328 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00328 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00328" -> "#page-container .classname_c00328")
 */
.pf_c00328 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00328 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00328 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00328 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00328 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00328 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00328 {overflow:visible;}
  }
}
.c_c00328 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00328 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00328:after { /* webkit #35443 */
  content: '';
}
.t_c00328:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00328 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00328 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00328 { /* info for Javascript */
  display:none;
}
.l_c00328 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00328 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00328 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00328:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00328;src:url('chunks/assets/font_b746e9c44150566db0bdcf5c.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_7c88354c63987892008ee66f.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_5b4e9d5077b6e3a9da459d62.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_b0b55938bfcaf2fabe79fbdb.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;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_c00328;src:url('chunks/assets/font_8e5c86d9e00a6da57fb4146c.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00328;src:url('chunks/assets/font_fb80a024d26393795a152a2d.woff2')format("woff");}.ff6_c00328{font-family:ff6_c00328;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.v2_c00328{vertical-align:27.360000px;}
.v1_c00328{vertical-align:33.120000px;}
.ls5_c00328{letter-spacing:-0.972000px;}
.ls4_c00328{letter-spacing:-0.720000px;}
.ls3_c00328{letter-spacing:0.000000px;}
.ls1_c00328{letter-spacing:0.504000px;}
.ls2_c00328{letter-spacing:0.720000px;}
.ls0_c00328{letter-spacing:1.440000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00328{word-spacing:-18.000000px;}
.ws0_c00328{word-spacing:-15.120000px;}
.ws2_c00328{word-spacing:-9.720000px;}
.ws3_c00328{word-spacing:0.000000px;}
._5_c00328{margin-left:-2.736000px;}
._0_c00328{margin-left:-1.390798px;}
._1_c00328{width:1.030798px;}
._6_c00328{width:2.042404px;}
._4_c00328{width:3.240000px;}
._11_c00328{width:4.267212px;}
._9_c00328{width:5.544000px;}
._8_c00328{width:6.597596px;}
._f_c00328{width:8.352000px;}
._10_c00328{width:9.526798px;}
._b_c00328{width:10.921202px;}
._a_c00328{width:12.554404px;}
._7_c00328{width:13.676394px;}
._2_c00328{width:15.048000px;}
._3_c00328{width:16.056000px;}
._d_c00328{width:19.921202px;}
._c_c00328{width:21.312000px;}
._e_c00328{width:22.774798px;}
._12_c00328{width:23.836808px;}
.fc1_c00328{color:rgb(29,38,38);}
.fc0_c00328{color:rgb(0,0,0);}
.fs3_c00328{font-size:38.880000px;}
.fs2_c00328{font-size:47.520000px;}
.fs1_c00328{font-size:60.480000px;}
.fs0_c00328{font-size:72.000000px;}
.y0_c00328{bottom:0.000000px;}
.y5_c00328{bottom:17.280000px;}
.y3_c00328{bottom:57.240000px;}
.y2_c00328{bottom:78.120000px;}
.y2f_c00328{bottom:130.716000px;}
.y2e_c00328{bottom:147.996000px;}
.y2d_c00328{bottom:165.270000px;}
.y2c_c00328{bottom:182.190000px;}
.y2b_c00328{bottom:189.030000px;}
.y2a_c00328{bottom:199.470000px;}
.y29_c00328{bottom:216.750000px;}
.y28_c00328{bottom:234.075000px;}
.y27_c00328{bottom:251.355000px;}
.y26_c00328{bottom:258.195000px;}
.y25_c00328{bottom:268.635000px;}
.y24_c00328{bottom:275.475000px;}
.y23_c00328{bottom:286.275000px;}
.y22_c00328{bottom:313.995000px;}
.y21_c00328{bottom:344.955000px;}
.y20_c00328{bottom:375.945000px;}
.y1f_c00328{bottom:406.905000px;}
.y1e_c00328{bottom:438.225000px;}
.y1d_c00328{bottom:469.185000px;}
.y1c_c00328{bottom:500.190000px;}
.y1b_c00328{bottom:531.150000px;}
.y1a_c00328{bottom:571.470000px;}
.y19_c00328{bottom:602.460000px;}
.y18_c00328{bottom:633.420000px;}
.y17_c00328{bottom:664.380000px;}
.y15_c00328{bottom:695.700000px;}
.y16_c00328{bottom:703.980000px;}
.y14_c00328{bottom:726.690000px;}
.y13_c00328{bottom:757.650000px;}
.y12_c00328{bottom:788.610000px;}
.y10_c00328{bottom:819.930000px;}
.y11_c00328{bottom:828.210000px;}
.ye_c00328{bottom:850.935000px;}
.yf_c00328{bottom:859.215000px;}
.yd_c00328{bottom:890.895000px;}
.yc_c00328{bottom:921.855000px;}
.yb_c00328{bottom:953.175000px;}
.ya_c00328{bottom:984.165000px;}
.y9_c00328{bottom:1015.125000px;}
.y8_c00328{bottom:1046.085000px;}
.y7_c00328{bottom:1077.405000px;}
.y6_c00328{bottom:1108.410000px;}
.y4_c00328{bottom:1125.330000px;}
.y1_c00328{bottom:1193.730000px;}
.h3_c00328{height:30.585000px;}
.ha_c00328{height:34.855313px;}
.h9_c00328{height:38.158594px;}
.h7_c00328{height:46.638281px;}
.hc_c00328{height:54.219375px;}
.hd_c00328{height:54.514688px;}
.h4_c00328{height:59.357813px;}
.hb_c00328{height:62.215313px;}
.h2_c00328{height:64.546875px;}
.h5_c00328{height:70.664062px;}
.h8_c00328{height:79.758281px;}
.h6_c00328{height:1262.875500px;}
.h0_c00328{height:1262.880000px;}
.h1_c00328{height:1263.000000px;}
.w2_c00328{width:160.245000px;}
.w3_c00328{width:160.275000px;}
.w1_c00328{width:892.500000px;}
.w4_c00328{width:892.797000px;}
.w0_c00328{width:892.800000px;}
.x0_c00328{left:0.000000px;}
.x4_c00328{left:7.582500px;}
.x3_c00328{left:119.929500px;}
.x1_c00328{left:127.512000px;}
.x10_c00328{left:142.632000px;}
.x8_c00328{left:178.635000px;}
.xd_c00328{left:188.352000px;}
.xe_c00328{left:206.715000px;}
.x5_c00328{left:280.905000px;}
.xf_c00328{left:343.590000px;}
.x2_c00328{left:432.900000px;}
.x6_c00328{left:442.260000px;}
.x7_c00328{left:603.270000px;}
.xb_c00328{left:718.887000px;}
.xc_c00328{left:737.250000px;}
.x9_c00328{left:743.007000px;}
.xa_c00328{left:761.370000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.v2_c00328{vertical-align:24.320000pt;}
.v1_c00328{vertical-align:29.440000pt;}
.ls5_c00328{letter-spacing:-0.864000pt;}
.ls4_c00328{letter-spacing:-0.640000pt;}
.ls3_c00328{letter-spacing:0.000000pt;}
.ls1_c00328{letter-spacing:0.448000pt;}
.ls2_c00328{letter-spacing:0.640000pt;}
.ls0_c00328{letter-spacing:1.280000pt;}
.ws1_c00328{word-spacing:-16.000000pt;}
.ws0_c00328{word-spacing:-13.440000pt;}
.ws2_c00328{word-spacing:-8.640000pt;}
.ws3_c00328{word-spacing:0.000000pt;}
._5_c00328{margin-left:-2.432000pt;}
._0_c00328{margin-left:-1.236265pt;}
._1_c00328{width:0.916265pt;}
._6_c00328{width:1.815470pt;}
._4_c00328{width:2.880000pt;}
._11_c00328{width:3.793077pt;}
._9_c00328{width:4.928000pt;}
._8_c00328{width:5.864530pt;}
._f_c00328{width:7.424000pt;}
._10_c00328{width:8.468265pt;}
._b_c00328{width:9.707735pt;}
._a_c00328{width:11.159470pt;}
._7_c00328{width:12.156795pt;}
._2_c00328{width:13.376000pt;}
._3_c00328{width:14.272000pt;}
._d_c00328{width:17.707735pt;}
._c_c00328{width:18.944000pt;}
._e_c00328{width:20.244265pt;}
._12_c00328{width:21.188273pt;}
.fs3_c00328{font-size:34.560000pt;}
.fs2_c00328{font-size:42.240000pt;}
.fs1_c00328{font-size:53.760000pt;}
.fs0_c00328{font-size:64.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y5_c00328{bottom:15.360000pt;}
.y3_c00328{bottom:50.880000pt;}
.y2_c00328{bottom:69.440000pt;}
.y2f_c00328{bottom:116.192000pt;}
.y2e_c00328{bottom:131.552000pt;}
.y2d_c00328{bottom:146.906667pt;}
.y2c_c00328{bottom:161.946667pt;}
.y2b_c00328{bottom:168.026667pt;}
.y2a_c00328{bottom:177.306667pt;}
.y29_c00328{bottom:192.666667pt;}
.y28_c00328{bottom:208.066667pt;}
.y27_c00328{bottom:223.426667pt;}
.y26_c00328{bottom:229.506667pt;}
.y25_c00328{bottom:238.786667pt;}
.y24_c00328{bottom:244.866667pt;}
.y23_c00328{bottom:254.466667pt;}
.y22_c00328{bottom:279.106667pt;}
.y21_c00328{bottom:306.626667pt;}
.y20_c00328{bottom:334.173333pt;}
.y1f_c00328{bottom:361.693333pt;}
.y1e_c00328{bottom:389.533333pt;}
.y1d_c00328{bottom:417.053333pt;}
.y1c_c00328{bottom:444.613333pt;}
.y1b_c00328{bottom:472.133333pt;}
.y1a_c00328{bottom:507.973333pt;}
.y19_c00328{bottom:535.520000pt;}
.y18_c00328{bottom:563.040000pt;}
.y17_c00328{bottom:590.560000pt;}
.y15_c00328{bottom:618.400000pt;}
.y16_c00328{bottom:625.760000pt;}
.y14_c00328{bottom:645.946667pt;}
.y13_c00328{bottom:673.466667pt;}
.y12_c00328{bottom:700.986667pt;}
.y10_c00328{bottom:728.826667pt;}
.y11_c00328{bottom:736.186667pt;}
.ye_c00328{bottom:756.386667pt;}
.yf_c00328{bottom:763.746667pt;}
.yd_c00328{bottom:791.906667pt;}
.yc_c00328{bottom:819.426667pt;}
.yb_c00328{bottom:847.266667pt;}
.ya_c00328{bottom:874.813333pt;}
.y9_c00328{bottom:902.333333pt;}
.y8_c00328{bottom:929.853333pt;}
.y7_c00328{bottom:957.693333pt;}
.y6_c00328{bottom:985.253333pt;}
.y4_c00328{bottom:1000.293333pt;}
.y1_c00328{bottom:1061.093333pt;}
.h3_c00328{height:27.186667pt;}
.ha_c00328{height:30.982500pt;}
.h9_c00328{height:33.918750pt;}
.h7_c00328{height:41.456250pt;}
.hc_c00328{height:48.195000pt;}
.hd_c00328{height:48.457500pt;}
.h4_c00328{height:52.762500pt;}
.hb_c00328{height:55.302500pt;}
.h2_c00328{height:57.375000pt;}
.h5_c00328{height:62.812500pt;}
.h8_c00328{height:70.896250pt;}
.h6_c00328{height:1122.556000pt;}
.h0_c00328{height:1122.560000pt;}
.h1_c00328{height:1122.666667pt;}
.w2_c00328{width:142.440000pt;}
.w3_c00328{width:142.466667pt;}
.w1_c00328{width:793.333333pt;}
.w4_c00328{width:793.597333pt;}
.w0_c00328{width:793.600000pt;}
.x0_c00328{left:0.000000pt;}
.x4_c00328{left:6.740000pt;}
.x3_c00328{left:106.604000pt;}
.x1_c00328{left:113.344000pt;}
.x10_c00328{left:126.784000pt;}
.x8_c00328{left:158.786667pt;}
.xd_c00328{left:167.424000pt;}
.xe_c00328{left:183.746667pt;}
.x5_c00328{left:249.693333pt;}
.xf_c00328{left:305.413333pt;}
.x2_c00328{left:384.800000pt;}
.x6_c00328{left:393.120000pt;}
.x7_c00328{left:536.240000pt;}
.xb_c00328{left:639.010667pt;}
.xc_c00328{left:655.333333pt;}
.x9_c00328{left:660.450667pt;}
.xa_c00328{left:676.773333pt;}
}





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

.ir_c00329:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00329;src:url('chunks/assets/font_97b20bc02955ef6721a7c9eb.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_ad432662d022eb2bbda0e768.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_39c8aff27b8d7ea0d8f8987e.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00329;src:url('chunks/assets/font_8a7017014f59b92b847f0038.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;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_c00329;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00329;src:url('chunks/assets/font_97e223dc3c5f2e0906a5e6af.woff2')format("woff");}.ff6_c00329{font-family:ff6_c00329;line-height:1.117188;font-style:normal;font-weight: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_c00329;src:url('chunks/assets/font_b6677730df9e103426e0f2e7.woff2')format("woff");}.ff7_c00329{font-family:ff7_c00329;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls3_c00329{letter-spacing:0.000000px;}
.ls0_c00329{letter-spacing:0.180000px;}
.ls1_c00329{letter-spacing:0.720000px;}
.ls4_c00329{letter-spacing:1.152000px;}
.ls2_c00329{letter-spacing:6.480000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00329{word-spacing:-72.000000px;}
.ws0_c00329{word-spacing:-18.000000px;}
.ws2_c00329{word-spacing:-15.120000px;}
.ws3_c00329{word-spacing:0.000000px;}
._5_c00329{margin-left:-3.144024px;}
._2_c00329{margin-left:-1.728000px;}
._0_c00329{width:1.800000px;}
._6_c00329{width:2.856024px;}
._1_c00329{width:4.392000px;}
._3_c00329{width:5.544000px;}
._4_c00329{width:6.840000px;}
._9_c00329{width:8.496000px;}
._8_c00329{width:9.528048px;}
._7_c00329{width:10.584000px;}
._a_c00329{width:12.167856px;}
._b_c00329{width:13.703904px;}
._c_c00329{width:15.120000px;}
._d_c00329{width:16.536456px;}
._e_c00329{width:19.080000px;}
._f_c00329{width:20.184048px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs2_c00329{font-size:38.880000px;}
.fs1_c00329{font-size:47.520000px;}
.fs3_c00329{font-size:60.480000px;}
.fs0_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y3_c00329{bottom:57.240000px;}
.y2_c00329{bottom:78.120000px;}
.y27_c00329{bottom:130.716000px;}
.y26_c00329{bottom:147.996000px;}
.y25_c00329{bottom:165.270000px;}
.y24_c00329{bottom:182.190000px;}
.y23_c00329{bottom:189.030000px;}
.y22_c00329{bottom:200.190000px;}
.y21_c00329{bottom:252.795000px;}
.y20_c00329{bottom:283.755000px;}
.y1e_c00329{bottom:323.715000px;}
.y1f_c00329{bottom:331.995000px;}
.y1d_c00329{bottom:355.065000px;}
.y1c_c00329{bottom:386.025000px;}
.y1b_c00329{bottom:416.985000px;}
.y1a_c00329{bottom:447.945000px;}
.y19_c00329{bottom:479.310000px;}
.y18_c00329{bottom:510.270000px;}
.y17_c00329{bottom:541.230000px;}
.y16_c00329{bottom:572.190000px;}
.y15_c00329{bottom:612.540000px;}
.y14_c00329{bottom:643.500000px;}
.y13_c00329{bottom:674.460000px;}
.y12_c00329{bottom:705.420000px;}
.y11_c00329{bottom:736.770000px;}
.y10_c00329{bottom:767.730000px;}
.yf_c00329{bottom:798.690000px;}
.ye_c00329{bottom:829.650000px;}
.yd_c00329{bottom:861.015000px;}
.yc_c00329{bottom:891.975000px;}
.yb_c00329{bottom:922.935000px;}
.ya_c00329{bottom:953.895000px;}
.y9_c00329{bottom:985.245000px;}
.y8_c00329{bottom:1016.205000px;}
.y7_c00329{bottom:1047.165000px;}
.y6_c00329{bottom:1078.125000px;}
.y5_c00329{bottom:1109.490000px;}
.y4_c00329{bottom:1140.450000px;}
.y1_c00329{bottom:1193.730000px;}
.h6_c00329{height:34.855313px;}
.h5_c00329{height:46.638281px;}
.h8_c00329{height:54.219375px;}
.h7_c00329{height:54.514688px;}
.h2_c00329{height:64.546875px;}
.h3_c00329{height:70.664062px;}
.h4_c00329{height:1262.875500px;}
.h0_c00329{height:1262.880000px;}
.h1_c00329{height:1263.000000px;}
.w1_c00329{width:892.500000px;}
.w2_c00329{width:892.797000px;}
.w0_c00329{width:892.800000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:127.512000px;}
.x7_c00329{left:142.632000px;}
.x4_c00329{left:164.592000px;}
.x3_c00329{left:178.635000px;}
.x5_c00329{left:182.955000px;}
.x6_c00329{left:343.590000px;}
.x2_c00329{left:432.900000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls3_c00329{letter-spacing:0.000000pt;}
.ls0_c00329{letter-spacing:0.160000pt;}
.ls1_c00329{letter-spacing:0.640000pt;}
.ls4_c00329{letter-spacing:1.024000pt;}
.ls2_c00329{letter-spacing:5.760000pt;}
.ws1_c00329{word-spacing:-64.000000pt;}
.ws0_c00329{word-spacing:-16.000000pt;}
.ws2_c00329{word-spacing:-13.440000pt;}
.ws3_c00329{word-spacing:0.000000pt;}
._5_c00329{margin-left:-2.794688pt;}
._2_c00329{margin-left:-1.536000pt;}
._0_c00329{width:1.600000pt;}
._6_c00329{width:2.538688pt;}
._1_c00329{width:3.904000pt;}
._3_c00329{width:4.928000pt;}
._4_c00329{width:6.080000pt;}
._9_c00329{width:7.552000pt;}
._8_c00329{width:8.469376pt;}
._7_c00329{width:9.408000pt;}
._a_c00329{width:10.815872pt;}
._b_c00329{width:12.181248pt;}
._c_c00329{width:13.440000pt;}
._d_c00329{width:14.699072pt;}
._e_c00329{width:16.960000pt;}
._f_c00329{width:17.941376pt;}
.fs2_c00329{font-size:34.560000pt;}
.fs1_c00329{font-size:42.240000pt;}
.fs3_c00329{font-size:53.760000pt;}
.fs0_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y3_c00329{bottom:50.880000pt;}
.y2_c00329{bottom:69.440000pt;}
.y27_c00329{bottom:116.192000pt;}
.y26_c00329{bottom:131.552000pt;}
.y25_c00329{bottom:146.906667pt;}
.y24_c00329{bottom:161.946667pt;}
.y23_c00329{bottom:168.026667pt;}
.y22_c00329{bottom:177.946667pt;}
.y21_c00329{bottom:224.706667pt;}
.y20_c00329{bottom:252.226667pt;}
.y1e_c00329{bottom:287.746667pt;}
.y1f_c00329{bottom:295.106667pt;}
.y1d_c00329{bottom:315.613333pt;}
.y1c_c00329{bottom:343.133333pt;}
.y1b_c00329{bottom:370.653333pt;}
.y1a_c00329{bottom:398.173333pt;}
.y19_c00329{bottom:426.053333pt;}
.y18_c00329{bottom:453.573333pt;}
.y17_c00329{bottom:481.093333pt;}
.y16_c00329{bottom:508.613333pt;}
.y15_c00329{bottom:544.480000pt;}
.y14_c00329{bottom:572.000000pt;}
.y13_c00329{bottom:599.520000pt;}
.y12_c00329{bottom:627.040000pt;}
.y11_c00329{bottom:654.906667pt;}
.y10_c00329{bottom:682.426667pt;}
.yf_c00329{bottom:709.946667pt;}
.ye_c00329{bottom:737.466667pt;}
.yd_c00329{bottom:765.346667pt;}
.yc_c00329{bottom:792.866667pt;}
.yb_c00329{bottom:820.386667pt;}
.ya_c00329{bottom:847.906667pt;}
.y9_c00329{bottom:875.773333pt;}
.y8_c00329{bottom:903.293333pt;}
.y7_c00329{bottom:930.813333pt;}
.y6_c00329{bottom:958.333333pt;}
.y5_c00329{bottom:986.213333pt;}
.y4_c00329{bottom:1013.733333pt;}
.y1_c00329{bottom:1061.093333pt;}
.h6_c00329{height:30.982500pt;}
.h5_c00329{height:41.456250pt;}
.h8_c00329{height:48.195000pt;}
.h7_c00329{height:48.457500pt;}
.h2_c00329{height:57.375000pt;}
.h3_c00329{height:62.812500pt;}
.h4_c00329{height:1122.556000pt;}
.h0_c00329{height:1122.560000pt;}
.h1_c00329{height:1122.666667pt;}
.w1_c00329{width:793.333333pt;}
.w2_c00329{width:793.597333pt;}
.w0_c00329{width:793.600000pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:113.344000pt;}
.x7_c00329{left:126.784000pt;}
.x4_c00329{left:146.304000pt;}
.x3_c00329{left:158.786667pt;}
.x5_c00329{left:162.626667pt;}
.x6_c00329{left:305.413333pt;}
.x2_c00329{left:384.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_c00330 {
    display:none;
  }
  .loading-indicator_c00330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00330 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00330 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00330" -> "#page-container .classname_c00330")
 */
.pf_c00330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00330 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00330 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00330 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00330 {overflow:visible;}
  }
}
.c_c00330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00330 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00330:after { /* webkit #35443 */
  content: '';
}
.t_c00330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00330 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00330 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00330 { /* info for Javascript */
  display:none;
}
.l_c00330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00330:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00330;src:url('chunks/assets/font_6660640bfaaba9e3eccda886.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_1ebd9da6ec6c7653c9d151af.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_0344345d9a7ce7dcd0d29345.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_76bfeb3081191b6b4e82ea31.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;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_c00330;src:url('chunks/assets/font_b5f3eb14a9de27ba0be67d5d.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00330;src:url('chunks/assets/font_285ae56354c0b442ef3f9024.woff2')format("woff");}.ff6_c00330{font-family:ff6_c00330;line-height:1.112305;font-style:normal;font-weight: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_c00330;src:url('chunks/assets/font_60f8f7d2f02449ee98ad5734.woff2')format("woff");}.ff7_c00330{font-family:ff7_c00330;line-height:1.117188;font-style:normal;font-weight: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_c00330;src:url('chunks/assets/font_83e170b0960d0c462145e60f.woff2')format("woff");}.ff8_c00330{font-family:ff8_c00330;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls7_c00330{letter-spacing:-0.936000px;}
.ls8_c00330{letter-spacing:-0.486600px;}
.ls4_c00330{letter-spacing:0.000000px;}
.ls6_c00330{letter-spacing:0.020400px;}
.ls2_c00330{letter-spacing:0.114361px;}
.ls5_c00330{letter-spacing:0.504000px;}
.ls1_c00330{letter-spacing:0.720000px;}
.ls0_c00330{letter-spacing:1.440000px;}
.ls3_c00330{letter-spacing:2.160000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00330{word-spacing:-60.480000px;}
.ws0_c00330{word-spacing:-18.000000px;}
.ws1_c00330{word-spacing:-15.120000px;}
.ws4_c00330{word-spacing:-14.633400px;}
.ws2_c00330{word-spacing:-14.184000px;}
.ws5_c00330{word-spacing:0.000000px;}
._3_c00330{margin-left:-2.736000px;}
._1_c00330{margin-left:-1.296000px;}
._0_c00330{width:1.584000px;}
._2_c00330{width:2.808000px;}
._6_c00330{width:3.888000px;}
._4_c00330{width:5.244000px;}
._a_c00330{width:6.479976px;}
._d_c00330{width:7.920000px;}
._e_c00330{width:9.144000px;}
._13_c00330{width:10.938603px;}
._12_c00330{width:12.078599px;}
._10_c00330{width:13.679971px;}
._f_c00330{width:14.892000px;}
._5_c00330{width:16.056000px;}
._11_c00330{width:17.974201px;}
._14_c00330{width:19.915200px;}
._7_c00330{width:22.752000px;}
._8_c00330{width:24.480000px;}
._9_c00330{width:25.488000px;}
._c_c00330{width:28.872000px;}
._b_c00330{width:29.952000px;}
._15_c00330{width:36.726002px;}
._16_c00330{width:37.730978px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs2_c00330{font-size:38.880000px;}
.fs1_c00330{font-size:47.520000px;}
.fs3_c00330{font-size:60.480000px;}
.fs0_c00330{font-size:72.000000px;}
.y0_c00330{bottom:0.000000px;}
.y3_c00330{bottom:57.240000px;}
.y2_c00330{bottom:78.120000px;}
.y3a_c00330{bottom:130.716000px;}
.y39_c00330{bottom:147.996000px;}
.y38_c00330{bottom:165.270000px;}
.y37_c00330{bottom:182.190000px;}
.y36_c00330{bottom:189.030000px;}
.y35_c00330{bottom:199.470000px;}
.y34_c00330{bottom:216.750000px;}
.y33_c00330{bottom:234.075000px;}
.y32_c00330{bottom:251.355000px;}
.y31_c00330{bottom:268.635000px;}
.y30_c00330{bottom:285.915000px;}
.y2f_c00330{bottom:303.195000px;}
.y2e_c00330{bottom:310.035000px;}
.y2d_c00330{bottom:320.475000px;}
.y2c_c00330{bottom:337.755000px;}
.y2b_c00330{bottom:344.595000px;}
.y2a_c00330{bottom:355.065000px;}
.y29_c00330{bottom:371.985000px;}
.y28_c00330{bottom:389.265000px;}
.y27_c00330{bottom:406.545000px;}
.y26_c00330{bottom:413.385000px;}
.y25_c00330{bottom:423.825000px;}
.y24_c00330{bottom:441.105000px;}
.y23_c00330{bottom:458.385000px;}
.y22_c00330{bottom:475.710000px;}
.y21_c00330{bottom:492.990000px;}
.y20_c00330{bottom:510.270000px;}
.y1f_c00330{bottom:527.550000px;}
.y1e_c00330{bottom:534.390000px;}
.y1d_c00330{bottom:544.830000px;}
.y1c_c00330{bottom:562.110000px;}
.y1b_c00330{bottom:579.030000px;}
.y1a_c00330{bottom:585.870000px;}
.y19_c00330{bottom:597.060000px;}
.y18_c00330{bottom:634.500000px;}
.y16_c00330{bottom:665.460000px;}
.y17_c00330{bottom:673.740000px;}
.y15_c00330{bottom:705.420000px;}
.y13_c00330{bottom:736.770000px;}
.y14_c00330{bottom:745.050000px;}
.y12_c00330{bottom:767.730000px;}
.y10_c00330{bottom:798.690000px;}
.y11_c00330{bottom:806.970000px;}
.yf_c00330{bottom:829.650000px;}
.ye_c00330{bottom:861.015000px;}
.yd_c00330{bottom:891.975000px;}
.yc_c00330{bottom:922.935000px;}
.yb_c00330{bottom:953.895000px;}
.ya_c00330{bottom:985.245000px;}
.y9_c00330{bottom:1016.205000px;}
.y8_c00330{bottom:1047.165000px;}
.y7_c00330{bottom:1078.125000px;}
.y6_c00330{bottom:1109.490000px;}
.y4_c00330{bottom:1140.450000px;}
.y5_c00330{bottom:1148.730000px;}
.y1_c00330{bottom:1193.730000px;}
.h7_c00330{height:34.855313px;}
.h9_c00330{height:38.158594px;}
.h6_c00330{height:46.615078px;}
.h5_c00330{height:46.638281px;}
.h8_c00330{height:54.219375px;}
.hb_c00330{height:54.514688px;}
.ha_c00330{height:59.357813px;}
.h2_c00330{height:64.546875px;}
.h3_c00330{height:70.664062px;}
.h4_c00330{height:1262.875500px;}
.h0_c00330{height:1262.880000px;}
.h1_c00330{height:1263.000000px;}
.w1_c00330{width:892.500000px;}
.w2_c00330{width:892.797000px;}
.w0_c00330{width:892.800000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:127.512000px;}
.x11_c00330{left:142.632000px;}
.xd_c00330{left:178.635000px;}
.x7_c00330{left:212.502000px;}
.x8_c00330{left:230.865000px;}
.x5_c00330{left:297.507000px;}
.x6_c00330{left:315.870000px;}
.x10_c00330{left:343.590000px;}
.x2_c00330{left:432.900000px;}
.x9_c00330{left:582.372000px;}
.xa_c00330{left:600.735000px;}
.xe_c00330{left:684.282000px;}
.xb_c00330{left:686.082000px;}
.xf_c00330{left:702.645000px;}
.xc_c00330{left:704.445000px;}
.x3_c00330{left:725.007000px;}
.x4_c00330{left:743.370000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls7_c00330{letter-spacing:-0.832000pt;}
.ls8_c00330{letter-spacing:-0.432533pt;}
.ls4_c00330{letter-spacing:0.000000pt;}
.ls6_c00330{letter-spacing:0.018133pt;}
.ls2_c00330{letter-spacing:0.101654pt;}
.ls5_c00330{letter-spacing:0.448000pt;}
.ls1_c00330{letter-spacing:0.640000pt;}
.ls0_c00330{letter-spacing:1.280000pt;}
.ls3_c00330{letter-spacing:1.920000pt;}
.ws3_c00330{word-spacing:-53.760000pt;}
.ws0_c00330{word-spacing:-16.000000pt;}
.ws1_c00330{word-spacing:-13.440000pt;}
.ws4_c00330{word-spacing:-13.007467pt;}
.ws2_c00330{word-spacing:-12.608000pt;}
.ws5_c00330{word-spacing:0.000000pt;}
._3_c00330{margin-left:-2.432000pt;}
._1_c00330{margin-left:-1.152000pt;}
._0_c00330{width:1.408000pt;}
._2_c00330{width:2.496000pt;}
._6_c00330{width:3.456000pt;}
._4_c00330{width:4.661333pt;}
._a_c00330{width:5.759979pt;}
._d_c00330{width:7.040000pt;}
._e_c00330{width:8.128000pt;}
._13_c00330{width:9.723203pt;}
._12_c00330{width:10.736532pt;}
._10_c00330{width:12.159974pt;}
._f_c00330{width:13.237333pt;}
._5_c00330{width:14.272000pt;}
._11_c00330{width:15.977068pt;}
._14_c00330{width:17.702400pt;}
._7_c00330{width:20.224000pt;}
._8_c00330{width:21.760000pt;}
._9_c00330{width:22.656000pt;}
._c_c00330{width:25.664000pt;}
._b_c00330{width:26.624000pt;}
._15_c00330{width:32.645335pt;}
._16_c00330{width:33.538647pt;}
.fs2_c00330{font-size:34.560000pt;}
.fs1_c00330{font-size:42.240000pt;}
.fs3_c00330{font-size:53.760000pt;}
.fs0_c00330{font-size:64.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y3_c00330{bottom:50.880000pt;}
.y2_c00330{bottom:69.440000pt;}
.y3a_c00330{bottom:116.192000pt;}
.y39_c00330{bottom:131.552000pt;}
.y38_c00330{bottom:146.906667pt;}
.y37_c00330{bottom:161.946667pt;}
.y36_c00330{bottom:168.026667pt;}
.y35_c00330{bottom:177.306667pt;}
.y34_c00330{bottom:192.666667pt;}
.y33_c00330{bottom:208.066667pt;}
.y32_c00330{bottom:223.426667pt;}
.y31_c00330{bottom:238.786667pt;}
.y30_c00330{bottom:254.146667pt;}
.y2f_c00330{bottom:269.506667pt;}
.y2e_c00330{bottom:275.586667pt;}
.y2d_c00330{bottom:284.866667pt;}
.y2c_c00330{bottom:300.226667pt;}
.y2b_c00330{bottom:306.306667pt;}
.y2a_c00330{bottom:315.613333pt;}
.y29_c00330{bottom:330.653333pt;}
.y28_c00330{bottom:346.013333pt;}
.y27_c00330{bottom:361.373333pt;}
.y26_c00330{bottom:367.453333pt;}
.y25_c00330{bottom:376.733333pt;}
.y24_c00330{bottom:392.093333pt;}
.y23_c00330{bottom:407.453333pt;}
.y22_c00330{bottom:422.853333pt;}
.y21_c00330{bottom:438.213333pt;}
.y20_c00330{bottom:453.573333pt;}
.y1f_c00330{bottom:468.933333pt;}
.y1e_c00330{bottom:475.013333pt;}
.y1d_c00330{bottom:484.293333pt;}
.y1c_c00330{bottom:499.653333pt;}
.y1b_c00330{bottom:514.693333pt;}
.y1a_c00330{bottom:520.773333pt;}
.y19_c00330{bottom:530.720000pt;}
.y18_c00330{bottom:564.000000pt;}
.y16_c00330{bottom:591.520000pt;}
.y17_c00330{bottom:598.880000pt;}
.y15_c00330{bottom:627.040000pt;}
.y13_c00330{bottom:654.906667pt;}
.y14_c00330{bottom:662.266667pt;}
.y12_c00330{bottom:682.426667pt;}
.y10_c00330{bottom:709.946667pt;}
.y11_c00330{bottom:717.306667pt;}
.yf_c00330{bottom:737.466667pt;}
.ye_c00330{bottom:765.346667pt;}
.yd_c00330{bottom:792.866667pt;}
.yc_c00330{bottom:820.386667pt;}
.yb_c00330{bottom:847.906667pt;}
.ya_c00330{bottom:875.773333pt;}
.y9_c00330{bottom:903.293333pt;}
.y8_c00330{bottom:930.813333pt;}
.y7_c00330{bottom:958.333333pt;}
.y6_c00330{bottom:986.213333pt;}
.y4_c00330{bottom:1013.733333pt;}
.y5_c00330{bottom:1021.093333pt;}
.y1_c00330{bottom:1061.093333pt;}
.h7_c00330{height:30.982500pt;}
.h9_c00330{height:33.918750pt;}
.h6_c00330{height:41.435625pt;}
.h5_c00330{height:41.456250pt;}
.h8_c00330{height:48.195000pt;}
.hb_c00330{height:48.457500pt;}
.ha_c00330{height:52.762500pt;}
.h2_c00330{height:57.375000pt;}
.h3_c00330{height:62.812500pt;}
.h4_c00330{height:1122.556000pt;}
.h0_c00330{height:1122.560000pt;}
.h1_c00330{height:1122.666667pt;}
.w1_c00330{width:793.333333pt;}
.w2_c00330{width:793.597333pt;}
.w0_c00330{width:793.600000pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:113.344000pt;}
.x11_c00330{left:126.784000pt;}
.xd_c00330{left:158.786667pt;}
.x7_c00330{left:188.890667pt;}
.x8_c00330{left:205.213333pt;}
.x5_c00330{left:264.450667pt;}
.x6_c00330{left:280.773333pt;}
.x10_c00330{left:305.413333pt;}
.x2_c00330{left:384.800000pt;}
.x9_c00330{left:517.664000pt;}
.xa_c00330{left:533.986667pt;}
.xe_c00330{left:608.250667pt;}
.xb_c00330{left:609.850667pt;}
.xf_c00330{left:624.573333pt;}
.xc_c00330{left:626.173333pt;}
.x3_c00330{left:644.450667pt;}
.x4_c00330{left:660.773333pt;}
}





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

.ir_c00331:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00331;src:url('chunks/assets/font_6d947b290fabe9607faec709.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_95dc595c2a7ebb1e7a59f6c1.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_6ad40d3366708b236a1ccb4f.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_19a6ababe18da99bcfed5d09.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00331;src:url('chunks/assets/font_0e0a6126fc342ee9a9cec970.woff2')format("woff");}.ff5_c00331{font-family:ff5_c00331;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_c00331;src:url('chunks/assets/font_0fd80d5228475b2848f5074e.woff2')format("woff");}.ff6_c00331{font-family:ff6_c00331;line-height:1.115723;font-style:normal;font-weight: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_c00331;src:url('chunks/assets/font_d7b8cfd3479a83d976cd68cc.woff2')format("woff");}.ff7_c00331{font-family:ff7_c00331;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls5_c00331{letter-spacing:-2.880000px;}
.ls4_c00331{letter-spacing:0.000000px;}
.ls2_c00331{letter-spacing:0.720000px;}
.ls0_c00331{letter-spacing:6.480000px;}
.ls3_c00331{letter-spacing:13.680000px;}
.ls1_c00331{letter-spacing:43.344000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00331{word-spacing:-72.000000px;}
.ws0_c00331{word-spacing:-18.000000px;}
.ws2_c00331{word-spacing:0.000000px;}
._15_c00331{margin-left:-3.435001px;}
._6_c00331{margin-left:-2.376000px;}
._0_c00331{margin-left:-1.152000px;}
._1_c00331{width:1.080000px;}
._7_c00331{width:2.160000px;}
._4_c00331{width:3.384000px;}
._5_c00331{width:4.488000px;}
._2_c00331{width:5.976000px;}
._3_c00331{width:7.128000px;}
._13_c00331{width:8.496000px;}
._8_c00331{width:9.576000px;}
._9_c00331{width:11.592000px;}
._14_c00331{width:13.124402px;}
._a_c00331{width:15.984000px;}
._d_c00331{width:19.080000px;}
._f_c00331{width:20.088000px;}
._e_c00331{width:21.096000px;}
._b_c00331{width:22.176000px;}
._c_c00331{width:24.120000px;}
._11_c00331{width:44.424000px;}
._10_c00331{width:45.648000px;}
._12_c00331{width:46.728000px;}
.fc0_c00331{color:rgb(0,0,0);}
.fs2_c00331{font-size:38.880000px;}
.fs1_c00331{font-size:47.520000px;}
.fs3_c00331{font-size:60.480000px;}
.fs0_c00331{font-size:72.000000px;}
.y0_c00331{bottom:0.000000px;}
.y3_c00331{bottom:57.240000px;}
.y2_c00331{bottom:78.120000px;}
.y2c_c00331{bottom:130.716000px;}
.y2b_c00331{bottom:147.996000px;}
.y2a_c00331{bottom:165.270000px;}
.y29_c00331{bottom:182.190000px;}
.y28_c00331{bottom:199.470000px;}
.y27_c00331{bottom:216.750000px;}
.y26_c00331{bottom:223.590000px;}
.y25_c00331{bottom:234.075000px;}
.y24_c00331{bottom:251.355000px;}
.y23_c00331{bottom:268.635000px;}
.y22_c00331{bottom:275.475000px;}
.y21_c00331{bottom:286.275000px;}
.y20_c00331{bottom:313.635000px;}
.y1f_c00331{bottom:344.595000px;}
.y1e_c00331{bottom:375.585000px;}
.y1d_c00331{bottom:406.905000px;}
.y1c_c00331{bottom:437.865000px;}
.y1b_c00331{bottom:468.825000px;}
.y1a_c00331{bottom:499.830000px;}
.y19_c00331{bottom:531.150000px;}
.y18_c00331{bottom:562.110000px;}
.y17_c00331{bottom:603.540000px;}
.y15_c00331{bottom:634.500000px;}
.y16_c00331{bottom:642.780000px;}
.y14_c00331{bottom:665.460000px;}
.y13_c00331{bottom:696.420000px;}
.y12_c00331{bottom:727.770000px;}
.y10_c00331{bottom:758.730000px;}
.y11_c00331{bottom:767.010000px;}
.yf_c00331{bottom:789.690000px;}
.ye_c00331{bottom:820.650000px;}
.yd_c00331{bottom:852.015000px;}
.yc_c00331{bottom:882.975000px;}
.yb_c00331{bottom:922.935000px;}
.ya_c00331{bottom:953.895000px;}
.y9_c00331{bottom:985.245000px;}
.y8_c00331{bottom:1016.205000px;}
.y7_c00331{bottom:1047.165000px;}
.y6_c00331{bottom:1078.125000px;}
.y5_c00331{bottom:1109.490000px;}
.y4_c00331{bottom:1140.450000px;}
.y1_c00331{bottom:1193.730000px;}
.h7_c00331{height:38.158594px;}
.h5_c00331{height:46.638281px;}
.h8_c00331{height:59.357813px;}
.h2_c00331{height:64.546875px;}
.h3_c00331{height:70.664062px;}
.h6_c00331{height:74.004654px;}
.h4_c00331{height:1262.875500px;}
.h0_c00331{height:1262.880000px;}
.h1_c00331{height:1263.000000px;}
.w1_c00331{width:892.500000px;}
.w2_c00331{width:892.797000px;}
.w0_c00331{width:892.800000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:127.512000px;}
.x9_c00331{left:142.632000px;}
.x3_c00331{left:154.515000px;}
.x6_c00331{left:215.382000px;}
.x7_c00331{left:233.745000px;}
.x8_c00331{left:343.590000px;}
.x2_c00331{left:432.900000px;}
.x4_c00331{left:498.807000px;}
.x5_c00331{left:517.170000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls5_c00331{letter-spacing:-2.560000pt;}
.ls4_c00331{letter-spacing:0.000000pt;}
.ls2_c00331{letter-spacing:0.640000pt;}
.ls0_c00331{letter-spacing:5.760000pt;}
.ls3_c00331{letter-spacing:12.160000pt;}
.ls1_c00331{letter-spacing:38.528000pt;}
.ws1_c00331{word-spacing:-64.000000pt;}
.ws0_c00331{word-spacing:-16.000000pt;}
.ws2_c00331{word-spacing:0.000000pt;}
._15_c00331{margin-left:-3.053334pt;}
._6_c00331{margin-left:-2.112000pt;}
._0_c00331{margin-left:-1.024000pt;}
._1_c00331{width:0.960000pt;}
._7_c00331{width:1.920000pt;}
._4_c00331{width:3.008000pt;}
._5_c00331{width:3.989333pt;}
._2_c00331{width:5.312000pt;}
._3_c00331{width:6.336000pt;}
._13_c00331{width:7.552000pt;}
._8_c00331{width:8.512000pt;}
._9_c00331{width:10.304000pt;}
._14_c00331{width:11.666135pt;}
._a_c00331{width:14.208000pt;}
._d_c00331{width:16.960000pt;}
._f_c00331{width:17.856000pt;}
._e_c00331{width:18.752000pt;}
._b_c00331{width:19.712000pt;}
._c_c00331{width:21.440000pt;}
._11_c00331{width:39.488000pt;}
._10_c00331{width:40.576000pt;}
._12_c00331{width:41.536000pt;}
.fs2_c00331{font-size:34.560000pt;}
.fs1_c00331{font-size:42.240000pt;}
.fs3_c00331{font-size:53.760000pt;}
.fs0_c00331{font-size:64.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y3_c00331{bottom:50.880000pt;}
.y2_c00331{bottom:69.440000pt;}
.y2c_c00331{bottom:116.192000pt;}
.y2b_c00331{bottom:131.552000pt;}
.y2a_c00331{bottom:146.906667pt;}
.y29_c00331{bottom:161.946667pt;}
.y28_c00331{bottom:177.306667pt;}
.y27_c00331{bottom:192.666667pt;}
.y26_c00331{bottom:198.746667pt;}
.y25_c00331{bottom:208.066667pt;}
.y24_c00331{bottom:223.426667pt;}
.y23_c00331{bottom:238.786667pt;}
.y22_c00331{bottom:244.866667pt;}
.y21_c00331{bottom:254.466667pt;}
.y20_c00331{bottom:278.786667pt;}
.y1f_c00331{bottom:306.306667pt;}
.y1e_c00331{bottom:333.853333pt;}
.y1d_c00331{bottom:361.693333pt;}
.y1c_c00331{bottom:389.213333pt;}
.y1b_c00331{bottom:416.733333pt;}
.y1a_c00331{bottom:444.293333pt;}
.y19_c00331{bottom:472.133333pt;}
.y18_c00331{bottom:499.653333pt;}
.y17_c00331{bottom:536.480000pt;}
.y15_c00331{bottom:564.000000pt;}
.y16_c00331{bottom:571.360000pt;}
.y14_c00331{bottom:591.520000pt;}
.y13_c00331{bottom:619.040000pt;}
.y12_c00331{bottom:646.906667pt;}
.y10_c00331{bottom:674.426667pt;}
.y11_c00331{bottom:681.786667pt;}
.yf_c00331{bottom:701.946667pt;}
.ye_c00331{bottom:729.466667pt;}
.yd_c00331{bottom:757.346667pt;}
.yc_c00331{bottom:784.866667pt;}
.yb_c00331{bottom:820.386667pt;}
.ya_c00331{bottom:847.906667pt;}
.y9_c00331{bottom:875.773333pt;}
.y8_c00331{bottom:903.293333pt;}
.y7_c00331{bottom:930.813333pt;}
.y6_c00331{bottom:958.333333pt;}
.y5_c00331{bottom:986.213333pt;}
.y4_c00331{bottom:1013.733333pt;}
.y1_c00331{bottom:1061.093333pt;}
.h7_c00331{height:33.918750pt;}
.h5_c00331{height:41.456250pt;}
.h8_c00331{height:52.762500pt;}
.h2_c00331{height:57.375000pt;}
.h3_c00331{height:62.812500pt;}
.h6_c00331{height:65.781915pt;}
.h4_c00331{height:1122.556000pt;}
.h0_c00331{height:1122.560000pt;}
.h1_c00331{height:1122.666667pt;}
.w1_c00331{width:793.333333pt;}
.w2_c00331{width:793.597333pt;}
.w0_c00331{width:793.600000pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:113.344000pt;}
.x9_c00331{left:126.784000pt;}
.x3_c00331{left:137.346667pt;}
.x6_c00331{left:191.450667pt;}
.x7_c00331{left:207.773333pt;}
.x8_c00331{left:305.413333pt;}
.x2_c00331{left:384.800000pt;}
.x4_c00331{left:443.384000pt;}
.x5_c00331{left:459.706667pt;}
}





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

.ir_c00332:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00332;src:url('chunks/assets/font_75c407fb788bbfca491dd441.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_0fd80d5228475b2848f5074e.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_067bbee5e61be368816b5b85.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_d0d2b1bcdc6e7ec5b8b2b6f0.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_0384308b18484a9e9e4f100d.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;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_c00332;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff6_c00332{font-family:ff6_c00332;line-height:1.117188;font-style:normal;font-weight: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_c00332;src:url('chunks/assets/font_7356fa8a44e2a80b2dfada06.woff2')format("woff");}.ff7_c00332{font-family:ff7_c00332;line-height:1.112305;font-style:normal;font-weight: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_c00332;src:url('chunks/assets/font_7ea4a9abfa81ab4c787c95dc.woff2')format("woff");}.ff8_c00332{font-family:ff8_c00332;line-height:1.104004;font-style:normal;font-weight: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_c00332;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff9_c00332{font-family:ff9_c00332;line-height:1.311035;font-style:normal;font-weight: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_c00332;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ffa_c00332{font-family:ffa_c00332;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.lsd_c00332{letter-spacing:-2.880000px;}
.lsc_c00332{letter-spacing:-1.440000px;}
.lse_c00332{letter-spacing:-0.532800px;}
.lsf_c00332{letter-spacing:-0.241800px;}
.lsb_c00332{letter-spacing:0.000000px;}
.ls10_c00332{letter-spacing:0.022800px;}
.ls12_c00332{letter-spacing:0.166800px;}
.ls4_c00332{letter-spacing:0.466560px;}
.ls11_c00332{letter-spacing:0.521400px;}
.ls3_c00332{letter-spacing:0.720000px;}
.ls5_c00332{letter-spacing:0.900000px;}
.ls1_c00332{letter-spacing:1.440000px;}
.ls13_c00332{letter-spacing:1.584000px;}
.ls6_c00332{letter-spacing:2.160000px;}
.ls2_c00332{letter-spacing:9.360000px;}
.lsa_c00332{letter-spacing:12.240000px;}
.ls0_c00332{letter-spacing:43.344000px;}
.ls8_c00332{letter-spacing:66.960000px;}
.ls9_c00332{letter-spacing:67.140000px;}
.ls7_c00332{letter-spacing:68.400000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:-72.000000px;}
.ws6_c00332{word-spacing:-19.584000px;}
.ws1_c00332{word-spacing:-18.000000px;}
.ws4_c00332{word-spacing:-15.641400px;}
.ws5_c00332{word-spacing:-15.286800px;}
.ws2_c00332{word-spacing:-15.120000px;}
.ws3_c00332{word-spacing:-14.587200px;}
.ws7_c00332{word-spacing:0.000000px;}
._3_c00332{margin-left:-3.096000px;}
._0_c00332{margin-left:-2.016000px;}
._c_c00332{margin-left:-1.008000px;}
._1_c00332{width:1.368000px;}
._4_c00332{width:2.820024px;}
._a_c00332{width:3.947976px;}
._14_c00332{width:5.904000px;}
._9_c00332{width:7.763976px;}
._2_c00332{width:9.288000px;}
._5_c00332{width:11.003976px;}
._13_c00332{width:12.504072px;}
._b_c00332{width:13.764024px;}
._11_c00332{width:14.951952px;}
._12_c00332{width:15.995976px;}
._f_c00332{width:20.075976px;}
._e_c00332{width:21.240000px;}
._d_c00332{width:22.536000px;}
._6_c00332{width:35.784000px;}
._7_c00332{width:36.936000px;}
._8_c00332{width:38.291976px;}
._10_c00332{width:67.058160px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs3_c00332{font-size:38.880000px;}
.fs2_c00332{font-size:47.520000px;}
.fs1_c00332{font-size:60.480000px;}
.fs0_c00332{font-size:72.000000px;}
.y0_c00332{bottom:0.000000px;}
.y12_c00332{bottom:12.585000px;}
.y18_c00332{bottom:12.630000px;}
.y17_c00332{bottom:38.190000px;}
.y3_c00332{bottom:57.240000px;}
.y16_c00332{bottom:64.110000px;}
.y2_c00332{bottom:78.120000px;}
.y15_c00332{bottom:90.030000px;}
.y14_c00332{bottom:115.950000px;}
.y2a_c00332{bottom:130.716000px;}
.y29_c00332{bottom:137.556000px;}
.y28_c00332{bottom:148.356000px;}
.y27_c00332{bottom:173.910000px;}
.y26_c00332{bottom:205.230000px;}
.y25_c00332{bottom:236.235000px;}
.y23_c00332{bottom:267.195000px;}
.y24_c00332{bottom:275.475000px;}
.y22_c00332{bottom:298.155000px;}
.y21_c00332{bottom:329.475000px;}
.y20_c00332{bottom:360.465000px;}
.y1f_c00332{bottom:391.425000px;}
.y1e_c00332{bottom:422.385000px;}
.y1d_c00332{bottom:453.705000px;}
.y1c_c00332{bottom:484.710000px;}
.y1b_c00332{bottom:515.670000px;}
.y1a_c00332{bottom:546.630000px;}
.y19_c00332{bottom:577.950000px;}
.y13_c00332{bottom:594.870000px;}
.y11_c00332{bottom:724.905000px;}
.y10_c00332{bottom:766.290000px;}
.yf_c00332{bottom:797.610000px;}
.ye_c00332{bottom:828.570000px;}
.yd_c00332{bottom:859.575000px;}
.yc_c00332{bottom:890.535000px;}
.yb_c00332{bottom:921.855000px;}
.ya_c00332{bottom:952.815000px;}
.y9_c00332{bottom:983.805000px;}
.y8_c00332{bottom:1014.765000px;}
.y7_c00332{bottom:1045.725000px;}
.y6_c00332{bottom:1077.045000px;}
.y5_c00332{bottom:1108.050000px;}
.y4_c00332{bottom:1139.370000px;}
.y1_c00332{bottom:1193.730000px;}
.h6_c00332{height:25.905000px;}
.hc_c00332{height:34.855313px;}
.hb_c00332{height:46.638281px;}
.hd_c00332{height:54.514688px;}
.h7_c00332{height:59.357813px;}
.h9_c00332{height:60.952500px;}
.h2_c00332{height:64.546875px;}
.h5_c00332{height:70.628906px;}
.h4_c00332{height:70.664062px;}
.h3_c00332{height:74.004654px;}
.h8_c00332{height:129.312000px;}
.ha_c00332{height:1262.875500px;}
.h0_c00332{height:1262.880000px;}
.h1_c00332{height:1263.000000px;}
.w2_c00332{width:323.415000px;}
.w3_c00332{width:323.775000px;}
.w1_c00332{width:892.500000px;}
.w4_c00332{width:892.797000px;}
.w0_c00332{width:892.800000px;}
.x0_c00332{left:0.000000px;}
.x6_c00332{left:7.582500px;}
.x5_c00332{left:119.929500px;}
.x1_c00332{left:127.512000px;}
.xc_c00332{left:142.632000px;}
.x3_c00332{left:154.515000px;}
.x8_c00332{left:178.635000px;}
.x4_c00332{left:181.515000px;}
.x9_c00332{left:200.232000px;}
.xa_c00332{left:218.625000px;}
.xb_c00332{left:343.590000px;}
.x2_c00332{left:432.900000px;}
.x7_c00332{left:444.060000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.lsd_c00332{letter-spacing:-2.560000pt;}
.lsc_c00332{letter-spacing:-1.280000pt;}
.lse_c00332{letter-spacing:-0.473600pt;}
.lsf_c00332{letter-spacing:-0.214933pt;}
.lsb_c00332{letter-spacing:0.000000pt;}
.ls10_c00332{letter-spacing:0.020267pt;}
.ls12_c00332{letter-spacing:0.148267pt;}
.ls4_c00332{letter-spacing:0.414720pt;}
.ls11_c00332{letter-spacing:0.463467pt;}
.ls3_c00332{letter-spacing:0.640000pt;}
.ls5_c00332{letter-spacing:0.800000pt;}
.ls1_c00332{letter-spacing:1.280000pt;}
.ls13_c00332{letter-spacing:1.408000pt;}
.ls6_c00332{letter-spacing:1.920000pt;}
.ls2_c00332{letter-spacing:8.320000pt;}
.lsa_c00332{letter-spacing:10.880000pt;}
.ls0_c00332{letter-spacing:38.528000pt;}
.ls8_c00332{letter-spacing:59.520000pt;}
.ls9_c00332{letter-spacing:59.680000pt;}
.ls7_c00332{letter-spacing:60.800000pt;}
.ws0_c00332{word-spacing:-64.000000pt;}
.ws6_c00332{word-spacing:-17.408000pt;}
.ws1_c00332{word-spacing:-16.000000pt;}
.ws4_c00332{word-spacing:-13.903467pt;}
.ws5_c00332{word-spacing:-13.588267pt;}
.ws2_c00332{word-spacing:-13.440000pt;}
.ws3_c00332{word-spacing:-12.966400pt;}
.ws7_c00332{word-spacing:0.000000pt;}
._3_c00332{margin-left:-2.752000pt;}
._0_c00332{margin-left:-1.792000pt;}
._c_c00332{margin-left:-0.896000pt;}
._1_c00332{width:1.216000pt;}
._4_c00332{width:2.506688pt;}
._a_c00332{width:3.509312pt;}
._14_c00332{width:5.248000pt;}
._9_c00332{width:6.901312pt;}
._2_c00332{width:8.256000pt;}
._5_c00332{width:9.781312pt;}
._13_c00332{width:11.114731pt;}
._b_c00332{width:12.234688pt;}
._11_c00332{width:13.290624pt;}
._12_c00332{width:14.218645pt;}
._f_c00332{width:17.845312pt;}
._e_c00332{width:18.880000pt;}
._d_c00332{width:20.032000pt;}
._6_c00332{width:31.808000pt;}
._7_c00332{width:32.832000pt;}
._8_c00332{width:34.037312pt;}
._10_c00332{width:59.607253pt;}
.fs3_c00332{font-size:34.560000pt;}
.fs2_c00332{font-size:42.240000pt;}
.fs1_c00332{font-size:53.760000pt;}
.fs0_c00332{font-size:64.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y12_c00332{bottom:11.186667pt;}
.y18_c00332{bottom:11.226667pt;}
.y17_c00332{bottom:33.946667pt;}
.y3_c00332{bottom:50.880000pt;}
.y16_c00332{bottom:56.986667pt;}
.y2_c00332{bottom:69.440000pt;}
.y15_c00332{bottom:80.026667pt;}
.y14_c00332{bottom:103.066667pt;}
.y2a_c00332{bottom:116.192000pt;}
.y29_c00332{bottom:122.272000pt;}
.y28_c00332{bottom:131.872000pt;}
.y27_c00332{bottom:154.586667pt;}
.y26_c00332{bottom:182.426667pt;}
.y25_c00332{bottom:209.986667pt;}
.y23_c00332{bottom:237.506667pt;}
.y24_c00332{bottom:244.866667pt;}
.y22_c00332{bottom:265.026667pt;}
.y21_c00332{bottom:292.866667pt;}
.y20_c00332{bottom:320.413333pt;}
.y1f_c00332{bottom:347.933333pt;}
.y1e_c00332{bottom:375.453333pt;}
.y1d_c00332{bottom:403.293333pt;}
.y1c_c00332{bottom:430.853333pt;}
.y1b_c00332{bottom:458.373333pt;}
.y1a_c00332{bottom:485.893333pt;}
.y19_c00332{bottom:513.733333pt;}
.y13_c00332{bottom:528.773333pt;}
.y11_c00332{bottom:644.360000pt;}
.y10_c00332{bottom:681.146667pt;}
.yf_c00332{bottom:708.986667pt;}
.ye_c00332{bottom:736.506667pt;}
.yd_c00332{bottom:764.066667pt;}
.yc_c00332{bottom:791.586667pt;}
.yb_c00332{bottom:819.426667pt;}
.ya_c00332{bottom:846.946667pt;}
.y9_c00332{bottom:874.493333pt;}
.y8_c00332{bottom:902.013333pt;}
.y7_c00332{bottom:929.533333pt;}
.y6_c00332{bottom:957.373333pt;}
.y5_c00332{bottom:984.933333pt;}
.y4_c00332{bottom:1012.773333pt;}
.y1_c00332{bottom:1061.093333pt;}
.h6_c00332{height:23.026667pt;}
.hc_c00332{height:30.982500pt;}
.hb_c00332{height:41.456250pt;}
.hd_c00332{height:48.457500pt;}
.h7_c00332{height:52.762500pt;}
.h9_c00332{height:54.180000pt;}
.h2_c00332{height:57.375000pt;}
.h5_c00332{height:62.781250pt;}
.h4_c00332{height:62.812500pt;}
.h3_c00332{height:65.781915pt;}
.h8_c00332{height:114.944000pt;}
.ha_c00332{height:1122.556000pt;}
.h0_c00332{height:1122.560000pt;}
.h1_c00332{height:1122.666667pt;}
.w2_c00332{width:287.480000pt;}
.w3_c00332{width:287.800000pt;}
.w1_c00332{width:793.333333pt;}
.w4_c00332{width:793.597333pt;}
.w0_c00332{width:793.600000pt;}
.x0_c00332{left:0.000000pt;}
.x6_c00332{left:6.740000pt;}
.x5_c00332{left:106.604000pt;}
.x1_c00332{left:113.344000pt;}
.xc_c00332{left:126.784000pt;}
.x3_c00332{left:137.346667pt;}
.x8_c00332{left:158.786667pt;}
.x4_c00332{left:161.346667pt;}
.x9_c00332{left:177.984000pt;}
.xa_c00332{left:194.333333pt;}
.xb_c00332{left:305.413333pt;}
.x2_c00332{left:384.800000pt;}
.x7_c00332{left:394.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_c00333 {
    display:none;
  }
  .loading-indicator_c00333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00333 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00333 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00333" -> "#page-container .classname_c00333")
 */
.pf_c00333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00333 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00333 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00333 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00333 {overflow:visible;}
  }
}
.c_c00333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00333 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00333:after { /* webkit #35443 */
  content: '';
}
.t_c00333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00333 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00333 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00333 { /* info for Javascript */
  display:none;
}
.l_c00333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00333:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00333;src:url('chunks/assets/font_644d250055332ce29173682f.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_5656ed654d23433907eeba0f.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_f023438b632e728427ffd8a4.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;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_c00333;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_2def4e76a50d3bdc244a491a.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00333;src:url('chunks/assets/font_0bc02b3848792791ddc81661.woff2')format("woff");}.ff6_c00333{font-family:ff6_c00333;line-height:1.117188;font-style:normal;font-weight: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_c00333;src:url('chunks/assets/font_699d1dab9e116530b877cdbd.woff2')format("woff");}.ff7_c00333{font-family:ff7_c00333;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls17_c00333{letter-spacing:-1.056000px;}
.ls18_c00333{letter-spacing:-0.972000px;}
.ls14_c00333{letter-spacing:-0.486600px;}
.ls19_c00333{letter-spacing:-0.466800px;}
.ls12_c00333{letter-spacing:-0.144000px;}
.ls10_c00333{letter-spacing:0.000000px;}
.ls15_c00333{letter-spacing:0.022800px;}
.lsa_c00333{letter-spacing:0.048960px;}
.ls4_c00333{letter-spacing:0.120000px;}
.ls13_c00333{letter-spacing:0.144000px;}
.lsc_c00333{letter-spacing:0.302400px;}
.lsf_c00333{letter-spacing:0.313920px;}
.ls3_c00333{letter-spacing:0.360000px;}
.ls16_c00333{letter-spacing:0.466800px;}
.lsb_c00333{letter-spacing:0.518400px;}
.lsd_c00333{letter-spacing:0.524160px;}
.ls11_c00333{letter-spacing:0.576000px;}
.lse_c00333{letter-spacing:0.698400px;}
.ls7_c00333{letter-spacing:0.720000px;}
.ls1_c00333{letter-spacing:0.792000px;}
.ls0_c00333{letter-spacing:0.912000px;}
.ls5_c00333{letter-spacing:2.160000px;}
.ls6_c00333{letter-spacing:3.600000px;}
.ls9_c00333{letter-spacing:6.480000px;}
.ls2_c00333{letter-spacing:7.920000px;}
.ls8_c00333{letter-spacing:12.240000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00333{word-spacing:-72.000000px;}
.ws5_c00333{word-spacing:-60.480000px;}
.ws2_c00333{word-spacing:-18.576000px;}
.ws0_c00333{word-spacing:-18.000000px;}
.ws3_c00333{word-spacing:-17.856000px;}
.ws4_c00333{word-spacing:-15.120000px;}
.ws7_c00333{word-spacing:-14.653200px;}
.ws6_c00333{word-spacing:-14.633400px;}
.ws8_c00333{word-spacing:0.000000px;}
._4_c00333{margin-left:-3.456000px;}
._8_c00333{margin-left:-2.448000px;}
._0_c00333{margin-left:-1.440000px;}
._2_c00333{width:1.800000px;}
._7_c00333{width:2.904000px;}
._b_c00333{width:4.272000px;}
._d_c00333{width:5.688000px;}
._6_c00333{width:7.416000px;}
._5_c00333{width:8.424000px;}
._c_c00333{width:9.720000px;}
._e_c00333{width:11.868000px;}
._3_c00333{width:13.752000px;}
._1_c00333{width:14.760000px;}
._14_c00333{width:20.173787px;}
._13_c00333{width:21.816000px;}
._f_c00333{width:23.040000px;}
._10_c00333{width:24.408000px;}
._12_c00333{width:25.536000px;}
._11_c00333{width:26.724000px;}
._9_c00333{width:27.864000px;}
._a_c00333{width:29.928000px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs2_c00333{font-size:38.880000px;}
.fs1_c00333{font-size:47.520000px;}
.fs3_c00333{font-size:60.480000px;}
.fs0_c00333{font-size:72.000000px;}
.y0_c00333{bottom:0.000000px;}
.y3_c00333{bottom:57.240000px;}
.y2_c00333{bottom:78.120000px;}
.y37_c00333{bottom:130.716000px;}
.y36_c00333{bottom:147.996000px;}
.y35_c00333{bottom:165.270000px;}
.y34_c00333{bottom:182.190000px;}
.y33_c00333{bottom:199.470000px;}
.y32_c00333{bottom:216.750000px;}
.y31_c00333{bottom:234.075000px;}
.y30_c00333{bottom:251.355000px;}
.y2f_c00333{bottom:268.635000px;}
.y2e_c00333{bottom:285.915000px;}
.y2d_c00333{bottom:303.195000px;}
.y2c_c00333{bottom:310.035000px;}
.y2b_c00333{bottom:320.475000px;}
.y2a_c00333{bottom:337.755000px;}
.y29_c00333{bottom:355.065000px;}
.y28_c00333{bottom:371.985000px;}
.y27_c00333{bottom:389.265000px;}
.y26_c00333{bottom:406.545000px;}
.y25_c00333{bottom:413.385000px;}
.y24_c00333{bottom:423.825000px;}
.y23_c00333{bottom:441.105000px;}
.y22_c00333{bottom:458.385000px;}
.y21_c00333{bottom:475.710000px;}
.y20_c00333{bottom:482.550000px;}
.y1f_c00333{bottom:492.990000px;}
.y1e_c00333{bottom:510.270000px;}
.y1d_c00333{bottom:527.550000px;}
.y1c_c00333{bottom:534.390000px;}
.y1b_c00333{bottom:545.190000px;}
.y1a_c00333{bottom:581.190000px;}
.y19_c00333{bottom:612.540000px;}
.y18_c00333{bottom:643.500000px;}
.y17_c00333{bottom:674.460000px;}
.y16_c00333{bottom:705.420000px;}
.y15_c00333{bottom:736.770000px;}
.y13_c00333{bottom:767.730000px;}
.y14_c00333{bottom:776.010000px;}
.y12_c00333{bottom:798.690000px;}
.y11_c00333{bottom:829.650000px;}
.yf_c00333{bottom:861.015000px;}
.y10_c00333{bottom:869.295000px;}
.ye_c00333{bottom:891.975000px;}
.yd_c00333{bottom:922.935000px;}
.yc_c00333{bottom:953.895000px;}
.yb_c00333{bottom:985.245000px;}
.ya_c00333{bottom:1016.205000px;}
.y8_c00333{bottom:1047.165000px;}
.y9_c00333{bottom:1055.445000px;}
.y7_c00333{bottom:1078.125000px;}
.y6_c00333{bottom:1109.490000px;}
.y4_c00333{bottom:1140.450000px;}
.y5_c00333{bottom:1148.730000px;}
.y1_c00333{bottom:1193.730000px;}
.h6_c00333{height:34.855313px;}
.h5_c00333{height:46.638281px;}
.h8_c00333{height:54.219375px;}
.h9_c00333{height:54.514688px;}
.h7_c00333{height:59.328281px;}
.h2_c00333{height:64.546875px;}
.h3_c00333{height:70.664062px;}
.h4_c00333{height:1262.875500px;}
.h0_c00333{height:1262.880000px;}
.h1_c00333{height:1263.000000px;}
.w1_c00333{width:892.500000px;}
.w2_c00333{width:892.797000px;}
.w0_c00333{width:892.800000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:127.512000px;}
.xa_c00333{left:142.632000px;}
.x5_c00333{left:284.862000px;}
.x6_c00333{left:303.270000px;}
.x9_c00333{left:343.590000px;}
.x3_c00333{left:388.977000px;}
.x4_c00333{left:407.340000px;}
.x2_c00333{left:432.900000px;}
.x7_c00333{left:658.722000px;}
.x8_c00333{left:677.085000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls17_c00333{letter-spacing:-0.938667pt;}
.ls18_c00333{letter-spacing:-0.864000pt;}
.ls14_c00333{letter-spacing:-0.432533pt;}
.ls19_c00333{letter-spacing:-0.414933pt;}
.ls12_c00333{letter-spacing:-0.128000pt;}
.ls10_c00333{letter-spacing:0.000000pt;}
.ls15_c00333{letter-spacing:0.020267pt;}
.lsa_c00333{letter-spacing:0.043520pt;}
.ls4_c00333{letter-spacing:0.106667pt;}
.ls13_c00333{letter-spacing:0.128000pt;}
.lsc_c00333{letter-spacing:0.268800pt;}
.lsf_c00333{letter-spacing:0.279040pt;}
.ls3_c00333{letter-spacing:0.320000pt;}
.ls16_c00333{letter-spacing:0.414933pt;}
.lsb_c00333{letter-spacing:0.460800pt;}
.lsd_c00333{letter-spacing:0.465920pt;}
.ls11_c00333{letter-spacing:0.512000pt;}
.lse_c00333{letter-spacing:0.620800pt;}
.ls7_c00333{letter-spacing:0.640000pt;}
.ls1_c00333{letter-spacing:0.704000pt;}
.ls0_c00333{letter-spacing:0.810667pt;}
.ls5_c00333{letter-spacing:1.920000pt;}
.ls6_c00333{letter-spacing:3.200000pt;}
.ls9_c00333{letter-spacing:5.760000pt;}
.ls2_c00333{letter-spacing:7.040000pt;}
.ls8_c00333{letter-spacing:10.880000pt;}
.ws1_c00333{word-spacing:-64.000000pt;}
.ws5_c00333{word-spacing:-53.760000pt;}
.ws2_c00333{word-spacing:-16.512000pt;}
.ws0_c00333{word-spacing:-16.000000pt;}
.ws3_c00333{word-spacing:-15.872000pt;}
.ws4_c00333{word-spacing:-13.440000pt;}
.ws7_c00333{word-spacing:-13.025067pt;}
.ws6_c00333{word-spacing:-13.007467pt;}
.ws8_c00333{word-spacing:0.000000pt;}
._4_c00333{margin-left:-3.072000pt;}
._8_c00333{margin-left:-2.176000pt;}
._0_c00333{margin-left:-1.280000pt;}
._2_c00333{width:1.600000pt;}
._7_c00333{width:2.581333pt;}
._b_c00333{width:3.797333pt;}
._d_c00333{width:5.056000pt;}
._6_c00333{width:6.592000pt;}
._5_c00333{width:7.488000pt;}
._c_c00333{width:8.640000pt;}
._e_c00333{width:10.549333pt;}
._3_c00333{width:12.224000pt;}
._1_c00333{width:13.120000pt;}
._14_c00333{width:17.932255pt;}
._13_c00333{width:19.392000pt;}
._f_c00333{width:20.480000pt;}
._10_c00333{width:21.696000pt;}
._12_c00333{width:22.698667pt;}
._11_c00333{width:23.754667pt;}
._9_c00333{width:24.768000pt;}
._a_c00333{width:26.602667pt;}
.fs2_c00333{font-size:34.560000pt;}
.fs1_c00333{font-size:42.240000pt;}
.fs3_c00333{font-size:53.760000pt;}
.fs0_c00333{font-size:64.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y3_c00333{bottom:50.880000pt;}
.y2_c00333{bottom:69.440000pt;}
.y37_c00333{bottom:116.192000pt;}
.y36_c00333{bottom:131.552000pt;}
.y35_c00333{bottom:146.906667pt;}
.y34_c00333{bottom:161.946667pt;}
.y33_c00333{bottom:177.306667pt;}
.y32_c00333{bottom:192.666667pt;}
.y31_c00333{bottom:208.066667pt;}
.y30_c00333{bottom:223.426667pt;}
.y2f_c00333{bottom:238.786667pt;}
.y2e_c00333{bottom:254.146667pt;}
.y2d_c00333{bottom:269.506667pt;}
.y2c_c00333{bottom:275.586667pt;}
.y2b_c00333{bottom:284.866667pt;}
.y2a_c00333{bottom:300.226667pt;}
.y29_c00333{bottom:315.613333pt;}
.y28_c00333{bottom:330.653333pt;}
.y27_c00333{bottom:346.013333pt;}
.y26_c00333{bottom:361.373333pt;}
.y25_c00333{bottom:367.453333pt;}
.y24_c00333{bottom:376.733333pt;}
.y23_c00333{bottom:392.093333pt;}
.y22_c00333{bottom:407.453333pt;}
.y21_c00333{bottom:422.853333pt;}
.y20_c00333{bottom:428.933333pt;}
.y1f_c00333{bottom:438.213333pt;}
.y1e_c00333{bottom:453.573333pt;}
.y1d_c00333{bottom:468.933333pt;}
.y1c_c00333{bottom:475.013333pt;}
.y1b_c00333{bottom:484.613333pt;}
.y1a_c00333{bottom:516.613333pt;}
.y19_c00333{bottom:544.480000pt;}
.y18_c00333{bottom:572.000000pt;}
.y17_c00333{bottom:599.520000pt;}
.y16_c00333{bottom:627.040000pt;}
.y15_c00333{bottom:654.906667pt;}
.y13_c00333{bottom:682.426667pt;}
.y14_c00333{bottom:689.786667pt;}
.y12_c00333{bottom:709.946667pt;}
.y11_c00333{bottom:737.466667pt;}
.yf_c00333{bottom:765.346667pt;}
.y10_c00333{bottom:772.706667pt;}
.ye_c00333{bottom:792.866667pt;}
.yd_c00333{bottom:820.386667pt;}
.yc_c00333{bottom:847.906667pt;}
.yb_c00333{bottom:875.773333pt;}
.ya_c00333{bottom:903.293333pt;}
.y8_c00333{bottom:930.813333pt;}
.y9_c00333{bottom:938.173333pt;}
.y7_c00333{bottom:958.333333pt;}
.y6_c00333{bottom:986.213333pt;}
.y4_c00333{bottom:1013.733333pt;}
.y5_c00333{bottom:1021.093333pt;}
.y1_c00333{bottom:1061.093333pt;}
.h6_c00333{height:30.982500pt;}
.h5_c00333{height:41.456250pt;}
.h8_c00333{height:48.195000pt;}
.h9_c00333{height:48.457500pt;}
.h7_c00333{height:52.736250pt;}
.h2_c00333{height:57.375000pt;}
.h3_c00333{height:62.812500pt;}
.h4_c00333{height:1122.556000pt;}
.h0_c00333{height:1122.560000pt;}
.h1_c00333{height:1122.666667pt;}
.w1_c00333{width:793.333333pt;}
.w2_c00333{width:793.597333pt;}
.w0_c00333{width:793.600000pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:113.344000pt;}
.xa_c00333{left:126.784000pt;}
.x5_c00333{left:253.210667pt;}
.x6_c00333{left:269.573333pt;}
.x9_c00333{left:305.413333pt;}
.x3_c00333{left:345.757333pt;}
.x4_c00333{left:362.080000pt;}
.x2_c00333{left:384.800000pt;}
.x7_c00333{left:585.530667pt;}
.x8_c00333{left:601.853333pt;}
}





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

.ir_c00334:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00334;src:url('chunks/assets/font_2affe97920b62c19744b2817.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_1a86aa59b8c107036b71bc09.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_bc4d0928b5677989fb2ff98d.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00334;src:url('chunks/assets/font_bcd49bb4958db89e77cc91a3.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;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_c00334;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00334{font-family:ff5_c00334;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00334;src:url('chunks/assets/font_29973bef3741bd3171b359f4.woff2')format("woff");}.ff6_c00334{font-family:ff6_c00334;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_c00334;src:url('chunks/assets/font_ceabe7139836d418948d67e0.woff2')format("woff");}.ff7_c00334{font-family:ff7_c00334;line-height:1.104004;font-style:normal;font-weight: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_c00334;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8_c00334{font-family:ff8_c00334;line-height:1.311035;font-style:normal;font-weight: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_c00334;src:url('chunks/assets/font_30ea147f029b1d58953605a6.woff2')format("woff");}.ff9_c00334{font-family:ff9_c00334;line-height:1.112305;font-style:normal;font-weight: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_c00334;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ffa_c00334{font-family:ffa_c00334;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls15_c00334{letter-spacing:-1.416000px;}
.ls11_c00334{letter-spacing:-0.241800px;}
.ls10_c00334{letter-spacing:-0.144000px;}
.lse_c00334{letter-spacing:0.000000px;}
.ls14_c00334{letter-spacing:0.020400px;}
.ls13_c00334{letter-spacing:0.022800px;}
.ls6_c00334{letter-spacing:0.048960px;}
.ls1_c00334{letter-spacing:0.360000px;}
.ls16_c00334{letter-spacing:0.466800px;}
.ls8_c00334{letter-spacing:0.524160px;}
.ls12_c00334{letter-spacing:0.529800px;}
.lsf_c00334{letter-spacing:0.576000px;}
.ls9_c00334{letter-spacing:0.720000px;}
.ls7_c00334{letter-spacing:0.732000px;}
.ls4_c00334{letter-spacing:0.792000px;}
.ls3_c00334{letter-spacing:1.440000px;}
.ls5_c00334{letter-spacing:3.600000px;}
.lsd_c00334{letter-spacing:5.040000px;}
.lsc_c00334{letter-spacing:6.480000px;}
.ls2_c00334{letter-spacing:15.120000px;}
.ls0_c00334{letter-spacing:15.240000px;}
.lsa_c00334{letter-spacing:41.040000px;}
.lsb_c00334{letter-spacing:42.480000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00334{word-spacing:-72.000000px;}
.ws1_c00334{word-spacing:-18.576000px;}
.ws0_c00334{word-spacing:-18.000000px;}
.ws2_c00334{word-spacing:-17.856000px;}
.ws6_c00334{word-spacing:-15.586800px;}
.ws4_c00334{word-spacing:-15.140400px;}
.ws3_c00334{word-spacing:-15.120000px;}
.ws7_c00334{word-spacing:0.000000px;}
._4_c00334{margin-left:-3.024000px;}
._1_c00334{margin-left:-1.440000px;}
._0_c00334{width:1.080000px;}
._5_c00334{width:2.808000px;}
._9_c00334{width:4.319278px;}
._d_c00334{width:5.760000px;}
._c_c00334{width:7.206002px;}
._e_c00334{width:8.543992px;}
._8_c00334{width:10.224000px;}
._7_c00334{width:11.304000px;}
._6_c00334{width:13.464000px;}
._3_c00334{width:14.760000px;}
._2_c00334{width:15.984000px;}
._13_c00334{width:19.020024px;}
._14_c00334{width:20.219976px;}
._12_c00334{width:21.384000px;}
._11_c00334{width:22.968000px;}
._15_c00334{width:24.036000px;}
._10_c00334{width:32.184000px;}
._f_c00334{width:34.056000px;}
._b_c00334{width:40.733639px;}
._a_c00334{width:42.974400px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs3_c00334{font-size:38.880000px;}
.fs2_c00334{font-size:47.520000px;}
.fs1_c00334{font-size:60.480000px;}
.fs0_c00334{font-size:72.000000px;}
.y0_c00334{bottom:0.000000px;}
.y11_c00334{bottom:12.225000px;}
.yc_c00334{bottom:12.585000px;}
.y10_c00334{bottom:38.190000px;}
.y3_c00334{bottom:57.240000px;}
.yf_c00334{bottom:64.110000px;}
.y2_c00334{bottom:78.120000px;}
.ye_c00334{bottom:90.030000px;}
.y2e_c00334{bottom:130.716000px;}
.y2d_c00334{bottom:147.996000px;}
.y2c_c00334{bottom:165.270000px;}
.y2b_c00334{bottom:182.190000px;}
.y2a_c00334{bottom:199.470000px;}
.y29_c00334{bottom:216.750000px;}
.y28_c00334{bottom:234.075000px;}
.y27_c00334{bottom:251.355000px;}
.y26_c00334{bottom:268.635000px;}
.y25_c00334{bottom:285.915000px;}
.y24_c00334{bottom:303.195000px;}
.y23_c00334{bottom:310.035000px;}
.y22_c00334{bottom:320.835000px;}
.y21_c00334{bottom:356.505000px;}
.y20_c00334{bottom:387.465000px;}
.y1f_c00334{bottom:418.785000px;}
.y1d_c00334{bottom:449.745000px;}
.y1e_c00334{bottom:458.025000px;}
.y1c_c00334{bottom:480.750000px;}
.y1b_c00334{bottom:511.710000px;}
.y1a_c00334{bottom:543.030000px;}
.y19_c00334{bottom:573.990000px;}
.y18_c00334{bottom:604.980000px;}
.y17_c00334{bottom:635.940000px;}
.y16_c00334{bottom:667.260000px;}
.y15_c00334{bottom:698.220000px;}
.y14_c00334{bottom:729.210000px;}
.y13_c00334{bottom:760.170000px;}
.y12_c00334{bottom:791.130000px;}
.yd_c00334{bottom:808.425000px;}
.yb_c00334{bottom:912.510000px;}
.ya_c00334{bottom:953.895000px;}
.y9_c00334{bottom:984.885000px;}
.y8_c00334{bottom:1016.205000px;}
.y7_c00334{bottom:1047.165000px;}
.y6_c00334{bottom:1078.125000px;}
.y5_c00334{bottom:1109.490000px;}
.y4_c00334{bottom:1140.450000px;}
.y1_c00334{bottom:1193.730000px;}
.h5_c00334{height:25.905000px;}
.hc_c00334{height:34.855313px;}
.hb_c00334{height:46.638281px;}
.h8_c00334{height:54.219375px;}
.hd_c00334{height:54.514688px;}
.h6_c00334{height:59.357813px;}
.h9_c00334{height:60.952500px;}
.h2_c00334{height:64.546875px;}
.h4_c00334{height:70.628906px;}
.h3_c00334{height:70.664062px;}
.h7_c00334{height:103.341000px;}
.ha_c00334{height:1262.875500px;}
.h0_c00334{height:1262.880000px;}
.h1_c00334{height:1263.000000px;}
.w2_c00334{width:215.370000px;}
.w3_c00334{width:215.385000px;}
.w4_c00334{width:215.685000px;}
.w1_c00334{width:892.500000px;}
.w5_c00334{width:892.797000px;}
.w0_c00334{width:892.800000px;}
.x0_c00334{left:0.000000px;}
.x5_c00334{left:7.582500px;}
.x4_c00334{left:119.929500px;}
.x1_c00334{left:127.512000px;}
.xc_c00334{left:142.632000px;}
.x8_c00334{left:169.995000px;}
.x3_c00334{left:178.635000px;}
.x6_c00334{left:336.030000px;}
.xb_c00334{left:343.590000px;}
.x9_c00334{left:351.147000px;}
.xa_c00334{left:369.510000px;}
.x2_c00334{left:432.900000px;}
.x7_c00334{left:552.150000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls15_c00334{letter-spacing:-1.258667pt;}
.ls11_c00334{letter-spacing:-0.214933pt;}
.ls10_c00334{letter-spacing:-0.128000pt;}
.lse_c00334{letter-spacing:0.000000pt;}
.ls14_c00334{letter-spacing:0.018133pt;}
.ls13_c00334{letter-spacing:0.020267pt;}
.ls6_c00334{letter-spacing:0.043520pt;}
.ls1_c00334{letter-spacing:0.320000pt;}
.ls16_c00334{letter-spacing:0.414933pt;}
.ls8_c00334{letter-spacing:0.465920pt;}
.ls12_c00334{letter-spacing:0.470933pt;}
.lsf_c00334{letter-spacing:0.512000pt;}
.ls9_c00334{letter-spacing:0.640000pt;}
.ls7_c00334{letter-spacing:0.650667pt;}
.ls4_c00334{letter-spacing:0.704000pt;}
.ls3_c00334{letter-spacing:1.280000pt;}
.ls5_c00334{letter-spacing:3.200000pt;}
.lsd_c00334{letter-spacing:4.480000pt;}
.lsc_c00334{letter-spacing:5.760000pt;}
.ls2_c00334{letter-spacing:13.440000pt;}
.ls0_c00334{letter-spacing:13.546667pt;}
.lsa_c00334{letter-spacing:36.480000pt;}
.lsb_c00334{letter-spacing:37.760000pt;}
.ws5_c00334{word-spacing:-64.000000pt;}
.ws1_c00334{word-spacing:-16.512000pt;}
.ws0_c00334{word-spacing:-16.000000pt;}
.ws2_c00334{word-spacing:-15.872000pt;}
.ws6_c00334{word-spacing:-13.854933pt;}
.ws4_c00334{word-spacing:-13.458133pt;}
.ws3_c00334{word-spacing:-13.440000pt;}
.ws7_c00334{word-spacing:0.000000pt;}
._4_c00334{margin-left:-2.688000pt;}
._1_c00334{margin-left:-1.280000pt;}
._0_c00334{width:0.960000pt;}
._5_c00334{width:2.496000pt;}
._9_c00334{width:3.839358pt;}
._d_c00334{width:5.120000pt;}
._c_c00334{width:6.405335pt;}
._e_c00334{width:7.594660pt;}
._8_c00334{width:9.088000pt;}
._7_c00334{width:10.048000pt;}
._6_c00334{width:11.968000pt;}
._3_c00334{width:13.120000pt;}
._2_c00334{width:14.208000pt;}
._13_c00334{width:16.906688pt;}
._14_c00334{width:17.973312pt;}
._12_c00334{width:19.008000pt;}
._11_c00334{width:20.416000pt;}
._15_c00334{width:21.365333pt;}
._10_c00334{width:28.608000pt;}
._f_c00334{width:30.272000pt;}
._b_c00334{width:36.207679pt;}
._a_c00334{width:38.199467pt;}
.fs3_c00334{font-size:34.560000pt;}
.fs2_c00334{font-size:42.240000pt;}
.fs1_c00334{font-size:53.760000pt;}
.fs0_c00334{font-size:64.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y11_c00334{bottom:10.866667pt;}
.yc_c00334{bottom:11.186667pt;}
.y10_c00334{bottom:33.946667pt;}
.y3_c00334{bottom:50.880000pt;}
.yf_c00334{bottom:56.986667pt;}
.y2_c00334{bottom:69.440000pt;}
.ye_c00334{bottom:80.026667pt;}
.y2e_c00334{bottom:116.192000pt;}
.y2d_c00334{bottom:131.552000pt;}
.y2c_c00334{bottom:146.906667pt;}
.y2b_c00334{bottom:161.946667pt;}
.y2a_c00334{bottom:177.306667pt;}
.y29_c00334{bottom:192.666667pt;}
.y28_c00334{bottom:208.066667pt;}
.y27_c00334{bottom:223.426667pt;}
.y26_c00334{bottom:238.786667pt;}
.y25_c00334{bottom:254.146667pt;}
.y24_c00334{bottom:269.506667pt;}
.y23_c00334{bottom:275.586667pt;}
.y22_c00334{bottom:285.186667pt;}
.y21_c00334{bottom:316.893333pt;}
.y20_c00334{bottom:344.413333pt;}
.y1f_c00334{bottom:372.253333pt;}
.y1d_c00334{bottom:399.773333pt;}
.y1e_c00334{bottom:407.133333pt;}
.y1c_c00334{bottom:427.333333pt;}
.y1b_c00334{bottom:454.853333pt;}
.y1a_c00334{bottom:482.693333pt;}
.y19_c00334{bottom:510.213333pt;}
.y18_c00334{bottom:537.760000pt;}
.y17_c00334{bottom:565.280000pt;}
.y16_c00334{bottom:593.120000pt;}
.y15_c00334{bottom:620.640000pt;}
.y14_c00334{bottom:648.186667pt;}
.y13_c00334{bottom:675.706667pt;}
.y12_c00334{bottom:703.226667pt;}
.yd_c00334{bottom:718.600000pt;}
.yb_c00334{bottom:811.120000pt;}
.ya_c00334{bottom:847.906667pt;}
.y9_c00334{bottom:875.453333pt;}
.y8_c00334{bottom:903.293333pt;}
.y7_c00334{bottom:930.813333pt;}
.y6_c00334{bottom:958.333333pt;}
.y5_c00334{bottom:986.213333pt;}
.y4_c00334{bottom:1013.733333pt;}
.y1_c00334{bottom:1061.093333pt;}
.h5_c00334{height:23.026667pt;}
.hc_c00334{height:30.982500pt;}
.hb_c00334{height:41.456250pt;}
.h8_c00334{height:48.195000pt;}
.hd_c00334{height:48.457500pt;}
.h6_c00334{height:52.762500pt;}
.h9_c00334{height:54.180000pt;}
.h2_c00334{height:57.375000pt;}
.h4_c00334{height:62.781250pt;}
.h3_c00334{height:62.812500pt;}
.h7_c00334{height:91.858667pt;}
.ha_c00334{height:1122.556000pt;}
.h0_c00334{height:1122.560000pt;}
.h1_c00334{height:1122.666667pt;}
.w2_c00334{width:191.440000pt;}
.w3_c00334{width:191.453333pt;}
.w4_c00334{width:191.720000pt;}
.w1_c00334{width:793.333333pt;}
.w5_c00334{width:793.597333pt;}
.w0_c00334{width:793.600000pt;}
.x0_c00334{left:0.000000pt;}
.x5_c00334{left:6.740000pt;}
.x4_c00334{left:106.604000pt;}
.x1_c00334{left:113.344000pt;}
.xc_c00334{left:126.784000pt;}
.x8_c00334{left:151.106667pt;}
.x3_c00334{left:158.786667pt;}
.x6_c00334{left:298.693333pt;}
.xb_c00334{left:305.413333pt;}
.x9_c00334{left:312.130667pt;}
.xa_c00334{left:328.453333pt;}
.x2_c00334{left:384.800000pt;}
.x7_c00334{left:490.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_c00335 {
    display:none;
  }
  .loading-indicator_c00335.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00335 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00335 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00335" -> "#page-container .classname_c00335")
 */
.pf_c00335 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00335 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00335 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00335 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00335 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00335 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00335 {overflow:visible;}
  }
}
.c_c00335 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00335 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00335:after { /* webkit #35443 */
  content: '';
}
.t_c00335:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00335 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00335 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00335 { /* info for Javascript */
  display:none;
}
.l_c00335 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00335 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00335 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00335:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00335;src:url('chunks/assets/font_6ab84d601297d63badc735c3.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_229ad3517fe99b62f02f13a1.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_5aa92e6057a525a0f1999009.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_ec1c3b1b895e4443395843ef.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;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_c00335;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff5_c00335{font-family:ff5_c00335;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00335;src:url('chunks/assets/font_426718ee53010ef1c83f0e80.woff2')format("woff");}.ff6_c00335{font-family:ff6_c00335;line-height:1.117188;font-style:normal;font-weight: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_c00335;src:url('chunks/assets/font_f853086d874887616b0e2083.woff2')format("woff");}.ff7_c00335{font-family:ff7_c00335;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.lsb_c00335{letter-spacing:-1.416000px;}
.lsd_c00335{letter-spacing:-0.936000px;}
.lsa_c00335{letter-spacing:-0.720000px;}
.ls8_c00335{letter-spacing:-0.241800px;}
.ls6_c00335{letter-spacing:0.000000px;}
.ls9_c00335{letter-spacing:0.302400px;}
.lsc_c00335{letter-spacing:0.466800px;}
.ls7_c00335{letter-spacing:0.529800px;}
.ls0_c00335{letter-spacing:0.720000px;}
.ls4_c00335{letter-spacing:0.739894px;}
.ls5_c00335{letter-spacing:0.740376px;}
.ls1_c00335{letter-spacing:0.840000px;}
.ls2_c00335{letter-spacing:0.972000px;}
.ls3_c00335{letter-spacing:1.440000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00335{word-spacing:-72.000000px;}
.ws3_c00335{word-spacing:-18.000000px;}
.ws1_c00335{word-spacing:-15.649800px;}
.ws2_c00335{word-spacing:-15.422400px;}
.ws0_c00335{word-spacing:-15.120000px;}
.ws5_c00335{word-spacing:0.000000px;}
._2_c00335{margin-left:-2.662201px;}
._0_c00335{margin-left:-1.016640px;}
._1_c00335{width:1.506121px;}
._6_c00335{width:2.544849px;}
._7_c00335{width:3.737750px;}
._8_c00335{width:5.202599px;}
._f_c00335{width:6.254041px;}
._12_c00335{width:7.278712px;}
._3_c00335{width:8.720640px;}
._5_c00335{width:9.970558px;}
._4_c00335{width:11.027758px;}
._11_c00335{width:12.028080px;}
._d_c00335{width:13.040640px;}
._e_c00335{width:14.444753px;}
._9_c00335{width:16.352640px;}
._a_c00335{width:20.240640px;}
._b_c00335{width:21.546599px;}
._c_c00335{width:22.556394px;}
._10_c00335{width:23.763972px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs3_c00335{font-size:38.880000px;}
.fs2_c00335{font-size:47.520000px;}
.fs1_c00335{font-size:60.480000px;}
.fs0_c00335{font-size:72.000000px;}
.y0_c00335{bottom:0.000000px;}
.y3_c00335{bottom:57.240000px;}
.y2_c00335{bottom:78.120000px;}
.y30_c00335{bottom:130.716000px;}
.y2f_c00335{bottom:137.556000px;}
.y2e_c00335{bottom:147.996000px;}
.y2d_c00335{bottom:165.270000px;}
.y2c_c00335{bottom:182.190000px;}
.y2b_c00335{bottom:199.470000px;}
.y2a_c00335{bottom:206.310000px;}
.y29_c00335{bottom:216.750000px;}
.y28_c00335{bottom:234.075000px;}
.y27_c00335{bottom:251.355000px;}
.y26_c00335{bottom:258.195000px;}
.y25_c00335{bottom:269.355000px;}
.y24_c00335{bottom:291.315000px;}
.y23_c00335{bottom:322.635000px;}
.y21_c00335{bottom:353.625000px;}
.y22_c00335{bottom:361.905000px;}
.y20_c00335{bottom:384.585000px;}
.y1f_c00335{bottom:415.545000px;}
.y1e_c00335{bottom:446.865000px;}
.y1d_c00335{bottom:477.870000px;}
.y1c_c00335{bottom:508.830000px;}
.y1b_c00335{bottom:537.630000px;}
.y1a_c00335{bottom:563.550000px;}
.y19_c00335{bottom:589.470000px;}
.y18_c00335{bottom:615.420000px;}
.y17_c00335{bottom:641.340000px;}
.y16_c00335{bottom:666.900000px;}
.y15_c00335{bottom:692.820000px;}
.y14_c00335{bottom:718.770000px;}
.y13_c00335{bottom:746.850000px;}
.y12_c00335{bottom:778.170000px;}
.y11_c00335{bottom:809.130000px;}
.y10_c00335{bottom:840.090000px;}
.yf_c00335{bottom:871.095000px;}
.ye_c00335{bottom:902.415000px;}
.yd_c00335{bottom:933.375000px;}
.yc_c00335{bottom:964.365000px;}
.ya_c00335{bottom:995.325000px;}
.yb_c00335{bottom:1003.605000px;}
.y8_c00335{bottom:1026.645000px;}
.y9_c00335{bottom:1034.925000px;}
.y7_c00335{bottom:1057.605000px;}
.y6_c00335{bottom:1088.610000px;}
.y5_c00335{bottom:1117.410000px;}
.y4_c00335{bottom:1143.330000px;}
.y1_c00335{bottom:1193.730000px;}
.h7_c00335{height:34.855313px;}
.h6_c00335{height:46.638281px;}
.h8_c00335{height:54.219375px;}
.h9_c00335{height:54.514688px;}
.h3_c00335{height:59.357813px;}
.h2_c00335{height:64.546875px;}
.h4_c00335{height:70.664062px;}
.h5_c00335{height:1262.875500px;}
.h0_c00335{height:1262.880000px;}
.h1_c00335{height:1263.000000px;}
.w1_c00335{width:892.500000px;}
.w2_c00335{width:892.797000px;}
.w0_c00335{width:892.800000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:127.512000px;}
.xb_c00335{left:142.632000px;}
.x3_c00335{left:169.995000px;}
.x8_c00335{left:333.147000px;}
.xa_c00335{left:343.590000px;}
.x9_c00335{left:351.510000px;}
.x2_c00335{left:432.900000px;}
.x4_c00335{left:633.162000px;}
.x5_c00335{left:651.525000px;}
.x6_c00335{left:743.007000px;}
.x7_c00335{left:761.370000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.lsb_c00335{letter-spacing:-1.258667pt;}
.lsd_c00335{letter-spacing:-0.832000pt;}
.lsa_c00335{letter-spacing:-0.640000pt;}
.ls8_c00335{letter-spacing:-0.214933pt;}
.ls6_c00335{letter-spacing:0.000000pt;}
.ls9_c00335{letter-spacing:0.268800pt;}
.lsc_c00335{letter-spacing:0.414933pt;}
.ls7_c00335{letter-spacing:0.470933pt;}
.ls0_c00335{letter-spacing:0.640000pt;}
.ls4_c00335{letter-spacing:0.657684pt;}
.ls5_c00335{letter-spacing:0.658112pt;}
.ls1_c00335{letter-spacing:0.746667pt;}
.ls2_c00335{letter-spacing:0.864000pt;}
.ls3_c00335{letter-spacing:1.280000pt;}
.ws4_c00335{word-spacing:-64.000000pt;}
.ws3_c00335{word-spacing:-16.000000pt;}
.ws1_c00335{word-spacing:-13.910933pt;}
.ws2_c00335{word-spacing:-13.708800pt;}
.ws0_c00335{word-spacing:-13.440000pt;}
.ws5_c00335{word-spacing:0.000000pt;}
._2_c00335{margin-left:-2.366401pt;}
._0_c00335{margin-left:-0.903680pt;}
._1_c00335{width:1.338774pt;}
._6_c00335{width:2.262088pt;}
._7_c00335{width:3.322445pt;}
._8_c00335{width:4.624532pt;}
._f_c00335{width:5.559148pt;}
._12_c00335{width:6.469967pt;}
._3_c00335{width:7.751680pt;}
._5_c00335{width:8.862718pt;}
._4_c00335{width:9.802452pt;}
._11_c00335{width:10.691627pt;}
._d_c00335{width:11.591680pt;}
._e_c00335{width:12.839781pt;}
._9_c00335{width:14.535680pt;}
._a_c00335{width:17.991680pt;}
._b_c00335{width:19.152532pt;}
._c_c00335{width:20.050128pt;}
._10_c00335{width:21.123531pt;}
.fs3_c00335{font-size:34.560000pt;}
.fs2_c00335{font-size:42.240000pt;}
.fs1_c00335{font-size:53.760000pt;}
.fs0_c00335{font-size:64.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y3_c00335{bottom:50.880000pt;}
.y2_c00335{bottom:69.440000pt;}
.y30_c00335{bottom:116.192000pt;}
.y2f_c00335{bottom:122.272000pt;}
.y2e_c00335{bottom:131.552000pt;}
.y2d_c00335{bottom:146.906667pt;}
.y2c_c00335{bottom:161.946667pt;}
.y2b_c00335{bottom:177.306667pt;}
.y2a_c00335{bottom:183.386667pt;}
.y29_c00335{bottom:192.666667pt;}
.y28_c00335{bottom:208.066667pt;}
.y27_c00335{bottom:223.426667pt;}
.y26_c00335{bottom:229.506667pt;}
.y25_c00335{bottom:239.426667pt;}
.y24_c00335{bottom:258.946667pt;}
.y23_c00335{bottom:286.786667pt;}
.y21_c00335{bottom:314.333333pt;}
.y22_c00335{bottom:321.693333pt;}
.y20_c00335{bottom:341.853333pt;}
.y1f_c00335{bottom:369.373333pt;}
.y1e_c00335{bottom:397.213333pt;}
.y1d_c00335{bottom:424.773333pt;}
.y1c_c00335{bottom:452.293333pt;}
.y1b_c00335{bottom:477.893333pt;}
.y1a_c00335{bottom:500.933333pt;}
.y19_c00335{bottom:523.973333pt;}
.y18_c00335{bottom:547.040000pt;}
.y17_c00335{bottom:570.080000pt;}
.y16_c00335{bottom:592.800000pt;}
.y15_c00335{bottom:615.840000pt;}
.y14_c00335{bottom:638.906667pt;}
.y13_c00335{bottom:663.866667pt;}
.y12_c00335{bottom:691.706667pt;}
.y11_c00335{bottom:719.226667pt;}
.y10_c00335{bottom:746.746667pt;}
.yf_c00335{bottom:774.306667pt;}
.ye_c00335{bottom:802.146667pt;}
.yd_c00335{bottom:829.666667pt;}
.yc_c00335{bottom:857.213333pt;}
.ya_c00335{bottom:884.733333pt;}
.yb_c00335{bottom:892.093333pt;}
.y8_c00335{bottom:912.573333pt;}
.y9_c00335{bottom:919.933333pt;}
.y7_c00335{bottom:940.093333pt;}
.y6_c00335{bottom:967.653333pt;}
.y5_c00335{bottom:993.253333pt;}
.y4_c00335{bottom:1016.293333pt;}
.y1_c00335{bottom:1061.093333pt;}
.h7_c00335{height:30.982500pt;}
.h6_c00335{height:41.456250pt;}
.h8_c00335{height:48.195000pt;}
.h9_c00335{height:48.457500pt;}
.h3_c00335{height:52.762500pt;}
.h2_c00335{height:57.375000pt;}
.h4_c00335{height:62.812500pt;}
.h5_c00335{height:1122.556000pt;}
.h0_c00335{height:1122.560000pt;}
.h1_c00335{height:1122.666667pt;}
.w1_c00335{width:793.333333pt;}
.w2_c00335{width:793.597333pt;}
.w0_c00335{width:793.600000pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:113.344000pt;}
.xb_c00335{left:126.784000pt;}
.x3_c00335{left:151.106667pt;}
.x8_c00335{left:296.130667pt;}
.xa_c00335{left:305.413333pt;}
.x9_c00335{left:312.453333pt;}
.x2_c00335{left:384.800000pt;}
.x4_c00335{left:562.810667pt;}
.x5_c00335{left:579.133333pt;}
.x6_c00335{left:660.450667pt;}
.x7_c00335{left:676.773333pt;}
}





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

.ir_c00336:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00336;src:url('chunks/assets/font_dff8e9f9609c4bff93c6665b.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_d113a6b382977a3c7cc40eb3.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_bf7f00f436a51e0b625f06f6.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_94f397d3489c9b6f81e68ea5.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00336;src:url('chunks/assets/font_f023438b632e728427ffd8a4.woff2')format("woff");}.ff6_c00336{font-family:ff6_c00336;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_c00336;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff7_c00336{font-family:ff7_c00336;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.lsf_c00336{letter-spacing:-2.880000px;}
.lsc_c00336{letter-spacing:0.000000px;}
.ls5_c00336{letter-spacing:0.288000px;}
.lsd_c00336{letter-spacing:0.576000px;}
.lse_c00336{letter-spacing:0.648000px;}
.lsa_c00336{letter-spacing:1.224000px;}
.ls8_c00336{letter-spacing:1.440000px;}
.ls6_c00336{letter-spacing:5.040000px;}
.ls7_c00336{letter-spacing:5.160000px;}
.ls9_c00336{letter-spacing:6.480000px;}
.lsb_c00336{letter-spacing:6.600000px;}
.ls0_c00336{letter-spacing:12.240000px;}
.ls1_c00336{letter-spacing:13.680000px;}
.ls3_c00336{letter-spacing:20.880000px;}
.ls2_c00336{letter-spacing:21.000000px;}
.ls4_c00336{letter-spacing:22.500000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00336{word-spacing:-72.000000px;}
.ws2_c00336{word-spacing:-18.648000px;}
.ws3_c00336{word-spacing:-18.288000px;}
.ws0_c00336{word-spacing:-18.000000px;}
.ws4_c00336{word-spacing:0.000000px;}
._4_c00336{margin-left:-2.736000px;}
._1_c00336{margin-left:-1.296000px;}
._0_c00336{width:1.080000px;}
._5_c00336{width:2.568024px;}
._a_c00336{width:4.608000px;}
._9_c00336{width:6.264000px;}
._c_c00336{width:7.991976px;}
._d_c00336{width:9.600120px;}
._10_c00336{width:12.119976px;}
._2_c00336{width:13.320000px;}
._3_c00336{width:14.400000px;}
._11_c00336{width:16.644072px;}
._6_c00336{width:19.920000px;}
._7_c00336{width:21.648000px;}
._8_c00336{width:23.040000px;}
._b_c00336{width:24.612000px;}
._f_c00336{width:31.392000px;}
._e_c00336{width:33.192000px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs1_c00336{font-size:60.480000px;}
.fs0_c00336{font-size:72.000000px;}
.y0_c00336{bottom:0.000000px;}
.y3_c00336{bottom:57.240000px;}
.y2_c00336{bottom:78.120000px;}
.y24_c00336{bottom:146.556000px;}
.y23_c00336{bottom:177.510000px;}
.y22_c00336{bottom:208.830000px;}
.y21_c00336{bottom:239.835000px;}
.y20_c00336{bottom:270.795000px;}
.y1f_c00336{bottom:301.755000px;}
.y1e_c00336{bottom:332.715000px;}
.y1d_c00336{bottom:364.065000px;}
.y1c_c00336{bottom:395.025000px;}
.y1b_c00336{bottom:425.985000px;}
.y1a_c00336{bottom:456.945000px;}
.y19_c00336{bottom:488.310000px;}
.y18_c00336{bottom:519.270000px;}
.y17_c00336{bottom:550.230000px;}
.y16_c00336{bottom:581.190000px;}
.y15_c00336{bottom:612.540000px;}
.y14_c00336{bottom:643.500000px;}
.y13_c00336{bottom:674.460000px;}
.y12_c00336{bottom:705.420000px;}
.y11_c00336{bottom:736.770000px;}
.y10_c00336{bottom:767.730000px;}
.yf_c00336{bottom:798.690000px;}
.ye_c00336{bottom:829.650000px;}
.yd_c00336{bottom:861.015000px;}
.yc_c00336{bottom:891.975000px;}
.yb_c00336{bottom:922.935000px;}
.ya_c00336{bottom:953.895000px;}
.y9_c00336{bottom:985.245000px;}
.y8_c00336{bottom:1016.205000px;}
.y7_c00336{bottom:1047.165000px;}
.y6_c00336{bottom:1078.125000px;}
.y5_c00336{bottom:1109.490000px;}
.y4_c00336{bottom:1140.450000px;}
.y1_c00336{bottom:1193.730000px;}
.h2_c00336{height:64.546875px;}
.h3_c00336{height:70.664062px;}
.h4_c00336{height:72.562500px;}
.h0_c00336{height:1262.880000px;}
.h1_c00336{height:1263.000000px;}
.w1_c00336{width:892.500000px;}
.w0_c00336{width:892.800000px;}
.x0_c00336{left:0.000000px;}
.x1_c00336{left:127.512000px;}
.x2_c00336{left:432.900000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.lsf_c00336{letter-spacing:-2.560000pt;}
.lsc_c00336{letter-spacing:0.000000pt;}
.ls5_c00336{letter-spacing:0.256000pt;}
.lsd_c00336{letter-spacing:0.512000pt;}
.lse_c00336{letter-spacing:0.576000pt;}
.lsa_c00336{letter-spacing:1.088000pt;}
.ls8_c00336{letter-spacing:1.280000pt;}
.ls6_c00336{letter-spacing:4.480000pt;}
.ls7_c00336{letter-spacing:4.586667pt;}
.ls9_c00336{letter-spacing:5.760000pt;}
.lsb_c00336{letter-spacing:5.866667pt;}
.ls0_c00336{letter-spacing:10.880000pt;}
.ls1_c00336{letter-spacing:12.160000pt;}
.ls3_c00336{letter-spacing:18.560000pt;}
.ls2_c00336{letter-spacing:18.666667pt;}
.ls4_c00336{letter-spacing:20.000000pt;}
.ws1_c00336{word-spacing:-64.000000pt;}
.ws2_c00336{word-spacing:-16.576000pt;}
.ws3_c00336{word-spacing:-16.256000pt;}
.ws0_c00336{word-spacing:-16.000000pt;}
.ws4_c00336{word-spacing:0.000000pt;}
._4_c00336{margin-left:-2.432000pt;}
._1_c00336{margin-left:-1.152000pt;}
._0_c00336{width:0.960000pt;}
._5_c00336{width:2.282688pt;}
._a_c00336{width:4.096000pt;}
._9_c00336{width:5.568000pt;}
._c_c00336{width:7.103979pt;}
._d_c00336{width:8.533440pt;}
._10_c00336{width:10.773312pt;}
._2_c00336{width:11.840000pt;}
._3_c00336{width:12.800000pt;}
._11_c00336{width:14.794731pt;}
._6_c00336{width:17.706667pt;}
._7_c00336{width:19.242667pt;}
._8_c00336{width:20.480000pt;}
._b_c00336{width:21.877333pt;}
._f_c00336{width:27.904000pt;}
._e_c00336{width:29.504000pt;}
.fs1_c00336{font-size:53.760000pt;}
.fs0_c00336{font-size:64.000000pt;}
.y0_c00336{bottom:0.000000pt;}
.y3_c00336{bottom:50.880000pt;}
.y2_c00336{bottom:69.440000pt;}
.y24_c00336{bottom:130.272000pt;}
.y23_c00336{bottom:157.786667pt;}
.y22_c00336{bottom:185.626667pt;}
.y21_c00336{bottom:213.186667pt;}
.y20_c00336{bottom:240.706667pt;}
.y1f_c00336{bottom:268.226667pt;}
.y1e_c00336{bottom:295.746667pt;}
.y1d_c00336{bottom:323.613333pt;}
.y1c_c00336{bottom:351.133333pt;}
.y1b_c00336{bottom:378.653333pt;}
.y1a_c00336{bottom:406.173333pt;}
.y19_c00336{bottom:434.053333pt;}
.y18_c00336{bottom:461.573333pt;}
.y17_c00336{bottom:489.093333pt;}
.y16_c00336{bottom:516.613333pt;}
.y15_c00336{bottom:544.480000pt;}
.y14_c00336{bottom:572.000000pt;}
.y13_c00336{bottom:599.520000pt;}
.y12_c00336{bottom:627.040000pt;}
.y11_c00336{bottom:654.906667pt;}
.y10_c00336{bottom:682.426667pt;}
.yf_c00336{bottom:709.946667pt;}
.ye_c00336{bottom:737.466667pt;}
.yd_c00336{bottom:765.346667pt;}
.yc_c00336{bottom:792.866667pt;}
.yb_c00336{bottom:820.386667pt;}
.ya_c00336{bottom:847.906667pt;}
.y9_c00336{bottom:875.773333pt;}
.y8_c00336{bottom:903.293333pt;}
.y7_c00336{bottom:930.813333pt;}
.y6_c00336{bottom:958.333333pt;}
.y5_c00336{bottom:986.213333pt;}
.y4_c00336{bottom:1013.733333pt;}
.y1_c00336{bottom:1061.093333pt;}
.h2_c00336{height:57.375000pt;}
.h3_c00336{height:62.812500pt;}
.h4_c00336{height:64.500000pt;}
.h0_c00336{height:1122.560000pt;}
.h1_c00336{height:1122.666667pt;}
.w1_c00336{width:793.333333pt;}
.w0_c00336{width:793.600000pt;}
.x0_c00336{left:0.000000pt;}
.x1_c00336{left:113.344000pt;}
.x2_c00336{left:384.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_c00337 {
    display:none;
  }
  .loading-indicator_c00337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00337 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00337 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00337" -> "#page-container .classname_c00337")
 */
.pf_c00337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00337 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00337 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00337 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00337 {overflow:visible;}
  }
}
.c_c00337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00337 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00337:after { /* webkit #35443 */
  content: '';
}
.t_c00337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00337 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00337 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00337 { /* info for Javascript */
  display:none;
}
.l_c00337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00337:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00337;src:url('chunks/assets/font_38365768d86dd11013004aef.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_e4953d1698ad80aeca6984ae.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_0fd80d5228475b2848f5074e.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_990d27c1a609f0d39073d316.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00337;src:url('chunks/assets/font_f1c685b82af3ab04aecf5dd7.woff2')format("woff");}.ff5_c00337{font-family:ff5_c00337;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_c00337;src:url('chunks/assets/font_6ad40d3366708b236a1ccb4f.woff2')format("woff");}.ff6_c00337{font-family:ff6_c00337;line-height:1.117188;font-style:normal;font-weight: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_c00337;src:url('chunks/assets/font_d7d6530123055b031371a663.woff2')format("woff");}.ff7_c00337{font-family:ff7_c00337;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls5_c00337{letter-spacing:-0.648000px;}
.ls4_c00337{letter-spacing:0.000000px;}
.ls3_c00337{letter-spacing:0.720000px;}
.ls1_c00337{letter-spacing:1.440000px;}
.ls2_c00337{letter-spacing:9.360000px;}
.ls0_c00337{letter-spacing:43.344000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00337{word-spacing:-72.000000px;}
.ws1_c00337{word-spacing:-18.000000px;}
.ws2_c00337{word-spacing:0.000000px;}
._6_c00337{margin-left:-3.456000px;}
._3_c00337{margin-left:-2.160000px;}
._0_c00337{margin-left:-1.152000px;}
._1_c00337{width:1.944000px;}
._7_c00337{width:2.952000px;}
._2_c00337{width:4.968000px;}
._4_c00337{width:7.056000px;}
._5_c00337{width:8.796024px;}
._10_c00337{width:10.175904px;}
._f_c00337{width:11.304000px;}
._e_c00337{width:12.744000px;}
._d_c00337{width:14.616000px;}
._b_c00337{width:15.912000px;}
._c_c00337{width:16.992000px;}
._a_c00337{width:19.008000px;}
._8_c00337{width:20.016000px;}
._9_c00337{width:21.600000px;}
._11_c00337{width:23.544000px;}
._12_c00337{width:38.767801px;}
._13_c00337{width:40.238997px;}
._14_c00337{width:81.950400px;}
._15_c00337{width:83.655602px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs3_c00337{font-size:38.880000px;}
.fs1_c00337{font-size:47.520000px;}
.fs2_c00337{font-size:60.480000px;}
.fs0_c00337{font-size:72.000000px;}
.y0_c00337{bottom:0.000000px;}
.y22_c00337{bottom:12.585000px;}
.y24_c00337{bottom:38.145000px;}
.y3_c00337{bottom:57.240000px;}
.y2_c00337{bottom:78.120000px;}
.y28_c00337{bottom:130.716000px;}
.y27_c00337{bottom:147.996000px;}
.y26_c00337{bottom:154.830000px;}
.y25_c00337{bottom:165.630000px;}
.y23_c00337{bottom:188.685000px;}
.y21_c00337{bottom:240.930000px;}
.y20_c00337{bottom:282.675000px;}
.y1f_c00337{bottom:313.635000px;}
.y1e_c00337{bottom:353.625000px;}
.y1d_c00337{bottom:384.585000px;}
.y1c_c00337{bottom:415.905000px;}
.y1a_c00337{bottom:446.865000px;}
.y1b_c00337{bottom:455.145000px;}
.y19_c00337{bottom:477.870000px;}
.y18_c00337{bottom:508.830000px;}
.y17_c00337{bottom:540.150000px;}
.y16_c00337{bottom:571.110000px;}
.y15_c00337{bottom:602.100000px;}
.y14_c00337{bottom:633.060000px;}
.y13_c00337{bottom:664.380000px;}
.y12_c00337{bottom:695.340000px;}
.y11_c00337{bottom:726.330000px;}
.y10_c00337{bottom:757.290000px;}
.yf_c00337{bottom:797.610000px;}
.ye_c00337{bottom:828.570000px;}
.yd_c00337{bottom:859.575000px;}
.yc_c00337{bottom:890.535000px;}
.yb_c00337{bottom:921.855000px;}
.ya_c00337{bottom:952.815000px;}
.y9_c00337{bottom:983.805000px;}
.y8_c00337{bottom:1014.765000px;}
.y7_c00337{bottom:1046.085000px;}
.y6_c00337{bottom:1078.125000px;}
.y5_c00337{bottom:1109.490000px;}
.y4_c00337{bottom:1140.450000px;}
.y1_c00337{bottom:1193.730000px;}
.h8_c00337{height:25.905000px;}
.hb_c00337{height:38.158594px;}
.h6_c00337{height:46.638281px;}
.ha_c00337{height:51.501000px;}
.h9_c00337{height:59.357813px;}
.h2_c00337{height:64.546875px;}
.h7_c00337{height:70.628906px;}
.h3_c00337{height:70.664062px;}
.h4_c00337{height:74.004654px;}
.h5_c00337{height:1262.875500px;}
.h0_c00337{height:1262.880000px;}
.h1_c00337{height:1263.000000px;}
.w4_c00337{width:296.730000px;}
.w3_c00337{width:356.206500px;}
.w1_c00337{width:892.500000px;}
.w2_c00337{width:892.797000px;}
.w0_c00337{width:892.800000px;}
.x0_c00337{left:0.000000px;}
.xa_c00337{left:7.582500px;}
.x6_c00337{left:119.929500px;}
.x9_c00337{left:123.510000px;}
.x1_c00337{left:127.512000px;}
.x7_c00337{left:143.335500px;}
.x3_c00337{left:154.515000px;}
.xb_c00337{left:343.590000px;}
.x2_c00337{left:432.900000px;}
.x8_c00337{left:476.865000px;}
.x4_c00337{left:557.532000px;}
.x5_c00337{left:575.895000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls5_c00337{letter-spacing:-0.576000pt;}
.ls4_c00337{letter-spacing:0.000000pt;}
.ls3_c00337{letter-spacing:0.640000pt;}
.ls1_c00337{letter-spacing:1.280000pt;}
.ls2_c00337{letter-spacing:8.320000pt;}
.ls0_c00337{letter-spacing:38.528000pt;}
.ws0_c00337{word-spacing:-64.000000pt;}
.ws1_c00337{word-spacing:-16.000000pt;}
.ws2_c00337{word-spacing:0.000000pt;}
._6_c00337{margin-left:-3.072000pt;}
._3_c00337{margin-left:-1.920000pt;}
._0_c00337{margin-left:-1.024000pt;}
._1_c00337{width:1.728000pt;}
._7_c00337{width:2.624000pt;}
._2_c00337{width:4.416000pt;}
._4_c00337{width:6.272000pt;}
._5_c00337{width:7.818688pt;}
._10_c00337{width:9.045248pt;}
._f_c00337{width:10.048000pt;}
._e_c00337{width:11.328000pt;}
._d_c00337{width:12.992000pt;}
._b_c00337{width:14.144000pt;}
._c_c00337{width:15.104000pt;}
._a_c00337{width:16.896000pt;}
._8_c00337{width:17.792000pt;}
._9_c00337{width:19.200000pt;}
._11_c00337{width:20.928000pt;}
._12_c00337{width:34.460268pt;}
._13_c00337{width:35.767997pt;}
._14_c00337{width:72.844800pt;}
._15_c00337{width:74.360535pt;}
.fs3_c00337{font-size:34.560000pt;}
.fs1_c00337{font-size:42.240000pt;}
.fs2_c00337{font-size:53.760000pt;}
.fs0_c00337{font-size:64.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y22_c00337{bottom:11.186667pt;}
.y24_c00337{bottom:33.906667pt;}
.y3_c00337{bottom:50.880000pt;}
.y2_c00337{bottom:69.440000pt;}
.y28_c00337{bottom:116.192000pt;}
.y27_c00337{bottom:131.552000pt;}
.y26_c00337{bottom:137.626667pt;}
.y25_c00337{bottom:147.226667pt;}
.y23_c00337{bottom:167.720000pt;}
.y21_c00337{bottom:214.160000pt;}
.y20_c00337{bottom:251.266667pt;}
.y1f_c00337{bottom:278.786667pt;}
.y1e_c00337{bottom:314.333333pt;}
.y1d_c00337{bottom:341.853333pt;}
.y1c_c00337{bottom:369.693333pt;}
.y1a_c00337{bottom:397.213333pt;}
.y1b_c00337{bottom:404.573333pt;}
.y19_c00337{bottom:424.773333pt;}
.y18_c00337{bottom:452.293333pt;}
.y17_c00337{bottom:480.133333pt;}
.y16_c00337{bottom:507.653333pt;}
.y15_c00337{bottom:535.200000pt;}
.y14_c00337{bottom:562.720000pt;}
.y13_c00337{bottom:590.560000pt;}
.y12_c00337{bottom:618.080000pt;}
.y11_c00337{bottom:645.626667pt;}
.y10_c00337{bottom:673.146667pt;}
.yf_c00337{bottom:708.986667pt;}
.ye_c00337{bottom:736.506667pt;}
.yd_c00337{bottom:764.066667pt;}
.yc_c00337{bottom:791.586667pt;}
.yb_c00337{bottom:819.426667pt;}
.ya_c00337{bottom:846.946667pt;}
.y9_c00337{bottom:874.493333pt;}
.y8_c00337{bottom:902.013333pt;}
.y7_c00337{bottom:929.853333pt;}
.y6_c00337{bottom:958.333333pt;}
.y5_c00337{bottom:986.213333pt;}
.y4_c00337{bottom:1013.733333pt;}
.y1_c00337{bottom:1061.093333pt;}
.h8_c00337{height:23.026667pt;}
.hb_c00337{height:33.918750pt;}
.h6_c00337{height:41.456250pt;}
.ha_c00337{height:45.778667pt;}
.h9_c00337{height:52.762500pt;}
.h2_c00337{height:57.375000pt;}
.h7_c00337{height:62.781250pt;}
.h3_c00337{height:62.812500pt;}
.h4_c00337{height:65.781915pt;}
.h5_c00337{height:1122.556000pt;}
.h0_c00337{height:1122.560000pt;}
.h1_c00337{height:1122.666667pt;}
.w4_c00337{width:263.760000pt;}
.w3_c00337{width:316.628000pt;}
.w1_c00337{width:793.333333pt;}
.w2_c00337{width:793.597333pt;}
.w0_c00337{width:793.600000pt;}
.x0_c00337{left:0.000000pt;}
.xa_c00337{left:6.740000pt;}
.x6_c00337{left:106.604000pt;}
.x9_c00337{left:109.786667pt;}
.x1_c00337{left:113.344000pt;}
.x7_c00337{left:127.409333pt;}
.x3_c00337{left:137.346667pt;}
.xb_c00337{left:305.413333pt;}
.x2_c00337{left:384.800000pt;}
.x8_c00337{left:423.880000pt;}
.x4_c00337{left:495.584000pt;}
.x5_c00337{left:511.906667pt;}
}





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

.ir_c00338:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00338;src:url('chunks/assets/font_161fda424c40c7b405d6e0a7.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_441cc91c66460c97a32b9b96.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_e10bc1a3e90c1ae502711576.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;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_c00338;src:url('chunks/assets/font_6ad40d3366708b236a1ccb4f.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_c31213746d942574b41a0889.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls5_c00338{letter-spacing:-2.880000px;}
.ls8_c00338{letter-spacing:-1.440000px;}
.ls6_c00338{letter-spacing:-0.648000px;}
.ls4_c00338{letter-spacing:0.000000px;}
.ls1_c00338{letter-spacing:1.440000px;}
.ls3_c00338{letter-spacing:1.452000px;}
.ls7_c00338{letter-spacing:3.600000px;}
.ls0_c00338{letter-spacing:21.060000px;}
.ls2_c00338{letter-spacing:28.080000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00338{word-spacing:-34.110720px;}
.ws0_c00338{word-spacing:-18.000000px;}
.ws1_c00338{word-spacing:-15.120000px;}
.ws3_c00338{word-spacing:0.000000px;}
._5_c00338{margin-left:-2.783411px;}
._0_c00338{margin-left:-1.512000px;}
._1_c00338{width:1.330802px;}
._7_c00338{width:2.734813px;}
._a_c00338{width:3.853198px;}
._c_c00338{width:4.899591px;}
._b_c00338{width:5.941803px;}
._3_c00338{width:11.792390px;}
._2_c00338{width:12.822002px;}
._e_c00338{width:13.832398px;}
._d_c00338{width:14.917795px;}
._13_c00338{width:16.632000px;}
._14_c00338{width:17.790002px;}
._8_c00338{width:19.095005px;}
._9_c00338{width:20.254193px;}
._16_c00338{width:21.326529px;}
._15_c00338{width:22.722240px;}
._6_c00338{width:24.336000px;}
._4_c00338{width:25.825202px;}
._10_c00338{width:27.054599px;}
._f_c00338{width:28.142415px;}
._12_c00338{width:29.196000px;}
._11_c00338{width:30.369003px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs1_c00338{font-size:60.480000px;}
.fs0_c00338{font-size:72.000000px;}
.y0_c00338{bottom:0.000000px;}
.y29_c00338{bottom:12.595500px;}
.y8_c00338{bottom:12.600000px;}
.y28_c00338{bottom:38.509500px;}
.y7_c00338{bottom:38.565000px;}
.y3_c00338{bottom:57.240000px;}
.y27_c00338{bottom:64.429500px;}
.y6_c00338{bottom:64.485000px;}
.y2_c00338{bottom:78.120000px;}
.y26_c00338{bottom:90.349500px;}
.y5_c00338{bottom:90.405000px;}
.y1f_c00338{bottom:113.080500px;}
.y25_c00338{bottom:116.269500px;}
.y24_c00338{bottom:142.234500px;}
.y23_c00338{bottom:167.794500px;}
.y22_c00338{bottom:193.714500px;}
.y21_c00338{bottom:219.634500px;}
.y20_c00338{bottom:245.584500px;}
.y1e_c00338{bottom:372.705000px;}
.y1d_c00338{bottom:414.105000px;}
.y1c_c00338{bottom:445.425000px;}
.y1b_c00338{bottom:476.430000px;}
.y1a_c00338{bottom:507.390000px;}
.y19_c00338{bottom:538.350000px;}
.y18_c00338{bottom:569.670000px;}
.y17_c00338{bottom:600.660000px;}
.y16_c00338{bottom:631.620000px;}
.y15_c00338{bottom:662.580000px;}
.y14_c00338{bottom:693.540000px;}
.y13_c00338{bottom:724.890000px;}
.y12_c00338{bottom:755.850000px;}
.y11_c00338{bottom:786.810000px;}
.y10_c00338{bottom:817.770000px;}
.yf_c00338{bottom:849.135000px;}
.ye_c00338{bottom:880.095000px;}
.yd_c00338{bottom:911.055000px;}
.yc_c00338{bottom:942.015000px;}
.yb_c00338{bottom:973.365000px;}
.ya_c00338{bottom:1004.325000px;}
.y9_c00338{bottom:1035.285000px;}
.y4_c00338{bottom:1052.205000px;}
.y1_c00338{bottom:1193.730000px;}
.h7_c00338{height:25.905000px;}
.h4_c00338{height:59.357813px;}
.h2_c00338{height:64.546875px;}
.h6_c00338{height:70.628906px;}
.h5_c00338{height:70.664062px;}
.h3_c00338{height:103.710000px;}
.h8_c00338{height:258.885000px;}
.h0_c00338{height:1262.880000px;}
.h1_c00338{height:1263.000000px;}
.w3_c00338{width:296.730000px;}
.w4_c00338{width:323.415000px;}
.w5_c00338{width:323.775000px;}
.w2_c00338{width:356.206500px;}
.w1_c00338{width:892.500000px;}
.w0_c00338{width:892.800000px;}
.x0_c00338{left:0.000000px;}
.x4_c00338{left:7.582500px;}
.x3_c00338{left:119.929500px;}
.x1_c00338{left:127.512000px;}
.x8_c00338{left:137.235000px;}
.x6_c00338{left:178.635000px;}
.x2_c00338{left:432.900000px;}
.x7_c00338{left:444.060000px;}
.x5_c00338{left:476.865000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls5_c00338{letter-spacing:-2.560000pt;}
.ls8_c00338{letter-spacing:-1.280000pt;}
.ls6_c00338{letter-spacing:-0.576000pt;}
.ls4_c00338{letter-spacing:0.000000pt;}
.ls1_c00338{letter-spacing:1.280000pt;}
.ls3_c00338{letter-spacing:1.290667pt;}
.ls7_c00338{letter-spacing:3.200000pt;}
.ls0_c00338{letter-spacing:18.720000pt;}
.ls2_c00338{letter-spacing:24.960000pt;}
.ws2_c00338{word-spacing:-30.320640pt;}
.ws0_c00338{word-spacing:-16.000000pt;}
.ws1_c00338{word-spacing:-13.440000pt;}
.ws3_c00338{word-spacing:0.000000pt;}
._5_c00338{margin-left:-2.474143pt;}
._0_c00338{margin-left:-1.344000pt;}
._1_c00338{width:1.182935pt;}
._7_c00338{width:2.430945pt;}
._a_c00338{width:3.425065pt;}
._c_c00338{width:4.355192pt;}
._b_c00338{width:5.281603pt;}
._3_c00338{width:10.482125pt;}
._2_c00338{width:11.397335pt;}
._e_c00338{width:12.295465pt;}
._d_c00338{width:13.260262pt;}
._13_c00338{width:14.784000pt;}
._14_c00338{width:15.813335pt;}
._8_c00338{width:16.973338pt;}
._9_c00338{width:18.003727pt;}
._16_c00338{width:18.956914pt;}
._15_c00338{width:20.197547pt;}
._6_c00338{width:21.632000pt;}
._4_c00338{width:22.955735pt;}
._10_c00338{width:24.048532pt;}
._f_c00338{width:25.015480pt;}
._12_c00338{width:25.952000pt;}
._11_c00338{width:26.994669pt;}
.fs1_c00338{font-size:53.760000pt;}
.fs0_c00338{font-size:64.000000pt;}
.y0_c00338{bottom:0.000000pt;}
.y29_c00338{bottom:11.196000pt;}
.y8_c00338{bottom:11.200000pt;}
.y28_c00338{bottom:34.230667pt;}
.y7_c00338{bottom:34.280000pt;}
.y3_c00338{bottom:50.880000pt;}
.y27_c00338{bottom:57.270667pt;}
.y6_c00338{bottom:57.320000pt;}
.y2_c00338{bottom:69.440000pt;}
.y26_c00338{bottom:80.310667pt;}
.y5_c00338{bottom:80.360000pt;}
.y1f_c00338{bottom:100.516000pt;}
.y25_c00338{bottom:103.350667pt;}
.y24_c00338{bottom:126.430667pt;}
.y23_c00338{bottom:149.150667pt;}
.y22_c00338{bottom:172.190667pt;}
.y21_c00338{bottom:195.230667pt;}
.y20_c00338{bottom:218.297333pt;}
.y1e_c00338{bottom:331.293333pt;}
.y1d_c00338{bottom:368.093333pt;}
.y1c_c00338{bottom:395.933333pt;}
.y1b_c00338{bottom:423.493333pt;}
.y1a_c00338{bottom:451.013333pt;}
.y19_c00338{bottom:478.533333pt;}
.y18_c00338{bottom:506.373333pt;}
.y17_c00338{bottom:533.920000pt;}
.y16_c00338{bottom:561.440000pt;}
.y15_c00338{bottom:588.960000pt;}
.y14_c00338{bottom:616.480000pt;}
.y13_c00338{bottom:644.346667pt;}
.y12_c00338{bottom:671.866667pt;}
.y11_c00338{bottom:699.386667pt;}
.y10_c00338{bottom:726.906667pt;}
.yf_c00338{bottom:754.786667pt;}
.ye_c00338{bottom:782.306667pt;}
.yd_c00338{bottom:809.826667pt;}
.yc_c00338{bottom:837.346667pt;}
.yb_c00338{bottom:865.213333pt;}
.ya_c00338{bottom:892.733333pt;}
.y9_c00338{bottom:920.253333pt;}
.y4_c00338{bottom:935.293333pt;}
.y1_c00338{bottom:1061.093333pt;}
.h7_c00338{height:23.026667pt;}
.h4_c00338{height:52.762500pt;}
.h2_c00338{height:57.375000pt;}
.h6_c00338{height:62.781250pt;}
.h5_c00338{height:62.812500pt;}
.h3_c00338{height:92.186667pt;}
.h8_c00338{height:230.120000pt;}
.h0_c00338{height:1122.560000pt;}
.h1_c00338{height:1122.666667pt;}
.w3_c00338{width:263.760000pt;}
.w4_c00338{width:287.480000pt;}
.w5_c00338{width:287.800000pt;}
.w2_c00338{width:316.628000pt;}
.w1_c00338{width:793.333333pt;}
.w0_c00338{width:793.600000pt;}
.x0_c00338{left:0.000000pt;}
.x4_c00338{left:6.740000pt;}
.x3_c00338{left:106.604000pt;}
.x1_c00338{left:113.344000pt;}
.x8_c00338{left:121.986667pt;}
.x6_c00338{left:158.786667pt;}
.x2_c00338{left:384.800000pt;}
.x7_c00338{left:394.720000pt;}
.x5_c00338{left:423.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_c00339 {
    display:none;
  }
  .loading-indicator_c00339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00339 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00339 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00339" -> "#page-container .classname_c00339")
 */
.pf_c00339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00339 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00339 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00339 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00339 {overflow:visible;}
  }
}
.c_c00339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00339 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00339:after { /* webkit #35443 */
  content: '';
}
.t_c00339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00339 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00339 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00339 { /* info for Javascript */
  display:none;
}
.l_c00339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00339:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00339;src:url('chunks/assets/font_7abdf19ba89432993adba2f6.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_ad03e55bbaac371c6eb34cdf.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_7b832c799953259360bf9132.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;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_c00339;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00339;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls4_c00339{letter-spacing:-2.880000px;}
.ls3_c00339{letter-spacing:0.000000px;}
.ls0_c00339{letter-spacing:0.012000px;}
.ls2_c00339{letter-spacing:7.920000px;}
.ls1_c00339{letter-spacing:9.360000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00339{word-spacing:-72.000000px;}
.ws1_c00339{word-spacing:-60.480000px;}
.ws2_c00339{word-spacing:-34.110720px;}
.ws3_c00339{word-spacing:-18.000000px;}
.ws0_c00339{word-spacing:-15.120000px;}
.ws5_c00339{word-spacing:0.000000px;}
._7_c00339{margin-left:-3.409194px;}
._1_c00339{margin-left:-1.935602px;}
._2_c00339{width:1.391403px;}
._a_c00339{width:2.908777px;}
._8_c00339{width:4.512024px;}
._11_c00339{width:5.877588px;}
._4_c00339{width:7.076402px;}
._6_c00339{width:8.403598px;}
._5_c00339{width:10.180195px;}
._14_c00339{width:11.318396px;}
._13_c00339{width:12.663602px;}
._10_c00339{width:14.031602px;}
._12_c00339{width:16.384199px;}
._f_c00339{width:18.385799px;}
._3_c00339{width:19.837803px;}
._0_c00339{width:21.470400px;}
._b_c00339{width:23.769608px;}
._c_c00339{width:25.097990px;}
._9_c00339{width:26.248199px;}
._e_c00339{width:31.449600px;}
._d_c00339{width:32.900999px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs1_c00339{font-size:60.480000px;}
.fs0_c00339{font-size:72.000000px;}
.y0_c00339{bottom:0.000000px;}
.yf_c00339{bottom:12.225000px;}
.y19_c00339{bottom:12.600000px;}
.y7_c00339{bottom:12.645000px;}
.y18_c00339{bottom:38.160000px;}
.y6_c00339{bottom:38.565000px;}
.y3_c00339{bottom:57.240000px;}
.y17_c00339{bottom:64.080000px;}
.y5_c00339{bottom:64.485000px;}
.y2_c00339{bottom:78.120000px;}
.y16_c00339{bottom:90.030000px;}
.y15_c00339{bottom:115.950000px;}
.y2a_c00339{bottom:117.036000px;}
.y14_c00339{bottom:141.870000px;}
.y29_c00339{bottom:147.996000px;}
.y13_c00339{bottom:167.790000px;}
.y28_c00339{bottom:178.950000px;}
.y12_c00339{bottom:193.710000px;}
.y27_c00339{bottom:209.910000px;}
.y11_c00339{bottom:219.675000px;}
.y26_c00339{bottom:241.275000px;}
.y25_c00339{bottom:272.235000px;}
.y24_c00339{bottom:303.195000px;}
.y23_c00339{bottom:334.155000px;}
.y22_c00339{bottom:365.505000px;}
.y21_c00339{bottom:396.465000px;}
.y20_c00339{bottom:427.425000px;}
.y1f_c00339{bottom:458.385000px;}
.y1e_c00339{bottom:489.750000px;}
.y1d_c00339{bottom:520.710000px;}
.y1c_c00339{bottom:551.670000px;}
.y1b_c00339{bottom:582.630000px;}
.y1a_c00339{bottom:613.980000px;}
.y10_c00339{bottom:630.900000px;}
.ye_c00339{bottom:864.630000px;}
.yd_c00339{bottom:906.015000px;}
.yc_c00339{bottom:936.975000px;}
.yb_c00339{bottom:967.965000px;}
.ya_c00339{bottom:999.285000px;}
.y9_c00339{bottom:1030.245000px;}
.y8_c00339{bottom:1061.205000px;}
.y4_c00339{bottom:1078.125000px;}
.y1_c00339{bottom:1193.730000px;}
.h7_c00339{height:25.545000px;}
.h4_c00339{height:59.357813px;}
.h2_c00339{height:64.546875px;}
.h6_c00339{height:70.628906px;}
.h5_c00339{height:70.664062px;}
.h3_c00339{height:77.790000px;}
.h8_c00339{height:232.995000px;}
.h0_c00339{height:1262.880000px;}
.h1_c00339{height:1263.000000px;}
.w2_c00339{width:323.415000px;}
.w3_c00339{width:323.775000px;}
.w1_c00339{width:892.500000px;}
.w0_c00339{width:892.800000px;}
.x0_c00339{left:0.000000px;}
.x4_c00339{left:7.582500px;}
.x3_c00339{left:119.929500px;}
.x1_c00339{left:127.512000px;}
.x7_c00339{left:136.495500px;}
.x8_c00339{left:144.795000px;}
.x6_c00339{left:178.635000px;}
.x2_c00339{left:432.900000px;}
.x5_c00339{left:444.060000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls4_c00339{letter-spacing:-2.560000pt;}
.ls3_c00339{letter-spacing:0.000000pt;}
.ls0_c00339{letter-spacing:0.010667pt;}
.ls2_c00339{letter-spacing:7.040000pt;}
.ls1_c00339{letter-spacing:8.320000pt;}
.ws4_c00339{word-spacing:-64.000000pt;}
.ws1_c00339{word-spacing:-53.760000pt;}
.ws2_c00339{word-spacing:-30.320640pt;}
.ws3_c00339{word-spacing:-16.000000pt;}
.ws0_c00339{word-spacing:-13.440000pt;}
.ws5_c00339{word-spacing:0.000000pt;}
._7_c00339{margin-left:-3.030395pt;}
._1_c00339{margin-left:-1.720535pt;}
._2_c00339{width:1.236803pt;}
._a_c00339{width:2.585580pt;}
._8_c00339{width:4.010688pt;}
._11_c00339{width:5.224522pt;}
._4_c00339{width:6.290135pt;}
._6_c00339{width:7.469865pt;}
._5_c00339{width:9.049062pt;}
._14_c00339{width:10.060797pt;}
._13_c00339{width:11.256535pt;}
._10_c00339{width:12.472535pt;}
._12_c00339{width:14.563732pt;}
._f_c00339{width:16.342932pt;}
._3_c00339{width:17.633603pt;}
._0_c00339{width:19.084800pt;}
._b_c00339{width:21.128540pt;}
._c_c00339{width:22.309325pt;}
._9_c00339{width:23.331732pt;}
._e_c00339{width:27.955200pt;}
._d_c00339{width:29.245332pt;}
.fs1_c00339{font-size:53.760000pt;}
.fs0_c00339{font-size:64.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.yf_c00339{bottom:10.866667pt;}
.y19_c00339{bottom:11.200000pt;}
.y7_c00339{bottom:11.240000pt;}
.y18_c00339{bottom:33.920000pt;}
.y6_c00339{bottom:34.280000pt;}
.y3_c00339{bottom:50.880000pt;}
.y17_c00339{bottom:56.960000pt;}
.y5_c00339{bottom:57.320000pt;}
.y2_c00339{bottom:69.440000pt;}
.y16_c00339{bottom:80.026667pt;}
.y15_c00339{bottom:103.066667pt;}
.y2a_c00339{bottom:104.032000pt;}
.y14_c00339{bottom:126.106667pt;}
.y29_c00339{bottom:131.552000pt;}
.y13_c00339{bottom:149.146667pt;}
.y28_c00339{bottom:159.066667pt;}
.y12_c00339{bottom:172.186667pt;}
.y27_c00339{bottom:186.586667pt;}
.y11_c00339{bottom:195.266667pt;}
.y26_c00339{bottom:214.466667pt;}
.y25_c00339{bottom:241.986667pt;}
.y24_c00339{bottom:269.506667pt;}
.y23_c00339{bottom:297.026667pt;}
.y22_c00339{bottom:324.893333pt;}
.y21_c00339{bottom:352.413333pt;}
.y20_c00339{bottom:379.933333pt;}
.y1f_c00339{bottom:407.453333pt;}
.y1e_c00339{bottom:435.333333pt;}
.y1d_c00339{bottom:462.853333pt;}
.y1c_c00339{bottom:490.373333pt;}
.y1b_c00339{bottom:517.893333pt;}
.y1a_c00339{bottom:545.760000pt;}
.y10_c00339{bottom:560.800000pt;}
.ye_c00339{bottom:768.560000pt;}
.yd_c00339{bottom:805.346667pt;}
.yc_c00339{bottom:832.866667pt;}
.yb_c00339{bottom:860.413333pt;}
.ya_c00339{bottom:888.253333pt;}
.y9_c00339{bottom:915.773333pt;}
.y8_c00339{bottom:943.293333pt;}
.y4_c00339{bottom:958.333333pt;}
.y1_c00339{bottom:1061.093333pt;}
.h7_c00339{height:22.706667pt;}
.h4_c00339{height:52.762500pt;}
.h2_c00339{height:57.375000pt;}
.h6_c00339{height:62.781250pt;}
.h5_c00339{height:62.812500pt;}
.h3_c00339{height:69.146667pt;}
.h8_c00339{height:207.106667pt;}
.h0_c00339{height:1122.560000pt;}
.h1_c00339{height:1122.666667pt;}
.w2_c00339{width:287.480000pt;}
.w3_c00339{width:287.800000pt;}
.w1_c00339{width:793.333333pt;}
.w0_c00339{width:793.600000pt;}
.x0_c00339{left:0.000000pt;}
.x4_c00339{left:6.740000pt;}
.x3_c00339{left:106.604000pt;}
.x1_c00339{left:113.344000pt;}
.x7_c00339{left:121.329333pt;}
.x8_c00339{left:128.706667pt;}
.x6_c00339{left:158.786667pt;}
.x2_c00339{left:384.800000pt;}
.x5_c00339{left:394.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_c00340 {
    display:none;
  }
  .loading-indicator_c00340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00340 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00340 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00340" -> "#page-container .classname_c00340")
 */
.pf_c00340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00340 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00340 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00340 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00340 {overflow:visible;}
  }
}
.c_c00340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00340 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00340:after { /* webkit #35443 */
  content: '';
}
.t_c00340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00340 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00340 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00340 { /* info for Javascript */
  display:none;
}
.l_c00340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00340:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00340;src:url('chunks/assets/font_fc6950464c760d6eac0113bc.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_291032fd6ce2b98d01e08ba1.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_bf93931fbd8f83fa28746d92.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_239eb621517a77c58ec51edb.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00340;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls13_c00340{letter-spacing:-1.440000px;}
.ls11_c00340{letter-spacing:-1.416000px;}
.lsf_c00340{letter-spacing:-0.912000px;}
.ls12_c00340{letter-spacing:-0.532800px;}
.ls10_c00340{letter-spacing:-0.337200px;}
.lsb_c00340{letter-spacing:0.000000px;}
.ls3_c00340{letter-spacing:0.020160px;}
.lsd_c00340{letter-spacing:0.022800px;}
.ls14_c00340{letter-spacing:0.466800px;}
.lse_c00340{letter-spacing:0.529800px;}
.lsc_c00340{letter-spacing:0.630000px;}
.ls6_c00340{letter-spacing:0.720000px;}
.ls7_c00340{letter-spacing:0.840000px;}
.ls4_c00340{letter-spacing:3.600000px;}
.ls9_c00340{letter-spacing:12.240000px;}
.lsa_c00340{letter-spacing:13.680000px;}
.ls0_c00340{letter-spacing:25.200000px;}
.ls1_c00340{letter-spacing:26.640000px;}
.ls2_c00340{letter-spacing:26.820000px;}
.ls5_c00340{letter-spacing:36.720000px;}
.ls8_c00340{letter-spacing:46.800000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00340{word-spacing:-72.000000px;}
.ws5_c00340{word-spacing:-18.000000px;}
.ws1_c00340{word-spacing:-15.750000px;}
.ws7_c00340{word-spacing:-15.586800px;}
.ws4_c00340{word-spacing:-15.142800px;}
.ws0_c00340{word-spacing:-15.120000px;}
.ws2_c00340{word-spacing:-14.782800px;}
.ws3_c00340{word-spacing:-14.587200px;}
.ws8_c00340{word-spacing:0.000000px;}
._12_c00340{margin-left:-3.491901px;}
._5_c00340{margin-left:-2.388123px;}
._1_c00340{margin-left:-1.008000px;}
._0_c00340{width:1.008000px;}
._2_c00340{width:2.136024px;}
._d_c00340{width:3.350031px;}
._6_c00340{width:5.000525px;}
._7_c00340{width:6.751553px;}
._14_c00340{width:8.528893px;}
._15_c00340{width:9.623060px;}
._10_c00340{width:11.170218px;}
._b_c00340{width:12.277803px;}
._a_c00340{width:13.385998px;}
._13_c00340{width:14.474525px;}
._11_c00340{width:16.488555px;}
._f_c00340{width:19.872000px;}
._e_c00340{width:21.684123px;}
._4_c00340{width:23.701678px;}
._3_c00340{width:25.724402px;}
._8_c00340{width:35.563918px;}
._9_c00340{width:36.746283px;}
._c_c00340{width:46.086002px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs3_c00340{font-size:38.880000px;}
.fs2_c00340{font-size:47.520000px;}
.fs1_c00340{font-size:60.480000px;}
.fs0_c00340{font-size:72.000000px;}
.y0_c00340{bottom:0.000000px;}
.yf_c00340{bottom:12.225000px;}
.y6_c00340{bottom:12.240000px;}
.ye_c00340{bottom:38.145000px;}
.y3_c00340{bottom:57.240000px;}
.yd_c00340{bottom:64.065000px;}
.y2_c00340{bottom:78.120000px;}
.yc_c00340{bottom:90.015000px;}
.yb_c00340{bottom:115.935000px;}
.y2d_c00340{bottom:130.716000px;}
.y2c_c00340{bottom:137.556000px;}
.ya_c00340{bottom:141.855000px;}
.y2b_c00340{bottom:147.996000px;}
.y2a_c00340{bottom:165.270000px;}
.y9_c00340{bottom:167.775000px;}
.y29_c00340{bottom:182.190000px;}
.y8_c00340{bottom:193.740000px;}
.y28_c00340{bottom:199.470000px;}
.y27_c00340{bottom:206.310000px;}
.y26_c00340{bottom:217.470000px;}
.y25_c00340{bottom:266.115000px;}
.y24_c00340{bottom:297.075000px;}
.y23_c00340{bottom:328.035000px;}
.y22_c00340{bottom:359.385000px;}
.y21_c00340{bottom:390.345000px;}
.y20_c00340{bottom:430.305000px;}
.y1f_c00340{bottom:470.265000px;}
.y1d_c00340{bottom:501.630000px;}
.y1e_c00340{bottom:509.910000px;}
.y1c_c00340{bottom:532.590000px;}
.y1b_c00340{bottom:563.550000px;}
.y1a_c00340{bottom:594.510000px;}
.y19_c00340{bottom:625.860000px;}
.y18_c00340{bottom:656.820000px;}
.y17_c00340{bottom:687.780000px;}
.y16_c00340{bottom:718.770000px;}
.y15_c00340{bottom:750.090000px;}
.y14_c00340{bottom:781.050000px;}
.y13_c00340{bottom:812.010000px;}
.y11_c00340{bottom:843.015000px;}
.y12_c00340{bottom:851.295000px;}
.y10_c00340{bottom:873.975000px;}
.y7_c00340{bottom:891.270000px;}
.y5_c00340{bottom:1099.050000px;}
.y4_c00340{bottom:1140.450000px;}
.y1_c00340{bottom:1193.730000px;}
.h4_c00340{height:25.545000px;}
.hb_c00340{height:38.158594px;}
.ha_c00340{height:46.638281px;}
.h7_c00340{height:54.219375px;}
.h5_c00340{height:59.357813px;}
.h2_c00340{height:64.546875px;}
.h3_c00340{height:70.628906px;}
.h8_c00340{height:70.664062px;}
.h6_c00340{height:207.045000px;}
.h9_c00340{height:1262.875500px;}
.h0_c00340{height:1262.880000px;}
.h1_c00340{height:1263.000000px;}
.w2_c00340{width:217.170000px;}
.w3_c00340{width:217.185000px;}
.w4_c00340{width:217.485000px;}
.w1_c00340{width:892.500000px;}
.w5_c00340{width:892.797000px;}
.w0_c00340{width:892.800000px;}
.x0_c00340{left:0.000000px;}
.x5_c00340{left:7.582500px;}
.x4_c00340{left:119.929500px;}
.x1_c00340{left:127.512000px;}
.xe_c00340{left:142.632000px;}
.x3_c00340{left:178.635000px;}
.xc_c00340{left:180.795000px;}
.x6_c00340{left:338.190000px;}
.xd_c00340{left:343.590000px;}
.x2_c00340{left:432.900000px;}
.x7_c00340{left:556.110000px;}
.x8_c00340{left:562.212000px;}
.x9_c00340{left:580.575000px;}
.xa_c00340{left:717.087000px;}
.xb_c00340{left:735.450000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls13_c00340{letter-spacing:-1.280000pt;}
.ls11_c00340{letter-spacing:-1.258667pt;}
.lsf_c00340{letter-spacing:-0.810667pt;}
.ls12_c00340{letter-spacing:-0.473600pt;}
.ls10_c00340{letter-spacing:-0.299733pt;}
.lsb_c00340{letter-spacing:0.000000pt;}
.ls3_c00340{letter-spacing:0.017920pt;}
.lsd_c00340{letter-spacing:0.020267pt;}
.ls14_c00340{letter-spacing:0.414933pt;}
.lse_c00340{letter-spacing:0.470933pt;}
.lsc_c00340{letter-spacing:0.560000pt;}
.ls6_c00340{letter-spacing:0.640000pt;}
.ls7_c00340{letter-spacing:0.746667pt;}
.ls4_c00340{letter-spacing:3.200000pt;}
.ls9_c00340{letter-spacing:10.880000pt;}
.lsa_c00340{letter-spacing:12.160000pt;}
.ls0_c00340{letter-spacing:22.400000pt;}
.ls1_c00340{letter-spacing:23.680000pt;}
.ls2_c00340{letter-spacing:23.840000pt;}
.ls5_c00340{letter-spacing:32.640000pt;}
.ls8_c00340{letter-spacing:41.600000pt;}
.ws6_c00340{word-spacing:-64.000000pt;}
.ws5_c00340{word-spacing:-16.000000pt;}
.ws1_c00340{word-spacing:-14.000000pt;}
.ws7_c00340{word-spacing:-13.854933pt;}
.ws4_c00340{word-spacing:-13.460267pt;}
.ws0_c00340{word-spacing:-13.440000pt;}
.ws2_c00340{word-spacing:-13.140267pt;}
.ws3_c00340{word-spacing:-12.966400pt;}
.ws8_c00340{word-spacing:0.000000pt;}
._12_c00340{margin-left:-3.103912pt;}
._5_c00340{margin-left:-2.122776pt;}
._1_c00340{margin-left:-0.896000pt;}
._0_c00340{width:0.896000pt;}
._2_c00340{width:1.898688pt;}
._d_c00340{width:2.977806pt;}
._6_c00340{width:4.444911pt;}
._7_c00340{width:6.001381pt;}
._14_c00340{width:7.581239pt;}
._15_c00340{width:8.553831pt;}
._10_c00340{width:9.929083pt;}
._b_c00340{width:10.913603pt;}
._a_c00340{width:11.898665pt;}
._13_c00340{width:12.866244pt;}
._11_c00340{width:14.656493pt;}
._f_c00340{width:17.664000pt;}
._e_c00340{width:19.274776pt;}
._4_c00340{width:21.068158pt;}
._3_c00340{width:22.866135pt;}
._8_c00340{width:31.612372pt;}
._9_c00340{width:32.663363pt;}
._c_c00340{width:40.965335pt;}
.fs3_c00340{font-size:34.560000pt;}
.fs2_c00340{font-size:42.240000pt;}
.fs1_c00340{font-size:53.760000pt;}
.fs0_c00340{font-size:64.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.yf_c00340{bottom:10.866667pt;}
.y6_c00340{bottom:10.880000pt;}
.ye_c00340{bottom:33.906667pt;}
.y3_c00340{bottom:50.880000pt;}
.yd_c00340{bottom:56.946667pt;}
.y2_c00340{bottom:69.440000pt;}
.yc_c00340{bottom:80.013333pt;}
.yb_c00340{bottom:103.053333pt;}
.y2d_c00340{bottom:116.192000pt;}
.y2c_c00340{bottom:122.272000pt;}
.ya_c00340{bottom:126.093333pt;}
.y2b_c00340{bottom:131.552000pt;}
.y2a_c00340{bottom:146.906667pt;}
.y9_c00340{bottom:149.133333pt;}
.y29_c00340{bottom:161.946667pt;}
.y8_c00340{bottom:172.213333pt;}
.y28_c00340{bottom:177.306667pt;}
.y27_c00340{bottom:183.386667pt;}
.y26_c00340{bottom:193.306667pt;}
.y25_c00340{bottom:236.546667pt;}
.y24_c00340{bottom:264.066667pt;}
.y23_c00340{bottom:291.586667pt;}
.y22_c00340{bottom:319.453333pt;}
.y21_c00340{bottom:346.973333pt;}
.y20_c00340{bottom:382.493333pt;}
.y1f_c00340{bottom:418.013333pt;}
.y1d_c00340{bottom:445.893333pt;}
.y1e_c00340{bottom:453.253333pt;}
.y1c_c00340{bottom:473.413333pt;}
.y1b_c00340{bottom:500.933333pt;}
.y1a_c00340{bottom:528.453333pt;}
.y19_c00340{bottom:556.320000pt;}
.y18_c00340{bottom:583.840000pt;}
.y17_c00340{bottom:611.360000pt;}
.y16_c00340{bottom:638.906667pt;}
.y15_c00340{bottom:666.746667pt;}
.y14_c00340{bottom:694.266667pt;}
.y13_c00340{bottom:721.786667pt;}
.y11_c00340{bottom:749.346667pt;}
.y12_c00340{bottom:756.706667pt;}
.y10_c00340{bottom:776.866667pt;}
.y7_c00340{bottom:792.240000pt;}
.y5_c00340{bottom:976.933333pt;}
.y4_c00340{bottom:1013.733333pt;}
.y1_c00340{bottom:1061.093333pt;}
.h4_c00340{height:22.706667pt;}
.hb_c00340{height:33.918750pt;}
.ha_c00340{height:41.456250pt;}
.h7_c00340{height:48.195000pt;}
.h5_c00340{height:52.762500pt;}
.h2_c00340{height:57.375000pt;}
.h3_c00340{height:62.781250pt;}
.h8_c00340{height:62.812500pt;}
.h6_c00340{height:184.040000pt;}
.h9_c00340{height:1122.556000pt;}
.h0_c00340{height:1122.560000pt;}
.h1_c00340{height:1122.666667pt;}
.w2_c00340{width:193.040000pt;}
.w3_c00340{width:193.053333pt;}
.w4_c00340{width:193.320000pt;}
.w1_c00340{width:793.333333pt;}
.w5_c00340{width:793.597333pt;}
.w0_c00340{width:793.600000pt;}
.x0_c00340{left:0.000000pt;}
.x5_c00340{left:6.740000pt;}
.x4_c00340{left:106.604000pt;}
.x1_c00340{left:113.344000pt;}
.xe_c00340{left:126.784000pt;}
.x3_c00340{left:158.786667pt;}
.xc_c00340{left:160.706667pt;}
.x6_c00340{left:300.613333pt;}
.xd_c00340{left:305.413333pt;}
.x2_c00340{left:384.800000pt;}
.x7_c00340{left:494.320000pt;}
.x8_c00340{left:499.744000pt;}
.x9_c00340{left:516.066667pt;}
.xa_c00340{left:637.410667pt;}
.xb_c00340{left:653.733333pt;}
}





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

.ir_c00341:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00341;src:url('chunks/assets/font_dc39f37a3a059faa5218c5f9.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_a5158d2dc76ec927be516268.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_0d99058be26a7cb5847ec39d.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;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_c00341;src:url('chunks/assets/font_f83391ea49418312562f8160.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls15_c00341{letter-spacing:-1.680000px;}
.ls14_c00341{letter-spacing:-1.416000px;}
.ls16_c00341{letter-spacing:-1.380000px;}
.ls1a_c00341{letter-spacing:-1.056000px;}
.lsa_c00341{letter-spacing:-0.954000px;}
.ls12_c00341{letter-spacing:-0.912000px;}
.ls13_c00341{letter-spacing:-0.720000px;}
.lsd_c00341{letter-spacing:-0.532800px;}
.ls10_c00341{letter-spacing:-0.360000px;}
.lsc_c00341{letter-spacing:-0.241800px;}
.ls9_c00341{letter-spacing:0.000000px;}
.lsf_c00341{letter-spacing:0.020400px;}
.lse_c00341{letter-spacing:0.022800px;}
.ls2_c00341{letter-spacing:0.048960px;}
.ls11_c00341{letter-spacing:0.060600px;}
.ls19_c00341{letter-spacing:0.166800px;}
.ls18_c00341{letter-spacing:0.507000px;}
.lsb_c00341{letter-spacing:0.529800px;}
.ls3_c00341{letter-spacing:0.532797px;}
.ls7_c00341{letter-spacing:0.638400px;}
.ls17_c00341{letter-spacing:0.702000px;}
.ls0_c00341{letter-spacing:0.720000px;}
.ls1_c00341{letter-spacing:0.728640px;}
.ls6_c00341{letter-spacing:0.740050px;}
.ls5_c00341{letter-spacing:0.740154px;}
.ls4_c00341{letter-spacing:0.900000px;}
.ls8_c00341{letter-spacing:22.440000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00341{word-spacing:-15.822000px;}
.ws6_c00341{word-spacing:-15.627000px;}
.ws7_c00341{word-spacing:-15.286800px;}
.ws4_c00341{word-spacing:-15.180600px;}
.ws0_c00341{word-spacing:-15.120000px;}
.ws1_c00341{word-spacing:-14.166000px;}
.ws3_c00341{word-spacing:-13.440000px;}
.ws8_c00341{word-spacing:-12.600000px;}
.ws2_c00341{word-spacing:-11.880000px;}
.ws9_c00341{word-spacing:0.000000px;}
._1_c00341{margin-left:-1.935602px;}
._0_c00341{width:1.206720px;}
._2_c00341{width:2.572105px;}
.fc0_c00341{color:rgb(0,0,0);}
.fs2_c00341{font-size:47.520000px;}
.fs1_c00341{font-size:60.480000px;}
.fs0_c00341{font-size:72.000000px;}
.y0_c00341{bottom:0.000000px;}
.y3_c00341{bottom:57.240000px;}
.y2_c00341{bottom:78.120000px;}
.y2b_c00341{bottom:128.916000px;}
.y2a_c00341{bottom:154.470000px;}
.y29_c00341{bottom:180.390000px;}
.y28_c00341{bottom:206.310000px;}
.y27_c00341{bottom:232.275000px;}
.y26_c00341{bottom:258.195000px;}
.y25_c00341{bottom:284.115000px;}
.y24_c00341{bottom:310.035000px;}
.y23_c00341{bottom:335.595000px;}
.y22_c00341{bottom:361.545000px;}
.y21_c00341{bottom:387.465000px;}
.y20_c00341{bottom:413.385000px;}
.y1f_c00341{bottom:439.305000px;}
.y1e_c00341{bottom:465.225000px;}
.y1d_c00341{bottom:491.190000px;}
.y1c_c00341{bottom:517.110000px;}
.y1b_c00341{bottom:542.670000px;}
.y1a_c00341{bottom:568.590000px;}
.y19_c00341{bottom:594.510000px;}
.y18_c00341{bottom:620.460000px;}
.y17_c00341{bottom:646.380000px;}
.y16_c00341{bottom:672.300000px;}
.y15_c00341{bottom:698.220000px;}
.y14_c00341{bottom:724.170000px;}
.y13_c00341{bottom:749.730000px;}
.y12_c00341{bottom:775.650000px;}
.y11_c00341{bottom:801.570000px;}
.y10_c00341{bottom:827.490000px;}
.yf_c00341{bottom:853.455000px;}
.ye_c00341{bottom:879.375000px;}
.yd_c00341{bottom:905.295000px;}
.yc_c00341{bottom:930.855000px;}
.yb_c00341{bottom:956.775000px;}
.ya_c00341{bottom:982.725000px;}
.y9_c00341{bottom:1008.645000px;}
.y8_c00341{bottom:1034.565000px;}
.y7_c00341{bottom:1060.485000px;}
.y6_c00341{bottom:1086.450000px;}
.y5_c00341{bottom:1112.370000px;}
.y4_c00341{bottom:1140.450000px;}
.y1_c00341{bottom:1193.730000px;}
.h4_c00341{height:59.357813px;}
.h2_c00341{height:64.546875px;}
.h3_c00341{height:70.664062px;}
.h0_c00341{height:1262.880000px;}
.h1_c00341{height:1263.000000px;}
.w1_c00341{width:892.500000px;}
.w0_c00341{width:892.800000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:127.512000px;}
.x3_c00341{left:169.995000px;}
.x2_c00341{left:432.900000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls15_c00341{letter-spacing:-1.493333pt;}
.ls14_c00341{letter-spacing:-1.258667pt;}
.ls16_c00341{letter-spacing:-1.226667pt;}
.ls1a_c00341{letter-spacing:-0.938667pt;}
.lsa_c00341{letter-spacing:-0.848000pt;}
.ls12_c00341{letter-spacing:-0.810667pt;}
.ls13_c00341{letter-spacing:-0.640000pt;}
.lsd_c00341{letter-spacing:-0.473600pt;}
.ls10_c00341{letter-spacing:-0.320000pt;}
.lsc_c00341{letter-spacing:-0.214933pt;}
.ls9_c00341{letter-spacing:0.000000pt;}
.lsf_c00341{letter-spacing:0.018133pt;}
.lse_c00341{letter-spacing:0.020267pt;}
.ls2_c00341{letter-spacing:0.043520pt;}
.ls11_c00341{letter-spacing:0.053867pt;}
.ls19_c00341{letter-spacing:0.148267pt;}
.ls18_c00341{letter-spacing:0.450667pt;}
.lsb_c00341{letter-spacing:0.470933pt;}
.ls3_c00341{letter-spacing:0.473597pt;}
.ls7_c00341{letter-spacing:0.567467pt;}
.ls17_c00341{letter-spacing:0.624000pt;}
.ls0_c00341{letter-spacing:0.640000pt;}
.ls1_c00341{letter-spacing:0.647680pt;}
.ls6_c00341{letter-spacing:0.657822pt;}
.ls5_c00341{letter-spacing:0.657915pt;}
.ls4_c00341{letter-spacing:0.800000pt;}
.ls8_c00341{letter-spacing:19.946667pt;}
.ws5_c00341{word-spacing:-14.064000pt;}
.ws6_c00341{word-spacing:-13.890667pt;}
.ws7_c00341{word-spacing:-13.588267pt;}
.ws4_c00341{word-spacing:-13.493867pt;}
.ws0_c00341{word-spacing:-13.440000pt;}
.ws1_c00341{word-spacing:-12.592000pt;}
.ws3_c00341{word-spacing:-11.946667pt;}
.ws8_c00341{word-spacing:-11.200000pt;}
.ws2_c00341{word-spacing:-10.560000pt;}
.ws9_c00341{word-spacing:0.000000pt;}
._1_c00341{margin-left:-1.720535pt;}
._0_c00341{width:1.072640pt;}
._2_c00341{width:2.286316pt;}
.fs2_c00341{font-size:42.240000pt;}
.fs1_c00341{font-size:53.760000pt;}
.fs0_c00341{font-size:64.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y3_c00341{bottom:50.880000pt;}
.y2_c00341{bottom:69.440000pt;}
.y2b_c00341{bottom:114.592000pt;}
.y2a_c00341{bottom:137.306667pt;}
.y29_c00341{bottom:160.346667pt;}
.y28_c00341{bottom:183.386667pt;}
.y27_c00341{bottom:206.466667pt;}
.y26_c00341{bottom:229.506667pt;}
.y25_c00341{bottom:252.546667pt;}
.y24_c00341{bottom:275.586667pt;}
.y23_c00341{bottom:298.306667pt;}
.y22_c00341{bottom:321.373333pt;}
.y21_c00341{bottom:344.413333pt;}
.y20_c00341{bottom:367.453333pt;}
.y1f_c00341{bottom:390.493333pt;}
.y1e_c00341{bottom:413.533333pt;}
.y1d_c00341{bottom:436.613333pt;}
.y1c_c00341{bottom:459.653333pt;}
.y1b_c00341{bottom:482.373333pt;}
.y1a_c00341{bottom:505.413333pt;}
.y19_c00341{bottom:528.453333pt;}
.y18_c00341{bottom:551.520000pt;}
.y17_c00341{bottom:574.560000pt;}
.y16_c00341{bottom:597.600000pt;}
.y15_c00341{bottom:620.640000pt;}
.y14_c00341{bottom:643.706667pt;}
.y13_c00341{bottom:666.426667pt;}
.y12_c00341{bottom:689.466667pt;}
.y11_c00341{bottom:712.506667pt;}
.y10_c00341{bottom:735.546667pt;}
.yf_c00341{bottom:758.626667pt;}
.ye_c00341{bottom:781.666667pt;}
.yd_c00341{bottom:804.706667pt;}
.yc_c00341{bottom:827.426667pt;}
.yb_c00341{bottom:850.466667pt;}
.ya_c00341{bottom:873.533333pt;}
.y9_c00341{bottom:896.573333pt;}
.y8_c00341{bottom:919.613333pt;}
.y7_c00341{bottom:942.653333pt;}
.y6_c00341{bottom:965.733333pt;}
.y5_c00341{bottom:988.773333pt;}
.y4_c00341{bottom:1013.733333pt;}
.y1_c00341{bottom:1061.093333pt;}
.h4_c00341{height:52.762500pt;}
.h2_c00341{height:57.375000pt;}
.h3_c00341{height:62.812500pt;}
.h0_c00341{height:1122.560000pt;}
.h1_c00341{height:1122.666667pt;}
.w1_c00341{width:793.333333pt;}
.w0_c00341{width:793.600000pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:113.344000pt;}
.x3_c00341{left:151.106667pt;}
.x2_c00341{left:384.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_c00342 {
    display:none;
  }
  .loading-indicator_c00342.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00342 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00342 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00342" -> "#page-container .classname_c00342")
 */
.pf_c00342 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00342 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00342 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00342 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00342 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00342 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00342 {overflow:visible;}
  }
}
.c_c00342 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00342 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00342:after { /* webkit #35443 */
  content: '';
}
.t_c00342:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00342 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00342 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00342 { /* info for Javascript */
  display:none;
}
.l_c00342 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00342 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00342 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00342:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00342;src:url('chunks/assets/font_f3ddb91be14d2891e2b92c0a.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_48528ec662d2efdd4b95463b.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_d0006bc5b23a362313e7ce0b.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_90b8b024fe1a9a7a2bbab295.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;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_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.lsf_c00342{letter-spacing:-1.440000px;}
.lsc_c00342{letter-spacing:-1.416000px;}
.lsd_c00342{letter-spacing:-0.241800px;}
.ls9_c00342{letter-spacing:0.000000px;}
.lse_c00342{letter-spacing:0.020400px;}
.ls7_c00342{letter-spacing:0.048960px;}
.lsb_c00342{letter-spacing:0.060600px;}
.ls2_c00342{letter-spacing:0.521400px;}
.lsa_c00342{letter-spacing:0.529800px;}
.ls0_c00342{letter-spacing:0.720000px;}
.ls3_c00342{letter-spacing:0.728501px;}
.ls4_c00342{letter-spacing:0.740160px;}
.ls1_c00342{letter-spacing:0.740278px;}
.ls5_c00342{letter-spacing:0.740398px;}
.ls6_c00342{letter-spacing:0.740405px;}
.ls8_c00342{letter-spacing:0.900000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00342{word-spacing:-15.641400px;}
.ws4_c00342{word-spacing:-15.140400px;}
.ws0_c00342{word-spacing:-15.120000px;}
.ws3_c00342{word-spacing:-14.878200px;}
.ws2_c00342{word-spacing:-12.600000px;}
.ws5_c00342{word-spacing:-11.880000px;}
.ws6_c00342{word-spacing:0.000000px;}
._0_c00342{margin-left:-2.171280px;}
._1_c00342{margin-left:-1.169381px;}
._2_c00342{width:1.203479px;}
._3_c00342{width:2.509732px;}
._4_c00342{width:3.991801px;}
._5_c00342{width:5.400762px;}
._8_c00342{width:6.833998px;}
._9_c00342{width:7.998468px;}
._7_c00342{width:9.046102px;}
._6_c00342{width:10.120179px;}
._c_c00342{width:11.598141px;}
._d_c00342{width:12.902380px;}
._b_c00342{width:17.191065px;}
._a_c00342{width:18.385799px;}
.fc0_c00342{color:rgb(0,0,0);}
.fs2_c00342{font-size:47.520000px;}
.fs1_c00342{font-size:60.480000px;}
.fs0_c00342{font-size:72.000000px;}
.y0_c00342{bottom:0.000000px;}
.y3_c00342{bottom:57.240000px;}
.y2_c00342{bottom:78.120000px;}
.y2b_c00342{bottom:133.956000px;}
.y2a_c00342{bottom:159.870000px;}
.y29_c00342{bottom:185.790000px;}
.y28_c00342{bottom:211.710000px;}
.y27_c00342{bottom:237.315000px;}
.y26_c00342{bottom:263.235000px;}
.y25_c00342{bottom:289.155000px;}
.y24_c00342{bottom:315.075000px;}
.y23_c00342{bottom:340.995000px;}
.y22_c00342{bottom:366.945000px;}
.y21_c00342{bottom:392.865000px;}
.y20_c00342{bottom:418.425000px;}
.y1f_c00342{bottom:444.345000px;}
.y1e_c00342{bottom:470.265000px;}
.y1d_c00342{bottom:496.230000px;}
.y1c_c00342{bottom:522.150000px;}
.y1b_c00342{bottom:548.070000px;}
.y1a_c00342{bottom:573.990000px;}
.y19_c00342{bottom:599.940000px;}
.y18_c00342{bottom:625.500000px;}
.y17_c00342{bottom:651.420000px;}
.y16_c00342{bottom:677.340000px;}
.y15_c00342{bottom:703.260000px;}
.y14_c00342{bottom:729.210000px;}
.y13_c00342{bottom:755.130000px;}
.y12_c00342{bottom:781.050000px;}
.y11_c00342{bottom:806.610000px;}
.y10_c00342{bottom:832.530000px;}
.yf_c00342{bottom:858.495000px;}
.ye_c00342{bottom:884.415000px;}
.yd_c00342{bottom:910.335000px;}
.yc_c00342{bottom:936.255000px;}
.yb_c00342{bottom:962.175000px;}
.ya_c00342{bottom:988.125000px;}
.y9_c00342{bottom:1013.685000px;}
.y8_c00342{bottom:1039.605000px;}
.y7_c00342{bottom:1065.525000px;}
.y6_c00342{bottom:1091.490000px;}
.y5_c00342{bottom:1117.410000px;}
.y4_c00342{bottom:1143.330000px;}
.y1_c00342{bottom:1193.730000px;}
.h4_c00342{height:59.328281px;}
.h3_c00342{height:59.357813px;}
.h2_c00342{height:64.546875px;}
.h0_c00342{height:1262.880000px;}
.h1_c00342{height:1263.000000px;}
.w1_c00342{width:892.500000px;}
.w0_c00342{width:892.800000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:127.512000px;}
.x3_c00342{left:169.995000px;}
.x2_c00342{left:432.900000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.lsf_c00342{letter-spacing:-1.280000pt;}
.lsc_c00342{letter-spacing:-1.258667pt;}
.lsd_c00342{letter-spacing:-0.214933pt;}
.ls9_c00342{letter-spacing:0.000000pt;}
.lse_c00342{letter-spacing:0.018133pt;}
.ls7_c00342{letter-spacing:0.043520pt;}
.lsb_c00342{letter-spacing:0.053867pt;}
.ls2_c00342{letter-spacing:0.463467pt;}
.lsa_c00342{letter-spacing:0.470933pt;}
.ls0_c00342{letter-spacing:0.640000pt;}
.ls3_c00342{letter-spacing:0.647556pt;}
.ls4_c00342{letter-spacing:0.657920pt;}
.ls1_c00342{letter-spacing:0.658025pt;}
.ls5_c00342{letter-spacing:0.658132pt;}
.ls6_c00342{letter-spacing:0.658138pt;}
.ls8_c00342{letter-spacing:0.800000pt;}
.ws1_c00342{word-spacing:-13.903467pt;}
.ws4_c00342{word-spacing:-13.458133pt;}
.ws0_c00342{word-spacing:-13.440000pt;}
.ws3_c00342{word-spacing:-13.225067pt;}
.ws2_c00342{word-spacing:-11.200000pt;}
.ws5_c00342{word-spacing:-10.560000pt;}
.ws6_c00342{word-spacing:0.000000pt;}
._0_c00342{margin-left:-1.930027pt;}
._1_c00342{margin-left:-1.039450pt;}
._2_c00342{width:1.069759pt;}
._3_c00342{width:2.230873pt;}
._4_c00342{width:3.548268pt;}
._5_c00342{width:4.800678pt;}
._8_c00342{width:6.074665pt;}
._9_c00342{width:7.109749pt;}
._7_c00342{width:8.040980pt;}
._6_c00342{width:8.995715pt;}
._c_c00342{width:10.309459pt;}
._d_c00342{width:11.468782pt;}
._b_c00342{width:15.280946pt;}
._a_c00342{width:16.342932pt;}
.fs2_c00342{font-size:42.240000pt;}
.fs1_c00342{font-size:53.760000pt;}
.fs0_c00342{font-size:64.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y3_c00342{bottom:50.880000pt;}
.y2_c00342{bottom:69.440000pt;}
.y2b_c00342{bottom:119.072000pt;}
.y2a_c00342{bottom:142.106667pt;}
.y29_c00342{bottom:165.146667pt;}
.y28_c00342{bottom:188.186667pt;}
.y27_c00342{bottom:210.946667pt;}
.y26_c00342{bottom:233.986667pt;}
.y25_c00342{bottom:257.026667pt;}
.y24_c00342{bottom:280.066667pt;}
.y23_c00342{bottom:303.106667pt;}
.y22_c00342{bottom:326.173333pt;}
.y21_c00342{bottom:349.213333pt;}
.y20_c00342{bottom:371.933333pt;}
.y1f_c00342{bottom:394.973333pt;}
.y1e_c00342{bottom:418.013333pt;}
.y1d_c00342{bottom:441.093333pt;}
.y1c_c00342{bottom:464.133333pt;}
.y1b_c00342{bottom:487.173333pt;}
.y1a_c00342{bottom:510.213333pt;}
.y19_c00342{bottom:533.280000pt;}
.y18_c00342{bottom:556.000000pt;}
.y17_c00342{bottom:579.040000pt;}
.y16_c00342{bottom:602.080000pt;}
.y15_c00342{bottom:625.120000pt;}
.y14_c00342{bottom:648.186667pt;}
.y13_c00342{bottom:671.226667pt;}
.y12_c00342{bottom:694.266667pt;}
.y11_c00342{bottom:716.986667pt;}
.y10_c00342{bottom:740.026667pt;}
.yf_c00342{bottom:763.106667pt;}
.ye_c00342{bottom:786.146667pt;}
.yd_c00342{bottom:809.186667pt;}
.yc_c00342{bottom:832.226667pt;}
.yb_c00342{bottom:855.266667pt;}
.ya_c00342{bottom:878.333333pt;}
.y9_c00342{bottom:901.053333pt;}
.y8_c00342{bottom:924.093333pt;}
.y7_c00342{bottom:947.133333pt;}
.y6_c00342{bottom:970.213333pt;}
.y5_c00342{bottom:993.253333pt;}
.y4_c00342{bottom:1016.293333pt;}
.y1_c00342{bottom:1061.093333pt;}
.h4_c00342{height:52.736250pt;}
.h3_c00342{height:52.762500pt;}
.h2_c00342{height:57.375000pt;}
.h0_c00342{height:1122.560000pt;}
.h1_c00342{height:1122.666667pt;}
.w1_c00342{width:793.333333pt;}
.w0_c00342{width:793.600000pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:113.344000pt;}
.x3_c00342{left:151.106667pt;}
.x2_c00342{left:384.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_c00343 {
    display:none;
  }
  .loading-indicator_c00343.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00343 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00343 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00343" -> "#page-container .classname_c00343")
 */
.pf_c00343 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00343 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00343 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00343 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00343 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00343 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00343 {overflow:visible;}
  }
}
.c_c00343 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00343 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00343:after { /* webkit #35443 */
  content: '';
}
.t_c00343:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00343 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00343 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00343 { /* info for Javascript */
  display:none;
}
.l_c00343 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00343 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00343 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00343:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00343;src:url('chunks/assets/font_4343c5271bc03705f5879de2.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_accf4bc009c88918691024db.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_6ba47513336a736eb10382b5.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls3_c00343{letter-spacing:-1.440000px;}
.ls2_c00343{letter-spacing:0.000000px;}
.ls1_c00343{letter-spacing:0.720000px;}
.ls4_c00343{letter-spacing:9.360000px;}
.ls0_c00343{letter-spacing:10.800000px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00343{word-spacing:-72.000000px;}
.ws1_c00343{word-spacing:-18.000000px;}
.ws0_c00343{word-spacing:-15.120000px;}
.ws3_c00343{word-spacing:0.000000px;}
._12_c00343{margin-left:-3.665975px;}
._9_c00343{margin-left:-2.664000px;}
._0_c00343{margin-left:-1.572601px;}
._4_c00343{width:1.451399px;}
._3_c00343{width:2.842802px;}
._d_c00343{width:4.020601px;}
._5_c00343{width:5.080199px;}
._2_c00343{width:6.955200px;}
._1_c00343{width:8.286002px;}
._e_c00343{width:10.224000px;}
._10_c00343{width:11.433560px;}
._11_c00343{width:12.669725px;}
._6_c00343{width:13.910400px;}
._f_c00343{width:19.815005px;}
._7_c00343{width:21.660601px;}
._8_c00343{width:22.695005px;}
._a_c00343{width:46.708203px;}
._c_c00343{width:47.713202px;}
._b_c00343{width:48.749397px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs3_c00343{font-size:38.880000px;}
.fs2_c00343{font-size:47.520000px;}
.fs1_c00343{font-size:60.480000px;}
.fs0_c00343{font-size:72.000000px;}
.y0_c00343{bottom:0.000000px;}
.y3_c00343{bottom:57.240000px;}
.y2_c00343{bottom:78.120000px;}
.y29_c00343{bottom:130.716000px;}
.y28_c00343{bottom:147.996000px;}
.y27_c00343{bottom:165.270000px;}
.y26_c00343{bottom:182.190000px;}
.y25_c00343{bottom:199.470000px;}
.y24_c00343{bottom:206.310000px;}
.y23_c00343{bottom:217.470000px;}
.y22_c00343{bottom:281.235000px;}
.y21_c00343{bottom:312.195000px;}
.y20_c00343{bottom:343.155000px;}
.y1f_c00343{bottom:374.145000px;}
.y1e_c00343{bottom:405.465000px;}
.y1d_c00343{bottom:436.425000px;}
.y1c_c00343{bottom:467.385000px;}
.y1b_c00343{bottom:498.390000px;}
.y1a_c00343{bottom:529.710000px;}
.y19_c00343{bottom:560.670000px;}
.y18_c00343{bottom:591.630000px;}
.y17_c00343{bottom:622.620000px;}
.y16_c00343{bottom:653.940000px;}
.y15_c00343{bottom:684.900000px;}
.y14_c00343{bottom:715.860000px;}
.y13_c00343{bottom:746.850000px;}
.y12_c00343{bottom:778.170000px;}
.y11_c00343{bottom:809.130000px;}
.y10_c00343{bottom:840.090000px;}
.ye_c00343{bottom:871.095000px;}
.yf_c00343{bottom:879.375000px;}
.yd_c00343{bottom:902.415000px;}
.yc_c00343{bottom:933.375000px;}
.yb_c00343{bottom:962.175000px;}
.ya_c00343{bottom:988.125000px;}
.y9_c00343{bottom:1013.685000px;}
.y8_c00343{bottom:1039.605000px;}
.y7_c00343{bottom:1065.525000px;}
.y6_c00343{bottom:1091.490000px;}
.y5_c00343{bottom:1117.410000px;}
.y4_c00343{bottom:1143.330000px;}
.y1_c00343{bottom:1193.730000px;}
.h7_c00343{height:38.158594px;}
.h6_c00343{height:46.638281px;}
.h3_c00343{height:59.328281px;}
.h8_c00343{height:59.357813px;}
.h2_c00343{height:64.546875px;}
.h4_c00343{height:70.664062px;}
.h5_c00343{height:1262.875500px;}
.h0_c00343{height:1262.880000px;}
.h1_c00343{height:1263.000000px;}
.w1_c00343{width:892.500000px;}
.w2_c00343{width:892.797000px;}
.w0_c00343{width:892.800000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:127.512000px;}
.x8_c00343{left:142.632000px;}
.x3_c00343{left:169.995000px;}
.x4_c00343{left:178.635000px;}
.x7_c00343{left:343.590000px;}
.x5_c00343{left:349.707000px;}
.x6_c00343{left:368.070000px;}
.x2_c00343{left:432.900000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls3_c00343{letter-spacing:-1.280000pt;}
.ls2_c00343{letter-spacing:0.000000pt;}
.ls1_c00343{letter-spacing:0.640000pt;}
.ls4_c00343{letter-spacing:8.320000pt;}
.ls0_c00343{letter-spacing:9.600000pt;}
.ws2_c00343{word-spacing:-64.000000pt;}
.ws1_c00343{word-spacing:-16.000000pt;}
.ws0_c00343{word-spacing:-13.440000pt;}
.ws3_c00343{word-spacing:0.000000pt;}
._12_c00343{margin-left:-3.258644pt;}
._9_c00343{margin-left:-2.368000pt;}
._0_c00343{margin-left:-1.397868pt;}
._4_c00343{width:1.290132pt;}
._3_c00343{width:2.526935pt;}
._d_c00343{width:3.573868pt;}
._5_c00343{width:4.515732pt;}
._2_c00343{width:6.182400pt;}
._1_c00343{width:7.365335pt;}
._e_c00343{width:9.088000pt;}
._10_c00343{width:10.163164pt;}
._11_c00343{width:11.261978pt;}
._6_c00343{width:12.364800pt;}
._f_c00343{width:17.613338pt;}
._7_c00343{width:19.253868pt;}
._8_c00343{width:20.173338pt;}
._a_c00343{width:41.518403pt;}
._c_c00343{width:42.411735pt;}
._b_c00343{width:43.332797pt;}
.fs3_c00343{font-size:34.560000pt;}
.fs2_c00343{font-size:42.240000pt;}
.fs1_c00343{font-size:53.760000pt;}
.fs0_c00343{font-size:64.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y3_c00343{bottom:50.880000pt;}
.y2_c00343{bottom:69.440000pt;}
.y29_c00343{bottom:116.192000pt;}
.y28_c00343{bottom:131.552000pt;}
.y27_c00343{bottom:146.906667pt;}
.y26_c00343{bottom:161.946667pt;}
.y25_c00343{bottom:177.306667pt;}
.y24_c00343{bottom:183.386667pt;}
.y23_c00343{bottom:193.306667pt;}
.y22_c00343{bottom:249.986667pt;}
.y21_c00343{bottom:277.506667pt;}
.y20_c00343{bottom:305.026667pt;}
.y1f_c00343{bottom:332.573333pt;}
.y1e_c00343{bottom:360.413333pt;}
.y1d_c00343{bottom:387.933333pt;}
.y1c_c00343{bottom:415.453333pt;}
.y1b_c00343{bottom:443.013333pt;}
.y1a_c00343{bottom:470.853333pt;}
.y19_c00343{bottom:498.373333pt;}
.y18_c00343{bottom:525.893333pt;}
.y17_c00343{bottom:553.440000pt;}
.y16_c00343{bottom:581.280000pt;}
.y15_c00343{bottom:608.800000pt;}
.y14_c00343{bottom:636.320000pt;}
.y13_c00343{bottom:663.866667pt;}
.y12_c00343{bottom:691.706667pt;}
.y11_c00343{bottom:719.226667pt;}
.y10_c00343{bottom:746.746667pt;}
.ye_c00343{bottom:774.306667pt;}
.yf_c00343{bottom:781.666667pt;}
.yd_c00343{bottom:802.146667pt;}
.yc_c00343{bottom:829.666667pt;}
.yb_c00343{bottom:855.266667pt;}
.ya_c00343{bottom:878.333333pt;}
.y9_c00343{bottom:901.053333pt;}
.y8_c00343{bottom:924.093333pt;}
.y7_c00343{bottom:947.133333pt;}
.y6_c00343{bottom:970.213333pt;}
.y5_c00343{bottom:993.253333pt;}
.y4_c00343{bottom:1016.293333pt;}
.y1_c00343{bottom:1061.093333pt;}
.h7_c00343{height:33.918750pt;}
.h6_c00343{height:41.456250pt;}
.h3_c00343{height:52.736250pt;}
.h8_c00343{height:52.762500pt;}
.h2_c00343{height:57.375000pt;}
.h4_c00343{height:62.812500pt;}
.h5_c00343{height:1122.556000pt;}
.h0_c00343{height:1122.560000pt;}
.h1_c00343{height:1122.666667pt;}
.w1_c00343{width:793.333333pt;}
.w2_c00343{width:793.597333pt;}
.w0_c00343{width:793.600000pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:113.344000pt;}
.x8_c00343{left:126.784000pt;}
.x3_c00343{left:151.106667pt;}
.x4_c00343{left:158.786667pt;}
.x7_c00343{left:305.413333pt;}
.x5_c00343{left:310.850667pt;}
.x6_c00343{left:327.173333pt;}
.x2_c00343{left:384.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_c00344 {
    display:none;
  }
  .loading-indicator_c00344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00344 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00344 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00344" -> "#page-container .classname_c00344")
 */
.pf_c00344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00344 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00344 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00344 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00344 {overflow:visible;}
  }
}
.c_c00344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00344 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00344:after { /* webkit #35443 */
  content: '';
}
.t_c00344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00344 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00344 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00344 { /* info for Javascript */
  display:none;
}
.l_c00344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00344:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00344;src:url('chunks/assets/font_951765f035deb258adb6a1d0.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_33025bc477068c2783b87f4b.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_0366e795d5cad865920af384.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;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_c00344;src:url('chunks/assets/font_7644f0f5d94f82fd9b82555d.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00344;src:url('chunks/assets/font_e79ac23edddff84e12ba34b1.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00344;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff6_c00344{font-family:ff6_c00344;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls3_c00344{letter-spacing:-2.880000px;}
.ls4_c00344{letter-spacing:-0.972000px;}
.ls2_c00344{letter-spacing:0.000000px;}
.ls1_c00344{letter-spacing:0.720000px;}
.ls0_c00344{letter-spacing:9.360000px;}
.ls5_c00344{letter-spacing:20.880000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:-18.000000px;}
.ws1_c00344{word-spacing:-15.120000px;}
.ws2_c00344{word-spacing:0.000000px;}
._5_c00344{margin-left:-2.736000px;}
._0_c00344{margin-left:-1.728000px;}
._1_c00344{width:1.368000px;}
._4_c00344{width:2.952000px;}
._3_c00344{width:3.960000px;}
._2_c00344{width:4.968000px;}
._d_c00344{width:6.168024px;}
._c_c00344{width:7.368048px;}
._a_c00344{width:8.519976px;}
._9_c00344{width:9.936000px;}
._12_c00344{width:11.376000px;}
._b_c00344{width:12.576072px;}
._15_c00344{width:19.008000px;}
._f_c00344{width:20.376000px;}
._11_c00344{width:22.416000px;}
._10_c00344{width:23.676000px;}
._7_c00344{width:24.696000px;}
._8_c00344{width:25.704000px;}
._6_c00344{width:27.432000px;}
._14_c00344{width:32.328000px;}
._13_c00344{width:33.840000px;}
._e_c00344{width:35.208000px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs3_c00344{font-size:38.880000px;}
.fs2_c00344{font-size:47.520000px;}
.fs1_c00344{font-size:60.480000px;}
.fs0_c00344{font-size:72.000000px;}
.y0_c00344{bottom:0.000000px;}
.yc_c00344{bottom:12.585000px;}
.y17_c00344{bottom:12.600000px;}
.y16_c00344{bottom:38.520000px;}
.y3_c00344{bottom:57.240000px;}
.y15_c00344{bottom:64.440000px;}
.y2_c00344{bottom:78.120000px;}
.y14_c00344{bottom:90.360000px;}
.y13_c00344{bottom:116.310000px;}
.y29_c00344{bottom:130.716000px;}
.y28_c00344{bottom:137.556000px;}
.y12_c00344{bottom:142.230000px;}
.y27_c00344{bottom:148.356000px;}
.y11_c00344{bottom:167.790000px;}
.y26_c00344{bottom:169.230000px;}
.y10_c00344{bottom:193.710000px;}
.y25_c00344{bottom:200.190000px;}
.yf_c00344{bottom:219.675000px;}
.y23_c00344{bottom:231.555000px;}
.y24_c00344{bottom:239.835000px;}
.ye_c00344{bottom:245.595000px;}
.y22_c00344{bottom:271.515000px;}
.y21_c00344{bottom:311.475000px;}
.y20_c00344{bottom:342.435000px;}
.y1f_c00344{bottom:373.785000px;}
.y1e_c00344{bottom:404.745000px;}
.y1d_c00344{bottom:435.705000px;}
.y1c_c00344{bottom:466.665000px;}
.y1b_c00344{bottom:498.030000px;}
.y1a_c00344{bottom:528.990000px;}
.y19_c00344{bottom:559.950000px;}
.y18_c00344{bottom:590.910000px;}
.yd_c00344{bottom:625.860000px;}
.yb_c00344{bottom:885.510000px;}
.ya_c00344{bottom:926.895000px;}
.y9_c00344{bottom:976.245000px;}
.y8_c00344{bottom:1007.205000px;}
.y7_c00344{bottom:1038.165000px;}
.y6_c00344{bottom:1069.125000px;}
.y5_c00344{bottom:1109.490000px;}
.y4_c00344{bottom:1140.450000px;}
.y1_c00344{bottom:1193.730000px;}
.h5_c00344{height:25.905000px;}
.ha_c00344{height:34.855313px;}
.h9_c00344{height:46.638281px;}
.hb_c00344{height:54.514688px;}
.h6_c00344{height:59.357813px;}
.h2_c00344{height:64.546875px;}
.h4_c00344{height:70.628906px;}
.h3_c00344{height:70.664062px;}
.h7_c00344{height:258.915000px;}
.h8_c00344{height:1262.875500px;}
.h0_c00344{height:1262.880000px;}
.h1_c00344{height:1263.000000px;}
.w2_c00344{width:323.415000px;}
.w3_c00344{width:323.775000px;}
.w1_c00344{width:892.500000px;}
.w4_c00344{width:892.797000px;}
.w0_c00344{width:892.800000px;}
.x0_c00344{left:0.000000px;}
.x5_c00344{left:7.582500px;}
.x4_c00344{left:119.929500px;}
.x1_c00344{left:127.512000px;}
.xb_c00344{left:142.632000px;}
.x3_c00344{left:178.635000px;}
.x7_c00344{left:180.795000px;}
.xa_c00344{left:343.590000px;}
.x2_c00344{left:432.900000px;}
.x6_c00344{left:444.060000px;}
.x8_c00344{left:638.562000px;}
.x9_c00344{left:656.925000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls3_c00344{letter-spacing:-2.560000pt;}
.ls4_c00344{letter-spacing:-0.864000pt;}
.ls2_c00344{letter-spacing:0.000000pt;}
.ls1_c00344{letter-spacing:0.640000pt;}
.ls0_c00344{letter-spacing:8.320000pt;}
.ls5_c00344{letter-spacing:18.560000pt;}
.ws0_c00344{word-spacing:-16.000000pt;}
.ws1_c00344{word-spacing:-13.440000pt;}
.ws2_c00344{word-spacing:0.000000pt;}
._5_c00344{margin-left:-2.432000pt;}
._0_c00344{margin-left:-1.536000pt;}
._1_c00344{width:1.216000pt;}
._4_c00344{width:2.624000pt;}
._3_c00344{width:3.520000pt;}
._2_c00344{width:4.416000pt;}
._d_c00344{width:5.482688pt;}
._c_c00344{width:6.549376pt;}
._a_c00344{width:7.573312pt;}
._9_c00344{width:8.832000pt;}
._12_c00344{width:10.112000pt;}
._b_c00344{width:11.178731pt;}
._15_c00344{width:16.896000pt;}
._f_c00344{width:18.112000pt;}
._11_c00344{width:19.925333pt;}
._10_c00344{width:21.045333pt;}
._7_c00344{width:21.952000pt;}
._8_c00344{width:22.848000pt;}
._6_c00344{width:24.384000pt;}
._14_c00344{width:28.736000pt;}
._13_c00344{width:30.080000pt;}
._e_c00344{width:31.296000pt;}
.fs3_c00344{font-size:34.560000pt;}
.fs2_c00344{font-size:42.240000pt;}
.fs1_c00344{font-size:53.760000pt;}
.fs0_c00344{font-size:64.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.yc_c00344{bottom:11.186667pt;}
.y17_c00344{bottom:11.200000pt;}
.y16_c00344{bottom:34.240000pt;}
.y3_c00344{bottom:50.880000pt;}
.y15_c00344{bottom:57.280000pt;}
.y2_c00344{bottom:69.440000pt;}
.y14_c00344{bottom:80.320000pt;}
.y13_c00344{bottom:103.386667pt;}
.y29_c00344{bottom:116.192000pt;}
.y28_c00344{bottom:122.272000pt;}
.y12_c00344{bottom:126.426667pt;}
.y27_c00344{bottom:131.872000pt;}
.y11_c00344{bottom:149.146667pt;}
.y26_c00344{bottom:150.426667pt;}
.y10_c00344{bottom:172.186667pt;}
.y25_c00344{bottom:177.946667pt;}
.yf_c00344{bottom:195.266667pt;}
.y23_c00344{bottom:205.826667pt;}
.y24_c00344{bottom:213.186667pt;}
.ye_c00344{bottom:218.306667pt;}
.y22_c00344{bottom:241.346667pt;}
.y21_c00344{bottom:276.866667pt;}
.y20_c00344{bottom:304.386667pt;}
.y1f_c00344{bottom:332.253333pt;}
.y1e_c00344{bottom:359.773333pt;}
.y1d_c00344{bottom:387.293333pt;}
.y1c_c00344{bottom:414.813333pt;}
.y1b_c00344{bottom:442.693333pt;}
.y1a_c00344{bottom:470.213333pt;}
.y19_c00344{bottom:497.733333pt;}
.y18_c00344{bottom:525.253333pt;}
.yd_c00344{bottom:556.320000pt;}
.yb_c00344{bottom:787.120000pt;}
.ya_c00344{bottom:823.906667pt;}
.y9_c00344{bottom:867.773333pt;}
.y8_c00344{bottom:895.293333pt;}
.y7_c00344{bottom:922.813333pt;}
.y6_c00344{bottom:950.333333pt;}
.y5_c00344{bottom:986.213333pt;}
.y4_c00344{bottom:1013.733333pt;}
.y1_c00344{bottom:1061.093333pt;}
.h5_c00344{height:23.026667pt;}
.ha_c00344{height:30.982500pt;}
.h9_c00344{height:41.456250pt;}
.hb_c00344{height:48.457500pt;}
.h6_c00344{height:52.762500pt;}
.h2_c00344{height:57.375000pt;}
.h4_c00344{height:62.781250pt;}
.h3_c00344{height:62.812500pt;}
.h7_c00344{height:230.146667pt;}
.h8_c00344{height:1122.556000pt;}
.h0_c00344{height:1122.560000pt;}
.h1_c00344{height:1122.666667pt;}
.w2_c00344{width:287.480000pt;}
.w3_c00344{width:287.800000pt;}
.w1_c00344{width:793.333333pt;}
.w4_c00344{width:793.597333pt;}
.w0_c00344{width:793.600000pt;}
.x0_c00344{left:0.000000pt;}
.x5_c00344{left:6.740000pt;}
.x4_c00344{left:106.604000pt;}
.x1_c00344{left:113.344000pt;}
.xb_c00344{left:126.784000pt;}
.x3_c00344{left:158.786667pt;}
.x7_c00344{left:160.706667pt;}
.xa_c00344{left:305.413333pt;}
.x2_c00344{left:384.800000pt;}
.x6_c00344{left:394.720000pt;}
.x8_c00344{left:567.610667pt;}
.x9_c00344{left:583.933333pt;}
}





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

.ir_c00345:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00345;src:url('chunks/assets/font_25776389769876b7dac285d3.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_290239b84eb84c2dac618ec6.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_12dc4c33e8ff1e2264625423.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;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_c00345;src:url('chunks/assets/font_c3a0a7fc0a64fabdbd1a1358.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00345;src:url('chunks/assets/font_2805fa21f3f65168e7f3ce0b.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00345;src:url('chunks/assets/font_3010940c08e2755a216428c1.woff2')format("woff");}.ff6_c00345{font-family:ff6_c00345;line-height:1.104004;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00345{font-family:ff7_c00345;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls11_c00345{letter-spacing:-1.416000px;}
.ls19_c00345{letter-spacing:-1.380000px;}
.ls1a_c00345{letter-spacing:-0.918000px;}
.lse_c00345{letter-spacing:-0.912000px;}
.ls18_c00345{letter-spacing:-0.532800px;}
.ls10_c00345{letter-spacing:-0.302400px;}
.ls14_c00345{letter-spacing:-0.241800px;}
.lsb_c00345{letter-spacing:0.000000px;}
.ls12_c00345{letter-spacing:0.022800px;}
.ls5_c00345{letter-spacing:0.048960px;}
.ls7_c00345{letter-spacing:0.069120px;}
.ls16_c00345{letter-spacing:0.166800px;}
.ls0_c00345{letter-spacing:0.168960px;}
.ls9_c00345{letter-spacing:0.302400px;}
.ls15_c00345{letter-spacing:0.325200px;}
.ls17_c00345{letter-spacing:0.521400px;}
.ls13_c00345{letter-spacing:0.529800px;}
.lsf_c00345{letter-spacing:0.630000px;}
.lsd_c00345{letter-spacing:0.648000px;}
.ls1_c00345{letter-spacing:0.720000px;}
.lsa_c00345{letter-spacing:0.728640px;}
.ls8_c00345{letter-spacing:0.740133px;}
.ls2_c00345{letter-spacing:0.740160px;}
.ls3_c00345{letter-spacing:0.740309px;}
.ls4_c00345{letter-spacing:0.740430px;}
.ls6_c00345{letter-spacing:0.900000px;}
.lsc_c00345{letter-spacing:1.440000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00345{word-spacing:-18.648000px;}
.ws0_c00345{word-spacing:-18.000000px;}
.ws4_c00345{word-spacing:-15.750000px;}
.ws7_c00345{word-spacing:-15.649800px;}
.wsb_c00345{word-spacing:-15.641400px;}
.ws3_c00345{word-spacing:-15.422400px;}
.wsa_c00345{word-spacing:-15.286800px;}
.ws2_c00345{word-spacing:-15.120000px;}
.ws8_c00345{word-spacing:-14.878200px;}
.ws5_c00345{word-spacing:-14.817600px;}
.ws9_c00345{word-spacing:-14.208000px;}
.wsc_c00345{word-spacing:-14.202000px;}
.ws6_c00345{word-spacing:-12.600000px;}
.wsd_c00345{word-spacing:0.000000px;}
._2_c00345{margin-left:-2.520144px;}
._1_c00345{margin-left:-1.355976px;}
._0_c00345{width:1.080000px;}
._3_c00345{width:2.808000px;}
._4_c00345{width:3.888000px;}
._e_c00345{width:13.579099px;}
._5_c00345{width:20.460000px;}
._6_c00345{width:21.635976px;}
._7_c00345{width:22.668192px;}
._9_c00345{width:111.720000px;}
._10_c00345{width:186.013263px;}
._b_c00345{width:187.919935px;}
._f_c00345{width:189.479969px;}
._8_c00345{width:682.994112px;}
._d_c00345{width:737.416512px;}
._a_c00345{width:799.462800px;}
._c_c00345{width:1729.440000px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs2_c00345{font-size:47.520000px;}
.fs1_c00345{font-size:60.480000px;}
.fs0_c00345{font-size:72.000000px;}
.y0_c00345{bottom:0.000000px;}
.y3_c00345{bottom:57.240000px;}
.y2_c00345{bottom:78.120000px;}
.y28_c00345{bottom:125.316000px;}
.y27_c00345{bottom:150.870000px;}
.y26_c00345{bottom:176.790000px;}
.y25_c00345{bottom:202.710000px;}
.y24_c00345{bottom:228.630000px;}
.y23_c00345{bottom:254.595000px;}
.y22_c00345{bottom:280.515000px;}
.y21_c00345{bottom:306.435000px;}
.y20_c00345{bottom:331.995000px;}
.y1f_c00345{bottom:357.945000px;}
.y1e_c00345{bottom:383.865000px;}
.y1d_c00345{bottom:409.785000px;}
.y1c_c00345{bottom:435.705000px;}
.y1b_c00345{bottom:461.625000px;}
.y1a_c00345{bottom:487.590000px;}
.y19_c00345{bottom:513.510000px;}
.y18_c00345{bottom:539.070000px;}
.y17_c00345{bottom:564.990000px;}
.y16_c00345{bottom:588.390000px;}
.y15_c00345{bottom:611.820000px;}
.y14_c00345{bottom:637.740000px;}
.y13_c00345{bottom:663.300000px;}
.y12_c00345{bottom:689.220000px;}
.y11_c00345{bottom:715.140000px;}
.y10_c00345{bottom:741.090000px;}
.yf_c00345{bottom:767.010000px;}
.ye_c00345{bottom:792.930000px;}
.yd_c00345{bottom:827.850000px;}
.yc_c00345{bottom:864.975000px;}
.yb_c00345{bottom:895.935000px;}
.ya_c00345{bottom:926.895000px;}
.y9_c00345{bottom:958.215000px;}
.y8_c00345{bottom:989.205000px;}
.y7_c00345{bottom:1038.165000px;}
.y6_c00345{bottom:1078.125000px;}
.y5_c00345{bottom:1109.490000px;}
.y4_c00345{bottom:1140.450000px;}
.y1_c00345{bottom:1193.730000px;}
.h6_c00345{height:54.219375px;}
.h5_c00345{height:59.357813px;}
.h7_c00345{height:60.952500px;}
.h2_c00345{height:64.546875px;}
.h4_c00345{height:70.628906px;}
.h3_c00345{height:70.664062px;}
.h0_c00345{height:1262.880000px;}
.h1_c00345{height:1263.000000px;}
.w1_c00345{width:892.500000px;}
.w0_c00345{width:892.800000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:127.512000px;}
.x5_c00345{left:169.995000px;}
.x4_c00345{left:178.635000px;}
.x3_c00345{left:180.795000px;}
.x2_c00345{left:432.900000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls11_c00345{letter-spacing:-1.258667pt;}
.ls19_c00345{letter-spacing:-1.226667pt;}
.ls1a_c00345{letter-spacing:-0.816000pt;}
.lse_c00345{letter-spacing:-0.810667pt;}
.ls18_c00345{letter-spacing:-0.473600pt;}
.ls10_c00345{letter-spacing:-0.268800pt;}
.ls14_c00345{letter-spacing:-0.214933pt;}
.lsb_c00345{letter-spacing:0.000000pt;}
.ls12_c00345{letter-spacing:0.020267pt;}
.ls5_c00345{letter-spacing:0.043520pt;}
.ls7_c00345{letter-spacing:0.061440pt;}
.ls16_c00345{letter-spacing:0.148267pt;}
.ls0_c00345{letter-spacing:0.150187pt;}
.ls9_c00345{letter-spacing:0.268800pt;}
.ls15_c00345{letter-spacing:0.289067pt;}
.ls17_c00345{letter-spacing:0.463467pt;}
.ls13_c00345{letter-spacing:0.470933pt;}
.lsf_c00345{letter-spacing:0.560000pt;}
.lsd_c00345{letter-spacing:0.576000pt;}
.ls1_c00345{letter-spacing:0.640000pt;}
.lsa_c00345{letter-spacing:0.647680pt;}
.ls8_c00345{letter-spacing:0.657896pt;}
.ls2_c00345{letter-spacing:0.657920pt;}
.ls3_c00345{letter-spacing:0.658052pt;}
.ls4_c00345{letter-spacing:0.658160pt;}
.ls6_c00345{letter-spacing:0.800000pt;}
.lsc_c00345{letter-spacing:1.280000pt;}
.ws1_c00345{word-spacing:-16.576000pt;}
.ws0_c00345{word-spacing:-16.000000pt;}
.ws4_c00345{word-spacing:-14.000000pt;}
.ws7_c00345{word-spacing:-13.910933pt;}
.wsb_c00345{word-spacing:-13.903467pt;}
.ws3_c00345{word-spacing:-13.708800pt;}
.wsa_c00345{word-spacing:-13.588267pt;}
.ws2_c00345{word-spacing:-13.440000pt;}
.ws8_c00345{word-spacing:-13.225067pt;}
.ws5_c00345{word-spacing:-13.171200pt;}
.ws9_c00345{word-spacing:-12.629333pt;}
.wsc_c00345{word-spacing:-12.624000pt;}
.ws6_c00345{word-spacing:-11.200000pt;}
.wsd_c00345{word-spacing:0.000000pt;}
._2_c00345{margin-left:-2.240128pt;}
._1_c00345{margin-left:-1.205312pt;}
._0_c00345{width:0.960000pt;}
._3_c00345{width:2.496000pt;}
._4_c00345{width:3.456000pt;}
._e_c00345{width:12.070310pt;}
._5_c00345{width:18.186667pt;}
._6_c00345{width:19.231979pt;}
._7_c00345{width:20.149504pt;}
._9_c00345{width:99.306667pt;}
._10_c00345{width:165.345123pt;}
._b_c00345{width:167.039942pt;}
._f_c00345{width:168.426639pt;}
._8_c00345{width:607.105877pt;}
._d_c00345{width:655.481344pt;}
._a_c00345{width:710.633600pt;}
._c_c00345{width:1537.280000pt;}
.fs2_c00345{font-size:42.240000pt;}
.fs1_c00345{font-size:53.760000pt;}
.fs0_c00345{font-size:64.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y3_c00345{bottom:50.880000pt;}
.y2_c00345{bottom:69.440000pt;}
.y28_c00345{bottom:111.392000pt;}
.y27_c00345{bottom:134.106667pt;}
.y26_c00345{bottom:157.146667pt;}
.y25_c00345{bottom:180.186667pt;}
.y24_c00345{bottom:203.226667pt;}
.y23_c00345{bottom:226.306667pt;}
.y22_c00345{bottom:249.346667pt;}
.y21_c00345{bottom:272.386667pt;}
.y20_c00345{bottom:295.106667pt;}
.y1f_c00345{bottom:318.173333pt;}
.y1e_c00345{bottom:341.213333pt;}
.y1d_c00345{bottom:364.253333pt;}
.y1c_c00345{bottom:387.293333pt;}
.y1b_c00345{bottom:410.333333pt;}
.y1a_c00345{bottom:433.413333pt;}
.y19_c00345{bottom:456.453333pt;}
.y18_c00345{bottom:479.173333pt;}
.y17_c00345{bottom:502.213333pt;}
.y16_c00345{bottom:523.013333pt;}
.y15_c00345{bottom:543.840000pt;}
.y14_c00345{bottom:566.880000pt;}
.y13_c00345{bottom:589.600000pt;}
.y12_c00345{bottom:612.640000pt;}
.y11_c00345{bottom:635.680000pt;}
.y10_c00345{bottom:658.746667pt;}
.yf_c00345{bottom:681.786667pt;}
.ye_c00345{bottom:704.826667pt;}
.yd_c00345{bottom:735.866667pt;}
.yc_c00345{bottom:768.866667pt;}
.yb_c00345{bottom:796.386667pt;}
.ya_c00345{bottom:823.906667pt;}
.y9_c00345{bottom:851.746667pt;}
.y8_c00345{bottom:879.293333pt;}
.y7_c00345{bottom:922.813333pt;}
.y6_c00345{bottom:958.333333pt;}
.y5_c00345{bottom:986.213333pt;}
.y4_c00345{bottom:1013.733333pt;}
.y1_c00345{bottom:1061.093333pt;}
.h6_c00345{height:48.195000pt;}
.h5_c00345{height:52.762500pt;}
.h7_c00345{height:54.180000pt;}
.h2_c00345{height:57.375000pt;}
.h4_c00345{height:62.781250pt;}
.h3_c00345{height:62.812500pt;}
.h0_c00345{height:1122.560000pt;}
.h1_c00345{height:1122.666667pt;}
.w1_c00345{width:793.333333pt;}
.w0_c00345{width:793.600000pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:113.344000pt;}
.x5_c00345{left:151.106667pt;}
.x4_c00345{left:158.786667pt;}
.x3_c00345{left:160.706667pt;}
.x2_c00345{left:384.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_c00346 {
    display:none;
  }
  .loading-indicator_c00346.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00346 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00346 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00346" -> "#page-container .classname_c00346")
 */
.pf_c00346 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00346 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00346 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00346 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00346 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00346 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00346 {overflow:visible;}
  }
}
.c_c00346 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00346 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00346:after { /* webkit #35443 */
  content: '';
}
.t_c00346:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00346 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00346 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00346 { /* info for Javascript */
  display:none;
}
.l_c00346 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00346 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00346 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00346:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00346;src:url('chunks/assets/font_a2441ce14fa6a56a5162b94a.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_7d6ee37d91df754b91049133.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_588b3c50a1f4675a43577ef6.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_c89cf41e5c659e096cf2f9a5.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00346;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00346{font-family:ff5_c00346;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00346;src:url('chunks/assets/font_80e482e79ac2fade8fe42a66.woff2')format("woff");}.ff6_c00346{font-family:ff6_c00346;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls13_c00346{letter-spacing:-1.416000px;}
.ls15_c00346{letter-spacing:-1.380000px;}
.ls18_c00346{letter-spacing:-1.056000px;}
.ls16_c00346{letter-spacing:-0.912000px;}
.ls14_c00346{letter-spacing:-0.532800px;}
.lsd_c00346{letter-spacing:-0.337200px;}
.ls11_c00346{letter-spacing:-0.302400px;}
.ls12_c00346{letter-spacing:-0.241800px;}
.lsc_c00346{letter-spacing:0.000000px;}
.ls1b_c00346{letter-spacing:0.022800px;}
.lsf_c00346{letter-spacing:0.094800px;}
.ls17_c00346{letter-spacing:0.166800px;}
.ls5_c00346{letter-spacing:0.302400px;}
.ls1a_c00346{letter-spacing:0.313800px;}
.ls2_c00346{letter-spacing:0.507000px;}
.ls1c_c00346{letter-spacing:0.521400px;}
.ls9_c00346{letter-spacing:0.524160px;}
.ls10_c00346{letter-spacing:0.529800px;}
.ls19_c00346{letter-spacing:0.702000px;}
.ls6_c00346{letter-spacing:0.708491px;}
.ls0_c00346{letter-spacing:0.720000px;}
.lsa_c00346{letter-spacing:0.728525px;}
.lsb_c00346{letter-spacing:0.728634px;}
.ls1_c00346{letter-spacing:0.728640px;}
.ls4_c00346{letter-spacing:0.728774px;}
.ls8_c00346{letter-spacing:0.840000px;}
.ls7_c00346{letter-spacing:0.900000px;}
.ls3_c00346{letter-spacing:0.920228px;}
.lse_c00346{letter-spacing:1.140000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00346{word-spacing:-16.260000px;}
.ws8_c00346{word-spacing:-15.822000px;}
.wsd_c00346{word-spacing:-15.641400px;}
.ws6_c00346{word-spacing:-15.627000px;}
.wsa_c00346{word-spacing:-15.433800px;}
.ws7_c00346{word-spacing:-15.286800px;}
.ws3_c00346{word-spacing:-15.214800px;}
.wse_c00346{word-spacing:-15.142800px;}
.ws1_c00346{word-spacing:-15.120000px;}
.wsb_c00346{word-spacing:-14.878200px;}
.ws5_c00346{word-spacing:-14.817600px;}
.ws0_c00346{word-spacing:-14.782800px;}
.wsc_c00346{word-spacing:-14.208000px;}
.ws9_c00346{word-spacing:-13.704000px;}
.ws4_c00346{word-spacing:-12.600000px;}
.wsf_c00346{word-spacing:0.000000px;}
._7_c00346{margin-left:-5.639663px;}
._9_c00346{margin-left:-4.476371px;}
._2_c00346{margin-left:-2.117459px;}
._0_c00346{margin-left:-1.007791px;}
._1_c00346{width:1.089003px;}
._6_c00346{width:3.036321px;}
._a_c00346{width:40.647741px;}
._8_c00346{width:45.316915px;}
._c_c00346{width:57.755040px;}
._3_c00346{width:74.294329px;}
._b_c00346{width:149.966148px;}
._5_c00346{width:187.919948px;}
._4_c00346{width:189.479969px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs2_c00346{font-size:47.520000px;}
.fs1_c00346{font-size:60.480000px;}
.fs0_c00346{font-size:72.000000px;}
.y0_c00346{bottom:0.000000px;}
.y3_c00346{bottom:57.240000px;}
.y2_c00346{bottom:78.120000px;}
.y2b_c00346{bottom:133.956000px;}
.y2a_c00346{bottom:159.870000px;}
.y29_c00346{bottom:185.790000px;}
.y28_c00346{bottom:211.710000px;}
.y27_c00346{bottom:237.315000px;}
.y26_c00346{bottom:263.235000px;}
.y25_c00346{bottom:289.155000px;}
.y24_c00346{bottom:315.075000px;}
.y23_c00346{bottom:340.995000px;}
.y22_c00346{bottom:366.945000px;}
.y21_c00346{bottom:392.865000px;}
.y20_c00346{bottom:418.425000px;}
.y1f_c00346{bottom:444.345000px;}
.y1e_c00346{bottom:470.265000px;}
.y1d_c00346{bottom:496.230000px;}
.y1c_c00346{bottom:522.150000px;}
.y1b_c00346{bottom:548.070000px;}
.y1a_c00346{bottom:573.990000px;}
.y19_c00346{bottom:599.940000px;}
.y18_c00346{bottom:625.500000px;}
.y17_c00346{bottom:651.420000px;}
.y16_c00346{bottom:677.340000px;}
.y15_c00346{bottom:703.260000px;}
.y14_c00346{bottom:729.210000px;}
.y13_c00346{bottom:755.130000px;}
.y12_c00346{bottom:781.050000px;}
.y11_c00346{bottom:806.610000px;}
.y10_c00346{bottom:832.530000px;}
.yf_c00346{bottom:858.495000px;}
.ye_c00346{bottom:884.415000px;}
.yd_c00346{bottom:910.335000px;}
.yc_c00346{bottom:936.255000px;}
.yb_c00346{bottom:962.175000px;}
.ya_c00346{bottom:988.125000px;}
.y9_c00346{bottom:1013.685000px;}
.y8_c00346{bottom:1039.605000px;}
.y7_c00346{bottom:1065.525000px;}
.y6_c00346{bottom:1091.490000px;}
.y5_c00346{bottom:1117.410000px;}
.y4_c00346{bottom:1143.330000px;}
.y1_c00346{bottom:1193.730000px;}
.h3_c00346{height:59.357813px;}
.h4_c00346{height:60.952500px;}
.h2_c00346{height:64.546875px;}
.h0_c00346{height:1262.880000px;}
.h1_c00346{height:1263.000000px;}
.w1_c00346{width:892.500000px;}
.w0_c00346{width:892.800000px;}
.x0_c00346{left:0.000000px;}
.x1_c00346{left:127.512000px;}
.x3_c00346{left:169.995000px;}
.x2_c00346{left:432.900000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls13_c00346{letter-spacing:-1.258667pt;}
.ls15_c00346{letter-spacing:-1.226667pt;}
.ls18_c00346{letter-spacing:-0.938667pt;}
.ls16_c00346{letter-spacing:-0.810667pt;}
.ls14_c00346{letter-spacing:-0.473600pt;}
.lsd_c00346{letter-spacing:-0.299733pt;}
.ls11_c00346{letter-spacing:-0.268800pt;}
.ls12_c00346{letter-spacing:-0.214933pt;}
.lsc_c00346{letter-spacing:0.000000pt;}
.ls1b_c00346{letter-spacing:0.020267pt;}
.lsf_c00346{letter-spacing:0.084267pt;}
.ls17_c00346{letter-spacing:0.148267pt;}
.ls5_c00346{letter-spacing:0.268800pt;}
.ls1a_c00346{letter-spacing:0.278933pt;}
.ls2_c00346{letter-spacing:0.450667pt;}
.ls1c_c00346{letter-spacing:0.463467pt;}
.ls9_c00346{letter-spacing:0.465920pt;}
.ls10_c00346{letter-spacing:0.470933pt;}
.ls19_c00346{letter-spacing:0.624000pt;}
.ls6_c00346{letter-spacing:0.629769pt;}
.ls0_c00346{letter-spacing:0.640000pt;}
.lsa_c00346{letter-spacing:0.647578pt;}
.lsb_c00346{letter-spacing:0.647675pt;}
.ls1_c00346{letter-spacing:0.647680pt;}
.ls4_c00346{letter-spacing:0.647799pt;}
.ls8_c00346{letter-spacing:0.746667pt;}
.ls7_c00346{letter-spacing:0.800000pt;}
.ls3_c00346{letter-spacing:0.817981pt;}
.lse_c00346{letter-spacing:1.013333pt;}
.ws2_c00346{word-spacing:-14.453333pt;}
.ws8_c00346{word-spacing:-14.064000pt;}
.wsd_c00346{word-spacing:-13.903467pt;}
.ws6_c00346{word-spacing:-13.890667pt;}
.wsa_c00346{word-spacing:-13.718933pt;}
.ws7_c00346{word-spacing:-13.588267pt;}
.ws3_c00346{word-spacing:-13.524267pt;}
.wse_c00346{word-spacing:-13.460267pt;}
.ws1_c00346{word-spacing:-13.440000pt;}
.wsb_c00346{word-spacing:-13.225067pt;}
.ws5_c00346{word-spacing:-13.171200pt;}
.ws0_c00346{word-spacing:-13.140267pt;}
.wsc_c00346{word-spacing:-12.629333pt;}
.ws9_c00346{word-spacing:-12.181333pt;}
.ws4_c00346{word-spacing:-11.200000pt;}
.wsf_c00346{word-spacing:0.000000pt;}
._7_c00346{margin-left:-5.013034pt;}
._9_c00346{margin-left:-3.978996pt;}
._2_c00346{margin-left:-1.882185pt;}
._0_c00346{margin-left:-0.895814pt;}
._1_c00346{width:0.968003pt;}
._6_c00346{width:2.698952pt;}
._a_c00346{width:36.131325pt;}
._8_c00346{width:40.281702pt;}
._c_c00346{width:51.337813pt;}
._3_c00346{width:66.039404pt;}
._b_c00346{width:133.303242pt;}
._5_c00346{width:167.039954pt;}
._4_c00346{width:168.426639pt;}
.fs2_c00346{font-size:42.240000pt;}
.fs1_c00346{font-size:53.760000pt;}
.fs0_c00346{font-size:64.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y3_c00346{bottom:50.880000pt;}
.y2_c00346{bottom:69.440000pt;}
.y2b_c00346{bottom:119.072000pt;}
.y2a_c00346{bottom:142.106667pt;}
.y29_c00346{bottom:165.146667pt;}
.y28_c00346{bottom:188.186667pt;}
.y27_c00346{bottom:210.946667pt;}
.y26_c00346{bottom:233.986667pt;}
.y25_c00346{bottom:257.026667pt;}
.y24_c00346{bottom:280.066667pt;}
.y23_c00346{bottom:303.106667pt;}
.y22_c00346{bottom:326.173333pt;}
.y21_c00346{bottom:349.213333pt;}
.y20_c00346{bottom:371.933333pt;}
.y1f_c00346{bottom:394.973333pt;}
.y1e_c00346{bottom:418.013333pt;}
.y1d_c00346{bottom:441.093333pt;}
.y1c_c00346{bottom:464.133333pt;}
.y1b_c00346{bottom:487.173333pt;}
.y1a_c00346{bottom:510.213333pt;}
.y19_c00346{bottom:533.280000pt;}
.y18_c00346{bottom:556.000000pt;}
.y17_c00346{bottom:579.040000pt;}
.y16_c00346{bottom:602.080000pt;}
.y15_c00346{bottom:625.120000pt;}
.y14_c00346{bottom:648.186667pt;}
.y13_c00346{bottom:671.226667pt;}
.y12_c00346{bottom:694.266667pt;}
.y11_c00346{bottom:716.986667pt;}
.y10_c00346{bottom:740.026667pt;}
.yf_c00346{bottom:763.106667pt;}
.ye_c00346{bottom:786.146667pt;}
.yd_c00346{bottom:809.186667pt;}
.yc_c00346{bottom:832.226667pt;}
.yb_c00346{bottom:855.266667pt;}
.ya_c00346{bottom:878.333333pt;}
.y9_c00346{bottom:901.053333pt;}
.y8_c00346{bottom:924.093333pt;}
.y7_c00346{bottom:947.133333pt;}
.y6_c00346{bottom:970.213333pt;}
.y5_c00346{bottom:993.253333pt;}
.y4_c00346{bottom:1016.293333pt;}
.y1_c00346{bottom:1061.093333pt;}
.h3_c00346{height:52.762500pt;}
.h4_c00346{height:54.180000pt;}
.h2_c00346{height:57.375000pt;}
.h0_c00346{height:1122.560000pt;}
.h1_c00346{height:1122.666667pt;}
.w1_c00346{width:793.333333pt;}
.w0_c00346{width:793.600000pt;}
.x0_c00346{left:0.000000pt;}
.x1_c00346{left:113.344000pt;}
.x3_c00346{left:151.106667pt;}
.x2_c00346{left:384.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_c00347 {
    display:none;
  }
  .loading-indicator_c00347.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00347 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00347 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00347" -> "#page-container .classname_c00347")
 */
.pf_c00347 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00347 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00347 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00347 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00347 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00347 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00347 {overflow:visible;}
  }
}
.c_c00347 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00347 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00347:after { /* webkit #35443 */
  content: '';
}
.t_c00347:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00347 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00347 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00347 { /* info for Javascript */
  display:none;
}
.l_c00347 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00347 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00347 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00347:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00347;src:url('chunks/assets/font_4b3203debbb5a397f57edb71.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_d830ad11931320f0497f31d8.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_38e20a2d8cd60a51a01c027e.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.lsb_c00347{letter-spacing:-1.416000px;}
.ls10_c00347{letter-spacing:-0.918000px;}
.ls11_c00347{letter-spacing:-0.912000px;}
.lsc_c00347{letter-spacing:-0.532800px;}
.lsa_c00347{letter-spacing:-0.429000px;}
.ls12_c00347{letter-spacing:-0.302400px;}
.lsd_c00347{letter-spacing:-0.241800px;}
.ls8_c00347{letter-spacing:0.000000px;}
.lse_c00347{letter-spacing:0.022800px;}
.ls4_c00347{letter-spacing:0.156960px;}
.ls9_c00347{letter-spacing:0.166800px;}
.ls3_c00347{letter-spacing:0.228960px;}
.ls1_c00347{letter-spacing:0.302400px;}
.lsf_c00347{letter-spacing:0.529800px;}
.ls0_c00347{letter-spacing:0.720000px;}
.ls6_c00347{letter-spacing:0.740104px;}
.ls2_c00347{letter-spacing:0.740160px;}
.ls5_c00347{letter-spacing:0.740339px;}
.ls7_c00347{letter-spacing:0.740520px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:-15.286800px;}
.ws2_c00347{word-spacing:-15.120000px;}
.ws5_c00347{word-spacing:-14.878200px;}
.ws6_c00347{word-spacing:-14.817600px;}
.ws1_c00347{word-spacing:-14.691000px;}
.ws4_c00347{word-spacing:-14.202000px;}
.ws3_c00347{word-spacing:-12.600000px;}
.ws7_c00347{word-spacing:0.000000px;}
._b_c00347{margin-left:-2.751130px;}
._0_c00347{margin-left:-1.606560px;}
._1_c00347{width:1.371360px;}
._11_c00347{width:3.253382px;}
._10_c00347{width:4.413502px;}
._f_c00347{width:5.503801px;}
._e_c00347{width:6.989159px;}
._9_c00347{width:9.038521px;}
._a_c00347{width:10.067161px;}
._8_c00347{width:11.448000px;}
._c_c00347{width:12.485038px;}
._d_c00347{width:14.005478px;}
._12_c00347{width:17.754962px;}
._13_c00347{width:20.347768px;}
._6_c00347{width:69.139897px;}
._7_c00347{width:95.729561px;}
._2_c00347{width:100.860819px;}
._5_c00347{width:142.515803px;}
._4_c00347{width:187.919948px;}
._3_c00347{width:189.479969px;}
.fc0_c00347{color:rgb(0,0,0);}
.fs2_c00347{font-size:47.520000px;}
.fs1_c00347{font-size:60.480000px;}
.fs0_c00347{font-size:72.000000px;}
.y0_c00347{bottom:0.000000px;}
.y3_c00347{bottom:57.240000px;}
.y2_c00347{bottom:78.120000px;}
.y2b_c00347{bottom:133.956000px;}
.y2a_c00347{bottom:159.870000px;}
.y29_c00347{bottom:185.790000px;}
.y28_c00347{bottom:211.710000px;}
.y27_c00347{bottom:237.315000px;}
.y26_c00347{bottom:263.235000px;}
.y25_c00347{bottom:289.155000px;}
.y24_c00347{bottom:315.075000px;}
.y23_c00347{bottom:340.995000px;}
.y22_c00347{bottom:366.945000px;}
.y21_c00347{bottom:392.865000px;}
.y20_c00347{bottom:418.425000px;}
.y1f_c00347{bottom:444.345000px;}
.y1e_c00347{bottom:470.265000px;}
.y1d_c00347{bottom:496.230000px;}
.y1c_c00347{bottom:522.150000px;}
.y1b_c00347{bottom:548.070000px;}
.y1a_c00347{bottom:573.990000px;}
.y19_c00347{bottom:599.940000px;}
.y18_c00347{bottom:625.500000px;}
.y17_c00347{bottom:651.420000px;}
.y16_c00347{bottom:677.340000px;}
.y15_c00347{bottom:703.260000px;}
.y14_c00347{bottom:729.210000px;}
.y13_c00347{bottom:755.130000px;}
.y12_c00347{bottom:781.050000px;}
.y11_c00347{bottom:806.610000px;}
.y10_c00347{bottom:832.530000px;}
.yf_c00347{bottom:858.495000px;}
.ye_c00347{bottom:884.415000px;}
.yd_c00347{bottom:910.335000px;}
.yc_c00347{bottom:936.255000px;}
.yb_c00347{bottom:962.175000px;}
.ya_c00347{bottom:988.125000px;}
.y9_c00347{bottom:1013.685000px;}
.y8_c00347{bottom:1039.605000px;}
.y7_c00347{bottom:1065.525000px;}
.y6_c00347{bottom:1091.490000px;}
.y5_c00347{bottom:1117.410000px;}
.y4_c00347{bottom:1143.330000px;}
.y1_c00347{bottom:1193.730000px;}
.h3_c00347{height:59.357813px;}
.h2_c00347{height:64.546875px;}
.h0_c00347{height:1262.880000px;}
.h1_c00347{height:1263.000000px;}
.w1_c00347{width:892.500000px;}
.w0_c00347{width:892.800000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:127.512000px;}
.x3_c00347{left:169.995000px;}
.x2_c00347{left:432.900000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.lsb_c00347{letter-spacing:-1.258667pt;}
.ls10_c00347{letter-spacing:-0.816000pt;}
.ls11_c00347{letter-spacing:-0.810667pt;}
.lsc_c00347{letter-spacing:-0.473600pt;}
.lsa_c00347{letter-spacing:-0.381333pt;}
.ls12_c00347{letter-spacing:-0.268800pt;}
.lsd_c00347{letter-spacing:-0.214933pt;}
.ls8_c00347{letter-spacing:0.000000pt;}
.lse_c00347{letter-spacing:0.020267pt;}
.ls4_c00347{letter-spacing:0.139520pt;}
.ls9_c00347{letter-spacing:0.148267pt;}
.ls3_c00347{letter-spacing:0.203520pt;}
.ls1_c00347{letter-spacing:0.268800pt;}
.lsf_c00347{letter-spacing:0.470933pt;}
.ls0_c00347{letter-spacing:0.640000pt;}
.ls6_c00347{letter-spacing:0.657871pt;}
.ls2_c00347{letter-spacing:0.657920pt;}
.ls5_c00347{letter-spacing:0.658079pt;}
.ls7_c00347{letter-spacing:0.658240pt;}
.ws0_c00347{word-spacing:-13.588267pt;}
.ws2_c00347{word-spacing:-13.440000pt;}
.ws5_c00347{word-spacing:-13.225067pt;}
.ws6_c00347{word-spacing:-13.171200pt;}
.ws1_c00347{word-spacing:-13.058667pt;}
.ws4_c00347{word-spacing:-12.624000pt;}
.ws3_c00347{word-spacing:-11.200000pt;}
.ws7_c00347{word-spacing:0.000000pt;}
._b_c00347{margin-left:-2.445449pt;}
._0_c00347{margin-left:-1.428053pt;}
._1_c00347{width:1.218987pt;}
._11_c00347{width:2.891895pt;}
._10_c00347{width:3.923113pt;}
._f_c00347{width:4.892268pt;}
._e_c00347{width:6.212586pt;}
._9_c00347{width:8.034241pt;}
._a_c00347{width:8.948588pt;}
._8_c00347{width:10.176000pt;}
._c_c00347{width:11.097812pt;}
._d_c00347{width:12.449314pt;}
._12_c00347{width:15.782188pt;}
._13_c00347{width:18.086905pt;}
._6_c00347{width:61.457686pt;}
._7_c00347{width:85.092943pt;}
._2_c00347{width:89.654061pt;}
._5_c00347{width:126.680713pt;}
._4_c00347{width:167.039954pt;}
._3_c00347{width:168.426639pt;}
.fs2_c00347{font-size:42.240000pt;}
.fs1_c00347{font-size:53.760000pt;}
.fs0_c00347{font-size:64.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y3_c00347{bottom:50.880000pt;}
.y2_c00347{bottom:69.440000pt;}
.y2b_c00347{bottom:119.072000pt;}
.y2a_c00347{bottom:142.106667pt;}
.y29_c00347{bottom:165.146667pt;}
.y28_c00347{bottom:188.186667pt;}
.y27_c00347{bottom:210.946667pt;}
.y26_c00347{bottom:233.986667pt;}
.y25_c00347{bottom:257.026667pt;}
.y24_c00347{bottom:280.066667pt;}
.y23_c00347{bottom:303.106667pt;}
.y22_c00347{bottom:326.173333pt;}
.y21_c00347{bottom:349.213333pt;}
.y20_c00347{bottom:371.933333pt;}
.y1f_c00347{bottom:394.973333pt;}
.y1e_c00347{bottom:418.013333pt;}
.y1d_c00347{bottom:441.093333pt;}
.y1c_c00347{bottom:464.133333pt;}
.y1b_c00347{bottom:487.173333pt;}
.y1a_c00347{bottom:510.213333pt;}
.y19_c00347{bottom:533.280000pt;}
.y18_c00347{bottom:556.000000pt;}
.y17_c00347{bottom:579.040000pt;}
.y16_c00347{bottom:602.080000pt;}
.y15_c00347{bottom:625.120000pt;}
.y14_c00347{bottom:648.186667pt;}
.y13_c00347{bottom:671.226667pt;}
.y12_c00347{bottom:694.266667pt;}
.y11_c00347{bottom:716.986667pt;}
.y10_c00347{bottom:740.026667pt;}
.yf_c00347{bottom:763.106667pt;}
.ye_c00347{bottom:786.146667pt;}
.yd_c00347{bottom:809.186667pt;}
.yc_c00347{bottom:832.226667pt;}
.yb_c00347{bottom:855.266667pt;}
.ya_c00347{bottom:878.333333pt;}
.y9_c00347{bottom:901.053333pt;}
.y8_c00347{bottom:924.093333pt;}
.y7_c00347{bottom:947.133333pt;}
.y6_c00347{bottom:970.213333pt;}
.y5_c00347{bottom:993.253333pt;}
.y4_c00347{bottom:1016.293333pt;}
.y1_c00347{bottom:1061.093333pt;}
.h3_c00347{height:52.762500pt;}
.h2_c00347{height:57.375000pt;}
.h0_c00347{height:1122.560000pt;}
.h1_c00347{height:1122.666667pt;}
.w1_c00347{width:793.333333pt;}
.w0_c00347{width:793.600000pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:113.344000pt;}
.x3_c00347{left:151.106667pt;}
.x2_c00347{left:384.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_c00348 {
    display:none;
  }
  .loading-indicator_c00348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00348 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00348 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00348" -> "#page-container .classname_c00348")
 */
.pf_c00348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00348 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00348 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00348 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00348 {overflow:visible;}
  }
}
.c_c00348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00348 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00348:after { /* webkit #35443 */
  content: '';
}
.t_c00348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00348 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00348 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00348 { /* info for Javascript */
  display:none;
}
.l_c00348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00348:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00348;src:url('chunks/assets/font_442d427987c1b583777ba11f.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_704b7d973fb17d1c31e6979b.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_e06afd11112521c726d051f4.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;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_c00348;src:url('chunks/assets/font_2ed058fd8fb419d979972682.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls1_c00348{letter-spacing:0.000000px;}
.ls0_c00348{letter-spacing:0.012000px;}
.ls2_c00348{letter-spacing:1.152000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00348{word-spacing:-34.110720px;}
.ws2_c00348{word-spacing:-18.000000px;}
.ws0_c00348{word-spacing:-15.120000px;}
.ws3_c00348{word-spacing:0.000000px;}
._5_c00348{margin-left:-3.024605px;}
._0_c00348{margin-left:-1.935602px;}
._1_c00348{width:1.330802px;}
._2_c00348{width:2.383058px;}
._6_c00348{width:4.294201px;}
._7_c00348{width:5.331262px;}
._b_c00348{width:6.350400px;}
._4_c00348{width:7.378802px;}
._3_c00348{width:8.467200px;}
._8_c00348{width:10.160398px;}
._a_c00348{width:11.554825px;}
._9_c00348{width:12.579598px;}
._c_c00348{width:13.667996px;}
._f_c00348{width:19.405198px;}
._10_c00348{width:21.402029px;}
._d_c00348{width:26.380800px;}
._e_c00348{width:28.452593px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs1_c00348{font-size:60.480000px;}
.fs0_c00348{font-size:72.000000px;}
.y0_c00348{bottom:0.000000px;}
.y3_c00348{bottom:57.240000px;}
.y2_c00348{bottom:78.120000px;}
.y2a_c00348{bottom:115.596000px;}
.y29_c00348{bottom:146.556000px;}
.y28_c00348{bottom:177.510000px;}
.y27_c00348{bottom:208.830000px;}
.y26_c00348{bottom:239.835000px;}
.y25_c00348{bottom:270.795000px;}
.y24_c00348{bottom:301.755000px;}
.y23_c00348{bottom:332.715000px;}
.y22_c00348{bottom:364.065000px;}
.y21_c00348{bottom:392.865000px;}
.y20_c00348{bottom:418.425000px;}
.y1f_c00348{bottom:444.345000px;}
.y1e_c00348{bottom:470.265000px;}
.y1d_c00348{bottom:496.230000px;}
.y1c_c00348{bottom:522.150000px;}
.y1b_c00348{bottom:548.070000px;}
.y1a_c00348{bottom:573.990000px;}
.y19_c00348{bottom:599.940000px;}
.y18_c00348{bottom:625.500000px;}
.y17_c00348{bottom:651.420000px;}
.y16_c00348{bottom:677.340000px;}
.y15_c00348{bottom:703.260000px;}
.y14_c00348{bottom:729.210000px;}
.y13_c00348{bottom:755.130000px;}
.y12_c00348{bottom:781.050000px;}
.y11_c00348{bottom:806.610000px;}
.y10_c00348{bottom:832.530000px;}
.yf_c00348{bottom:858.495000px;}
.ye_c00348{bottom:884.415000px;}
.yd_c00348{bottom:910.335000px;}
.yc_c00348{bottom:936.255000px;}
.yb_c00348{bottom:962.175000px;}
.ya_c00348{bottom:988.125000px;}
.y9_c00348{bottom:1013.685000px;}
.y8_c00348{bottom:1039.605000px;}
.y7_c00348{bottom:1065.525000px;}
.y6_c00348{bottom:1091.490000px;}
.y5_c00348{bottom:1117.410000px;}
.y4_c00348{bottom:1143.330000px;}
.y1_c00348{bottom:1193.730000px;}
.h3_c00348{height:59.357813px;}
.h2_c00348{height:64.546875px;}
.h4_c00348{height:70.664062px;}
.h0_c00348{height:1262.880000px;}
.h1_c00348{height:1263.000000px;}
.w1_c00348{width:892.500000px;}
.w0_c00348{width:892.800000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:127.512000px;}
.x3_c00348{left:169.995000px;}
.x4_c00348{left:178.635000px;}
.x2_c00348{left:432.900000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls1_c00348{letter-spacing:0.000000pt;}
.ls0_c00348{letter-spacing:0.010667pt;}
.ls2_c00348{letter-spacing:1.024000pt;}
.ws1_c00348{word-spacing:-30.320640pt;}
.ws2_c00348{word-spacing:-16.000000pt;}
.ws0_c00348{word-spacing:-13.440000pt;}
.ws3_c00348{word-spacing:0.000000pt;}
._5_c00348{margin-left:-2.688538pt;}
._0_c00348{margin-left:-1.720535pt;}
._1_c00348{width:1.182935pt;}
._2_c00348{width:2.118274pt;}
._6_c00348{width:3.817068pt;}
._7_c00348{width:4.738900pt;}
._b_c00348{width:5.644800pt;}
._4_c00348{width:6.558935pt;}
._3_c00348{width:7.526400pt;}
._8_c00348{width:9.031465pt;}
._a_c00348{width:10.270956pt;}
._9_c00348{width:11.181865pt;}
._c_c00348{width:12.149330pt;}
._f_c00348{width:17.249065pt;}
._10_c00348{width:19.024026pt;}
._d_c00348{width:23.449600pt;}
._e_c00348{width:25.291194pt;}
.fs1_c00348{font-size:53.760000pt;}
.fs0_c00348{font-size:64.000000pt;}
.y0_c00348{bottom:0.000000pt;}
.y3_c00348{bottom:50.880000pt;}
.y2_c00348{bottom:69.440000pt;}
.y2a_c00348{bottom:102.752000pt;}
.y29_c00348{bottom:130.272000pt;}
.y28_c00348{bottom:157.786667pt;}
.y27_c00348{bottom:185.626667pt;}
.y26_c00348{bottom:213.186667pt;}
.y25_c00348{bottom:240.706667pt;}
.y24_c00348{bottom:268.226667pt;}
.y23_c00348{bottom:295.746667pt;}
.y22_c00348{bottom:323.613333pt;}
.y21_c00348{bottom:349.213333pt;}
.y20_c00348{bottom:371.933333pt;}
.y1f_c00348{bottom:394.973333pt;}
.y1e_c00348{bottom:418.013333pt;}
.y1d_c00348{bottom:441.093333pt;}
.y1c_c00348{bottom:464.133333pt;}
.y1b_c00348{bottom:487.173333pt;}
.y1a_c00348{bottom:510.213333pt;}
.y19_c00348{bottom:533.280000pt;}
.y18_c00348{bottom:556.000000pt;}
.y17_c00348{bottom:579.040000pt;}
.y16_c00348{bottom:602.080000pt;}
.y15_c00348{bottom:625.120000pt;}
.y14_c00348{bottom:648.186667pt;}
.y13_c00348{bottom:671.226667pt;}
.y12_c00348{bottom:694.266667pt;}
.y11_c00348{bottom:716.986667pt;}
.y10_c00348{bottom:740.026667pt;}
.yf_c00348{bottom:763.106667pt;}
.ye_c00348{bottom:786.146667pt;}
.yd_c00348{bottom:809.186667pt;}
.yc_c00348{bottom:832.226667pt;}
.yb_c00348{bottom:855.266667pt;}
.ya_c00348{bottom:878.333333pt;}
.y9_c00348{bottom:901.053333pt;}
.y8_c00348{bottom:924.093333pt;}
.y7_c00348{bottom:947.133333pt;}
.y6_c00348{bottom:970.213333pt;}
.y5_c00348{bottom:993.253333pt;}
.y4_c00348{bottom:1016.293333pt;}
.y1_c00348{bottom:1061.093333pt;}
.h3_c00348{height:52.762500pt;}
.h2_c00348{height:57.375000pt;}
.h4_c00348{height:62.812500pt;}
.h0_c00348{height:1122.560000pt;}
.h1_c00348{height:1122.666667pt;}
.w1_c00348{width:793.333333pt;}
.w0_c00348{width:793.600000pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:113.344000pt;}
.x3_c00348{left:151.106667pt;}
.x4_c00348{left:158.786667pt;}
.x2_c00348{left:384.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_c00349 {
    display:none;
  }
  .loading-indicator_c00349.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00349 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00349 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00349" -> "#page-container .classname_c00349")
 */
.pf_c00349 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00349 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00349 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00349 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00349 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00349 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00349 {overflow:visible;}
  }
}
.c_c00349 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00349 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00349:after { /* webkit #35443 */
  content: '';
}
.t_c00349:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00349 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00349 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00349 { /* info for Javascript */
  display:none;
}
.l_c00349 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00349 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00349 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00349:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00349;src:url('chunks/assets/font_cfba8ec694b0286c5310b581.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_4429b4b4f1ecb2408a83ec74.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_ce0d7dc554ec069747141570.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00349;src:url('chunks/assets/font_89273f3c5c3f0aa3f7d2c3ec.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00349;src:url('chunks/assets/font_92511dfa286068c71debb05a.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00349;src:url('chunks/assets/font_9e08be3a990e2b5d88a15894.woff2')format("woff");}.ff6_c00349{font-family:ff6_c00349;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls10_c00349{letter-spacing:-1.422000px;}
.lsb_c00349{letter-spacing:-1.416000px;}
.ls8_c00349{letter-spacing:-0.912000px;}
.lsf_c00349{letter-spacing:-0.792000px;}
.ls9_c00349{letter-spacing:-0.466800px;}
.lsa_c00349{letter-spacing:-0.337200px;}
.lsc_c00349{letter-spacing:-0.302400px;}
.lse_c00349{letter-spacing:-0.288000px;}
.ls7_c00349{letter-spacing:-0.241800px;}
.ls6_c00349{letter-spacing:0.000000px;}
.lsd_c00349{letter-spacing:0.022800px;}
.ls2_c00349{letter-spacing:0.048960px;}
.ls3_c00349{letter-spacing:0.302400px;}
.ls4_c00349{letter-spacing:0.524160px;}
.ls0_c00349{letter-spacing:0.644160px;}
.ls1_c00349{letter-spacing:0.720000px;}
.ls5_c00349{letter-spacing:6.480000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00349{word-spacing:-72.000000px;}
.ws7_c00349{word-spacing:-18.000000px;}
.ws9_c00349{word-spacing:-17.712000px;}
.wsa_c00349{word-spacing:-17.208000px;}
.ws0_c00349{word-spacing:-15.120000px;}
.ws1_c00349{word-spacing:-14.878200px;}
.ws6_c00349{word-spacing:-14.817600px;}
.ws4_c00349{word-spacing:-14.782800px;}
.ws3_c00349{word-spacing:-14.653200px;}
.ws2_c00349{word-spacing:-14.208000px;}
.ws5_c00349{word-spacing:-13.704000px;}
.wsb_c00349{word-spacing:-13.698000px;}
.wsc_c00349{word-spacing:0.000000px;}
._a_c00349{margin-left:-3.367897px;}
._2_c00349{margin-left:-2.311825px;}
._1_c00349{margin-left:-1.175976px;}
._0_c00349{width:1.008000px;}
._3_c00349{width:2.346054px;}
._b_c00349{width:3.806066px;}
._6_c00349{width:5.535539px;}
._5_c00349{width:7.076402px;}
._7_c00349{width:8.326273px;}
._4_c00349{width:9.979200px;}
._9_c00349{width:13.751463px;}
._8_c00349{width:15.143976px;}
._d_c00349{width:19.312103px;}
._c_c00349{width:20.359897px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs3_c00349{font-size:38.880000px;}
.fs2_c00349{font-size:47.520000px;}
.fs1_c00349{font-size:60.480000px;}
.fs0_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y18_c00349{bottom:12.240000px;}
.y14_c00349{bottom:12.585000px;}
.yb_c00349{bottom:12.600000px;}
.y17_c00349{bottom:38.190000px;}
.y13_c00349{bottom:38.505000px;}
.ya_c00349{bottom:38.520000px;}
.y3_c00349{bottom:57.240000px;}
.y16_c00349{bottom:64.110000px;}
.y12_c00349{bottom:64.425000px;}
.y9_c00349{bottom:64.440000px;}
.y1b_c00349{bottom:64.470000px;}
.y2_c00349{bottom:78.120000px;}
.y8_c00349{bottom:90.360000px;}
.y11_c00349{bottom:90.390000px;}
.y1a_c00349{bottom:115.950000px;}
.y10_c00349{bottom:116.310000px;}
.y7_c00349{bottom:116.325000px;}
.y2b_c00349{bottom:130.716000px;}
.y2a_c00349{bottom:137.556000px;}
.yf_c00349{bottom:141.870000px;}
.y6_c00349{bottom:141.885000px;}
.y29_c00349{bottom:148.356000px;}
.ye_c00349{bottom:167.790000px;}
.yd_c00349{bottom:193.710000px;}
.y27_c00349{bottom:199.830000px;}
.y28_c00349{bottom:208.110000px;}
.y26_c00349{bottom:230.790000px;}
.y25_c00349{bottom:261.795000px;}
.y24_c00349{bottom:292.755000px;}
.y23_c00349{bottom:324.075000px;}
.y22_c00349{bottom:355.065000px;}
.y21_c00349{bottom:386.025000px;}
.y20_c00349{bottom:416.985000px;}
.y1f_c00349{bottom:448.305000px;}
.y1e_c00349{bottom:479.310000px;}
.y1d_c00349{bottom:508.110000px;}
.y1c_c00349{bottom:536.190000px;}
.y19_c00349{bottom:553.110000px;}
.y15_c00349{bottom:683.460000px;}
.yc_c00349{bottom:761.625000px;}
.y5_c00349{bottom:969.405000px;}
.y4_c00349{bottom:1140.450000px;}
.y1_c00349{bottom:1193.730000px;}
.hc_c00349{height:38.158594px;}
.hb_c00349{height:46.638281px;}
.h5_c00349{height:59.357813px;}
.h2_c00349{height:64.546875px;}
.h3_c00349{height:70.628906px;}
.h9_c00349{height:70.664062px;}
.h7_c00349{height:77.436000px;}
.h8_c00349{height:129.270000px;}
.h4_c00349{height:155.190000px;}
.h6_c00349{height:207.045000px;}
.ha_c00349{height:1262.875500px;}
.h0_c00349{height:1262.880000px;}
.h1_c00349{height:1263.000000px;}
.w2_c00349{width:323.415000px;}
.w3_c00349{width:323.775000px;}
.w1_c00349{width:892.500000px;}
.w4_c00349{width:892.797000px;}
.w0_c00349{width:892.800000px;}
.x0_c00349{left:0.000000px;}
.x5_c00349{left:7.582500px;}
.x4_c00349{left:119.929500px;}
.x1_c00349{left:127.512000px;}
.xb_c00349{left:142.632000px;}
.x7_c00349{left:169.995000px;}
.x3_c00349{left:178.635000px;}
.xa_c00349{left:343.590000px;}
.x2_c00349{left:432.900000px;}
.x6_c00349{left:444.060000px;}
.x8_c00349{left:686.082000px;}
.x9_c00349{left:704.445000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls10_c00349{letter-spacing:-1.264000pt;}
.lsb_c00349{letter-spacing:-1.258667pt;}
.ls8_c00349{letter-spacing:-0.810667pt;}
.lsf_c00349{letter-spacing:-0.704000pt;}
.ls9_c00349{letter-spacing:-0.414933pt;}
.lsa_c00349{letter-spacing:-0.299733pt;}
.lsc_c00349{letter-spacing:-0.268800pt;}
.lse_c00349{letter-spacing:-0.256000pt;}
.ls7_c00349{letter-spacing:-0.214933pt;}
.ls6_c00349{letter-spacing:0.000000pt;}
.lsd_c00349{letter-spacing:0.020267pt;}
.ls2_c00349{letter-spacing:0.043520pt;}
.ls3_c00349{letter-spacing:0.268800pt;}
.ls4_c00349{letter-spacing:0.465920pt;}
.ls0_c00349{letter-spacing:0.572587pt;}
.ls1_c00349{letter-spacing:0.640000pt;}
.ls5_c00349{letter-spacing:5.760000pt;}
.ws8_c00349{word-spacing:-64.000000pt;}
.ws7_c00349{word-spacing:-16.000000pt;}
.ws9_c00349{word-spacing:-15.744000pt;}
.wsa_c00349{word-spacing:-15.296000pt;}
.ws0_c00349{word-spacing:-13.440000pt;}
.ws1_c00349{word-spacing:-13.225067pt;}
.ws6_c00349{word-spacing:-13.171200pt;}
.ws4_c00349{word-spacing:-13.140267pt;}
.ws3_c00349{word-spacing:-13.025067pt;}
.ws2_c00349{word-spacing:-12.629333pt;}
.ws5_c00349{word-spacing:-12.181333pt;}
.wsb_c00349{word-spacing:-12.176000pt;}
.wsc_c00349{word-spacing:0.000000pt;}
._a_c00349{margin-left:-2.993686pt;}
._2_c00349{margin-left:-2.054956pt;}
._1_c00349{margin-left:-1.045312pt;}
._0_c00349{width:0.896000pt;}
._3_c00349{width:2.085381pt;}
._b_c00349{width:3.383170pt;}
._6_c00349{width:4.920479pt;}
._5_c00349{width:6.290135pt;}
._7_c00349{width:7.401132pt;}
._4_c00349{width:8.870400pt;}
._9_c00349{width:12.223523pt;}
._8_c00349{width:13.461312pt;}
._d_c00349{width:17.166314pt;}
._c_c00349{width:18.097686pt;}
.fs3_c00349{font-size:34.560000pt;}
.fs2_c00349{font-size:42.240000pt;}
.fs1_c00349{font-size:53.760000pt;}
.fs0_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y18_c00349{bottom:10.880000pt;}
.y14_c00349{bottom:11.186667pt;}
.yb_c00349{bottom:11.200000pt;}
.y17_c00349{bottom:33.946667pt;}
.y13_c00349{bottom:34.226667pt;}
.ya_c00349{bottom:34.240000pt;}
.y3_c00349{bottom:50.880000pt;}
.y16_c00349{bottom:56.986667pt;}
.y12_c00349{bottom:57.266667pt;}
.y9_c00349{bottom:57.280000pt;}
.y1b_c00349{bottom:57.306667pt;}
.y2_c00349{bottom:69.440000pt;}
.y8_c00349{bottom:80.320000pt;}
.y11_c00349{bottom:80.346667pt;}
.y1a_c00349{bottom:103.066667pt;}
.y10_c00349{bottom:103.386667pt;}
.y7_c00349{bottom:103.400000pt;}
.y2b_c00349{bottom:116.192000pt;}
.y2a_c00349{bottom:122.272000pt;}
.yf_c00349{bottom:126.106667pt;}
.y6_c00349{bottom:126.120000pt;}
.y29_c00349{bottom:131.872000pt;}
.ye_c00349{bottom:149.146667pt;}
.yd_c00349{bottom:172.186667pt;}
.y27_c00349{bottom:177.626667pt;}
.y28_c00349{bottom:184.986667pt;}
.y26_c00349{bottom:205.146667pt;}
.y25_c00349{bottom:232.706667pt;}
.y24_c00349{bottom:260.226667pt;}
.y23_c00349{bottom:288.066667pt;}
.y22_c00349{bottom:315.613333pt;}
.y21_c00349{bottom:343.133333pt;}
.y20_c00349{bottom:370.653333pt;}
.y1f_c00349{bottom:398.493333pt;}
.y1e_c00349{bottom:426.053333pt;}
.y1d_c00349{bottom:451.653333pt;}
.y1c_c00349{bottom:476.613333pt;}
.y19_c00349{bottom:491.653333pt;}
.y15_c00349{bottom:607.520000pt;}
.yc_c00349{bottom:677.000000pt;}
.y5_c00349{bottom:861.693333pt;}
.y4_c00349{bottom:1013.733333pt;}
.y1_c00349{bottom:1061.093333pt;}
.hc_c00349{height:33.918750pt;}
.hb_c00349{height:41.456250pt;}
.h5_c00349{height:52.762500pt;}
.h2_c00349{height:57.375000pt;}
.h3_c00349{height:62.781250pt;}
.h9_c00349{height:62.812500pt;}
.h7_c00349{height:68.832000pt;}
.h8_c00349{height:114.906667pt;}
.h4_c00349{height:137.946667pt;}
.h6_c00349{height:184.040000pt;}
.ha_c00349{height:1122.556000pt;}
.h0_c00349{height:1122.560000pt;}
.h1_c00349{height:1122.666667pt;}
.w2_c00349{width:287.480000pt;}
.w3_c00349{width:287.800000pt;}
.w1_c00349{width:793.333333pt;}
.w4_c00349{width:793.597333pt;}
.w0_c00349{width:793.600000pt;}
.x0_c00349{left:0.000000pt;}
.x5_c00349{left:6.740000pt;}
.x4_c00349{left:106.604000pt;}
.x1_c00349{left:113.344000pt;}
.xb_c00349{left:126.784000pt;}
.x7_c00349{left:151.106667pt;}
.x3_c00349{left:158.786667pt;}
.xa_c00349{left:305.413333pt;}
.x2_c00349{left:384.800000pt;}
.x6_c00349{left:394.720000pt;}
.x8_c00349{left:609.850667pt;}
.x9_c00349{left:626.173333pt;}
}





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

.ir_c00350:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00350;src:url('chunks/assets/font_af07adb80b0b6afebd5a477e.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_35838ea5b1f61e98fce7a1b3.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_03622c58b0519682c0bb0500.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;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_c00350;src:url('chunks/assets/font_dd4b50c344bab4e68e604065.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls4_c00350{letter-spacing:-0.864000px;}
.ls3_c00350{letter-spacing:0.000000px;}
.ls0_c00350{letter-spacing:0.120000px;}
.ls5_c00350{letter-spacing:0.576000px;}
.ls2_c00350{letter-spacing:0.720000px;}
.ls1_c00350{letter-spacing:13.680000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00350{word-spacing:-18.000000px;}
.ws1_c00350{word-spacing:-15.120000px;}
.ws2_c00350{word-spacing:0.000000px;}
._2_c00350{margin-left:-2.592000px;}
._1_c00350{margin-left:-1.440000px;}
._0_c00350{width:1.080000px;}
._4_c00350{width:2.232000px;}
._7_c00350{width:3.384000px;}
._10_c00350{width:4.536000px;}
._a_c00350{width:5.544000px;}
._b_c00350{width:6.840000px;}
._c_c00350{width:7.848000px;}
._e_c00350{width:9.059976px;}
._d_c00350{width:10.440000px;}
._f_c00350{width:11.472048px;}
._3_c00350{width:13.320000px;}
._5_c00350{width:14.400000px;}
._6_c00350{width:15.912000px;}
._8_c00350{width:19.837198px;}
._9_c00350{width:21.156601px;}
.fc0_c00350{color:rgb(0,0,0);}
.fs3_c00350{font-size:38.880000px;}
.fs1_c00350{font-size:47.520000px;}
.fs2_c00350{font-size:60.480000px;}
.fs0_c00350{font-size:72.000000px;}
.y0_c00350{bottom:0.000000px;}
.y3_c00350{bottom:57.240000px;}
.y2_c00350{bottom:78.120000px;}
.y2a_c00350{bottom:130.716000px;}
.y29_c00350{bottom:147.996000px;}
.y28_c00350{bottom:154.830000px;}
.y27_c00350{bottom:165.270000px;}
.y26_c00350{bottom:182.190000px;}
.y25_c00350{bottom:199.470000px;}
.y24_c00350{bottom:206.310000px;}
.y23_c00350{bottom:217.470000px;}
.y22_c00350{bottom:292.755000px;}
.y21_c00350{bottom:323.715000px;}
.y20_c00350{bottom:355.065000px;}
.y1f_c00350{bottom:386.025000px;}
.y1e_c00350{bottom:416.985000px;}
.y1d_c00350{bottom:447.945000px;}
.y1c_c00350{bottom:479.310000px;}
.y1b_c00350{bottom:510.270000px;}
.y1a_c00350{bottom:541.230000px;}
.y19_c00350{bottom:572.190000px;}
.y18_c00350{bottom:603.540000px;}
.y17_c00350{bottom:643.500000px;}
.y16_c00350{bottom:674.460000px;}
.y15_c00350{bottom:705.420000px;}
.y14_c00350{bottom:736.770000px;}
.y13_c00350{bottom:767.730000px;}
.y11_c00350{bottom:798.690000px;}
.y12_c00350{bottom:806.970000px;}
.y10_c00350{bottom:829.650000px;}
.yf_c00350{bottom:861.015000px;}
.ye_c00350{bottom:889.455000px;}
.yd_c00350{bottom:915.375000px;}
.yc_c00350{bottom:941.295000px;}
.yb_c00350{bottom:967.245000px;}
.ya_c00350{bottom:993.165000px;}
.y9_c00350{bottom:1019.085000px;}
.y8_c00350{bottom:1047.165000px;}
.y7_c00350{bottom:1078.125000px;}
.y6_c00350{bottom:1109.490000px;}
.y4_c00350{bottom:1140.450000px;}
.y5_c00350{bottom:1148.730000px;}
.y1_c00350{bottom:1193.730000px;}
.h7_c00350{height:38.158594px;}
.h5_c00350{height:46.638281px;}
.h6_c00350{height:59.357813px;}
.h2_c00350{height:64.546875px;}
.h3_c00350{height:70.664062px;}
.h4_c00350{height:1262.875500px;}
.h0_c00350{height:1262.880000px;}
.h1_c00350{height:1263.000000px;}
.w1_c00350{width:892.500000px;}
.w2_c00350{width:892.797000px;}
.w0_c00350{width:892.800000px;}
.x0_c00350{left:0.000000px;}
.x1_c00350{left:127.512000px;}
.x9_c00350{left:142.632000px;}
.x5_c00350{left:169.995000px;}
.x8_c00350{left:343.590000px;}
.x2_c00350{left:432.900000px;}
.x3_c00350{left:535.887000px;}
.x4_c00350{left:554.295000px;}
.x6_c00350{left:646.842000px;}
.x7_c00350{left:665.205000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls4_c00350{letter-spacing:-0.768000pt;}
.ls3_c00350{letter-spacing:0.000000pt;}
.ls0_c00350{letter-spacing:0.106667pt;}
.ls5_c00350{letter-spacing:0.512000pt;}
.ls2_c00350{letter-spacing:0.640000pt;}
.ls1_c00350{letter-spacing:12.160000pt;}
.ws0_c00350{word-spacing:-16.000000pt;}
.ws1_c00350{word-spacing:-13.440000pt;}
.ws2_c00350{word-spacing:0.000000pt;}
._2_c00350{margin-left:-2.304000pt;}
._1_c00350{margin-left:-1.280000pt;}
._0_c00350{width:0.960000pt;}
._4_c00350{width:1.984000pt;}
._7_c00350{width:3.008000pt;}
._10_c00350{width:4.032000pt;}
._a_c00350{width:4.928000pt;}
._b_c00350{width:6.080000pt;}
._c_c00350{width:6.976000pt;}
._e_c00350{width:8.053312pt;}
._d_c00350{width:9.280000pt;}
._f_c00350{width:10.197376pt;}
._3_c00350{width:11.840000pt;}
._5_c00350{width:12.800000pt;}
._6_c00350{width:14.144000pt;}
._8_c00350{width:17.633065pt;}
._9_c00350{width:18.805868pt;}
.fs3_c00350{font-size:34.560000pt;}
.fs1_c00350{font-size:42.240000pt;}
.fs2_c00350{font-size:53.760000pt;}
.fs0_c00350{font-size:64.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y3_c00350{bottom:50.880000pt;}
.y2_c00350{bottom:69.440000pt;}
.y2a_c00350{bottom:116.192000pt;}
.y29_c00350{bottom:131.552000pt;}
.y28_c00350{bottom:137.626667pt;}
.y27_c00350{bottom:146.906667pt;}
.y26_c00350{bottom:161.946667pt;}
.y25_c00350{bottom:177.306667pt;}
.y24_c00350{bottom:183.386667pt;}
.y23_c00350{bottom:193.306667pt;}
.y22_c00350{bottom:260.226667pt;}
.y21_c00350{bottom:287.746667pt;}
.y20_c00350{bottom:315.613333pt;}
.y1f_c00350{bottom:343.133333pt;}
.y1e_c00350{bottom:370.653333pt;}
.y1d_c00350{bottom:398.173333pt;}
.y1c_c00350{bottom:426.053333pt;}
.y1b_c00350{bottom:453.573333pt;}
.y1a_c00350{bottom:481.093333pt;}
.y19_c00350{bottom:508.613333pt;}
.y18_c00350{bottom:536.480000pt;}
.y17_c00350{bottom:572.000000pt;}
.y16_c00350{bottom:599.520000pt;}
.y15_c00350{bottom:627.040000pt;}
.y14_c00350{bottom:654.906667pt;}
.y13_c00350{bottom:682.426667pt;}
.y11_c00350{bottom:709.946667pt;}
.y12_c00350{bottom:717.306667pt;}
.y10_c00350{bottom:737.466667pt;}
.yf_c00350{bottom:765.346667pt;}
.ye_c00350{bottom:790.626667pt;}
.yd_c00350{bottom:813.666667pt;}
.yc_c00350{bottom:836.706667pt;}
.yb_c00350{bottom:859.773333pt;}
.ya_c00350{bottom:882.813333pt;}
.y9_c00350{bottom:905.853333pt;}
.y8_c00350{bottom:930.813333pt;}
.y7_c00350{bottom:958.333333pt;}
.y6_c00350{bottom:986.213333pt;}
.y4_c00350{bottom:1013.733333pt;}
.y5_c00350{bottom:1021.093333pt;}
.y1_c00350{bottom:1061.093333pt;}
.h7_c00350{height:33.918750pt;}
.h5_c00350{height:41.456250pt;}
.h6_c00350{height:52.762500pt;}
.h2_c00350{height:57.375000pt;}
.h3_c00350{height:62.812500pt;}
.h4_c00350{height:1122.556000pt;}
.h0_c00350{height:1122.560000pt;}
.h1_c00350{height:1122.666667pt;}
.w1_c00350{width:793.333333pt;}
.w2_c00350{width:793.597333pt;}
.w0_c00350{width:793.600000pt;}
.x0_c00350{left:0.000000pt;}
.x1_c00350{left:113.344000pt;}
.x9_c00350{left:126.784000pt;}
.x5_c00350{left:151.106667pt;}
.x8_c00350{left:305.413333pt;}
.x2_c00350{left:384.800000pt;}
.x3_c00350{left:476.344000pt;}
.x4_c00350{left:492.706667pt;}
.x6_c00350{left:574.970667pt;}
.x7_c00350{left:591.293333pt;}
}





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

.ir_c00351:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00351;src:url('chunks/assets/font_46bba75469c8b5c39f90027c.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_e29d3874a4dc9bfb501c4f88.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_53accfee3aff15f294070833.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;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_c00351;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00351;src:url('chunks/assets/font_f75e9b776673429609637c19.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00351;src:url('chunks/assets/font_4f5f77a696d9cb69b717d012.woff2')format("woff");}.ff6_c00351{font-family:ff6_c00351;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls3_c00351{letter-spacing:-1.908000px;}
.ls4_c00351{letter-spacing:-0.954000px;}
.ls1_c00351{letter-spacing:0.000000px;}
.ls2_c00351{letter-spacing:0.486600px;}
.ls0_c00351{letter-spacing:0.720000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:-18.000000px;}
.ws1_c00351{word-spacing:-15.606600px;}
.ws2_c00351{word-spacing:-15.120000px;}
.ws3_c00351{word-spacing:-13.212000px;}
.ws4_c00351{word-spacing:0.000000px;}
._f_c00351{margin-left:-3.024000px;}
._0_c00351{margin-left:-1.872000px;}
._2_c00351{width:1.152000px;}
._1_c00351{width:2.160000px;}
._4_c00351{width:3.396000px;}
._10_c00351{width:4.428000px;}
._6_c00351{width:5.976000px;}
._5_c00351{width:7.056000px;}
._7_c00351{width:8.352000px;}
._15_c00351{width:9.636000px;}
._14_c00351{width:11.520000px;}
._12_c00351{width:12.528000px;}
._13_c00351{width:13.824000px;}
._3_c00351{width:19.512000px;}
._11_c00351{width:21.516000px;}
._d_c00351{width:25.704000px;}
._e_c00351{width:27.000000px;}
._c_c00351{width:30.427200px;}
._a_c00351{width:31.449600px;}
._9_c00351{width:32.892601px;}
._17_c00351{width:34.704000px;}
._16_c00351{width:36.144000px;}
._18_c00351{width:37.368000px;}
._8_c00351{width:54.846599px;}
._b_c00351{width:185.624942px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs3_c00351{font-size:38.880000px;}
.fs2_c00351{font-size:47.520000px;}
.fs1_c00351{font-size:60.480000px;}
.fs0_c00351{font-size:72.000000px;}
.y0_c00351{bottom:0.000000px;}
.ya_c00351{bottom:11.895000px;}
.y15_c00351{bottom:12.225000px;}
.yb_c00351{bottom:12.255000px;}
.yd_c00351{bottom:12.585000px;}
.y18_c00351{bottom:12.600000px;}
.y14_c00351{bottom:38.145000px;}
.y10_c00351{bottom:38.505000px;}
.y3_c00351{bottom:57.240000px;}
.y13_c00351{bottom:64.065000px;}
.y2_c00351{bottom:78.120000px;}
.y2e_c00351{bottom:130.716000px;}
.y2d_c00351{bottom:137.556000px;}
.y2c_c00351{bottom:147.996000px;}
.y2b_c00351{bottom:154.830000px;}
.y2a_c00351{bottom:165.630000px;}
.y29_c00351{bottom:249.915000px;}
.y28_c00351{bottom:280.875000px;}
.y27_c00351{bottom:311.835000px;}
.y25_c00351{bottom:342.795000px;}
.y26_c00351{bottom:351.075000px;}
.y23_c00351{bottom:374.145000px;}
.y24_c00351{bottom:382.425000px;}
.y22_c00351{bottom:405.105000px;}
.y21_c00351{bottom:436.065000px;}
.y20_c00351{bottom:467.025000px;}
.y1f_c00351{bottom:498.390000px;}
.y1e_c00351{bottom:529.350000px;}
.y1d_c00351{bottom:560.310000px;}
.y1c_c00351{bottom:591.270000px;}
.y1b_c00351{bottom:622.620000px;}
.y1a_c00351{bottom:653.580000px;}
.y19_c00351{bottom:671.220000px;}
.y17_c00351{bottom:697.140000px;}
.y16_c00351{bottom:723.105000px;}
.y12_c00351{bottom:749.025000px;}
.y11_c00351{bottom:826.425000px;}
.yf_c00351{bottom:852.390000px;}
.ye_c00351{bottom:904.230000px;}
.yc_c00351{bottom:930.150000px;}
.y9_c00351{bottom:956.070000px;}
.y8_c00351{bottom:998.205000px;}
.y7_c00351{bottom:1047.165000px;}
.y6_c00351{bottom:1078.125000px;}
.y5_c00351{bottom:1109.490000px;}
.y4_c00351{bottom:1140.450000px;}
.y1_c00351{bottom:1193.730000px;}
.h5_c00351{height:25.560000px;}
.h7_c00351{height:25.905000px;}
.hd_c00351{height:25.920000px;}
.ha_c00351{height:25.941000px;}
.hc_c00351{height:25.956000px;}
.h11_c00351{height:38.158594px;}
.h10_c00351{height:46.615078px;}
.hf_c00351{height:46.638281px;}
.h9_c00351{height:51.825000px;}
.h8_c00351{height:59.357813px;}
.h6_c00351{height:60.952500px;}
.h2_c00351{height:64.546875px;}
.h4_c00351{height:70.628906px;}
.h3_c00351{height:70.664062px;}
.hb_c00351{height:77.385000px;}
.he_c00351{height:1262.875500px;}
.h0_c00351{height:1262.880000px;}
.h1_c00351{height:1263.000000px;}
.w2_c00351{width:162.045000px;}
.w3_c00351{width:162.075000px;}
.w4_c00351{width:162.435000px;}
.w1_c00351{width:892.500000px;}
.w5_c00351{width:892.797000px;}
.w0_c00351{width:892.800000px;}
.x0_c00351{left:0.000000px;}
.x5_c00351{left:7.942500px;}
.x4_c00351{left:119.569500px;}
.x1_c00351{left:127.512000px;}
.xf_c00351{left:142.632000px;}
.x3_c00351{left:169.995000px;}
.x9_c00351{left:178.635000px;}
.x6_c00351{left:281.625000px;}
.xe_c00351{left:343.590000px;}
.x2_c00351{left:432.900000px;}
.x7_c00351{left:443.700000px;}
.xa_c00351{left:537.687000px;}
.xb_c00351{left:556.095000px;}
.xc_c00351{left:574.092000px;}
.xd_c00351{left:592.455000px;}
.x8_c00351{left:606.150000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls3_c00351{letter-spacing:-1.696000pt;}
.ls4_c00351{letter-spacing:-0.848000pt;}
.ls1_c00351{letter-spacing:0.000000pt;}
.ls2_c00351{letter-spacing:0.432533pt;}
.ls0_c00351{letter-spacing:0.640000pt;}
.ws0_c00351{word-spacing:-16.000000pt;}
.ws1_c00351{word-spacing:-13.872533pt;}
.ws2_c00351{word-spacing:-13.440000pt;}
.ws3_c00351{word-spacing:-11.744000pt;}
.ws4_c00351{word-spacing:0.000000pt;}
._f_c00351{margin-left:-2.688000pt;}
._0_c00351{margin-left:-1.664000pt;}
._2_c00351{width:1.024000pt;}
._1_c00351{width:1.920000pt;}
._4_c00351{width:3.018667pt;}
._10_c00351{width:3.936000pt;}
._6_c00351{width:5.312000pt;}
._5_c00351{width:6.272000pt;}
._7_c00351{width:7.424000pt;}
._15_c00351{width:8.565333pt;}
._14_c00351{width:10.240000pt;}
._12_c00351{width:11.136000pt;}
._13_c00351{width:12.288000pt;}
._3_c00351{width:17.344000pt;}
._11_c00351{width:19.125333pt;}
._d_c00351{width:22.848000pt;}
._e_c00351{width:24.000000pt;}
._c_c00351{width:27.046400pt;}
._a_c00351{width:27.955200pt;}
._9_c00351{width:29.237868pt;}
._17_c00351{width:30.848000pt;}
._16_c00351{width:32.128000pt;}
._18_c00351{width:33.216000pt;}
._8_c00351{width:48.752532pt;}
._b_c00351{width:164.999949pt;}
.fs3_c00351{font-size:34.560000pt;}
.fs2_c00351{font-size:42.240000pt;}
.fs1_c00351{font-size:53.760000pt;}
.fs0_c00351{font-size:64.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.ya_c00351{bottom:10.573333pt;}
.y15_c00351{bottom:10.866667pt;}
.yb_c00351{bottom:10.893333pt;}
.yd_c00351{bottom:11.186667pt;}
.y18_c00351{bottom:11.200000pt;}
.y14_c00351{bottom:33.906667pt;}
.y10_c00351{bottom:34.226667pt;}
.y3_c00351{bottom:50.880000pt;}
.y13_c00351{bottom:56.946667pt;}
.y2_c00351{bottom:69.440000pt;}
.y2e_c00351{bottom:116.192000pt;}
.y2d_c00351{bottom:122.272000pt;}
.y2c_c00351{bottom:131.552000pt;}
.y2b_c00351{bottom:137.626667pt;}
.y2a_c00351{bottom:147.226667pt;}
.y29_c00351{bottom:222.146667pt;}
.y28_c00351{bottom:249.666667pt;}
.y27_c00351{bottom:277.186667pt;}
.y25_c00351{bottom:304.706667pt;}
.y26_c00351{bottom:312.066667pt;}
.y23_c00351{bottom:332.573333pt;}
.y24_c00351{bottom:339.933333pt;}
.y22_c00351{bottom:360.093333pt;}
.y21_c00351{bottom:387.613333pt;}
.y20_c00351{bottom:415.133333pt;}
.y1f_c00351{bottom:443.013333pt;}
.y1e_c00351{bottom:470.533333pt;}
.y1d_c00351{bottom:498.053333pt;}
.y1c_c00351{bottom:525.573333pt;}
.y1b_c00351{bottom:553.440000pt;}
.y1a_c00351{bottom:580.960000pt;}
.y19_c00351{bottom:596.640000pt;}
.y17_c00351{bottom:619.680000pt;}
.y16_c00351{bottom:642.760000pt;}
.y12_c00351{bottom:665.800000pt;}
.y11_c00351{bottom:734.600000pt;}
.yf_c00351{bottom:757.680000pt;}
.ye_c00351{bottom:803.760000pt;}
.yc_c00351{bottom:826.800000pt;}
.y9_c00351{bottom:849.840000pt;}
.y8_c00351{bottom:887.293333pt;}
.y7_c00351{bottom:930.813333pt;}
.y6_c00351{bottom:958.333333pt;}
.y5_c00351{bottom:986.213333pt;}
.y4_c00351{bottom:1013.733333pt;}
.y1_c00351{bottom:1061.093333pt;}
.h5_c00351{height:22.720000pt;}
.h7_c00351{height:23.026667pt;}
.hd_c00351{height:23.040000pt;}
.ha_c00351{height:23.058667pt;}
.hc_c00351{height:23.072000pt;}
.h11_c00351{height:33.918750pt;}
.h10_c00351{height:41.435625pt;}
.hf_c00351{height:41.456250pt;}
.h9_c00351{height:46.066667pt;}
.h8_c00351{height:52.762500pt;}
.h6_c00351{height:54.180000pt;}
.h2_c00351{height:57.375000pt;}
.h4_c00351{height:62.781250pt;}
.h3_c00351{height:62.812500pt;}
.hb_c00351{height:68.786667pt;}
.he_c00351{height:1122.556000pt;}
.h0_c00351{height:1122.560000pt;}
.h1_c00351{height:1122.666667pt;}
.w2_c00351{width:144.040000pt;}
.w3_c00351{width:144.066667pt;}
.w4_c00351{width:144.386667pt;}
.w1_c00351{width:793.333333pt;}
.w5_c00351{width:793.597333pt;}
.w0_c00351{width:793.600000pt;}
.x0_c00351{left:0.000000pt;}
.x5_c00351{left:7.060000pt;}
.x4_c00351{left:106.284000pt;}
.x1_c00351{left:113.344000pt;}
.xf_c00351{left:126.784000pt;}
.x3_c00351{left:151.106667pt;}
.x9_c00351{left:158.786667pt;}
.x6_c00351{left:250.333333pt;}
.xe_c00351{left:305.413333pt;}
.x2_c00351{left:384.800000pt;}
.x7_c00351{left:394.400000pt;}
.xa_c00351{left:477.944000pt;}
.xb_c00351{left:494.306667pt;}
.xc_c00351{left:510.304000pt;}
.xd_c00351{left:526.626667pt;}
.x8_c00351{left:538.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_c00352 {
    display:none;
  }
  .loading-indicator_c00352.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00352 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00352 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00352" -> "#page-container .classname_c00352")
 */
.pf_c00352 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00352 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00352 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00352 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00352 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00352 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00352 {overflow:visible;}
  }
}
.c_c00352 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00352 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00352:after { /* webkit #35443 */
  content: '';
}
.t_c00352:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00352 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00352 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00352 { /* info for Javascript */
  display:none;
}
.l_c00352 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00352 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00352 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00352:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00352;src:url('chunks/assets/font_9c068b2f3a444a6641491bd9.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_41e32511bebebbd532912a26.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_20aa4a4e9dc348912880b983.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;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_c00352;src:url('chunks/assets/font_415dbab326cda65a584267da.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00352;src:url('chunks/assets/font_1feed3387000cf3e66c0a01a.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00352;src:url('chunks/assets/font_37b96580e7985ddf9dcb37b0.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:1.117188;font-style:normal;font-weight: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_c00352;src:url('chunks/assets/font_d6b617bd3a267857ed274683.woff2')format("woff");}.ff7_c00352{font-family:ff7_c00352;line-height:1.117188;font-style:normal;font-weight: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_c00352;src:url('chunks/assets/font_89576dff64647860d0beffb7.woff2')format("woff");}.ff8_c00352{font-family:ff8_c00352;line-height:1.112305;font-style:normal;font-weight: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_c00352;src:url('chunks/assets/font_83e170b0960d0c462145e60f.woff2')format("woff");}.ff9_c00352{font-family:ff9_c00352;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.lsc_c00352{letter-spacing:-1.440000px;}
.lse_c00352{letter-spacing:-1.380000px;}
.lsd_c00352{letter-spacing:-0.486600px;}
.lsb_c00352{letter-spacing:0.000000px;}
.ls6_c00352{letter-spacing:0.048960px;}
.lsa_c00352{letter-spacing:0.108480px;}
.ls3_c00352{letter-spacing:0.120000px;}
.ls5_c00352{letter-spacing:0.167040px;}
.ls8_c00352{letter-spacing:0.518400px;}
.ls7_c00352{letter-spacing:0.529920px;}
.ls2_c00352{letter-spacing:0.720000px;}
.ls0_c00352{letter-spacing:1.440000px;}
.ls4_c00352{letter-spacing:3.600000px;}
.ls9_c00352{letter-spacing:3.623040px;}
.ls1_c00352{letter-spacing:12.240000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00352{word-spacing:-72.000000px;}
.ws3_c00352{word-spacing:-60.480000px;}
.ws5_c00352{word-spacing:-59.100000px;}
.ws1_c00352{word-spacing:-34.110720px;}
.ws0_c00352{word-spacing:-18.000000px;}
.ws4_c00352{word-spacing:-15.840000px;}
.ws6_c00352{word-spacing:-15.120000px;}
.ws7_c00352{word-spacing:-14.633400px;}
.ws8_c00352{word-spacing:0.000000px;}
._a_c00352{margin-left:-3.611880px;}
._3_c00352{margin-left:-2.579976px;}
._1_c00352{margin-left:-1.440000px;}
._0_c00352{width:1.584000px;}
._4_c00352{width:3.359952px;}
._9_c00352{width:4.524192px;}
._7_c00352{width:6.408000px;}
._8_c00352{width:8.267976px;}
._d_c00352{width:9.659880px;}
._6_c00352{width:11.736000px;}
._5_c00352{width:13.091976px;}
._10_c00352{width:15.587784px;}
._2_c00352{width:16.776000px;}
._e_c00352{width:19.684175px;}
._f_c00352{width:21.228601px;}
._c_c00352{width:23.387976px;}
._b_c00352{width:24.984000px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs3_c00352{font-size:38.880000px;}
.fs1_c00352{font-size:47.520000px;}
.fs2_c00352{font-size:60.480000px;}
.fs0_c00352{font-size:72.000000px;}
.y0_c00352{bottom:0.000000px;}
.yf_c00352{bottom:12.225000px;}
.y20_c00352{bottom:12.240000px;}
.y12_c00352{bottom:12.585000px;}
.y19_c00352{bottom:12.600000px;}
.y15_c00352{bottom:12.630000px;}
.y1d_c00352{bottom:14.040000px;}
.y11_c00352{bottom:38.505000px;}
.y18_c00352{bottom:38.520000px;}
.y1c_c00352{bottom:39.600000px;}
.y3_c00352{bottom:57.240000px;}
.y17_c00352{bottom:64.440000px;}
.y1b_c00352{bottom:65.550000px;}
.y2_c00352{bottom:78.120000px;}
.y35_c00352{bottom:130.716000px;}
.y34_c00352{bottom:147.996000px;}
.y33_c00352{bottom:165.270000px;}
.y32_c00352{bottom:172.110000px;}
.y31_c00352{bottom:182.190000px;}
.y30_c00352{bottom:199.470000px;}
.y2f_c00352{bottom:216.750000px;}
.y2e_c00352{bottom:234.075000px;}
.y2d_c00352{bottom:251.355000px;}
.y2c_c00352{bottom:268.635000px;}
.y2b_c00352{bottom:285.915000px;}
.y2a_c00352{bottom:292.755000px;}
.y29_c00352{bottom:303.555000px;}
.y28_c00352{bottom:348.195000px;}
.y26_c00352{bottom:379.185000px;}
.y27_c00352{bottom:387.465000px;}
.y25_c00352{bottom:410.145000px;}
.y24_c00352{bottom:441.465000px;}
.y23_c00352{bottom:472.425000px;}
.y22_c00352{bottom:503.430000px;}
.y21_c00352{bottom:534.390000px;}
.y1a_c00352{bottom:551.670000px;}
.y1f_c00352{bottom:577.950000px;}
.y1e_c00352{bottom:604.620000px;}
.y16_c00352{bottom:631.260000px;}
.y14_c00352{bottom:709.740000px;}
.y13_c00352{bottom:736.425000px;}
.y10_c00352{bottom:788.985000px;}
.ye_c00352{bottom:841.590000px;}
.yd_c00352{bottom:882.975000px;}
.yc_c00352{bottom:922.935000px;}
.yb_c00352{bottom:953.895000px;}
.ya_c00352{bottom:985.245000px;}
.y9_c00352{bottom:1016.205000px;}
.y8_c00352{bottom:1047.165000px;}
.y7_c00352{bottom:1078.125000px;}
.y5_c00352{bottom:1109.490000px;}
.y6_c00352{bottom:1117.770000px;}
.y4_c00352{bottom:1140.450000px;}
.y1_c00352{bottom:1193.730000px;}
.h11_c00352{height:25.545000px;}
.h7_c00352{height:25.905000px;}
.hf_c00352{height:25.920000px;}
.h10_c00352{height:25.950000px;}
.hc_c00352{height:25.956000px;}
.h12_c00352{height:34.855313px;}
.h15_c00352{height:38.158594px;}
.h5_c00352{height:46.638281px;}
.hb_c00352{height:51.825000px;}
.h9_c00352{height:51.861000px;}
.h14_c00352{height:54.219375px;}
.h13_c00352{height:54.514688px;}
.ha_c00352{height:59.357813px;}
.h8_c00352{height:60.952500px;}
.h2_c00352{height:64.546875px;}
.h6_c00352{height:70.628906px;}
.h3_c00352{height:70.664062px;}
.hd_c00352{height:77.760000px;}
.he_c00352{height:78.870000px;}
.h4_c00352{height:1262.875500px;}
.h0_c00352{height:1262.880000px;}
.h1_c00352{height:1263.000000px;}
.w3_c00352{width:323.415000px;}
.w4_c00352{width:323.775000px;}
.w1_c00352{width:892.500000px;}
.w2_c00352{width:892.797000px;}
.w0_c00352{width:892.800000px;}
.x0_c00352{left:0.000000px;}
.xb_c00352{left:7.920000px;}
.x6_c00352{left:119.929500px;}
.x1_c00352{left:127.512000px;}
.x9_c00352{left:128.595000px;}
.xd_c00352{left:129.655500px;}
.x7_c00352{left:140.455500px;}
.x12_c00352{left:142.632000px;}
.xa_c00352{left:146.935500px;}
.xc_c00352{left:161.335500px;}
.x3_c00352{left:169.995000px;}
.xe_c00352{left:178.635000px;}
.x11_c00352{left:343.590000px;}
.x2_c00352{left:432.900000px;}
.xf_c00352{left:433.977000px;}
.x8_c00352{left:444.060000px;}
.x10_c00352{left:452.340000px;}
.x4_c00352{left:603.252000px;}
.x5_c00352{left:621.615000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.lsc_c00352{letter-spacing:-1.280000pt;}
.lse_c00352{letter-spacing:-1.226667pt;}
.lsd_c00352{letter-spacing:-0.432533pt;}
.lsb_c00352{letter-spacing:0.000000pt;}
.ls6_c00352{letter-spacing:0.043520pt;}
.lsa_c00352{letter-spacing:0.096427pt;}
.ls3_c00352{letter-spacing:0.106667pt;}
.ls5_c00352{letter-spacing:0.148480pt;}
.ls8_c00352{letter-spacing:0.460800pt;}
.ls7_c00352{letter-spacing:0.471040pt;}
.ls2_c00352{letter-spacing:0.640000pt;}
.ls0_c00352{letter-spacing:1.280000pt;}
.ls4_c00352{letter-spacing:3.200000pt;}
.ls9_c00352{letter-spacing:3.220480pt;}
.ls1_c00352{letter-spacing:10.880000pt;}
.ws2_c00352{word-spacing:-64.000000pt;}
.ws3_c00352{word-spacing:-53.760000pt;}
.ws5_c00352{word-spacing:-52.533333pt;}
.ws1_c00352{word-spacing:-30.320640pt;}
.ws0_c00352{word-spacing:-16.000000pt;}
.ws4_c00352{word-spacing:-14.080000pt;}
.ws6_c00352{word-spacing:-13.440000pt;}
.ws7_c00352{word-spacing:-13.007467pt;}
.ws8_c00352{word-spacing:0.000000pt;}
._a_c00352{margin-left:-3.210560pt;}
._3_c00352{margin-left:-2.293312pt;}
._1_c00352{margin-left:-1.280000pt;}
._0_c00352{width:1.408000pt;}
._4_c00352{width:2.986624pt;}
._9_c00352{width:4.021504pt;}
._7_c00352{width:5.696000pt;}
._8_c00352{width:7.349312pt;}
._d_c00352{width:8.586560pt;}
._6_c00352{width:10.432000pt;}
._5_c00352{width:11.637312pt;}
._10_c00352{width:13.855808pt;}
._2_c00352{width:14.912000pt;}
._e_c00352{width:17.497044pt;}
._f_c00352{width:18.869868pt;}
._c_c00352{width:20.789312pt;}
._b_c00352{width:22.208000pt;}
.fs3_c00352{font-size:34.560000pt;}
.fs1_c00352{font-size:42.240000pt;}
.fs2_c00352{font-size:53.760000pt;}
.fs0_c00352{font-size:64.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.yf_c00352{bottom:10.866667pt;}
.y20_c00352{bottom:10.880000pt;}
.y12_c00352{bottom:11.186667pt;}
.y19_c00352{bottom:11.200000pt;}
.y15_c00352{bottom:11.226667pt;}
.y1d_c00352{bottom:12.480000pt;}
.y11_c00352{bottom:34.226667pt;}
.y18_c00352{bottom:34.240000pt;}
.y1c_c00352{bottom:35.200000pt;}
.y3_c00352{bottom:50.880000pt;}
.y17_c00352{bottom:57.280000pt;}
.y1b_c00352{bottom:58.266667pt;}
.y2_c00352{bottom:69.440000pt;}
.y35_c00352{bottom:116.192000pt;}
.y34_c00352{bottom:131.552000pt;}
.y33_c00352{bottom:146.906667pt;}
.y32_c00352{bottom:152.986667pt;}
.y31_c00352{bottom:161.946667pt;}
.y30_c00352{bottom:177.306667pt;}
.y2f_c00352{bottom:192.666667pt;}
.y2e_c00352{bottom:208.066667pt;}
.y2d_c00352{bottom:223.426667pt;}
.y2c_c00352{bottom:238.786667pt;}
.y2b_c00352{bottom:254.146667pt;}
.y2a_c00352{bottom:260.226667pt;}
.y29_c00352{bottom:269.826667pt;}
.y28_c00352{bottom:309.506667pt;}
.y26_c00352{bottom:337.053333pt;}
.y27_c00352{bottom:344.413333pt;}
.y25_c00352{bottom:364.573333pt;}
.y24_c00352{bottom:392.413333pt;}
.y23_c00352{bottom:419.933333pt;}
.y22_c00352{bottom:447.493333pt;}
.y21_c00352{bottom:475.013333pt;}
.y1a_c00352{bottom:490.373333pt;}
.y1f_c00352{bottom:513.733333pt;}
.y1e_c00352{bottom:537.440000pt;}
.y16_c00352{bottom:561.120000pt;}
.y14_c00352{bottom:630.880000pt;}
.y13_c00352{bottom:654.600000pt;}
.y10_c00352{bottom:701.320000pt;}
.ye_c00352{bottom:748.080000pt;}
.yd_c00352{bottom:784.866667pt;}
.yc_c00352{bottom:820.386667pt;}
.yb_c00352{bottom:847.906667pt;}
.ya_c00352{bottom:875.773333pt;}
.y9_c00352{bottom:903.293333pt;}
.y8_c00352{bottom:930.813333pt;}
.y7_c00352{bottom:958.333333pt;}
.y5_c00352{bottom:986.213333pt;}
.y6_c00352{bottom:993.573333pt;}
.y4_c00352{bottom:1013.733333pt;}
.y1_c00352{bottom:1061.093333pt;}
.h11_c00352{height:22.706667pt;}
.h7_c00352{height:23.026667pt;}
.hf_c00352{height:23.040000pt;}
.h10_c00352{height:23.066667pt;}
.hc_c00352{height:23.072000pt;}
.h12_c00352{height:30.982500pt;}
.h15_c00352{height:33.918750pt;}
.h5_c00352{height:41.456250pt;}
.hb_c00352{height:46.066667pt;}
.h9_c00352{height:46.098667pt;}
.h14_c00352{height:48.195000pt;}
.h13_c00352{height:48.457500pt;}
.ha_c00352{height:52.762500pt;}
.h8_c00352{height:54.180000pt;}
.h2_c00352{height:57.375000pt;}
.h6_c00352{height:62.781250pt;}
.h3_c00352{height:62.812500pt;}
.hd_c00352{height:69.120000pt;}
.he_c00352{height:70.106667pt;}
.h4_c00352{height:1122.556000pt;}
.h0_c00352{height:1122.560000pt;}
.h1_c00352{height:1122.666667pt;}
.w3_c00352{width:287.480000pt;}
.w4_c00352{width:287.800000pt;}
.w1_c00352{width:793.333333pt;}
.w2_c00352{width:793.597333pt;}
.w0_c00352{width:793.600000pt;}
.x0_c00352{left:0.000000pt;}
.xb_c00352{left:7.040000pt;}
.x6_c00352{left:106.604000pt;}
.x1_c00352{left:113.344000pt;}
.x9_c00352{left:114.306667pt;}
.xd_c00352{left:115.249333pt;}
.x7_c00352{left:124.849333pt;}
.x12_c00352{left:126.784000pt;}
.xa_c00352{left:130.609333pt;}
.xc_c00352{left:143.409333pt;}
.x3_c00352{left:151.106667pt;}
.xe_c00352{left:158.786667pt;}
.x11_c00352{left:305.413333pt;}
.x2_c00352{left:384.800000pt;}
.xf_c00352{left:385.757333pt;}
.x8_c00352{left:394.720000pt;}
.x10_c00352{left:402.080000pt;}
.x4_c00352{left:536.224000pt;}
.x5_c00352{left:552.546667pt;}
}





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

.ir_c00353:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00353;src:url('chunks/assets/font_f369c4a6881822e70564b83c.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_ddb460f94fec73e74c0b6d4f.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_386e24ef12163cad1c60e26c.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;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_c00353;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00353;src:url('chunks/assets/font_4f7a15c550ffc97e675c45b7.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00353;src:url('chunks/assets/font_9111f26f593ae94f0f9a3614.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls6_c00353{letter-spacing:-0.241800px;}
.ls2_c00353{letter-spacing:0.000000px;}
.ls5_c00353{letter-spacing:0.020400px;}
.ls0_c00353{letter-spacing:0.180000px;}
.ls4_c00353{letter-spacing:0.466800px;}
.ls1_c00353{letter-spacing:0.720000px;}
.ls3_c00353{letter-spacing:1.440000px;}
.ls7_c00353{letter-spacing:1.968000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00353{word-spacing:-72.000000px;}
.ws0_c00353{word-spacing:-18.000000px;}
.ws4_c00353{word-spacing:-17.088000px;}
.ws3_c00353{word-spacing:-15.140400px;}
.ws2_c00353{word-spacing:-15.120000px;}
.ws5_c00353{word-spacing:0.000000px;}
._1_c00353{margin-left:-2.736000px;}
._4_c00353{margin-left:-1.152000px;}
._0_c00353{width:1.080000px;}
._2_c00353{width:2.376000px;}
._3_c00353{width:3.384000px;}
._7_c00353{width:5.400000px;}
._10_c00353{width:6.552000px;}
._15_c00353{width:8.406599px;}
._16_c00353{width:9.463801px;}
._13_c00353{width:12.636000px;}
._e_c00353{width:13.812000px;}
._14_c00353{width:14.928000px;}
._f_c00353{width:15.948000px;}
._b_c00353{width:19.872000px;}
._a_c00353{width:21.096000px;}
._c_c00353{width:22.296000px;}
._d_c00353{width:23.712000px;}
._8_c00353{width:24.984000px;}
._9_c00353{width:26.640000px;}
._11_c00353{width:35.280000px;}
._12_c00353{width:36.360000px;}
._6_c00353{width:37.728000px;}
._5_c00353{width:39.240000px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs3_c00353{font-size:38.880000px;}
.fs1_c00353{font-size:47.520000px;}
.fs2_c00353{font-size:60.480000px;}
.fs0_c00353{font-size:72.000000px;}
.y0_c00353{bottom:0.000000px;}
.y3_c00353{bottom:57.240000px;}
.y2_c00353{bottom:78.120000px;}
.y2f_c00353{bottom:130.716000px;}
.y2e_c00353{bottom:147.996000px;}
.y2d_c00353{bottom:154.830000px;}
.y2c_c00353{bottom:165.270000px;}
.y2b_c00353{bottom:182.190000px;}
.y2a_c00353{bottom:199.470000px;}
.y29_c00353{bottom:206.310000px;}
.y28_c00353{bottom:216.750000px;}
.y27_c00353{bottom:234.075000px;}
.y26_c00353{bottom:251.355000px;}
.y25_c00353{bottom:268.635000px;}
.y24_c00353{bottom:285.915000px;}
.y23_c00353{bottom:303.195000px;}
.y22_c00353{bottom:310.035000px;}
.y21_c00353{bottom:320.835000px;}
.y20_c00353{bottom:351.075000px;}
.y1f_c00353{bottom:382.065000px;}
.y1e_c00353{bottom:413.385000px;}
.y1d_c00353{bottom:444.345000px;}
.y1c_c00353{bottom:475.350000px;}
.y1b_c00353{bottom:506.310000px;}
.y1a_c00353{bottom:537.630000px;}
.y18_c00353{bottom:568.590000px;}
.y19_c00353{bottom:576.870000px;}
.y17_c00353{bottom:599.580000px;}
.y16_c00353{bottom:630.540000px;}
.y15_c00353{bottom:661.860000px;}
.y14_c00353{bottom:692.820000px;}
.y13_c00353{bottom:723.810000px;}
.y12_c00353{bottom:763.770000px;}
.y11_c00353{bottom:801.570000px;}
.yf_c00353{bottom:829.650000px;}
.y10_c00353{bottom:837.930000px;}
.ye_c00353{bottom:861.015000px;}
.yd_c00353{bottom:891.975000px;}
.yc_c00353{bottom:922.935000px;}
.yb_c00353{bottom:953.895000px;}
.ya_c00353{bottom:985.245000px;}
.y9_c00353{bottom:1016.205000px;}
.y8_c00353{bottom:1047.165000px;}
.y7_c00353{bottom:1078.125000px;}
.y6_c00353{bottom:1109.490000px;}
.y4_c00353{bottom:1140.450000px;}
.y5_c00353{bottom:1148.730000px;}
.y1_c00353{bottom:1193.730000px;}
.h8_c00353{height:38.158594px;}
.h5_c00353{height:46.638281px;}
.h9_c00353{height:54.219375px;}
.h6_c00353{height:59.357813px;}
.h2_c00353{height:64.546875px;}
.h7_c00353{height:70.628906px;}
.h3_c00353{height:70.664062px;}
.h4_c00353{height:1262.875500px;}
.h0_c00353{height:1262.880000px;}
.h1_c00353{height:1263.000000px;}
.w1_c00353{width:892.500000px;}
.w2_c00353{width:892.797000px;}
.w0_c00353{width:892.800000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:127.512000px;}
.xc_c00353{left:142.632000px;}
.x8_c00353{left:178.635000px;}
.x7_c00353{left:180.795000px;}
.x3_c00353{left:298.587000px;}
.x4_c00353{left:316.950000px;}
.xb_c00353{left:343.590000px;}
.x5_c00353{left:381.057000px;}
.x6_c00353{left:399.420000px;}
.x2_c00353{left:432.900000px;}
.x9_c00353{left:543.807000px;}
.xa_c00353{left:562.215000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls6_c00353{letter-spacing:-0.214933pt;}
.ls2_c00353{letter-spacing:0.000000pt;}
.ls5_c00353{letter-spacing:0.018133pt;}
.ls0_c00353{letter-spacing:0.160000pt;}
.ls4_c00353{letter-spacing:0.414933pt;}
.ls1_c00353{letter-spacing:0.640000pt;}
.ls3_c00353{letter-spacing:1.280000pt;}
.ls7_c00353{letter-spacing:1.749333pt;}
.ws1_c00353{word-spacing:-64.000000pt;}
.ws0_c00353{word-spacing:-16.000000pt;}
.ws4_c00353{word-spacing:-15.189333pt;}
.ws3_c00353{word-spacing:-13.458133pt;}
.ws2_c00353{word-spacing:-13.440000pt;}
.ws5_c00353{word-spacing:0.000000pt;}
._1_c00353{margin-left:-2.432000pt;}
._4_c00353{margin-left:-1.024000pt;}
._0_c00353{width:0.960000pt;}
._2_c00353{width:2.112000pt;}
._3_c00353{width:3.008000pt;}
._7_c00353{width:4.800000pt;}
._10_c00353{width:5.824000pt;}
._15_c00353{width:7.472532pt;}
._16_c00353{width:8.412268pt;}
._13_c00353{width:11.232000pt;}
._e_c00353{width:12.277333pt;}
._14_c00353{width:13.269333pt;}
._f_c00353{width:14.176000pt;}
._b_c00353{width:17.664000pt;}
._a_c00353{width:18.752000pt;}
._c_c00353{width:19.818667pt;}
._d_c00353{width:21.077333pt;}
._8_c00353{width:22.208000pt;}
._9_c00353{width:23.680000pt;}
._11_c00353{width:31.360000pt;}
._12_c00353{width:32.320000pt;}
._6_c00353{width:33.536000pt;}
._5_c00353{width:34.880000pt;}
.fs3_c00353{font-size:34.560000pt;}
.fs1_c00353{font-size:42.240000pt;}
.fs2_c00353{font-size:53.760000pt;}
.fs0_c00353{font-size:64.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y3_c00353{bottom:50.880000pt;}
.y2_c00353{bottom:69.440000pt;}
.y2f_c00353{bottom:116.192000pt;}
.y2e_c00353{bottom:131.552000pt;}
.y2d_c00353{bottom:137.626667pt;}
.y2c_c00353{bottom:146.906667pt;}
.y2b_c00353{bottom:161.946667pt;}
.y2a_c00353{bottom:177.306667pt;}
.y29_c00353{bottom:183.386667pt;}
.y28_c00353{bottom:192.666667pt;}
.y27_c00353{bottom:208.066667pt;}
.y26_c00353{bottom:223.426667pt;}
.y25_c00353{bottom:238.786667pt;}
.y24_c00353{bottom:254.146667pt;}
.y23_c00353{bottom:269.506667pt;}
.y22_c00353{bottom:275.586667pt;}
.y21_c00353{bottom:285.186667pt;}
.y20_c00353{bottom:312.066667pt;}
.y1f_c00353{bottom:339.613333pt;}
.y1e_c00353{bottom:367.453333pt;}
.y1d_c00353{bottom:394.973333pt;}
.y1c_c00353{bottom:422.533333pt;}
.y1b_c00353{bottom:450.053333pt;}
.y1a_c00353{bottom:477.893333pt;}
.y18_c00353{bottom:505.413333pt;}
.y19_c00353{bottom:512.773333pt;}
.y17_c00353{bottom:532.960000pt;}
.y16_c00353{bottom:560.480000pt;}
.y15_c00353{bottom:588.320000pt;}
.y14_c00353{bottom:615.840000pt;}
.y13_c00353{bottom:643.386667pt;}
.y12_c00353{bottom:678.906667pt;}
.y11_c00353{bottom:712.506667pt;}
.yf_c00353{bottom:737.466667pt;}
.y10_c00353{bottom:744.826667pt;}
.ye_c00353{bottom:765.346667pt;}
.yd_c00353{bottom:792.866667pt;}
.yc_c00353{bottom:820.386667pt;}
.yb_c00353{bottom:847.906667pt;}
.ya_c00353{bottom:875.773333pt;}
.y9_c00353{bottom:903.293333pt;}
.y8_c00353{bottom:930.813333pt;}
.y7_c00353{bottom:958.333333pt;}
.y6_c00353{bottom:986.213333pt;}
.y4_c00353{bottom:1013.733333pt;}
.y5_c00353{bottom:1021.093333pt;}
.y1_c00353{bottom:1061.093333pt;}
.h8_c00353{height:33.918750pt;}
.h5_c00353{height:41.456250pt;}
.h9_c00353{height:48.195000pt;}
.h6_c00353{height:52.762500pt;}
.h2_c00353{height:57.375000pt;}
.h7_c00353{height:62.781250pt;}
.h3_c00353{height:62.812500pt;}
.h4_c00353{height:1122.556000pt;}
.h0_c00353{height:1122.560000pt;}
.h1_c00353{height:1122.666667pt;}
.w1_c00353{width:793.333333pt;}
.w2_c00353{width:793.597333pt;}
.w0_c00353{width:793.600000pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:113.344000pt;}
.xc_c00353{left:126.784000pt;}
.x8_c00353{left:158.786667pt;}
.x7_c00353{left:160.706667pt;}
.x3_c00353{left:265.410667pt;}
.x4_c00353{left:281.733333pt;}
.xb_c00353{left:305.413333pt;}
.x5_c00353{left:338.717333pt;}
.x6_c00353{left:355.040000pt;}
.x2_c00353{left:384.800000pt;}
.x9_c00353{left:483.384000pt;}
.xa_c00353{left:499.746667pt;}
}





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

.ir_c00354:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00354;src:url('chunks/assets/font_de03d6d90d7627a9adb9ed46.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_d13fbee7e9f358dc8a522092.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_ed8327284ec899588f595c17.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;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_c00354;src:url('chunks/assets/font_8d214c532bced59fb14ae797.woff2')format("woff");}.ff6_c00354{font-family:ff6_c00354;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls6_c00354{letter-spacing:-2.880000px;}
.ls7_c00354{letter-spacing:-0.648000px;}
.ls8_c00354{letter-spacing:-0.486600px;}
.ls4_c00354{letter-spacing:0.000000px;}
.ls3_c00354{letter-spacing:0.720000px;}
.ls1_c00354{letter-spacing:1.440000px;}
.ls5_c00354{letter-spacing:2.160000px;}
.ls2_c00354{letter-spacing:10.800000px;}
.ls0_c00354{letter-spacing:16.560000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:-72.000000px;}
.ws1_c00354{word-spacing:-40.608000px;}
.ws2_c00354{word-spacing:-18.000000px;}
.ws3_c00354{word-spacing:-17.352000px;}
.ws4_c00354{word-spacing:-15.120000px;}
.ws5_c00354{word-spacing:-14.633400px;}
.ws6_c00354{word-spacing:0.000000px;}
._1_c00354{margin-left:-2.736000px;}
._3_c00354{margin-left:-1.296000px;}
._0_c00354{width:1.224000px;}
._2_c00354{width:2.808000px;}
._4_c00354{width:3.960000px;}
._6_c00354{width:5.544000px;}
._5_c00354{width:7.200000px;}
._e_c00354{width:8.280000px;}
._f_c00354{width:10.080000px;}
._a_c00354{width:11.736000px;}
._b_c00354{width:12.744000px;}
._7_c00354{width:13.752000px;}
._9_c00354{width:14.832000px;}
._8_c00354{width:15.912000px;}
._10_c00354{width:18.948000px;}
._c_c00354{width:24.768000px;}
._d_c00354{width:27.000000px;}
._13_c00354{width:50.400000px;}
._11_c00354{width:51.480000px;}
._12_c00354{width:52.920000px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs2_c00354{font-size:38.880000px;}
.fs1_c00354{font-size:47.520000px;}
.fs3_c00354{font-size:60.480000px;}
.fs0_c00354{font-size:72.000000px;}
.y0_c00354{bottom:0.000000px;}
.y3_c00354{bottom:57.240000px;}
.y2_c00354{bottom:78.120000px;}
.y2d_c00354{bottom:130.716000px;}
.y2c_c00354{bottom:137.556000px;}
.y2b_c00354{bottom:147.996000px;}
.y2a_c00354{bottom:154.830000px;}
.y29_c00354{bottom:165.270000px;}
.y28_c00354{bottom:182.190000px;}
.y27_c00354{bottom:199.470000px;}
.y26_c00354{bottom:216.750000px;}
.y25_c00354{bottom:223.590000px;}
.y24_c00354{bottom:234.795000px;}
.y23_c00354{bottom:261.795000px;}
.y22_c00354{bottom:292.755000px;}
.y21_c00354{bottom:323.715000px;}
.y20_c00354{bottom:355.065000px;}
.y1f_c00354{bottom:386.025000px;}
.y1e_c00354{bottom:416.985000px;}
.y1d_c00354{bottom:447.945000px;}
.y1b_c00354{bottom:479.310000px;}
.y1c_c00354{bottom:487.590000px;}
.y1a_c00354{bottom:510.270000px;}
.y18_c00354{bottom:541.230000px;}
.y19_c00354{bottom:549.510000px;}
.y17_c00354{bottom:572.190000px;}
.y16_c00354{bottom:603.540000px;}
.y15_c00354{bottom:634.500000px;}
.y14_c00354{bottom:665.460000px;}
.y13_c00354{bottom:696.420000px;}
.y12_c00354{bottom:727.770000px;}
.y11_c00354{bottom:758.730000px;}
.y10_c00354{bottom:789.690000px;}
.yf_c00354{bottom:820.650000px;}
.ye_c00354{bottom:861.015000px;}
.yd_c00354{bottom:891.975000px;}
.yb_c00354{bottom:922.935000px;}
.yc_c00354{bottom:931.215000px;}
.ya_c00354{bottom:953.895000px;}
.y9_c00354{bottom:985.245000px;}
.y8_c00354{bottom:1016.205000px;}
.y7_c00354{bottom:1047.165000px;}
.y6_c00354{bottom:1078.125000px;}
.y5_c00354{bottom:1109.490000px;}
.y4_c00354{bottom:1140.450000px;}
.y1_c00354{bottom:1193.730000px;}
.h9_c00354{height:34.855313px;}
.h7_c00354{height:38.158594px;}
.h6_c00354{height:46.615078px;}
.h5_c00354{height:46.638281px;}
.ha_c00354{height:54.514688px;}
.h8_c00354{height:59.357813px;}
.h2_c00354{height:64.546875px;}
.h3_c00354{height:70.664062px;}
.h4_c00354{height:1262.875500px;}
.h0_c00354{height:1262.880000px;}
.h1_c00354{height:1263.000000px;}
.w1_c00354{width:892.500000px;}
.w2_c00354{width:892.797000px;}
.w0_c00354{width:892.800000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:127.512000px;}
.xb_c00354{left:142.632000px;}
.x5_c00354{left:178.635000px;}
.x8_c00354{left:232.662000px;}
.x9_c00354{left:251.025000px;}
.x6_c00354{left:274.062000px;}
.x7_c00354{left:292.425000px;}
.xa_c00354{left:343.590000px;}
.x2_c00354{left:432.900000px;}
.x3_c00354{left:629.892000px;}
.x4_c00354{left:648.285000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls6_c00354{letter-spacing:-2.560000pt;}
.ls7_c00354{letter-spacing:-0.576000pt;}
.ls8_c00354{letter-spacing:-0.432533pt;}
.ls4_c00354{letter-spacing:0.000000pt;}
.ls3_c00354{letter-spacing:0.640000pt;}
.ls1_c00354{letter-spacing:1.280000pt;}
.ls5_c00354{letter-spacing:1.920000pt;}
.ls2_c00354{letter-spacing:9.600000pt;}
.ls0_c00354{letter-spacing:14.720000pt;}
.ws0_c00354{word-spacing:-64.000000pt;}
.ws1_c00354{word-spacing:-36.096000pt;}
.ws2_c00354{word-spacing:-16.000000pt;}
.ws3_c00354{word-spacing:-15.424000pt;}
.ws4_c00354{word-spacing:-13.440000pt;}
.ws5_c00354{word-spacing:-13.007467pt;}
.ws6_c00354{word-spacing:0.000000pt;}
._1_c00354{margin-left:-2.432000pt;}
._3_c00354{margin-left:-1.152000pt;}
._0_c00354{width:1.088000pt;}
._2_c00354{width:2.496000pt;}
._4_c00354{width:3.520000pt;}
._6_c00354{width:4.928000pt;}
._5_c00354{width:6.400000pt;}
._e_c00354{width:7.360000pt;}
._f_c00354{width:8.960000pt;}
._a_c00354{width:10.432000pt;}
._b_c00354{width:11.328000pt;}
._7_c00354{width:12.224000pt;}
._9_c00354{width:13.184000pt;}
._8_c00354{width:14.144000pt;}
._10_c00354{width:16.842667pt;}
._c_c00354{width:22.016000pt;}
._d_c00354{width:24.000000pt;}
._13_c00354{width:44.800000pt;}
._11_c00354{width:45.760000pt;}
._12_c00354{width:47.040000pt;}
.fs2_c00354{font-size:34.560000pt;}
.fs1_c00354{font-size:42.240000pt;}
.fs3_c00354{font-size:53.760000pt;}
.fs0_c00354{font-size:64.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y3_c00354{bottom:50.880000pt;}
.y2_c00354{bottom:69.440000pt;}
.y2d_c00354{bottom:116.192000pt;}
.y2c_c00354{bottom:122.272000pt;}
.y2b_c00354{bottom:131.552000pt;}
.y2a_c00354{bottom:137.626667pt;}
.y29_c00354{bottom:146.906667pt;}
.y28_c00354{bottom:161.946667pt;}
.y27_c00354{bottom:177.306667pt;}
.y26_c00354{bottom:192.666667pt;}
.y25_c00354{bottom:198.746667pt;}
.y24_c00354{bottom:208.706667pt;}
.y23_c00354{bottom:232.706667pt;}
.y22_c00354{bottom:260.226667pt;}
.y21_c00354{bottom:287.746667pt;}
.y20_c00354{bottom:315.613333pt;}
.y1f_c00354{bottom:343.133333pt;}
.y1e_c00354{bottom:370.653333pt;}
.y1d_c00354{bottom:398.173333pt;}
.y1b_c00354{bottom:426.053333pt;}
.y1c_c00354{bottom:433.413333pt;}
.y1a_c00354{bottom:453.573333pt;}
.y18_c00354{bottom:481.093333pt;}
.y19_c00354{bottom:488.453333pt;}
.y17_c00354{bottom:508.613333pt;}
.y16_c00354{bottom:536.480000pt;}
.y15_c00354{bottom:564.000000pt;}
.y14_c00354{bottom:591.520000pt;}
.y13_c00354{bottom:619.040000pt;}
.y12_c00354{bottom:646.906667pt;}
.y11_c00354{bottom:674.426667pt;}
.y10_c00354{bottom:701.946667pt;}
.yf_c00354{bottom:729.466667pt;}
.ye_c00354{bottom:765.346667pt;}
.yd_c00354{bottom:792.866667pt;}
.yb_c00354{bottom:820.386667pt;}
.yc_c00354{bottom:827.746667pt;}
.ya_c00354{bottom:847.906667pt;}
.y9_c00354{bottom:875.773333pt;}
.y8_c00354{bottom:903.293333pt;}
.y7_c00354{bottom:930.813333pt;}
.y6_c00354{bottom:958.333333pt;}
.y5_c00354{bottom:986.213333pt;}
.y4_c00354{bottom:1013.733333pt;}
.y1_c00354{bottom:1061.093333pt;}
.h9_c00354{height:30.982500pt;}
.h7_c00354{height:33.918750pt;}
.h6_c00354{height:41.435625pt;}
.h5_c00354{height:41.456250pt;}
.ha_c00354{height:48.457500pt;}
.h8_c00354{height:52.762500pt;}
.h2_c00354{height:57.375000pt;}
.h3_c00354{height:62.812500pt;}
.h4_c00354{height:1122.556000pt;}
.h0_c00354{height:1122.560000pt;}
.h1_c00354{height:1122.666667pt;}
.w1_c00354{width:793.333333pt;}
.w2_c00354{width:793.597333pt;}
.w0_c00354{width:793.600000pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:113.344000pt;}
.xb_c00354{left:126.784000pt;}
.x5_c00354{left:158.786667pt;}
.x8_c00354{left:206.810667pt;}
.x9_c00354{left:223.133333pt;}
.x6_c00354{left:243.610667pt;}
.x7_c00354{left:259.933333pt;}
.xa_c00354{left:305.413333pt;}
.x2_c00354{left:384.800000pt;}
.x3_c00354{left:559.904000pt;}
.x4_c00354{left:576.253333pt;}
}





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

.ir_c00355:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00355;src:url('chunks/assets/font_27b109edc0ae797c6fc79fb1.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_85a37f1d9ac29d2a753dae4f.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_7e0dbd63814571d2e4c2cb1d.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;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_c00355;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00355;src:url('chunks/assets/font_ae11cdac5f4026df3ee88236.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00355;src:url('chunks/assets/font_41e5dba14430036c7cda5f7f.woff2')format("woff");}.ff6_c00355{font-family:ff6_c00355;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls3_c00355{letter-spacing:-2.880000px;}
.ls2_c00355{letter-spacing:0.000000px;}
.ls1_c00355{letter-spacing:2.160000px;}
.ls0_c00355{letter-spacing:3.600000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00355{word-spacing:-72.000000px;}
.ws3_c00355{word-spacing:-60.480000px;}
.ws0_c00355{word-spacing:-18.000000px;}
.ws2_c00355{word-spacing:-15.120000px;}
.ws4_c00355{word-spacing:0.000000px;}
._9_c00355{margin-left:-3.847801px;}
._3_c00355{margin-left:-2.736000px;}
._0_c00355{margin-left:-1.008000px;}
._1_c00355{width:1.080000px;}
._2_c00355{width:2.520000px;}
._6_c00355{width:4.104000px;}
._e_c00355{width:5.253600px;}
._7_c00355{width:6.348000px;}
._a_c00355{width:8.718002px;}
._4_c00355{width:10.008000px;}
._5_c00355{width:11.232000px;}
._8_c00355{width:16.776000px;}
._f_c00355{width:18.121202px;}
._11_c00355{width:23.002802px;}
._10_c00355{width:24.617998px;}
._d_c00355{width:33.468601px;}
._c_c00355{width:34.473600px;}
._b_c00355{width:67.737600px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs1_c00355{font-size:60.480000px;}
.fs0_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.yb_c00355{bottom:12.225000px;}
.y15_c00355{bottom:12.600000px;}
.y14_c00355{bottom:38.550000px;}
.y3_c00355{bottom:57.240000px;}
.y13_c00355{bottom:64.470000px;}
.y2_c00355{bottom:78.120000px;}
.y12_c00355{bottom:90.390000px;}
.y11_c00355{bottom:116.310000px;}
.y10_c00355{bottom:142.275000px;}
.y23_c00355{bottom:148.356000px;}
.yf_c00355{bottom:168.195000px;}
.y22_c00355{bottom:188.310000px;}
.ye_c00355{bottom:193.755000px;}
.yd_c00355{bottom:219.675000px;}
.y21_c00355{bottom:228.270000px;}
.y20_c00355{bottom:268.275000px;}
.y1f_c00355{bottom:308.595000px;}
.y1e_c00355{bottom:348.555000px;}
.y1d_c00355{bottom:388.545000px;}
.y1c_c00355{bottom:428.505000px;}
.y1b_c00355{bottom:468.825000px;}
.y1a_c00355{bottom:508.830000px;}
.y19_c00355{bottom:548.790000px;}
.y18_c00355{bottom:588.750000px;}
.y17_c00355{bottom:628.740000px;}
.y16_c00355{bottom:669.060000px;}
.yc_c00355{bottom:700.740000px;}
.ya_c00355{bottom:934.470000px;}
.y9_c00355{bottom:976.245000px;}
.y8_c00355{bottom:1016.205000px;}
.y7_c00355{bottom:1047.165000px;}
.y6_c00355{bottom:1078.125000px;}
.y5_c00355{bottom:1109.490000px;}
.y4_c00355{bottom:1140.450000px;}
.y1_c00355{bottom:1193.730000px;}
.h5_c00355{height:25.905000px;}
.h9_c00355{height:54.219375px;}
.h8_c00355{height:59.357813px;}
.h6_c00355{height:60.952500px;}
.h2_c00355{height:64.546875px;}
.h4_c00355{height:70.628906px;}
.h3_c00355{height:70.664062px;}
.h7_c00355{height:232.995000px;}
.h0_c00355{height:1262.880000px;}
.h1_c00355{height:1263.000000px;}
.w2_c00355{width:323.415000px;}
.w3_c00355{width:323.775000px;}
.w1_c00355{width:892.500000px;}
.w0_c00355{width:892.800000px;}
.x0_c00355{left:0.000000px;}
.x8_c00355{left:7.582500px;}
.x4_c00355{left:119.929500px;}
.x1_c00355{left:127.512000px;}
.x5_c00355{left:135.055500px;}
.x7_c00355{left:143.355000px;}
.x9_c00355{left:148.752000px;}
.x3_c00355{left:178.635000px;}
.x2_c00355{left:432.900000px;}
.x6_c00355{left:444.060000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls3_c00355{letter-spacing:-2.560000pt;}
.ls2_c00355{letter-spacing:0.000000pt;}
.ls1_c00355{letter-spacing:1.920000pt;}
.ls0_c00355{letter-spacing:3.200000pt;}
.ws1_c00355{word-spacing:-64.000000pt;}
.ws3_c00355{word-spacing:-53.760000pt;}
.ws0_c00355{word-spacing:-16.000000pt;}
.ws2_c00355{word-spacing:-13.440000pt;}
.ws4_c00355{word-spacing:0.000000pt;}
._9_c00355{margin-left:-3.420268pt;}
._3_c00355{margin-left:-2.432000pt;}
._0_c00355{margin-left:-0.896000pt;}
._1_c00355{width:0.960000pt;}
._2_c00355{width:2.240000pt;}
._6_c00355{width:3.648000pt;}
._e_c00355{width:4.669867pt;}
._7_c00355{width:5.642667pt;}
._a_c00355{width:7.749335pt;}
._4_c00355{width:8.896000pt;}
._5_c00355{width:9.984000pt;}
._8_c00355{width:14.912000pt;}
._f_c00355{width:16.107735pt;}
._11_c00355{width:20.446935pt;}
._10_c00355{width:21.882665pt;}
._d_c00355{width:29.749868pt;}
._c_c00355{width:30.643200pt;}
._b_c00355{width:60.211200pt;}
.fs1_c00355{font-size:53.760000pt;}
.fs0_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.yb_c00355{bottom:10.866667pt;}
.y15_c00355{bottom:11.200000pt;}
.y14_c00355{bottom:34.266667pt;}
.y3_c00355{bottom:50.880000pt;}
.y13_c00355{bottom:57.306667pt;}
.y2_c00355{bottom:69.440000pt;}
.y12_c00355{bottom:80.346667pt;}
.y11_c00355{bottom:103.386667pt;}
.y10_c00355{bottom:126.466667pt;}
.y23_c00355{bottom:131.872000pt;}
.yf_c00355{bottom:149.506667pt;}
.y22_c00355{bottom:167.386667pt;}
.ye_c00355{bottom:172.226667pt;}
.yd_c00355{bottom:195.266667pt;}
.y21_c00355{bottom:202.906667pt;}
.y20_c00355{bottom:238.466667pt;}
.y1f_c00355{bottom:274.306667pt;}
.y1e_c00355{bottom:309.826667pt;}
.y1d_c00355{bottom:345.373333pt;}
.y1c_c00355{bottom:380.893333pt;}
.y1b_c00355{bottom:416.733333pt;}
.y1a_c00355{bottom:452.293333pt;}
.y19_c00355{bottom:487.813333pt;}
.y18_c00355{bottom:523.333333pt;}
.y17_c00355{bottom:558.880000pt;}
.y16_c00355{bottom:594.720000pt;}
.yc_c00355{bottom:622.880000pt;}
.ya_c00355{bottom:830.640000pt;}
.y9_c00355{bottom:867.773333pt;}
.y8_c00355{bottom:903.293333pt;}
.y7_c00355{bottom:930.813333pt;}
.y6_c00355{bottom:958.333333pt;}
.y5_c00355{bottom:986.213333pt;}
.y4_c00355{bottom:1013.733333pt;}
.y1_c00355{bottom:1061.093333pt;}
.h5_c00355{height:23.026667pt;}
.h9_c00355{height:48.195000pt;}
.h8_c00355{height:52.762500pt;}
.h6_c00355{height:54.180000pt;}
.h2_c00355{height:57.375000pt;}
.h4_c00355{height:62.781250pt;}
.h3_c00355{height:62.812500pt;}
.h7_c00355{height:207.106667pt;}
.h0_c00355{height:1122.560000pt;}
.h1_c00355{height:1122.666667pt;}
.w2_c00355{width:287.480000pt;}
.w3_c00355{width:287.800000pt;}
.w1_c00355{width:793.333333pt;}
.w0_c00355{width:793.600000pt;}
.x0_c00355{left:0.000000pt;}
.x8_c00355{left:6.740000pt;}
.x4_c00355{left:106.604000pt;}
.x1_c00355{left:113.344000pt;}
.x5_c00355{left:120.049333pt;}
.x7_c00355{left:127.426667pt;}
.x9_c00355{left:132.224000pt;}
.x3_c00355{left:158.786667pt;}
.x2_c00355{left:384.800000pt;}
.x6_c00355{left:394.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_c00356 {
    display:none;
  }
  .loading-indicator_c00356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00356 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00356 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00356" -> "#page-container .classname_c00356")
 */
.pf_c00356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00356 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00356 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00356 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00356 {overflow:visible;}
  }
}
.c_c00356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00356 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00356:after { /* webkit #35443 */
  content: '';
}
.t_c00356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00356 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00356 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00356 { /* info for Javascript */
  display:none;
}
.l_c00356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00356:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00356;src:url('chunks/assets/font_4cbb92a7dd96fcc99eeaad04.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_097363228d7316761a5f434e.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;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_c00356;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls0_c00356{letter-spacing:0.000000px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:0.000000px;}
._0_c00356{margin-left:-1.736351px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs0_c00356{font-size:72.000000px;}
.fs1_c00356{font-size:96.480000px;}
.y0_c00356{bottom:0.000000px;}
.y3_c00356{bottom:57.240000px;}
.y2_c00356{bottom:78.120000px;}
.y10_c00356{bottom:622.980000px;}
.yf_c00356{bottom:673.020000px;}
.ye_c00356{bottom:723.450000px;}
.yd_c00356{bottom:773.850000px;}
.yc_c00356{bottom:819.930000px;}
.yb_c00356{bottom:859.935000px;}
.ya_c00356{bottom:899.895000px;}
.y9_c00356{bottom:940.215000px;}
.y8_c00356{bottom:980.205000px;}
.y7_c00356{bottom:1020.165000px;}
.y6_c00356{bottom:1060.125000px;}
.y5_c00356{bottom:1100.490000px;}
.y4_c00356{bottom:1140.450000px;}
.y1_c00356{bottom:1193.730000px;}
.h2_c00356{height:64.546875px;}
.h3_c00356{height:70.664062px;}
.h4_c00356{height:94.642734px;}
.h5_c00356{height:97.233750px;}
.h0_c00356{height:1262.880000px;}
.h1_c00356{height:1263.000000px;}
.w1_c00356{width:892.500000px;}
.w0_c00356{width:892.800000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:127.512000px;}
.x4_c00356{left:383.940000px;}
.x2_c00356{left:432.900000px;}
.x3_c00356{left:446.580000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws0_c00356{word-spacing:0.000000pt;}
._0_c00356{margin-left:-1.543423pt;}
.fs0_c00356{font-size:64.000000pt;}
.fs1_c00356{font-size:85.760000pt;}
.y0_c00356{bottom:0.000000pt;}
.y3_c00356{bottom:50.880000pt;}
.y2_c00356{bottom:69.440000pt;}
.y10_c00356{bottom:553.760000pt;}
.yf_c00356{bottom:598.240000pt;}
.ye_c00356{bottom:643.066667pt;}
.yd_c00356{bottom:687.866667pt;}
.yc_c00356{bottom:728.826667pt;}
.yb_c00356{bottom:764.386667pt;}
.ya_c00356{bottom:799.906667pt;}
.y9_c00356{bottom:835.746667pt;}
.y8_c00356{bottom:871.293333pt;}
.y7_c00356{bottom:906.813333pt;}
.y6_c00356{bottom:942.333333pt;}
.y5_c00356{bottom:978.213333pt;}
.y4_c00356{bottom:1013.733333pt;}
.y1_c00356{bottom:1061.093333pt;}
.h2_c00356{height:57.375000pt;}
.h3_c00356{height:62.812500pt;}
.h4_c00356{height:84.126875pt;}
.h5_c00356{height:86.430000pt;}
.h0_c00356{height:1122.560000pt;}
.h1_c00356{height:1122.666667pt;}
.w1_c00356{width:793.333333pt;}
.w0_c00356{width:793.600000pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:113.344000pt;}
.x4_c00356{left:341.280000pt;}
.x2_c00356{left:384.800000pt;}
.x3_c00356{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_c00357 {
    display:none;
  }
  .loading-indicator_c00357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00357 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00357 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00357" -> "#page-container .classname_c00357")
 */
.pf_c00357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00357 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00357 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00357 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00357 {overflow:visible;}
  }
}
.c_c00357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00357 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00357:after { /* webkit #35443 */
  content: '';
}
.t_c00357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00357 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00357 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00357 { /* info for Javascript */
  display:none;
}
.l_c00357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00357:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00357;src:url('chunks/assets/font_0bdad0c660ae39ac2ee982e7.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_73f3f94f138f773810acff6f.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_d205230af88330597a3d28df.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_6fac0ecc9d9aa37e9fbcb72c.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;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_c00357;src:url('chunks/assets/font_7b3489d3f2638fbaea16bda1.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00357;src:url('chunks/assets/font_fb6ade24c5c3e42432badb08.woff2')format("woff");}.ff6_c00357{font-family:ff6_c00357;line-height:1.112305;font-style:normal;font-weight: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_c00357;src:url('chunks/assets/font_8cfaff0797821960f0d0a980.woff2')format("woff");}.ff7_c00357{font-family:ff7_c00357;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00357{vertical-align:-82.080000px;}
.v0_c00357{vertical-align:0.000000px;}
.ls9_c00357{letter-spacing:-1.440000px;}
.lse_c00357{letter-spacing:-0.720000px;}
.lsd_c00357{letter-spacing:-0.532800px;}
.lsb_c00357{letter-spacing:-0.241800px;}
.ls8_c00357{letter-spacing:0.000000px;}
.ls4_c00357{letter-spacing:0.020160px;}
.ls7_c00357{letter-spacing:0.048960px;}
.ls11_c00357{letter-spacing:0.060600px;}
.lsf_c00357{letter-spacing:0.166800px;}
.ls12_c00357{letter-spacing:0.219000px;}
.ls3_c00357{letter-spacing:0.302400px;}
.ls10_c00357{letter-spacing:0.313800px;}
.ls14_c00357{letter-spacing:0.466800px;}
.lsa_c00357{letter-spacing:0.486600px;}
.ls5_c00357{letter-spacing:0.518400px;}
.lsc_c00357{letter-spacing:0.521400px;}
.ls13_c00357{letter-spacing:0.702000px;}
.ls2_c00357{letter-spacing:0.720000px;}
.ls6_c00357{letter-spacing:0.840000px;}
.ls0_c00357{letter-spacing:15.120000px;}
.ls1_c00357{letter-spacing:126.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00357{word-spacing:-72.000000px;}
.wsf_c00357{word-spacing:-60.699000px;}
.ws7_c00357{word-spacing:-60.480000px;}
.ws2_c00357{word-spacing:-40.608000px;}
.ws10_c00357{word-spacing:-34.812720px;}
.ws6_c00357{word-spacing:-34.632120px;}
.wsa_c00357{word-spacing:-34.629120px;}
.wsc_c00357{word-spacing:-34.424520px;}
.wsb_c00357{word-spacing:-34.277520px;}
.wse_c00357{word-spacing:-34.171320px;}
.ws4_c00357{word-spacing:-34.110720px;}
.ws5_c00357{word-spacing:-33.868920px;}
.ws8_c00357{word-spacing:-33.577920px;}
.ws0_c00357{word-spacing:-18.000000px;}
.wsd_c00357{word-spacing:-15.840000px;}
.ws3_c00357{word-spacing:-15.606600px;}
.ws9_c00357{word-spacing:-15.120000px;}
.ws11_c00357{word-spacing:0.000000px;}
._4_c00357{margin-left:-2.736000px;}
._1_c00357{margin-left:-1.584000px;}
._0_c00357{width:1.296000px;}
._3_c00357{width:2.448000px;}
._7_c00357{width:4.176000px;}
._6_c00357{width:12.504000px;}
._2_c00357{width:13.536000px;}
._5_c00357{width:15.264000px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs1_c00357{font-size:60.480000px;}
.fs0_c00357{font-size:72.000000px;}
.y0_c00357{bottom:0.000000px;}
.y10_c00357{bottom:12.240000px;}
.y1b_c00357{bottom:12.595500px;}
.y1a_c00357{bottom:38.509500px;}
.y19_c00357{bottom:64.114500px;}
.y18_c00357{bottom:90.034500px;}
.y17_c00357{bottom:115.954500px;}
.y11_c00357{bottom:135.760500px;}
.y16_c00357{bottom:141.904500px;}
.y15_c00357{bottom:167.824500px;}
.y1c_c00357{bottom:193.384500px;}
.y14_c00357{bottom:193.744500px;}
.y13_c00357{bottom:219.709500px;}
.y12_c00357{bottom:245.629500px;}
.yf_c00357{bottom:395.430000px;}
.ye_c00357{bottom:426.390000px;}
.yd_c00357{bottom:467.820000px;}
.yc_c00357{bottom:498.780000px;}
.yb_c00357{bottom:539.130000px;}
.ya_c00357{bottom:570.090000px;}
.y9_c00357{bottom:601.095000px;}
.y8_c00357{bottom:641.415000px;}
.y7_c00357{bottom:681.375000px;}
.y6_c00357{bottom:719.925000px;}
.y5_c00357{bottom:740.805000px;}
.y4_c00357{bottom:761.325000px;}
.y3_c00357{bottom:782.250000px;}
.y2_c00357{bottom:802.770000px;}
.y1_c00357{bottom:823.650000px;}
.h6_c00357{height:25.905000px;}
.h9_c00357{height:59.357813px;}
.h7_c00357{height:60.952500px;}
.h2_c00357{height:64.546875px;}
.h5_c00357{height:70.628906px;}
.h3_c00357{height:70.664062px;}
.h4_c00357{height:72.562500px;}
.h8_c00357{height:258.930000px;}
.h1_c00357{height:892.500000px;}
.h0_c00357{height:892.800000px;}
.w2_c00357{width:352.890000px;}
.w3_c00357{width:352.905000px;}
.w0_c00357{width:1262.880000px;}
.w1_c00357{width:1263.000000px;}
.x0_c00357{left:0.000000px;}
.x5_c00357{left:7.546500px;}
.x4_c00357{left:98.689500px;}
.x1_c00357{left:106.236000px;}
.x3_c00357{left:142.236000px;}
.x6_c00357{left:452.310000px;}
.x2_c00357{left:573.300000px;}
.x7_c00357{left:805.950000px;}
@media print{
.v1_c00357{vertical-align:-72.960000pt;}
.v0_c00357{vertical-align:0.000000pt;}
.ls9_c00357{letter-spacing:-1.280000pt;}
.lse_c00357{letter-spacing:-0.640000pt;}
.lsd_c00357{letter-spacing:-0.473600pt;}
.lsb_c00357{letter-spacing:-0.214933pt;}
.ls8_c00357{letter-spacing:0.000000pt;}
.ls4_c00357{letter-spacing:0.017920pt;}
.ls7_c00357{letter-spacing:0.043520pt;}
.ls11_c00357{letter-spacing:0.053867pt;}
.lsf_c00357{letter-spacing:0.148267pt;}
.ls12_c00357{letter-spacing:0.194667pt;}
.ls3_c00357{letter-spacing:0.268800pt;}
.ls10_c00357{letter-spacing:0.278933pt;}
.ls14_c00357{letter-spacing:0.414933pt;}
.lsa_c00357{letter-spacing:0.432533pt;}
.ls5_c00357{letter-spacing:0.460800pt;}
.lsc_c00357{letter-spacing:0.463467pt;}
.ls13_c00357{letter-spacing:0.624000pt;}
.ls2_c00357{letter-spacing:0.640000pt;}
.ls6_c00357{letter-spacing:0.746667pt;}
.ls0_c00357{letter-spacing:13.440000pt;}
.ls1_c00357{letter-spacing:112.000000pt;}
.ws1_c00357{word-spacing:-64.000000pt;}
.wsf_c00357{word-spacing:-53.954667pt;}
.ws7_c00357{word-spacing:-53.760000pt;}
.ws2_c00357{word-spacing:-36.096000pt;}
.ws10_c00357{word-spacing:-30.944640pt;}
.ws6_c00357{word-spacing:-30.784107pt;}
.wsa_c00357{word-spacing:-30.781440pt;}
.wsc_c00357{word-spacing:-30.599573pt;}
.wsb_c00357{word-spacing:-30.468907pt;}
.wse_c00357{word-spacing:-30.374507pt;}
.ws4_c00357{word-spacing:-30.320640pt;}
.ws5_c00357{word-spacing:-30.105707pt;}
.ws8_c00357{word-spacing:-29.847040pt;}
.ws0_c00357{word-spacing:-16.000000pt;}
.wsd_c00357{word-spacing:-14.080000pt;}
.ws3_c00357{word-spacing:-13.872533pt;}
.ws9_c00357{word-spacing:-13.440000pt;}
.ws11_c00357{word-spacing:0.000000pt;}
._4_c00357{margin-left:-2.432000pt;}
._1_c00357{margin-left:-1.408000pt;}
._0_c00357{width:1.152000pt;}
._3_c00357{width:2.176000pt;}
._7_c00357{width:3.712000pt;}
._6_c00357{width:11.114667pt;}
._2_c00357{width:12.032000pt;}
._5_c00357{width:13.568000pt;}
.fs1_c00357{font-size:53.760000pt;}
.fs0_c00357{font-size:64.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y10_c00357{bottom:10.880000pt;}
.y1b_c00357{bottom:11.196000pt;}
.y1a_c00357{bottom:34.230667pt;}
.y19_c00357{bottom:56.990667pt;}
.y18_c00357{bottom:80.030667pt;}
.y17_c00357{bottom:103.070667pt;}
.y11_c00357{bottom:120.676000pt;}
.y16_c00357{bottom:126.137333pt;}
.y15_c00357{bottom:149.177333pt;}
.y1c_c00357{bottom:171.897333pt;}
.y14_c00357{bottom:172.217333pt;}
.y13_c00357{bottom:195.297333pt;}
.y12_c00357{bottom:218.337333pt;}
.yf_c00357{bottom:351.493333pt;}
.ye_c00357{bottom:379.013333pt;}
.yd_c00357{bottom:415.840000pt;}
.yc_c00357{bottom:443.360000pt;}
.yb_c00357{bottom:479.226667pt;}
.ya_c00357{bottom:506.746667pt;}
.y9_c00357{bottom:534.306667pt;}
.y8_c00357{bottom:570.146667pt;}
.y7_c00357{bottom:605.666667pt;}
.y6_c00357{bottom:639.933333pt;}
.y5_c00357{bottom:658.493333pt;}
.y4_c00357{bottom:676.733333pt;}
.y3_c00357{bottom:695.333333pt;}
.y2_c00357{bottom:713.573333pt;}
.y1_c00357{bottom:732.133333pt;}
.h6_c00357{height:23.026667pt;}
.h9_c00357{height:52.762500pt;}
.h7_c00357{height:54.180000pt;}
.h2_c00357{height:57.375000pt;}
.h5_c00357{height:62.781250pt;}
.h3_c00357{height:62.812500pt;}
.h4_c00357{height:64.500000pt;}
.h8_c00357{height:230.160000pt;}
.h1_c00357{height:793.333333pt;}
.h0_c00357{height:793.600000pt;}
.w2_c00357{width:313.680000pt;}
.w3_c00357{width:313.693333pt;}
.w0_c00357{width:1122.560000pt;}
.w1_c00357{width:1122.666667pt;}
.x0_c00357{left:0.000000pt;}
.x5_c00357{left:6.708000pt;}
.x4_c00357{left:87.724000pt;}
.x1_c00357{left:94.432000pt;}
.x3_c00357{left:126.432000pt;}
.x6_c00357{left:402.053333pt;}
.x2_c00357{left:509.600000pt;}
.x7_c00357{left:716.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_c00358 {
    display:none;
  }
  .loading-indicator_c00358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00358 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00358 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00358" -> "#page-container .classname_c00358")
 */
.pf_c00358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00358 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00358 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00358 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00358 {overflow:visible;}
  }
}
.c_c00358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00358 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00358:after { /* webkit #35443 */
  content: '';
}
.t_c00358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00358 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00358 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00358 { /* info for Javascript */
  display:none;
}
.l_c00358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00358:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00358;src:url('chunks/assets/font_adad224a7bd7742c2dbe09dc.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_a1081bfd8eb35f98ab8d699f.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_4f55b267a49bc3f1a1c3490d.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;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_c00358;src:url('chunks/assets/font_0255fd72e95d08f8cc164f84.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_673c488126dbee2a7d09d6d1.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00358;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00358{font-family:ff6_c00358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls23_c00358{letter-spacing:-1.740000px;}
.ls1d_c00358{letter-spacing:-1.680000px;}
.ls1b_c00358{letter-spacing:-1.608000px;}
.lsf_c00358{letter-spacing:-1.440000px;}
.ls17_c00358{letter-spacing:-1.416000px;}
.ls18_c00358{letter-spacing:-1.056000px;}
.ls21_c00358{letter-spacing:-1.044000px;}
.ls22_c00358{letter-spacing:-0.936000px;}
.ls1e_c00358{letter-spacing:-0.810000px;}
.ls11_c00358{letter-spacing:-0.720000px;}
.ls1c_c00358{letter-spacing:-0.532800px;}
.ls14_c00358{letter-spacing:-0.302400px;}
.ls1a_c00358{letter-spacing:-0.241800px;}
.lsd_c00358{letter-spacing:0.000000px;}
.ls9_c00358{letter-spacing:0.020160px;}
.ls16_c00358{letter-spacing:0.020400px;}
.ls6_c00358{letter-spacing:0.022800px;}
.ls7_c00358{letter-spacing:0.048960px;}
.lsb_c00358{letter-spacing:0.140160px;}
.ls15_c00358{letter-spacing:0.166800px;}
.lsc_c00358{letter-spacing:0.290880px;}
.ls20_c00358{letter-spacing:0.291000px;}
.ls5_c00358{letter-spacing:0.302400px;}
.ls10_c00358{letter-spacing:0.313800px;}
.lsa_c00358{letter-spacing:0.466560px;}
.ls13_c00358{letter-spacing:0.466800px;}
.ls12_c00358{letter-spacing:0.486600px;}
.ls4_c00358{letter-spacing:0.518400px;}
.ls3_c00358{letter-spacing:0.524160px;}
.ls24_c00358{letter-spacing:0.529800px;}
.ls1f_c00358{letter-spacing:0.544200px;}
.ls19_c00358{letter-spacing:0.630000px;}
.ls1_c00358{letter-spacing:0.696000px;}
.lse_c00358{letter-spacing:0.702000px;}
.ls0_c00358{letter-spacing:0.720000px;}
.ls8_c00358{letter-spacing:0.840000px;}
.ls2_c00358{letter-spacing:0.900000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00358{word-spacing:-15.822000px;}
.wsb_c00358{word-spacing:-15.750000px;}
.ws12_c00358{word-spacing:-15.664200px;}
.ws15_c00358{word-spacing:-15.649800px;}
.wsa_c00358{word-spacing:-15.638400px;}
.ws4_c00358{word-spacing:-15.606600px;}
.ws3_c00358{word-spacing:-15.433800px;}
.ws13_c00358{word-spacing:-15.411000px;}
.ws6_c00358{word-spacing:-15.286800px;}
.ws7_c00358{word-spacing:-15.142800px;}
.wsf_c00358{word-spacing:-15.140400px;}
.ws0_c00358{word-spacing:-15.120000px;}
.wsc_c00358{word-spacing:-14.878200px;}
.ws5_c00358{word-spacing:-14.817600px;}
.wse_c00358{word-spacing:-14.587200px;}
.ws11_c00358{word-spacing:-14.310000px;}
.ws9_c00358{word-spacing:-14.064000px;}
.ws8_c00358{word-spacing:-13.704000px;}
.ws2_c00358{word-spacing:-13.680000px;}
.wsd_c00358{word-spacing:-13.512000px;}
.ws10_c00358{word-spacing:-13.440000px;}
.ws14_c00358{word-spacing:-13.380000px;}
.ws16_c00358{word-spacing:0.000000px;}
._1_c00358{margin-left:-2.821194px;}
._0_c00358{margin-left:-1.270201px;}
._2_c00358{width:1.088398px;}
._3_c00358{width:2.397592px;}
.fc0_c00358{color:rgb(0,0,0);}
.fs1_c00358{font-size:60.480000px;}
.fs0_c00358{font-size:72.000000px;}
.y0_c00358{bottom:0.000000px;}
.y22_c00358{bottom:12.589500px;}
.y1a_c00358{bottom:22.309500px;}
.y21_c00358{bottom:38.194500px;}
.y19_c00358{bottom:47.914500px;}
.y3_c00358{bottom:57.240000px;}
.y20_c00358{bottom:64.114500px;}
.y2_c00358{bottom:77.760000px;}
.y1f_c00358{bottom:90.034500px;}
.y18_c00358{bottom:94.714500px;}
.y1e_c00358{bottom:115.954500px;}
.y17_c00358{bottom:121.024500px;}
.y1d_c00358{bottom:141.904500px;}
.y4_c00358{bottom:143.320500px;}
.y16_c00358{bottom:146.584500px;}
.y1c_c00358{bottom:167.824500px;}
.y15_c00358{bottom:193.744500px;}
.y14_c00358{bottom:219.709500px;}
.y13_c00358{bottom:245.269500px;}
.y12_c00358{bottom:271.189500px;}
.y11_c00358{bottom:297.139500px;}
.y10_c00358{bottom:323.059500px;}
.yf_c00358{bottom:348.979500px;}
.ye_c00358{bottom:374.569500px;}
.y1b_c00358{bottom:374.929500px;}
.yd_c00358{bottom:400.849500px;}
.yc_c00358{bottom:426.409500px;}
.yb_c00358{bottom:452.329500px;}
.ya_c00358{bottom:478.294500px;}
.y9_c00358{bottom:504.214500px;}
.y8_c00358{bottom:530.134500px;}
.y7_c00358{bottom:556.084500px;}
.y6_c00358{bottom:582.004500px;}
.y5_c00358{bottom:607.924500px;}
.y1_c00358{bottom:823.650000px;}
.h4_c00358{height:59.357813px;}
.h5_c00358{height:60.952500px;}
.h2_c00358{height:64.546875px;}
.h6_c00358{height:70.664062px;}
.h3_c00358{height:621.225000px;}
.h1_c00358{height:892.500000px;}
.h0_c00358{height:892.800000px;}
.w2_c00358{width:352.890000px;}
.w3_c00358{width:352.905000px;}
.w0_c00358{width:1262.880000px;}
.w1_c00358{width:1263.000000px;}
.x0_c00358{left:0.000000px;}
.x4_c00358{left:7.546500px;}
.x3_c00358{left:98.689500px;}
.x1_c00358{left:106.236000px;}
.x5_c00358{left:452.310000px;}
.x2_c00358{left:617.940000px;}
.x6_c00358{left:805.950000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls23_c00358{letter-spacing:-1.546667pt;}
.ls1d_c00358{letter-spacing:-1.493333pt;}
.ls1b_c00358{letter-spacing:-1.429333pt;}
.lsf_c00358{letter-spacing:-1.280000pt;}
.ls17_c00358{letter-spacing:-1.258667pt;}
.ls18_c00358{letter-spacing:-0.938667pt;}
.ls21_c00358{letter-spacing:-0.928000pt;}
.ls22_c00358{letter-spacing:-0.832000pt;}
.ls1e_c00358{letter-spacing:-0.720000pt;}
.ls11_c00358{letter-spacing:-0.640000pt;}
.ls1c_c00358{letter-spacing:-0.473600pt;}
.ls14_c00358{letter-spacing:-0.268800pt;}
.ls1a_c00358{letter-spacing:-0.214933pt;}
.lsd_c00358{letter-spacing:0.000000pt;}
.ls9_c00358{letter-spacing:0.017920pt;}
.ls16_c00358{letter-spacing:0.018133pt;}
.ls6_c00358{letter-spacing:0.020267pt;}
.ls7_c00358{letter-spacing:0.043520pt;}
.lsb_c00358{letter-spacing:0.124587pt;}
.ls15_c00358{letter-spacing:0.148267pt;}
.lsc_c00358{letter-spacing:0.258560pt;}
.ls20_c00358{letter-spacing:0.258667pt;}
.ls5_c00358{letter-spacing:0.268800pt;}
.ls10_c00358{letter-spacing:0.278933pt;}
.lsa_c00358{letter-spacing:0.414720pt;}
.ls13_c00358{letter-spacing:0.414933pt;}
.ls12_c00358{letter-spacing:0.432533pt;}
.ls4_c00358{letter-spacing:0.460800pt;}
.ls3_c00358{letter-spacing:0.465920pt;}
.ls24_c00358{letter-spacing:0.470933pt;}
.ls1f_c00358{letter-spacing:0.483733pt;}
.ls19_c00358{letter-spacing:0.560000pt;}
.ls1_c00358{letter-spacing:0.618667pt;}
.lse_c00358{letter-spacing:0.624000pt;}
.ls0_c00358{letter-spacing:0.640000pt;}
.ls8_c00358{letter-spacing:0.746667pt;}
.ls2_c00358{letter-spacing:0.800000pt;}
.ws1_c00358{word-spacing:-14.064000pt;}
.wsb_c00358{word-spacing:-14.000000pt;}
.ws12_c00358{word-spacing:-13.923733pt;}
.ws15_c00358{word-spacing:-13.910933pt;}
.wsa_c00358{word-spacing:-13.900800pt;}
.ws4_c00358{word-spacing:-13.872533pt;}
.ws3_c00358{word-spacing:-13.718933pt;}
.ws13_c00358{word-spacing:-13.698667pt;}
.ws6_c00358{word-spacing:-13.588267pt;}
.ws7_c00358{word-spacing:-13.460267pt;}
.wsf_c00358{word-spacing:-13.458133pt;}
.ws0_c00358{word-spacing:-13.440000pt;}
.wsc_c00358{word-spacing:-13.225067pt;}
.ws5_c00358{word-spacing:-13.171200pt;}
.wse_c00358{word-spacing:-12.966400pt;}
.ws11_c00358{word-spacing:-12.720000pt;}
.ws9_c00358{word-spacing:-12.501333pt;}
.ws8_c00358{word-spacing:-12.181333pt;}
.ws2_c00358{word-spacing:-12.160000pt;}
.wsd_c00358{word-spacing:-12.010667pt;}
.ws10_c00358{word-spacing:-11.946667pt;}
.ws14_c00358{word-spacing:-11.893333pt;}
.ws16_c00358{word-spacing:0.000000pt;}
._1_c00358{margin-left:-2.507728pt;}
._0_c00358{margin-left:-1.129068pt;}
._2_c00358{width:0.967465pt;}
._3_c00358{width:2.131193pt;}
.fs1_c00358{font-size:53.760000pt;}
.fs0_c00358{font-size:64.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y22_c00358{bottom:11.190667pt;}
.y1a_c00358{bottom:19.830667pt;}
.y21_c00358{bottom:33.950667pt;}
.y19_c00358{bottom:42.590667pt;}
.y3_c00358{bottom:50.880000pt;}
.y20_c00358{bottom:56.990667pt;}
.y2_c00358{bottom:69.120000pt;}
.y1f_c00358{bottom:80.030667pt;}
.y18_c00358{bottom:84.190667pt;}
.y1e_c00358{bottom:103.070667pt;}
.y17_c00358{bottom:107.577333pt;}
.y1d_c00358{bottom:126.137333pt;}
.y4_c00358{bottom:127.396000pt;}
.y16_c00358{bottom:130.297333pt;}
.y1c_c00358{bottom:149.177333pt;}
.y15_c00358{bottom:172.217333pt;}
.y14_c00358{bottom:195.297333pt;}
.y13_c00358{bottom:218.017333pt;}
.y12_c00358{bottom:241.057333pt;}
.y11_c00358{bottom:264.124000pt;}
.y10_c00358{bottom:287.164000pt;}
.yf_c00358{bottom:310.204000pt;}
.ye_c00358{bottom:332.950667pt;}
.y1b_c00358{bottom:333.270667pt;}
.yd_c00358{bottom:356.310667pt;}
.yc_c00358{bottom:379.030667pt;}
.yb_c00358{bottom:402.070667pt;}
.ya_c00358{bottom:425.150667pt;}
.y9_c00358{bottom:448.190667pt;}
.y8_c00358{bottom:471.230667pt;}
.y7_c00358{bottom:494.297333pt;}
.y6_c00358{bottom:517.337333pt;}
.y5_c00358{bottom:540.377333pt;}
.y1_c00358{bottom:732.133333pt;}
.h4_c00358{height:52.762500pt;}
.h5_c00358{height:54.180000pt;}
.h2_c00358{height:57.375000pt;}
.h6_c00358{height:62.812500pt;}
.h3_c00358{height:552.200000pt;}
.h1_c00358{height:793.333333pt;}
.h0_c00358{height:793.600000pt;}
.w2_c00358{width:313.680000pt;}
.w3_c00358{width:313.693333pt;}
.w0_c00358{width:1122.560000pt;}
.w1_c00358{width:1122.666667pt;}
.x0_c00358{left:0.000000pt;}
.x4_c00358{left:6.708000pt;}
.x3_c00358{left:87.724000pt;}
.x1_c00358{left:94.432000pt;}
.x5_c00358{left:402.053333pt;}
.x2_c00358{left:549.280000pt;}
.x6_c00358{left:716.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_c00359 {
    display:none;
  }
  .loading-indicator_c00359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00359 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00359 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00359" -> "#page-container .classname_c00359")
 */
.pf_c00359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00359 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00359 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00359 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00359 {overflow:visible;}
  }
}
.c_c00359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00359 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00359:after { /* webkit #35443 */
  content: '';
}
.t_c00359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00359 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00359 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00359 { /* info for Javascript */
  display:none;
}
.l_c00359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00359:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00359;src:url('chunks/assets/font_1fa054792ab61e24af8f840f.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_81349dab58bf85d8f93fdb38.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_e38cb544dd224f7f81156bee.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_9fb58267ee1c4b3e4698f39a.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_99a9db00f3b7cb097035a1a8.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00359;src:url('chunks/assets/font_0cc7974dc5b9cb5df8af67d3.woff2')format("woff");}.ff6_c00359{font-family:ff6_c00359;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_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls19_c00359{letter-spacing:-1.752000px;}
.ls21_c00359{letter-spacing:-1.692000px;}
.ls1f_c00359{letter-spacing:-1.494000px;}
.lsc_c00359{letter-spacing:-1.422000px;}
.ls18_c00359{letter-spacing:-1.416000px;}
.ls12_c00359{letter-spacing:-1.128000px;}
.ls25_c00359{letter-spacing:-0.942000px;}
.ls17_c00359{letter-spacing:-0.720000px;}
.ls29_c00359{letter-spacing:-0.696000px;}
.ls1a_c00359{letter-spacing:-0.618000px;}
.ls14_c00359{letter-spacing:-0.532800px;}
.ls27_c00359{letter-spacing:-0.397200px;}
.ls26_c00359{letter-spacing:-0.319800px;}
.ls23_c00359{letter-spacing:-0.313800px;}
.lsf_c00359{letter-spacing:-0.302400px;}
.ls1c_c00359{letter-spacing:-0.253200px;}
.ls1b_c00359{letter-spacing:-0.219000px;}
.ls22_c00359{letter-spacing:-0.069000px;}
.ls10_c00359{letter-spacing:-0.011400px;}
.ls16_c00359{letter-spacing:-0.008400px;}
.lsb_c00359{letter-spacing:0.000000px;}
.ls15_c00359{letter-spacing:0.020400px;}
.ls6_c00359{letter-spacing:0.075000px;}
.ls24_c00359{letter-spacing:0.106800px;}
.ls2_c00359{letter-spacing:0.126720px;}
.ls1d_c00359{letter-spacing:0.147000px;}
.ls13_c00359{letter-spacing:0.166800px;}
.ls20_c00359{letter-spacing:0.184200px;}
.ls7_c00359{letter-spacing:0.273600px;}
.lsd_c00359{letter-spacing:0.313800px;}
.ls1e_c00359{letter-spacing:0.400200px;}
.ls5_c00359{letter-spacing:0.400320px;}
.ls4_c00359{letter-spacing:0.474240px;}
.lse_c00359{letter-spacing:0.486600px;}
.ls11_c00359{letter-spacing:0.521400px;}
.ls1_c00359{letter-spacing:0.524160px;}
.ls0_c00359{letter-spacing:0.720000px;}
.ls8_c00359{letter-spacing:0.840000px;}
.ls3_c00359{letter-spacing:0.900000px;}
.ls28_c00359{letter-spacing:1.044000px;}
.ls9_c00359{letter-spacing:6.480000px;}
.lsa_c00359{letter-spacing:6.660000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00359{word-spacing:-15.641400px;}
.ws2_c00359{word-spacing:-15.606600px;}
.ws1_c00359{word-spacing:-15.433800px;}
.ws7_c00359{word-spacing:-15.286800px;}
.ws0_c00359{word-spacing:-15.120000px;}
.ws9_c00359{word-spacing:-15.111600px;}
.ws4_c00359{word-spacing:-15.108600px;}
.ws3_c00359{word-spacing:-14.817600px;}
.ws16_c00359{word-spacing:-14.724000px;}
.ws8_c00359{word-spacing:-14.587200px;}
.wsf_c00359{word-spacing:-14.080200px;}
.ws6_c00359{word-spacing:-13.992000px;}
.wse_c00359{word-spacing:-13.827000px;}
.ws13_c00359{word-spacing:-13.786800px;}
.ws10_c00359{word-spacing:-13.755000px;}
.wsb_c00359{word-spacing:-13.680000px;}
.ws11_c00359{word-spacing:-13.611000px;}
.wsd_c00359{word-spacing:-13.461000px;}
.ws12_c00359{word-spacing:-13.366200px;}
.ws14_c00359{word-spacing:-13.360200px;}
.ws15_c00359{word-spacing:-13.282800px;}
.wsc_c00359{word-spacing:-13.062000px;}
.ws17_c00359{word-spacing:-12.984000px;}
.wsa_c00359{word-spacing:-11.928000px;}
.ws18_c00359{word-spacing:0.000000px;}
._1_c00359{margin-left:-1.814400px;}
._0_c00359{width:1.469280px;}
._2_c00359{width:5.706000px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs2_c00359{font-size:54.720000px;}
.fs1_c00359{font-size:60.480000px;}
.fs0_c00359{font-size:72.000000px;}
.y0_c00359{bottom:0.000000px;}
.y22_c00359{bottom:11.509500px;}
.ye_c00359{bottom:12.240000px;}
.y15_c00359{bottom:30.240000px;}
.y1f_c00359{bottom:34.234500px;}
.y21_c00359{bottom:34.594500px;}
.yd_c00359{bottom:38.190000px;}
.y3_c00359{bottom:57.240000px;}
.y1e_c00359{bottom:57.994500px;}
.yc_c00359{bottom:64.110000px;}
.y2_c00359{bottom:77.760000px;}
.y1d_c00359{bottom:81.394500px;}
.yb_c00359{bottom:90.030000px;}
.y20_c00359{bottom:104.074500px;}
.y1c_c00359{bottom:104.434500px;}
.ya_c00359{bottom:115.995000px;}
.y1b_c00359{bottom:127.864500px;}
.y9_c00359{bottom:141.915000px;}
.y16_c00359{bottom:144.760500px;}
.y1a_c00359{bottom:151.264500px;}
.y8_c00359{bottom:167.835000px;}
.y19_c00359{bottom:174.304500px;}
.y7_c00359{bottom:193.395000px;}
.y18_c00359{bottom:197.704500px;}
.y11_c00359{bottom:211.785000px;}
.y6_c00359{bottom:219.345000px;}
.y17_c00359{bottom:221.149500px;}
.y10_c00359{bottom:240.585000px;}
.y5_c00359{bottom:266.145000px;}
.yf_c00359{bottom:266.505000px;}
.y14_c00359{bottom:378.510000px;}
.y13_c00359{bottom:436.500000px;}
.y12_c00359{bottom:467.460000px;}
.y4_c00359{bottom:484.740000px;}
.y1_c00359{bottom:823.650000px;}
.h8_c00359{height:42.465000px;}
.hb_c00359{height:53.704687px;}
.h9_c00359{height:55.147500px;}
.h5_c00359{height:59.357813px;}
.h4_c00359{height:60.952500px;}
.h2_c00359{height:64.546875px;}
.h7_c00359{height:70.628906px;}
.h6_c00359{height:70.664062px;}
.ha_c00359{height:233.010000px;}
.h3_c00359{height:279.810000px;}
.h1_c00359{height:892.500000px;}
.h0_c00359{height:892.800000px;}
.w5_c00359{width:232.275000px;}
.w7_c00359{width:240.885000px;}
.w6_c00359{width:247.035000px;}
.w4_c00359{width:259.605000px;}
.w2_c00359{width:352.890000px;}
.w3_c00359{width:352.905000px;}
.w0_c00359{width:1262.880000px;}
.w1_c00359{width:1263.000000px;}
.x0_c00359{left:0.000000px;}
.x4_c00359{left:7.546500px;}
.x3_c00359{left:98.689500px;}
.x1_c00359{left:106.236000px;}
.x6_c00359{left:157.350000px;}
.x7_c00359{left:359.385000px;}
.x5_c00359{left:452.310000px;}
.x8_c00359{left:592.380000px;}
.x2_c00359{left:617.940000px;}
.x9_c00359{left:840.150000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls19_c00359{letter-spacing:-1.557333pt;}
.ls21_c00359{letter-spacing:-1.504000pt;}
.ls1f_c00359{letter-spacing:-1.328000pt;}
.lsc_c00359{letter-spacing:-1.264000pt;}
.ls18_c00359{letter-spacing:-1.258667pt;}
.ls12_c00359{letter-spacing:-1.002667pt;}
.ls25_c00359{letter-spacing:-0.837333pt;}
.ls17_c00359{letter-spacing:-0.640000pt;}
.ls29_c00359{letter-spacing:-0.618667pt;}
.ls1a_c00359{letter-spacing:-0.549333pt;}
.ls14_c00359{letter-spacing:-0.473600pt;}
.ls27_c00359{letter-spacing:-0.353067pt;}
.ls26_c00359{letter-spacing:-0.284267pt;}
.ls23_c00359{letter-spacing:-0.278933pt;}
.lsf_c00359{letter-spacing:-0.268800pt;}
.ls1c_c00359{letter-spacing:-0.225067pt;}
.ls1b_c00359{letter-spacing:-0.194667pt;}
.ls22_c00359{letter-spacing:-0.061333pt;}
.ls10_c00359{letter-spacing:-0.010133pt;}
.ls16_c00359{letter-spacing:-0.007467pt;}
.lsb_c00359{letter-spacing:0.000000pt;}
.ls15_c00359{letter-spacing:0.018133pt;}
.ls6_c00359{letter-spacing:0.066667pt;}
.ls24_c00359{letter-spacing:0.094933pt;}
.ls2_c00359{letter-spacing:0.112640pt;}
.ls1d_c00359{letter-spacing:0.130667pt;}
.ls13_c00359{letter-spacing:0.148267pt;}
.ls20_c00359{letter-spacing:0.163733pt;}
.ls7_c00359{letter-spacing:0.243200pt;}
.lsd_c00359{letter-spacing:0.278933pt;}
.ls1e_c00359{letter-spacing:0.355733pt;}
.ls5_c00359{letter-spacing:0.355840pt;}
.ls4_c00359{letter-spacing:0.421547pt;}
.lse_c00359{letter-spacing:0.432533pt;}
.ls11_c00359{letter-spacing:0.463467pt;}
.ls1_c00359{letter-spacing:0.465920pt;}
.ls0_c00359{letter-spacing:0.640000pt;}
.ls8_c00359{letter-spacing:0.746667pt;}
.ls3_c00359{letter-spacing:0.800000pt;}
.ls28_c00359{letter-spacing:0.928000pt;}
.ls9_c00359{letter-spacing:5.760000pt;}
.lsa_c00359{letter-spacing:5.920000pt;}
.ws5_c00359{word-spacing:-13.903467pt;}
.ws2_c00359{word-spacing:-13.872533pt;}
.ws1_c00359{word-spacing:-13.718933pt;}
.ws7_c00359{word-spacing:-13.588267pt;}
.ws0_c00359{word-spacing:-13.440000pt;}
.ws9_c00359{word-spacing:-13.432533pt;}
.ws4_c00359{word-spacing:-13.429867pt;}
.ws3_c00359{word-spacing:-13.171200pt;}
.ws16_c00359{word-spacing:-13.088000pt;}
.ws8_c00359{word-spacing:-12.966400pt;}
.wsf_c00359{word-spacing:-12.515733pt;}
.ws6_c00359{word-spacing:-12.437333pt;}
.wse_c00359{word-spacing:-12.290667pt;}
.ws13_c00359{word-spacing:-12.254933pt;}
.ws10_c00359{word-spacing:-12.226667pt;}
.wsb_c00359{word-spacing:-12.160000pt;}
.ws11_c00359{word-spacing:-12.098667pt;}
.wsd_c00359{word-spacing:-11.965333pt;}
.ws12_c00359{word-spacing:-11.881067pt;}
.ws14_c00359{word-spacing:-11.875733pt;}
.ws15_c00359{word-spacing:-11.806933pt;}
.wsc_c00359{word-spacing:-11.610667pt;}
.ws17_c00359{word-spacing:-11.541333pt;}
.wsa_c00359{word-spacing:-10.602667pt;}
.ws18_c00359{word-spacing:0.000000pt;}
._1_c00359{margin-left:-1.612800pt;}
._0_c00359{width:1.306027pt;}
._2_c00359{width:5.072000pt;}
.fs2_c00359{font-size:48.640000pt;}
.fs1_c00359{font-size:53.760000pt;}
.fs0_c00359{font-size:64.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y22_c00359{bottom:10.230667pt;}
.ye_c00359{bottom:10.880000pt;}
.y15_c00359{bottom:26.880000pt;}
.y1f_c00359{bottom:30.430667pt;}
.y21_c00359{bottom:30.750667pt;}
.yd_c00359{bottom:33.946667pt;}
.y3_c00359{bottom:50.880000pt;}
.y1e_c00359{bottom:51.550667pt;}
.yc_c00359{bottom:56.986667pt;}
.y2_c00359{bottom:69.120000pt;}
.y1d_c00359{bottom:72.350667pt;}
.yb_c00359{bottom:80.026667pt;}
.y20_c00359{bottom:92.510667pt;}
.y1c_c00359{bottom:92.830667pt;}
.ya_c00359{bottom:103.106667pt;}
.y1b_c00359{bottom:113.657333pt;}
.y9_c00359{bottom:126.146667pt;}
.y16_c00359{bottom:128.676000pt;}
.y1a_c00359{bottom:134.457333pt;}
.y8_c00359{bottom:149.186667pt;}
.y19_c00359{bottom:154.937333pt;}
.y7_c00359{bottom:171.906667pt;}
.y18_c00359{bottom:175.737333pt;}
.y11_c00359{bottom:188.253333pt;}
.y6_c00359{bottom:194.973333pt;}
.y17_c00359{bottom:196.577333pt;}
.y10_c00359{bottom:213.853333pt;}
.y5_c00359{bottom:236.573333pt;}
.yf_c00359{bottom:236.893333pt;}
.y14_c00359{bottom:336.453333pt;}
.y13_c00359{bottom:388.000000pt;}
.y12_c00359{bottom:415.520000pt;}
.y4_c00359{bottom:430.880000pt;}
.y1_c00359{bottom:732.133333pt;}
.h8_c00359{height:37.746667pt;}
.hb_c00359{height:47.737500pt;}
.h9_c00359{height:49.020000pt;}
.h5_c00359{height:52.762500pt;}
.h4_c00359{height:54.180000pt;}
.h2_c00359{height:57.375000pt;}
.h7_c00359{height:62.781250pt;}
.h6_c00359{height:62.812500pt;}
.ha_c00359{height:207.120000pt;}
.h3_c00359{height:248.720000pt;}
.h1_c00359{height:793.333333pt;}
.h0_c00359{height:793.600000pt;}
.w5_c00359{width:206.466667pt;}
.w7_c00359{width:214.120000pt;}
.w6_c00359{width:219.586667pt;}
.w4_c00359{width:230.760000pt;}
.w2_c00359{width:313.680000pt;}
.w3_c00359{width:313.693333pt;}
.w0_c00359{width:1122.560000pt;}
.w1_c00359{width:1122.666667pt;}
.x0_c00359{left:0.000000pt;}
.x4_c00359{left:6.708000pt;}
.x3_c00359{left:87.724000pt;}
.x1_c00359{left:94.432000pt;}
.x6_c00359{left:139.866667pt;}
.x7_c00359{left:319.453333pt;}
.x5_c00359{left:402.053333pt;}
.x8_c00359{left:526.560000pt;}
.x2_c00359{left:549.280000pt;}
.x9_c00359{left:746.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_c00360 {
    display:none;
  }
  .loading-indicator_c00360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00360 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00360 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00360" -> "#page-container .classname_c00360")
 */
.pf_c00360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00360 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00360 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00360 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00360 {overflow:visible;}
  }
}
.c_c00360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00360 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00360:after { /* webkit #35443 */
  content: '';
}
.t_c00360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00360 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00360 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00360 { /* info for Javascript */
  display:none;
}
.l_c00360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00360:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00360;src:url('chunks/assets/font_be279a957b2617993ac8e4fe.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_cd8f48518100d9db06af0d02.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_5e5d51b5c2061dc5bf4e1928.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00360;src:url('chunks/assets/font_59accc86c573aa9c81ddd242.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00360;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00360{font-family:ff5_c00360;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00360;src:url('chunks/assets/font_272e42dfb8a275323dfa7707.woff2')format("woff");}.ff6_c00360{font-family:ff6_c00360;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_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls4_c00360{letter-spacing:-1.386000px;}
.ls5_c00360{letter-spacing:-0.720000px;}
.ls8_c00360{letter-spacing:-0.397200px;}
.ls7_c00360{letter-spacing:-0.313800px;}
.ls9_c00360{letter-spacing:-0.273600px;}
.ls6_c00360{letter-spacing:-0.253200px;}
.ls3_c00360{letter-spacing:0.000000px;}
.ls0_c00360{letter-spacing:0.720000px;}
.ls1_c00360{letter-spacing:0.840000px;}
.ls2_c00360{letter-spacing:0.900000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00360{word-spacing:-54.720000px;}
.ws5_c00360{word-spacing:-15.120000px;}
.ws1_c00360{word-spacing:-13.680000px;}
.ws2_c00360{word-spacing:-13.426800px;}
.ws6_c00360{word-spacing:-13.406400px;}
.ws3_c00360{word-spacing:-13.366200px;}
.ws4_c00360{word-spacing:-13.282800px;}
.ws7_c00360{word-spacing:0.000000px;}
._0_c00360{margin-left:-2.243411px;}
._2_c00360{margin-left:-1.031368px;}
._1_c00360{width:1.816320px;}
.fc0_c00360{color:rgb(0,0,0);}
.fs1_c00360{font-size:54.720000px;}
.fs2_c00360{font-size:60.480000px;}
.fs0_c00360{font-size:72.000000px;}
.y0_c00360{bottom:0.000000px;}
.y1a_c00360{bottom:11.505000px;}
.y19_c00360{bottom:34.935000px;}
.y3_c00360{bottom:57.240000px;}
.y18_c00360{bottom:59.055000px;}
.y2_c00360{bottom:77.760000px;}
.y17_c00360{bottom:84.975000px;}
.y16_c00360{bottom:109.860000px;}
.y15_c00360{bottom:133.260000px;}
.y14_c00360{bottom:156.300000px;}
.y13_c00360{bottom:179.700000px;}
.y12_c00360{bottom:203.130000px;}
.y11_c00360{bottom:226.170000px;}
.y4_c00360{bottom:246.690000px;}
.y10_c00360{bottom:249.570000px;}
.yf_c00360{bottom:273.000000px;}
.ye_c00360{bottom:296.040000px;}
.yd_c00360{bottom:319.440000px;}
.yc_c00360{bottom:342.840000px;}
.yb_c00360{bottom:365.925000px;}
.ya_c00360{bottom:389.325000px;}
.y9_c00360{bottom:412.725000px;}
.y8_c00360{bottom:435.765000px;}
.y7_c00360{bottom:459.195000px;}
.y6_c00360{bottom:482.595000px;}
.y5_c00360{bottom:505.995000px;}
.y1_c00360{bottom:823.650000px;}
.h5_c00360{height:53.704687px;}
.h6_c00360{height:54.219375px;}
.h4_c00360{height:55.147500px;}
.h2_c00360{height:64.546875px;}
.h3_c00360{height:517.860000px;}
.h1_c00360{height:892.500000px;}
.h0_c00360{height:892.800000px;}
.w2_c00360{width:247.035000px;}
.w0_c00360{width:1262.880000px;}
.w1_c00360{width:1263.000000px;}
.x0_c00360{left:0.000000px;}
.x4_c00360{left:7.560000px;}
.x1_c00360{left:106.236000px;}
.x3_c00360{left:592.380000px;}
.x2_c00360{left:617.940000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls4_c00360{letter-spacing:-1.232000pt;}
.ls5_c00360{letter-spacing:-0.640000pt;}
.ls8_c00360{letter-spacing:-0.353067pt;}
.ls7_c00360{letter-spacing:-0.278933pt;}
.ls9_c00360{letter-spacing:-0.243200pt;}
.ls6_c00360{letter-spacing:-0.225067pt;}
.ls3_c00360{letter-spacing:0.000000pt;}
.ls0_c00360{letter-spacing:0.640000pt;}
.ls1_c00360{letter-spacing:0.746667pt;}
.ls2_c00360{letter-spacing:0.800000pt;}
.ws0_c00360{word-spacing:-48.640000pt;}
.ws5_c00360{word-spacing:-13.440000pt;}
.ws1_c00360{word-spacing:-12.160000pt;}
.ws2_c00360{word-spacing:-11.934933pt;}
.ws6_c00360{word-spacing:-11.916800pt;}
.ws3_c00360{word-spacing:-11.881067pt;}
.ws4_c00360{word-spacing:-11.806933pt;}
.ws7_c00360{word-spacing:0.000000pt;}
._0_c00360{margin-left:-1.994143pt;}
._2_c00360{margin-left:-0.916772pt;}
._1_c00360{width:1.614507pt;}
.fs1_c00360{font-size:48.640000pt;}
.fs2_c00360{font-size:53.760000pt;}
.fs0_c00360{font-size:64.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y1a_c00360{bottom:10.226667pt;}
.y19_c00360{bottom:31.053333pt;}
.y3_c00360{bottom:50.880000pt;}
.y18_c00360{bottom:52.493333pt;}
.y2_c00360{bottom:69.120000pt;}
.y17_c00360{bottom:75.533333pt;}
.y16_c00360{bottom:97.653333pt;}
.y15_c00360{bottom:118.453333pt;}
.y14_c00360{bottom:138.933333pt;}
.y13_c00360{bottom:159.733333pt;}
.y12_c00360{bottom:180.560000pt;}
.y11_c00360{bottom:201.040000pt;}
.y4_c00360{bottom:219.280000pt;}
.y10_c00360{bottom:221.840000pt;}
.yf_c00360{bottom:242.666667pt;}
.ye_c00360{bottom:263.146667pt;}
.yd_c00360{bottom:283.946667pt;}
.yc_c00360{bottom:304.746667pt;}
.yb_c00360{bottom:325.266667pt;}
.ya_c00360{bottom:346.066667pt;}
.y9_c00360{bottom:366.866667pt;}
.y8_c00360{bottom:387.346667pt;}
.y7_c00360{bottom:408.173333pt;}
.y6_c00360{bottom:428.973333pt;}
.y5_c00360{bottom:449.773333pt;}
.y1_c00360{bottom:732.133333pt;}
.h5_c00360{height:47.737500pt;}
.h6_c00360{height:48.195000pt;}
.h4_c00360{height:49.020000pt;}
.h2_c00360{height:57.375000pt;}
.h3_c00360{height:460.320000pt;}
.h1_c00360{height:793.333333pt;}
.h0_c00360{height:793.600000pt;}
.w2_c00360{width:219.586667pt;}
.w0_c00360{width:1122.560000pt;}
.w1_c00360{width:1122.666667pt;}
.x0_c00360{left:0.000000pt;}
.x4_c00360{left:6.720000pt;}
.x1_c00360{left:94.432000pt;}
.x3_c00360{left:526.560000pt;}
.x2_c00360{left:549.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_c00361 {
    display:none;
  }
  .loading-indicator_c00361.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00361 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00361 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00361" -> "#page-container .classname_c00361")
 */
.pf_c00361 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00361 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00361 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00361 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00361 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00361 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00361 {overflow:visible;}
  }
}
.c_c00361 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00361 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00361:after { /* webkit #35443 */
  content: '';
}
.t_c00361:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00361 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00361 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00361 { /* info for Javascript */
  display:none;
}
.l_c00361 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00361 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00361 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00361:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00361;src:url('chunks/assets/font_290c6996a6663bbf604ac516.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_2c5593c48ef5b42e757b78f8.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_50073721c02688dc1f812e3c.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_87a87e3c1c084f2cec40d5cb.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00361;src:url('chunks/assets/font_19c2e30a57cda9136a85267e.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00361;src:url('chunks/assets/font_5a5f9a2d01e4e7b4ad3b017e.woff2')format("woff");}.ff6_c00361{font-family:ff6_c00361;line-height:1.104004;font-style:normal;font-weight: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_c00361;src:url('chunks/assets/font_5a4c3831117a09ea1094c641.woff2')format("woff");}.ff7_c00361{font-family:ff7_c00361;line-height:1.112305;font-style:normal;font-weight: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_c00361;src:url('chunks/assets/font_a87c66c8e7f9421284ac1754.woff2')format("woff");}.ff8_c00361{font-family:ff8_c00361;line-height:1.117188;font-style:normal;font-weight: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_c00361;src:url('chunks/assets/font_01c92e72b6222c03e691487d.woff2')format("woff");}.ff9_c00361{font-family:ff9_c00361;line-height:0.939941;font-style:normal;font-weight: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_c00361;src:url('chunks/assets/font_81aec8e0ec8b09518947bff8.woff2')format("woff");}.ffa_c00361{font-family:ffa_c00361;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls19_c00361{letter-spacing:-1.440000px;}
.ls1c_c00361{letter-spacing:-1.416000px;}
.ls1a_c00361{letter-spacing:-0.912000px;}
.ls21_c00361{letter-spacing:-0.738000px;}
.ls22_c00361{letter-spacing:-0.521400px;}
.ls1f_c00361{letter-spacing:-0.302400px;}
.ls1b_c00361{letter-spacing:-0.241800px;}
.ls17_c00361{letter-spacing:0.000000px;}
.ls25_c00361{letter-spacing:0.022800px;}
.ls3_c00361{letter-spacing:0.048960px;}
.ls18_c00361{letter-spacing:0.144000px;}
.lsc_c00361{letter-spacing:0.167040px;}
.lsb_c00361{letter-spacing:0.168480px;}
.ls15_c00361{letter-spacing:0.207360px;}
.lse_c00361{letter-spacing:0.290880px;}
.ls7_c00361{letter-spacing:0.302400px;}
.ls11_c00361{letter-spacing:0.313920px;}
.ls23_c00361{letter-spacing:0.325200px;}
.ls1d_c00361{letter-spacing:0.385800px;}
.ls16_c00361{letter-spacing:0.422400px;}
.ls24_c00361{letter-spacing:0.466800px;}
.ls20_c00361{letter-spacing:0.507000px;}
.ls8_c00361{letter-spacing:0.518400px;}
.ls5_c00361{letter-spacing:0.524160px;}
.ls1e_c00361{letter-spacing:0.529800px;}
.ls10_c00361{letter-spacing:0.702720px;}
.ls0_c00361{letter-spacing:0.720000px;}
.ls1_c00361{letter-spacing:0.740352px;}
.ls4_c00361{letter-spacing:2.160000px;}
.lsd_c00361{letter-spacing:3.600000px;}
.lsa_c00361{letter-spacing:5.028480px;}
.ls2_c00361{letter-spacing:5.040000px;}
.ls6_c00361{letter-spacing:6.468480px;}
.ls9_c00361{letter-spacing:6.480000px;}
.ls14_c00361{letter-spacing:7.920000px;}
.ls12_c00361{letter-spacing:9.360000px;}
.ls13_c00361{letter-spacing:9.365881px;}
.lsf_c00361{letter-spacing:20.880000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:-72.000000px;}
.ws5_c00361{word-spacing:-60.480000px;}
.ws1_c00361{word-spacing:-18.000000px;}
.ws9_c00361{word-spacing:-15.627000px;}
.ws7_c00361{word-spacing:-15.505800px;}
.wsc_c00361{word-spacing:-15.445200px;}
.ws2_c00361{word-spacing:-15.120000px;}
.ws4_c00361{word-spacing:-14.878200px;}
.ws8_c00361{word-spacing:-14.817600px;}
.wsb_c00361{word-spacing:-14.598600px;}
.wsa_c00361{word-spacing:-14.382000px;}
.ws6_c00361{word-spacing:-13.704000px;}
.ws3_c00361{word-spacing:-13.680000px;}
.wsd_c00361{word-spacing:0.000000px;}
._3_c00361{margin-left:-2.484000px;}
._1_c00361{margin-left:-1.440000px;}
._0_c00361{width:1.296000px;}
._2_c00361{width:2.640000px;}
._4_c00361{width:4.080000px;}
._8_c00361{width:5.544000px;}
._9_c00361{width:7.380000px;}
._a_c00361{width:8.748000px;}
._b_c00361{width:9.849600px;}
._6_c00361{width:11.188800px;}
._7_c00361{width:12.579598px;}
._5_c00361{width:13.596601px;}
._f_c00361{width:20.744398px;}
._e_c00361{width:22.320000px;}
._c_c00361{width:23.508000px;}
._d_c00361{width:25.296000px;}
.fc0_c00361{color:rgb(0,0,0);}
.fs3_c00361{font-size:38.880000px;}
.fs2_c00361{font-size:47.520000px;}
.fs1_c00361{font-size:60.480000px;}
.fs0_c00361{font-size:72.000000px;}
.y0_c00361{bottom:0.000000px;}
.y3_c00361{bottom:57.996000px;}
.y2_c00361{bottom:78.876000px;}
.y27_c00361{bottom:130.716000px;}
.y26_c00361{bottom:147.996000px;}
.y25_c00361{bottom:165.315000px;}
.y24_c00361{bottom:182.595000px;}
.y23_c00361{bottom:199.515000px;}
.y22_c00361{bottom:216.795000px;}
.y21_c00361{bottom:234.075000px;}
.y20_c00361{bottom:251.355000px;}
.y1f_c00361{bottom:258.195000px;}
.y1e_c00361{bottom:269.355000px;}
.y1d_c00361{bottom:316.905000px;}
.y1c_c00361{bottom:347.865000px;}
.y1b_c00361{bottom:379.185000px;}
.y1a_c00361{bottom:410.190000px;}
.y19_c00361{bottom:441.150000px;}
.y17_c00361{bottom:472.110000px;}
.y18_c00361{bottom:480.390000px;}
.y16_c00361{bottom:503.430000px;}
.y15_c00361{bottom:534.420000px;}
.y14_c00361{bottom:565.380000px;}
.y13_c00361{bottom:596.340000px;}
.y12_c00361{bottom:627.660000px;}
.y11_c00361{bottom:658.650000px;}
.y10_c00361{bottom:687.450000px;}
.yf_c00361{bottom:713.370000px;}
.ye_c00361{bottom:738.930000px;}
.yd_c00361{bottom:764.895000px;}
.yc_c00361{bottom:790.815000px;}
.yb_c00361{bottom:825.735000px;}
.ya_c00361{bottom:851.655000px;}
.y9_c00361{bottom:877.575000px;}
.y8_c00361{bottom:903.525000px;}
.y7_c00361{bottom:929.445000px;}
.y6_c00361{bottom:955.005000px;}
.y5_c00361{bottom:1004.325000px;}
.y4_c00361{bottom:1056.570000px;}
.y1_c00361{bottom:1117.770000px;}
.h8_c00361{height:34.855313px;}
.h7_c00361{height:46.638281px;}
.h9_c00361{height:54.219375px;}
.ha_c00361{height:54.514688px;}
.h5_c00361{height:59.328281px;}
.h4_c00361{height:59.357813px;}
.h1_c00361{height:64.546875px;}
.h2_c00361{height:70.628906px;}
.h3_c00361{height:70.664062px;}
.h6_c00361{height:1187.995500px;}
.h0_c00361{height:1188.000000px;}
.w1_c00361{width:917.997000px;}
.w0_c00361{width:918.000000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:127.476000px;}
.x8_c00361{left:142.596000px;}
.x4_c00361{left:169.995000px;}
.x3_c00361{left:180.795000px;}
.x7_c00361{left:343.590000px;}
.x2_c00361{left:445.500000px;}
.x5_c00361{left:458.097000px;}
.x6_c00361{left:476.460000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls19_c00361{letter-spacing:-1.280000pt;}
.ls1c_c00361{letter-spacing:-1.258667pt;}
.ls1a_c00361{letter-spacing:-0.810667pt;}
.ls21_c00361{letter-spacing:-0.656000pt;}
.ls22_c00361{letter-spacing:-0.463467pt;}
.ls1f_c00361{letter-spacing:-0.268800pt;}
.ls1b_c00361{letter-spacing:-0.214933pt;}
.ls17_c00361{letter-spacing:0.000000pt;}
.ls25_c00361{letter-spacing:0.020267pt;}
.ls3_c00361{letter-spacing:0.043520pt;}
.ls18_c00361{letter-spacing:0.128000pt;}
.lsc_c00361{letter-spacing:0.148480pt;}
.lsb_c00361{letter-spacing:0.149760pt;}
.ls15_c00361{letter-spacing:0.184320pt;}
.lse_c00361{letter-spacing:0.258560pt;}
.ls7_c00361{letter-spacing:0.268800pt;}
.ls11_c00361{letter-spacing:0.279040pt;}
.ls23_c00361{letter-spacing:0.289067pt;}
.ls1d_c00361{letter-spacing:0.342933pt;}
.ls16_c00361{letter-spacing:0.375467pt;}
.ls24_c00361{letter-spacing:0.414933pt;}
.ls20_c00361{letter-spacing:0.450667pt;}
.ls8_c00361{letter-spacing:0.460800pt;}
.ls5_c00361{letter-spacing:0.465920pt;}
.ls1e_c00361{letter-spacing:0.470933pt;}
.ls10_c00361{letter-spacing:0.624640pt;}
.ls0_c00361{letter-spacing:0.640000pt;}
.ls1_c00361{letter-spacing:0.658091pt;}
.ls4_c00361{letter-spacing:1.920000pt;}
.lsd_c00361{letter-spacing:3.200000pt;}
.lsa_c00361{letter-spacing:4.469760pt;}
.ls2_c00361{letter-spacing:4.480000pt;}
.ls6_c00361{letter-spacing:5.749760pt;}
.ls9_c00361{letter-spacing:5.760000pt;}
.ls14_c00361{letter-spacing:7.040000pt;}
.ls12_c00361{letter-spacing:8.320000pt;}
.ls13_c00361{letter-spacing:8.325228pt;}
.lsf_c00361{letter-spacing:18.560000pt;}
.ws0_c00361{word-spacing:-64.000000pt;}
.ws5_c00361{word-spacing:-53.760000pt;}
.ws1_c00361{word-spacing:-16.000000pt;}
.ws9_c00361{word-spacing:-13.890667pt;}
.ws7_c00361{word-spacing:-13.782933pt;}
.wsc_c00361{word-spacing:-13.729067pt;}
.ws2_c00361{word-spacing:-13.440000pt;}
.ws4_c00361{word-spacing:-13.225067pt;}
.ws8_c00361{word-spacing:-13.171200pt;}
.wsb_c00361{word-spacing:-12.976533pt;}
.wsa_c00361{word-spacing:-12.784000pt;}
.ws6_c00361{word-spacing:-12.181333pt;}
.ws3_c00361{word-spacing:-12.160000pt;}
.wsd_c00361{word-spacing:0.000000pt;}
._3_c00361{margin-left:-2.208000pt;}
._1_c00361{margin-left:-1.280000pt;}
._0_c00361{width:1.152000pt;}
._2_c00361{width:2.346667pt;}
._4_c00361{width:3.626667pt;}
._8_c00361{width:4.928000pt;}
._9_c00361{width:6.560000pt;}
._a_c00361{width:7.776000pt;}
._b_c00361{width:8.755200pt;}
._6_c00361{width:9.945600pt;}
._7_c00361{width:11.181865pt;}
._5_c00361{width:12.085868pt;}
._f_c00361{width:18.439465pt;}
._e_c00361{width:19.840000pt;}
._c_c00361{width:20.896000pt;}
._d_c00361{width:22.485333pt;}
.fs3_c00361{font-size:34.560000pt;}
.fs2_c00361{font-size:42.240000pt;}
.fs1_c00361{font-size:53.760000pt;}
.fs0_c00361{font-size:64.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y3_c00361{bottom:51.552000pt;}
.y2_c00361{bottom:70.112000pt;}
.y27_c00361{bottom:116.192000pt;}
.y26_c00361{bottom:131.552000pt;}
.y25_c00361{bottom:146.946667pt;}
.y24_c00361{bottom:162.306667pt;}
.y23_c00361{bottom:177.346667pt;}
.y22_c00361{bottom:192.706667pt;}
.y21_c00361{bottom:208.066667pt;}
.y20_c00361{bottom:223.426667pt;}
.y1f_c00361{bottom:229.506667pt;}
.y1e_c00361{bottom:239.426667pt;}
.y1d_c00361{bottom:281.693333pt;}
.y1c_c00361{bottom:309.213333pt;}
.y1b_c00361{bottom:337.053333pt;}
.y1a_c00361{bottom:364.613333pt;}
.y19_c00361{bottom:392.133333pt;}
.y17_c00361{bottom:419.653333pt;}
.y18_c00361{bottom:427.013333pt;}
.y16_c00361{bottom:447.493333pt;}
.y15_c00361{bottom:475.040000pt;}
.y14_c00361{bottom:502.560000pt;}
.y13_c00361{bottom:530.080000pt;}
.y12_c00361{bottom:557.920000pt;}
.y11_c00361{bottom:585.466667pt;}
.y10_c00361{bottom:611.066667pt;}
.yf_c00361{bottom:634.106667pt;}
.ye_c00361{bottom:656.826667pt;}
.yd_c00361{bottom:679.906667pt;}
.yc_c00361{bottom:702.946667pt;}
.yb_c00361{bottom:733.986667pt;}
.ya_c00361{bottom:757.026667pt;}
.y9_c00361{bottom:780.066667pt;}
.y8_c00361{bottom:803.133333pt;}
.y7_c00361{bottom:826.173333pt;}
.y6_c00361{bottom:848.893333pt;}
.y5_c00361{bottom:892.733333pt;}
.y4_c00361{bottom:939.173333pt;}
.y1_c00361{bottom:993.573333pt;}
.h8_c00361{height:30.982500pt;}
.h7_c00361{height:41.456250pt;}
.h9_c00361{height:48.195000pt;}
.ha_c00361{height:48.457500pt;}
.h5_c00361{height:52.736250pt;}
.h4_c00361{height:52.762500pt;}
.h1_c00361{height:57.375000pt;}
.h2_c00361{height:62.781250pt;}
.h3_c00361{height:62.812500pt;}
.h6_c00361{height:1055.996000pt;}
.h0_c00361{height:1056.000000pt;}
.w1_c00361{width:815.997333pt;}
.w0_c00361{width:816.000000pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:113.312000pt;}
.x8_c00361{left:126.752000pt;}
.x4_c00361{left:151.106667pt;}
.x3_c00361{left:160.706667pt;}
.x7_c00361{left:305.413333pt;}
.x2_c00361{left:396.000000pt;}
.x5_c00361{left:407.197333pt;}
.x6_c00361{left:423.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_c00362 {
    display:none;
  }
  .loading-indicator_c00362.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00362 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00362 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00362" -> "#page-container .classname_c00362")
 */
.pf_c00362 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00362 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00362 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00362 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00362 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00362 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00362 {overflow:visible;}
  }
}
.c_c00362 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00362 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00362:after { /* webkit #35443 */
  content: '';
}
.t_c00362:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00362 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00362 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00362 { /* info for Javascript */
  display:none;
}
.l_c00362 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00362 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00362 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00362:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00362;src:url('chunks/assets/font_96c260198cdf393b6f523c6a.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_b04306cda0c48a445ff4fa27.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_a6a42748c1dcc6ce76bb9ce2.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_8b83de45297be2d52f729f80.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_5f884aef5db99e61faffe450.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;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_c00362;src:url('chunks/assets/font_4b748cdca4be46f5d1fa8d53.woff2')format("woff");}.ff6_c00362{font-family:ff6_c00362;line-height:1.104004;font-style:normal;font-weight: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_c00362;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00362{font-family:ff7_c00362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls9_c00362{letter-spacing:-0.241800px;}
.ls6_c00362{letter-spacing:0.000000px;}
.ls8_c00362{letter-spacing:0.486600px;}
.ls5_c00362{letter-spacing:0.506880px;}
.ls1_c00362{letter-spacing:0.708607px;}
.ls0_c00362{letter-spacing:0.720000px;}
.ls7_c00362{letter-spacing:2.088000px;}
.ls2_c00362{letter-spacing:7.920000px;}
.ls4_c00362{letter-spacing:15.120000px;}
.ls3_c00362{letter-spacing:15.240000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00362{word-spacing:-72.000000px;}
.ws5_c00362{word-spacing:-60.480000px;}
.ws1_c00362{word-spacing:-20.088000px;}
.ws2_c00362{word-spacing:-18.000000px;}
.ws3_c00362{word-spacing:-15.606600px;}
.ws4_c00362{word-spacing:-15.120000px;}
.ws6_c00362{word-spacing:0.000000px;}
._7_c00362{margin-left:-3.528000px;}
._4_c00362{margin-left:-2.232000px;}
._1_c00362{margin-left:-1.224000px;}
._0_c00362{width:1.368000px;}
._8_c00362{width:3.240000px;}
._2_c00362{width:4.968000px;}
._3_c00362{width:6.624000px;}
._c_c00362{width:7.632000px;}
._b_c00362{width:9.000000px;}
._9_c00362{width:10.800000px;}
._a_c00362{width:12.672000px;}
._11_c00362{width:13.968000px;}
._d_c00362{width:15.336000px;}
._e_c00362{width:16.488000px;}
._6_c00362{width:19.656000px;}
._5_c00362{width:21.312000px;}
._f_c00362{width:23.988000px;}
._10_c00362{width:25.308000px;}
.fc0_c00362{color:rgb(0,0,0);}
.fs3_c00362{font-size:38.880000px;}
.fs2_c00362{font-size:47.520000px;}
.fs1_c00362{font-size:60.480000px;}
.fs0_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y3_c00362{bottom:57.996000px;}
.y2_c00362{bottom:78.876000px;}
.y22_c00362{bottom:130.716000px;}
.y21_c00362{bottom:147.996000px;}
.y20_c00362{bottom:165.315000px;}
.y1f_c00362{bottom:182.595000px;}
.y1e_c00362{bottom:189.435000px;}
.y1d_c00362{bottom:200.235000px;}
.y1c_c00362{bottom:315.465000px;}
.y1b_c00362{bottom:346.785000px;}
.y1a_c00362{bottom:377.745000px;}
.y19_c00362{bottom:408.750000px;}
.y17_c00362{bottom:439.710000px;}
.y18_c00362{bottom:447.990000px;}
.y16_c00362{bottom:471.030000px;}
.y15_c00362{bottom:501.990000px;}
.y14_c00362{bottom:532.980000px;}
.y13_c00362{bottom:563.940000px;}
.y12_c00362{bottom:595.260000px;}
.y11_c00362{bottom:626.220000px;}
.y10_c00362{bottom:657.210000px;}
.yf_c00362{bottom:688.170000px;}
.ye_c00362{bottom:719.490000px;}
.yd_c00362{bottom:747.930000px;}
.yc_c00362{bottom:782.895000px;}
.yb_c00362{bottom:808.815000px;}
.ya_c00362{bottom:858.135000px;}
.y9_c00362{bottom:910.005000px;}
.y8_c00362{bottom:941.325000px;}
.y7_c00362{bottom:972.285000px;}
.y6_c00362{bottom:1003.245000px;}
.y5_c00362{bottom:1034.250000px;}
.y4_c00362{bottom:1065.570000px;}
.y1_c00362{bottom:1117.770000px;}
.h8_c00362{height:34.855313px;}
.h7_c00362{height:46.638281px;}
.h5_c00362{height:59.328281px;}
.h3_c00362{height:59.357813px;}
.h4_c00362{height:60.952500px;}
.h1_c00362{height:64.546875px;}
.h2_c00362{height:70.664062px;}
.h6_c00362{height:1187.995500px;}
.h0_c00362{height:1188.000000px;}
.w1_c00362{width:917.997000px;}
.w0_c00362{width:918.000000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:127.476000px;}
.x7_c00362{left:142.596000px;}
.x3_c00362{left:169.995000px;}
.x4_c00362{left:225.072000px;}
.x5_c00362{left:243.465000px;}
.x6_c00362{left:343.590000px;}
.x2_c00362{left:445.500000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls9_c00362{letter-spacing:-0.214933pt;}
.ls6_c00362{letter-spacing:0.000000pt;}
.ls8_c00362{letter-spacing:0.432533pt;}
.ls5_c00362{letter-spacing:0.450560pt;}
.ls1_c00362{letter-spacing:0.629873pt;}
.ls0_c00362{letter-spacing:0.640000pt;}
.ls7_c00362{letter-spacing:1.856000pt;}
.ls2_c00362{letter-spacing:7.040000pt;}
.ls4_c00362{letter-spacing:13.440000pt;}
.ls3_c00362{letter-spacing:13.546667pt;}
.ws0_c00362{word-spacing:-64.000000pt;}
.ws5_c00362{word-spacing:-53.760000pt;}
.ws1_c00362{word-spacing:-17.856000pt;}
.ws2_c00362{word-spacing:-16.000000pt;}
.ws3_c00362{word-spacing:-13.872533pt;}
.ws4_c00362{word-spacing:-13.440000pt;}
.ws6_c00362{word-spacing:0.000000pt;}
._7_c00362{margin-left:-3.136000pt;}
._4_c00362{margin-left:-1.984000pt;}
._1_c00362{margin-left:-1.088000pt;}
._0_c00362{width:1.216000pt;}
._8_c00362{width:2.880000pt;}
._2_c00362{width:4.416000pt;}
._3_c00362{width:5.888000pt;}
._c_c00362{width:6.784000pt;}
._b_c00362{width:8.000000pt;}
._9_c00362{width:9.600000pt;}
._a_c00362{width:11.264000pt;}
._11_c00362{width:12.416000pt;}
._d_c00362{width:13.632000pt;}
._e_c00362{width:14.656000pt;}
._6_c00362{width:17.472000pt;}
._5_c00362{width:18.944000pt;}
._f_c00362{width:21.322667pt;}
._10_c00362{width:22.496000pt;}
.fs3_c00362{font-size:34.560000pt;}
.fs2_c00362{font-size:42.240000pt;}
.fs1_c00362{font-size:53.760000pt;}
.fs0_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y3_c00362{bottom:51.552000pt;}
.y2_c00362{bottom:70.112000pt;}
.y22_c00362{bottom:116.192000pt;}
.y21_c00362{bottom:131.552000pt;}
.y20_c00362{bottom:146.946667pt;}
.y1f_c00362{bottom:162.306667pt;}
.y1e_c00362{bottom:168.386667pt;}
.y1d_c00362{bottom:177.986667pt;}
.y1c_c00362{bottom:280.413333pt;}
.y1b_c00362{bottom:308.253333pt;}
.y1a_c00362{bottom:335.773333pt;}
.y19_c00362{bottom:363.333333pt;}
.y17_c00362{bottom:390.853333pt;}
.y18_c00362{bottom:398.213333pt;}
.y16_c00362{bottom:418.693333pt;}
.y15_c00362{bottom:446.213333pt;}
.y14_c00362{bottom:473.760000pt;}
.y13_c00362{bottom:501.280000pt;}
.y12_c00362{bottom:529.120000pt;}
.y11_c00362{bottom:556.640000pt;}
.y10_c00362{bottom:584.186667pt;}
.yf_c00362{bottom:611.706667pt;}
.ye_c00362{bottom:639.546667pt;}
.yd_c00362{bottom:664.826667pt;}
.yc_c00362{bottom:695.906667pt;}
.yb_c00362{bottom:718.946667pt;}
.ya_c00362{bottom:762.786667pt;}
.y9_c00362{bottom:808.893333pt;}
.y8_c00362{bottom:836.733333pt;}
.y7_c00362{bottom:864.253333pt;}
.y6_c00362{bottom:891.773333pt;}
.y5_c00362{bottom:919.333333pt;}
.y4_c00362{bottom:947.173333pt;}
.y1_c00362{bottom:993.573333pt;}
.h8_c00362{height:30.982500pt;}
.h7_c00362{height:41.456250pt;}
.h5_c00362{height:52.736250pt;}
.h3_c00362{height:52.762500pt;}
.h4_c00362{height:54.180000pt;}
.h1_c00362{height:57.375000pt;}
.h2_c00362{height:62.812500pt;}
.h6_c00362{height:1055.996000pt;}
.h0_c00362{height:1056.000000pt;}
.w1_c00362{width:815.997333pt;}
.w0_c00362{width:816.000000pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:113.312000pt;}
.x7_c00362{left:126.752000pt;}
.x3_c00362{left:151.106667pt;}
.x4_c00362{left:200.064000pt;}
.x5_c00362{left:216.413333pt;}
.x6_c00362{left:305.413333pt;}
.x2_c00362{left:396.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_c00363 {
    display:none;
  }
  .loading-indicator_c00363.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00363 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00363 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00363" -> "#page-container .classname_c00363")
 */
.pf_c00363 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00363 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00363 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00363 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00363 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00363 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00363 {overflow:visible;}
  }
}
.c_c00363 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00363 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00363:after { /* webkit #35443 */
  content: '';
}
.t_c00363:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00363 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00363 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00363 { /* info for Javascript */
  display:none;
}
.l_c00363 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00363 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00363 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00363:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00363;src:url('chunks/assets/font_4b3a7060ab10503cb7ad999f.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_e13119c67deb3ab36558577b.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_542d56240f2a2830292bde84.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_fd6f04e5ceab46fae1917939.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;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_c00363;src:url('chunks/assets/font_1a333232560f57129d4b6675.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00363;src:url('chunks/assets/font_c9d84e54b07264b4a9082641.woff2')format("woff");}.ff6_c00363{font-family:ff6_c00363;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls7_c00363{letter-spacing:-1.416000px;}
.ls8_c00363{letter-spacing:-0.486600px;}
.ls4_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:0.120000px;}
.ls6_c00363{letter-spacing:0.313800px;}
.ls5_c00363{letter-spacing:0.486600px;}
.ls3_c00363{letter-spacing:0.506880px;}
.ls1_c00363{letter-spacing:0.720000px;}
.ls2_c00363{letter-spacing:3.600000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00363{word-spacing:-72.000000px;}
.ws5_c00363{word-spacing:-60.480000px;}
.ws0_c00363{word-spacing:-18.000000px;}
.ws2_c00363{word-spacing:-15.606600px;}
.ws4_c00363{word-spacing:-15.433800px;}
.ws3_c00363{word-spacing:-15.120000px;}
.ws6_c00363{word-spacing:-14.633400px;}
.ws7_c00363{word-spacing:0.000000px;}
._12_c00363{margin-left:-3.623976px;}
._2_c00363{margin-left:-2.376000px;}
._0_c00363{margin-left:-1.080000px;}
._3_c00363{width:1.368000px;}
._5_c00363{width:2.784024px;}
._6_c00363{width:4.703976px;}
._4_c00363{width:6.336000px;}
._1_c00363{width:7.848000px;}
._c_c00363{width:8.928000px;}
._b_c00363{width:10.008000px;}
._a_c00363{width:11.520000px;}
._8_c00363{width:13.248000px;}
._7_c00363{width:14.760000px;}
._9_c00363{width:15.984000px;}
._f_c00363{width:19.631952px;}
._10_c00363{width:21.024000px;}
._11_c00363{width:23.016096px;}
._13_c00363{width:24.095496px;}
._16_c00363{width:28.296000px;}
._e_c00363{width:30.240000px;}
._d_c00363{width:31.608000px;}
._14_c00363{width:32.904000px;}
._15_c00363{width:34.416000px;}
.fc0_c00363{color:rgb(0,0,0);}
.fs3_c00363{font-size:38.880000px;}
.fs1_c00363{font-size:47.520000px;}
.fs2_c00363{font-size:60.480000px;}
.fs0_c00363{font-size:72.000000px;}
.y0_c00363{bottom:0.000000px;}
.y3_c00363{bottom:57.996000px;}
.y2_c00363{bottom:78.876000px;}
.y23_c00363{bottom:130.716000px;}
.y22_c00363{bottom:137.556000px;}
.y21_c00363{bottom:148.356000px;}
.y20_c00363{bottom:182.235000px;}
.y1f_c00363{bottom:213.555000px;}
.y1e_c00363{bottom:244.515000px;}
.y1d_c00363{bottom:275.505000px;}
.y1c_c00363{bottom:306.465000px;}
.y1b_c00363{bottom:337.785000px;}
.y1a_c00363{bottom:368.745000px;}
.y19_c00363{bottom:399.750000px;}
.y18_c00363{bottom:430.710000px;}
.y17_c00363{bottom:462.030000px;}
.y16_c00363{bottom:490.830000px;}
.y15_c00363{bottom:525.420000px;}
.y14_c00363{bottom:551.340000px;}
.y13_c00363{bottom:600.660000px;}
.y12_c00363{bottom:652.530000px;}
.y11_c00363{bottom:683.850000px;}
.y10_c00363{bottom:714.810000px;}
.yf_c00363{bottom:745.770000px;}
.ye_c00363{bottom:785.775000px;}
.yd_c00363{bottom:817.095000px;}
.yc_c00363{bottom:848.055000px;}
.yb_c00363{bottom:879.015000px;}
.ya_c00363{bottom:910.005000px;}
.y9_c00363{bottom:941.325000px;}
.y8_c00363{bottom:972.285000px;}
.y7_c00363{bottom:1003.245000px;}
.y6_c00363{bottom:1034.250000px;}
.y4_c00363{bottom:1065.570000px;}
.y5_c00363{bottom:1073.850000px;}
.y1_c00363{bottom:1117.770000px;}
.h7_c00363{height:34.855313px;}
.h4_c00363{height:46.638281px;}
.h6_c00363{height:59.328281px;}
.h5_c00363{height:59.357813px;}
.h1_c00363{height:64.546875px;}
.h2_c00363{height:70.664062px;}
.h3_c00363{height:1187.995500px;}
.h0_c00363{height:1188.000000px;}
.w1_c00363{width:917.997000px;}
.w0_c00363{width:918.000000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:127.476000px;}
.x7_c00363{left:142.596000px;}
.x3_c00363{left:169.995000px;}
.x6_c00363{left:343.590000px;}
.x2_c00363{left:445.500000px;}
.x4_c00363{left:526.497000px;}
.x5_c00363{left:544.890000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls7_c00363{letter-spacing:-1.258667pt;}
.ls8_c00363{letter-spacing:-0.432533pt;}
.ls4_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:0.106667pt;}
.ls6_c00363{letter-spacing:0.278933pt;}
.ls5_c00363{letter-spacing:0.432533pt;}
.ls3_c00363{letter-spacing:0.450560pt;}
.ls1_c00363{letter-spacing:0.640000pt;}
.ls2_c00363{letter-spacing:3.200000pt;}
.ws1_c00363{word-spacing:-64.000000pt;}
.ws5_c00363{word-spacing:-53.760000pt;}
.ws0_c00363{word-spacing:-16.000000pt;}
.ws2_c00363{word-spacing:-13.872533pt;}
.ws4_c00363{word-spacing:-13.718933pt;}
.ws3_c00363{word-spacing:-13.440000pt;}
.ws6_c00363{word-spacing:-13.007467pt;}
.ws7_c00363{word-spacing:0.000000pt;}
._12_c00363{margin-left:-3.221312pt;}
._2_c00363{margin-left:-2.112000pt;}
._0_c00363{margin-left:-0.960000pt;}
._3_c00363{width:1.216000pt;}
._5_c00363{width:2.474688pt;}
._6_c00363{width:4.181312pt;}
._4_c00363{width:5.632000pt;}
._1_c00363{width:6.976000pt;}
._c_c00363{width:7.936000pt;}
._b_c00363{width:8.896000pt;}
._a_c00363{width:10.240000pt;}
._8_c00363{width:11.776000pt;}
._7_c00363{width:13.120000pt;}
._9_c00363{width:14.208000pt;}
._f_c00363{width:17.450624pt;}
._10_c00363{width:18.688000pt;}
._11_c00363{width:20.458752pt;}
._13_c00363{width:21.418219pt;}
._16_c00363{width:25.152000pt;}
._e_c00363{width:26.880000pt;}
._d_c00363{width:28.096000pt;}
._14_c00363{width:29.248000pt;}
._15_c00363{width:30.592000pt;}
.fs3_c00363{font-size:34.560000pt;}
.fs1_c00363{font-size:42.240000pt;}
.fs2_c00363{font-size:53.760000pt;}
.fs0_c00363{font-size:64.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y3_c00363{bottom:51.552000pt;}
.y2_c00363{bottom:70.112000pt;}
.y23_c00363{bottom:116.192000pt;}
.y22_c00363{bottom:122.272000pt;}
.y21_c00363{bottom:131.872000pt;}
.y20_c00363{bottom:161.986667pt;}
.y1f_c00363{bottom:189.826667pt;}
.y1e_c00363{bottom:217.346667pt;}
.y1d_c00363{bottom:244.893333pt;}
.y1c_c00363{bottom:272.413333pt;}
.y1b_c00363{bottom:300.253333pt;}
.y1a_c00363{bottom:327.773333pt;}
.y19_c00363{bottom:355.333333pt;}
.y18_c00363{bottom:382.853333pt;}
.y17_c00363{bottom:410.693333pt;}
.y16_c00363{bottom:436.293333pt;}
.y15_c00363{bottom:467.040000pt;}
.y14_c00363{bottom:490.080000pt;}
.y13_c00363{bottom:533.920000pt;}
.y12_c00363{bottom:580.026667pt;}
.y11_c00363{bottom:607.866667pt;}
.y10_c00363{bottom:635.386667pt;}
.yf_c00363{bottom:662.906667pt;}
.ye_c00363{bottom:698.466667pt;}
.yd_c00363{bottom:726.306667pt;}
.yc_c00363{bottom:753.826667pt;}
.yb_c00363{bottom:781.346667pt;}
.ya_c00363{bottom:808.893333pt;}
.y9_c00363{bottom:836.733333pt;}
.y8_c00363{bottom:864.253333pt;}
.y7_c00363{bottom:891.773333pt;}
.y6_c00363{bottom:919.333333pt;}
.y4_c00363{bottom:947.173333pt;}
.y5_c00363{bottom:954.533333pt;}
.y1_c00363{bottom:993.573333pt;}
.h7_c00363{height:30.982500pt;}
.h4_c00363{height:41.456250pt;}
.h6_c00363{height:52.736250pt;}
.h5_c00363{height:52.762500pt;}
.h1_c00363{height:57.375000pt;}
.h2_c00363{height:62.812500pt;}
.h3_c00363{height:1055.996000pt;}
.h0_c00363{height:1056.000000pt;}
.w1_c00363{width:815.997333pt;}
.w0_c00363{width:816.000000pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:113.312000pt;}
.x7_c00363{left:126.752000pt;}
.x3_c00363{left:151.106667pt;}
.x6_c00363{left:305.413333pt;}
.x2_c00363{left:396.000000pt;}
.x4_c00363{left:467.997333pt;}
.x5_c00363{left:484.346667pt;}
}





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

.ir_c00364:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00364;src:url('chunks/assets/font_e53c7aef367c10200e193ebb.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_24be01ecf6693a513184f593.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_c1c736ff612efa211c80f27a.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_0432361b838ee746adcee1a4.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;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_c00364;src:url('chunks/assets/font_e2cc353eb75aa16ba6243036.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00364;src:url('chunks/assets/font_59e14765b363972b252474ab.woff2')format("woff");}.ff6_c00364{font-family:ff6_c00364;line-height:1.104004;font-style:normal;font-weight: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_c00364;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff7_c00364{font-family:ff7_c00364;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls9_c00364{letter-spacing:-1.416000px;}
.ls7_c00364{letter-spacing:-1.380000px;}
.lsa_c00364{letter-spacing:-1.368000px;}
.lsc_c00364{letter-spacing:-0.912000px;}
.ls6_c00364{letter-spacing:-0.302400px;}
.ls4_c00364{letter-spacing:0.000000px;}
.lsb_c00364{letter-spacing:0.022800px;}
.ls5_c00364{letter-spacing:0.486600px;}
.ls3_c00364{letter-spacing:0.518400px;}
.ls8_c00364{letter-spacing:0.529800px;}
.ls0_c00364{letter-spacing:0.720000px;}
.ls1_c00364{letter-spacing:0.740301px;}
.ls2_c00364{letter-spacing:6.480000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00364{word-spacing:-60.480000px;}
.ws0_c00364{word-spacing:-18.000000px;}
.ws1_c00364{word-spacing:-15.606600px;}
.ws5_c00364{word-spacing:-15.142800px;}
.ws3_c00364{word-spacing:-15.120000px;}
.ws2_c00364{word-spacing:-14.817600px;}
.ws6_c00364{word-spacing:-13.704000px;}
.ws7_c00364{word-spacing:0.000000px;}
._3_c00364{margin-left:-2.352024px;}
._1_c00364{margin-left:-1.296000px;}
._0_c00364{width:1.080000px;}
._2_c00364{width:2.088000px;}
._4_c00364{width:3.432096px;}
._8_c00364{width:4.847952px;}
._e_c00364{width:5.867976px;}
._9_c00364{width:6.960024px;}
._a_c00364{width:8.568000px;}
._b_c00364{width:9.671976px;}
._10_c00364{width:11.760621px;}
._f_c00364{width:13.063801px;}
._c_c00364{width:14.736024px;}
._d_c00364{width:15.839928px;}
._7_c00364{width:24.312024px;}
._5_c00364{width:26.112024px;}
._6_c00364{width:27.480024px;}
.fc0_c00364{color:rgb(0,0,0);}
.fs3_c00364{font-size:38.880000px;}
.fs1_c00364{font-size:47.520000px;}
.fs2_c00364{font-size:60.480000px;}
.fs0_c00364{font-size:72.000000px;}
.y0_c00364{bottom:0.000000px;}
.y3_c00364{bottom:57.996000px;}
.y2_c00364{bottom:78.876000px;}
.y23_c00364{bottom:130.716000px;}
.y22_c00364{bottom:137.556000px;}
.y21_c00364{bottom:148.356000px;}
.y20_c00364{bottom:184.755000px;}
.y1f_c00364{bottom:210.675000px;}
.y1e_c00364{bottom:236.595000px;}
.y1d_c00364{bottom:271.155000px;}
.y1c_c00364{bottom:297.105000px;}
.y1b_c00364{bottom:323.025000px;}
.y1a_c00364{bottom:348.945000px;}
.y19_c00364{bottom:374.865000px;}
.y18_c00364{bottom:400.830000px;}
.y17_c00364{bottom:450.150000px;}
.y16_c00364{bottom:501.990000px;}
.y15_c00364{bottom:532.980000px;}
.y14_c00364{bottom:563.940000px;}
.y13_c00364{bottom:595.260000px;}
.y12_c00364{bottom:626.220000px;}
.y11_c00364{bottom:657.210000px;}
.y10_c00364{bottom:688.170000px;}
.yf_c00364{bottom:719.490000px;}
.ye_c00364{bottom:750.450000px;}
.yd_c00364{bottom:781.455000px;}
.yc_c00364{bottom:812.415000px;}
.yb_c00364{bottom:841.215000px;}
.ya_c00364{bottom:876.135000px;}
.y9_c00364{bottom:902.085000px;}
.y8_c00364{bottom:951.405000px;}
.y6_c00364{bottom:1003.245000px;}
.y7_c00364{bottom:1011.570000px;}
.y5_c00364{bottom:1034.250000px;}
.y4_c00364{bottom:1065.570000px;}
.y1_c00364{bottom:1117.770000px;}
.h7_c00364{height:34.855313px;}
.h4_c00364{height:46.638281px;}
.h8_c00364{height:54.514688px;}
.h6_c00364{height:59.328281px;}
.h5_c00364{height:59.357813px;}
.h1_c00364{height:64.546875px;}
.h2_c00364{height:70.664062px;}
.h3_c00364{height:1187.995500px;}
.h0_c00364{height:1188.000000px;}
.w1_c00364{width:917.997000px;}
.w0_c00364{width:918.000000px;}
.x0_c00364{left:0.000000px;}
.x1_c00364{left:127.476000px;}
.x7_c00364{left:142.596000px;}
.x5_c00364{left:169.995000px;}
.x3_c00364{left:182.592000px;}
.x4_c00364{left:200.955000px;}
.x6_c00364{left:343.590000px;}
.x2_c00364{left:445.500000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls9_c00364{letter-spacing:-1.258667pt;}
.ls7_c00364{letter-spacing:-1.226667pt;}
.lsa_c00364{letter-spacing:-1.216000pt;}
.lsc_c00364{letter-spacing:-0.810667pt;}
.ls6_c00364{letter-spacing:-0.268800pt;}
.ls4_c00364{letter-spacing:0.000000pt;}
.lsb_c00364{letter-spacing:0.020267pt;}
.ls5_c00364{letter-spacing:0.432533pt;}
.ls3_c00364{letter-spacing:0.460800pt;}
.ls8_c00364{letter-spacing:0.470933pt;}
.ls0_c00364{letter-spacing:0.640000pt;}
.ls1_c00364{letter-spacing:0.658045pt;}
.ls2_c00364{letter-spacing:5.760000pt;}
.ws4_c00364{word-spacing:-53.760000pt;}
.ws0_c00364{word-spacing:-16.000000pt;}
.ws1_c00364{word-spacing:-13.872533pt;}
.ws5_c00364{word-spacing:-13.460267pt;}
.ws3_c00364{word-spacing:-13.440000pt;}
.ws2_c00364{word-spacing:-13.171200pt;}
.ws6_c00364{word-spacing:-12.181333pt;}
.ws7_c00364{word-spacing:0.000000pt;}
._3_c00364{margin-left:-2.090688pt;}
._1_c00364{margin-left:-1.152000pt;}
._0_c00364{width:0.960000pt;}
._2_c00364{width:1.856000pt;}
._4_c00364{width:3.050752pt;}
._8_c00364{width:4.309291pt;}
._e_c00364{width:5.215979pt;}
._9_c00364{width:6.186688pt;}
._a_c00364{width:7.616000pt;}
._b_c00364{width:8.597312pt;}
._10_c00364{width:10.453885pt;}
._f_c00364{width:11.612268pt;}
._c_c00364{width:13.098688pt;}
._d_c00364{width:14.079936pt;}
._7_c00364{width:21.610688pt;}
._5_c00364{width:23.210688pt;}
._6_c00364{width:24.426688pt;}
.fs3_c00364{font-size:34.560000pt;}
.fs1_c00364{font-size:42.240000pt;}
.fs2_c00364{font-size:53.760000pt;}
.fs0_c00364{font-size:64.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y3_c00364{bottom:51.552000pt;}
.y2_c00364{bottom:70.112000pt;}
.y23_c00364{bottom:116.192000pt;}
.y22_c00364{bottom:122.272000pt;}
.y21_c00364{bottom:131.872000pt;}
.y20_c00364{bottom:164.226667pt;}
.y1f_c00364{bottom:187.266667pt;}
.y1e_c00364{bottom:210.306667pt;}
.y1d_c00364{bottom:241.026667pt;}
.y1c_c00364{bottom:264.093333pt;}
.y1b_c00364{bottom:287.133333pt;}
.y1a_c00364{bottom:310.173333pt;}
.y19_c00364{bottom:333.213333pt;}
.y18_c00364{bottom:356.293333pt;}
.y17_c00364{bottom:400.133333pt;}
.y16_c00364{bottom:446.213333pt;}
.y15_c00364{bottom:473.760000pt;}
.y14_c00364{bottom:501.280000pt;}
.y13_c00364{bottom:529.120000pt;}
.y12_c00364{bottom:556.640000pt;}
.y11_c00364{bottom:584.186667pt;}
.y10_c00364{bottom:611.706667pt;}
.yf_c00364{bottom:639.546667pt;}
.ye_c00364{bottom:667.066667pt;}
.yd_c00364{bottom:694.626667pt;}
.yc_c00364{bottom:722.146667pt;}
.yb_c00364{bottom:747.746667pt;}
.ya_c00364{bottom:778.786667pt;}
.y9_c00364{bottom:801.853333pt;}
.y8_c00364{bottom:845.693333pt;}
.y6_c00364{bottom:891.773333pt;}
.y7_c00364{bottom:899.173333pt;}
.y5_c00364{bottom:919.333333pt;}
.y4_c00364{bottom:947.173333pt;}
.y1_c00364{bottom:993.573333pt;}
.h7_c00364{height:30.982500pt;}
.h4_c00364{height:41.456250pt;}
.h8_c00364{height:48.457500pt;}
.h6_c00364{height:52.736250pt;}
.h5_c00364{height:52.762500pt;}
.h1_c00364{height:57.375000pt;}
.h2_c00364{height:62.812500pt;}
.h3_c00364{height:1055.996000pt;}
.h0_c00364{height:1056.000000pt;}
.w1_c00364{width:815.997333pt;}
.w0_c00364{width:816.000000pt;}
.x0_c00364{left:0.000000pt;}
.x1_c00364{left:113.312000pt;}
.x7_c00364{left:126.752000pt;}
.x5_c00364{left:151.106667pt;}
.x3_c00364{left:162.304000pt;}
.x4_c00364{left:178.626667pt;}
.x6_c00364{left:305.413333pt;}
.x2_c00364{left:396.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_c00365 {
    display:none;
  }
  .loading-indicator_c00365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00365 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00365 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00365" -> "#page-container .classname_c00365")
 */
.pf_c00365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00365 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00365 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00365 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00365 {overflow:visible;}
  }
}
.c_c00365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00365 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00365:after { /* webkit #35443 */
  content: '';
}
.t_c00365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00365 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00365 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00365 { /* info for Javascript */
  display:none;
}
.l_c00365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00365:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00365;src:url('chunks/assets/font_df29cb2ef4d9a442bafbd2b4.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_353143865518e5b24ba4e04b.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_c1f180cf7e01c4801824b6a5.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;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_c00365;src:url('chunks/assets/font_95eb773b07597bea5b11c1d1.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00365;src:url('chunks/assets/font_0db4375a2052be18d5c9c3df.woff2')format("woff");}.ff5_c00365{font-family:ff5_c00365;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00365;src:url('chunks/assets/font_4693731186e1449c01708e0f.woff2')format("woff");}.ff6_c00365{font-family:ff6_c00365;line-height:1.104004;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_99834b9b2269645d8d3cd299.woff2')format("woff");}.ff7_c00365{font-family:ff7_c00365;line-height:1.117188;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_80b7e25d2e0e55a43a0be248.woff2')format("woff");}.ff8_c00365{font-family:ff8_c00365;line-height:1.112305;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_065c1181fe0e2ece66a156d8.woff2')format("woff");}.ff9_c00365{font-family:ff9_c00365;line-height:0.939941;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_81aec8e0ec8b09518947bff8.woff2')format("woff");}.ffa_c00365{font-family:ffa_c00365;line-height:0.939941;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_f672e114546d1caa5c98ef42.woff2')format("woff");}.ffb_c00365{font-family:ffb_c00365;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls16_c00365{letter-spacing:-1.416000px;}
.ls11_c00365{letter-spacing:-0.972000px;}
.ls10_c00365{letter-spacing:-0.912000px;}
.lsc_c00365{letter-spacing:-0.720000px;}
.ls17_c00365{letter-spacing:-0.532800px;}
.lsd_c00365{letter-spacing:-0.504000px;}
.ls9_c00365{letter-spacing:0.000000px;}
.ls13_c00365{letter-spacing:0.022800px;}
.ls4_c00365{letter-spacing:0.048960px;}
.ls14_c00365{letter-spacing:0.060600px;}
.lse_c00365{letter-spacing:0.144000px;}
.lsb_c00365{letter-spacing:0.288000px;}
.ls8_c00365{letter-spacing:0.302400px;}
.ls12_c00365{letter-spacing:0.466800px;}
.lsf_c00365{letter-spacing:0.486600px;}
.ls6_c00365{letter-spacing:0.506880px;}
.ls15_c00365{letter-spacing:0.529800px;}
.lsa_c00365{letter-spacing:0.576000px;}
.ls5_c00365{letter-spacing:0.708610px;}
.ls2_c00365{letter-spacing:0.720000px;}
.ls0_c00365{letter-spacing:2.016000px;}
.ls7_c00365{letter-spacing:10.800000px;}
.ls3_c00365{letter-spacing:16.560000px;}
.ls1_c00365{letter-spacing:23.760000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00365{word-spacing:-72.000000px;}
.ws6_c00365{word-spacing:-60.480000px;}
.ws2_c00365{word-spacing:-18.576000px;}
.ws0_c00365{word-spacing:-18.000000px;}
.ws3_c00365{word-spacing:-17.496000px;}
.ws4_c00365{word-spacing:-15.606600px;}
.ws9_c00365{word-spacing:-15.180600px;}
.ws5_c00365{word-spacing:-15.120000px;}
.wsa_c00365{word-spacing:-14.587200px;}
.ws7_c00365{word-spacing:-14.208000px;}
.ws8_c00365{word-spacing:-14.148000px;}
.wsb_c00365{word-spacing:0.000000px;}
._4_c00365{margin-left:-2.784000px;}
._0_c00365{margin-left:-1.152000px;}
._1_c00365{width:1.512000px;}
._5_c00365{width:2.832000px;}
._f_c00365{width:4.152000px;}
._11_c00365{width:5.195976px;}
._a_c00365{width:6.204024px;}
._b_c00365{width:7.655904px;}
._c_c00365{width:9.048000px;}
._d_c00365{width:10.608000px;}
._13_c00365{width:12.107976px;}
._e_c00365{width:13.548000px;}
._12_c00365{width:16.200000px;}
._10_c00365{width:23.160000px;}
._3_c00365{width:24.264000px;}
._2_c00365{width:25.464000px;}
._6_c00365{width:27.768000px;}
._7_c00365{width:31.800000px;}
._8_c00365{width:32.904000px;}
._9_c00365{width:34.032000px;}
.fc0_c00365{color:rgb(0,0,0);}
.fs3_c00365{font-size:38.880000px;}
.fs1_c00365{font-size:47.520000px;}
.fs2_c00365{font-size:60.480000px;}
.fs0_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y3_c00365{bottom:57.996000px;}
.y2_c00365{bottom:78.876000px;}
.y29_c00365{bottom:130.716000px;}
.y28_c00365{bottom:137.556000px;}
.y27_c00365{bottom:147.996000px;}
.y26_c00365{bottom:165.315000px;}
.y25_c00365{bottom:182.595000px;}
.y24_c00365{bottom:199.515000px;}
.y23_c00365{bottom:206.355000px;}
.y22_c00365{bottom:216.795000px;}
.y21_c00365{bottom:223.635000px;}
.y20_c00365{bottom:234.795000px;}
.y1f_c00365{bottom:283.785000px;}
.y1e_c00365{bottom:309.345000px;}
.y1d_c00365{bottom:344.265000px;}
.y1c_c00365{bottom:370.185000px;}
.y1b_c00365{bottom:396.150000px;}
.y1a_c00365{bottom:445.470000px;}
.y19_c00365{bottom:497.310000px;}
.y18_c00365{bottom:528.300000px;}
.y17_c00365{bottom:559.620000px;}
.y16_c00365{bottom:590.580000px;}
.y15_c00365{bottom:621.540000px;}
.y14_c00365{bottom:652.530000px;}
.y13_c00365{bottom:683.850000px;}
.y11_c00365{bottom:714.810000px;}
.y12_c00365{bottom:723.090000px;}
.y10_c00365{bottom:745.770000px;}
.yf_c00365{bottom:776.775000px;}
.ye_c00365{bottom:808.095000px;}
.yd_c00365{bottom:839.055000px;}
.yb_c00365{bottom:879.015000px;}
.yc_c00365{bottom:887.325000px;}
.ya_c00365{bottom:910.005000px;}
.y9_c00365{bottom:941.325000px;}
.y8_c00365{bottom:972.285000px;}
.y6_c00365{bottom:1003.245000px;}
.y7_c00365{bottom:1011.570000px;}
.y5_c00365{bottom:1034.250000px;}
.y4_c00365{bottom:1065.570000px;}
.y1_c00365{bottom:1117.770000px;}
.h7_c00365{height:34.855313px;}
.h4_c00365{height:46.638281px;}
.h9_c00365{height:54.219375px;}
.h8_c00365{height:54.514688px;}
.h6_c00365{height:59.328281px;}
.h5_c00365{height:59.357813px;}
.h1_c00365{height:64.546875px;}
.h2_c00365{height:70.664062px;}
.h3_c00365{height:1187.995500px;}
.h0_c00365{height:1188.000000px;}
.w1_c00365{width:917.997000px;}
.w0_c00365{width:918.000000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:127.476000px;}
.xb_c00365{left:142.596000px;}
.x3_c00365{left:169.995000px;}
.x4_c00365{left:218.592000px;}
.x5_c00365{left:236.955000px;}
.x6_c00365{left:253.182000px;}
.x7_c00365{left:271.545000px;}
.xa_c00365{left:343.590000px;}
.x2_c00365{left:445.500000px;}
.x8_c00365{left:507.417000px;}
.x9_c00365{left:525.780000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls16_c00365{letter-spacing:-1.258667pt;}
.ls11_c00365{letter-spacing:-0.864000pt;}
.ls10_c00365{letter-spacing:-0.810667pt;}
.lsc_c00365{letter-spacing:-0.640000pt;}
.ls17_c00365{letter-spacing:-0.473600pt;}
.lsd_c00365{letter-spacing:-0.448000pt;}
.ls9_c00365{letter-spacing:0.000000pt;}
.ls13_c00365{letter-spacing:0.020267pt;}
.ls4_c00365{letter-spacing:0.043520pt;}
.ls14_c00365{letter-spacing:0.053867pt;}
.lse_c00365{letter-spacing:0.128000pt;}
.lsb_c00365{letter-spacing:0.256000pt;}
.ls8_c00365{letter-spacing:0.268800pt;}
.ls12_c00365{letter-spacing:0.414933pt;}
.lsf_c00365{letter-spacing:0.432533pt;}
.ls6_c00365{letter-spacing:0.450560pt;}
.ls15_c00365{letter-spacing:0.470933pt;}
.lsa_c00365{letter-spacing:0.512000pt;}
.ls5_c00365{letter-spacing:0.629875pt;}
.ls2_c00365{letter-spacing:0.640000pt;}
.ls0_c00365{letter-spacing:1.792000pt;}
.ls7_c00365{letter-spacing:9.600000pt;}
.ls3_c00365{letter-spacing:14.720000pt;}
.ls1_c00365{letter-spacing:21.120000pt;}
.ws1_c00365{word-spacing:-64.000000pt;}
.ws6_c00365{word-spacing:-53.760000pt;}
.ws2_c00365{word-spacing:-16.512000pt;}
.ws0_c00365{word-spacing:-16.000000pt;}
.ws3_c00365{word-spacing:-15.552000pt;}
.ws4_c00365{word-spacing:-13.872533pt;}
.ws9_c00365{word-spacing:-13.493867pt;}
.ws5_c00365{word-spacing:-13.440000pt;}
.wsa_c00365{word-spacing:-12.966400pt;}
.ws7_c00365{word-spacing:-12.629333pt;}
.ws8_c00365{word-spacing:-12.576000pt;}
.wsb_c00365{word-spacing:0.000000pt;}
._4_c00365{margin-left:-2.474667pt;}
._0_c00365{margin-left:-1.024000pt;}
._1_c00365{width:1.344000pt;}
._5_c00365{width:2.517333pt;}
._f_c00365{width:3.690667pt;}
._11_c00365{width:4.618645pt;}
._a_c00365{width:5.514688pt;}
._b_c00365{width:6.805248pt;}
._c_c00365{width:8.042667pt;}
._d_c00365{width:9.429333pt;}
._13_c00365{width:10.762645pt;}
._e_c00365{width:12.042667pt;}
._12_c00365{width:14.400000pt;}
._10_c00365{width:20.586667pt;}
._3_c00365{width:21.568000pt;}
._2_c00365{width:22.634667pt;}
._6_c00365{width:24.682667pt;}
._7_c00365{width:28.266667pt;}
._8_c00365{width:29.248000pt;}
._9_c00365{width:30.250667pt;}
.fs3_c00365{font-size:34.560000pt;}
.fs1_c00365{font-size:42.240000pt;}
.fs2_c00365{font-size:53.760000pt;}
.fs0_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y3_c00365{bottom:51.552000pt;}
.y2_c00365{bottom:70.112000pt;}
.y29_c00365{bottom:116.192000pt;}
.y28_c00365{bottom:122.272000pt;}
.y27_c00365{bottom:131.552000pt;}
.y26_c00365{bottom:146.946667pt;}
.y25_c00365{bottom:162.306667pt;}
.y24_c00365{bottom:177.346667pt;}
.y23_c00365{bottom:183.426667pt;}
.y22_c00365{bottom:192.706667pt;}
.y21_c00365{bottom:198.786667pt;}
.y20_c00365{bottom:208.706667pt;}
.y1f_c00365{bottom:252.253333pt;}
.y1e_c00365{bottom:274.973333pt;}
.y1d_c00365{bottom:306.013333pt;}
.y1c_c00365{bottom:329.053333pt;}
.y1b_c00365{bottom:352.133333pt;}
.y1a_c00365{bottom:395.973333pt;}
.y19_c00365{bottom:442.053333pt;}
.y18_c00365{bottom:469.600000pt;}
.y17_c00365{bottom:497.440000pt;}
.y16_c00365{bottom:524.960000pt;}
.y15_c00365{bottom:552.480000pt;}
.y14_c00365{bottom:580.026667pt;}
.y13_c00365{bottom:607.866667pt;}
.y11_c00365{bottom:635.386667pt;}
.y12_c00365{bottom:642.746667pt;}
.y10_c00365{bottom:662.906667pt;}
.yf_c00365{bottom:690.466667pt;}
.ye_c00365{bottom:718.306667pt;}
.yd_c00365{bottom:745.826667pt;}
.yb_c00365{bottom:781.346667pt;}
.yc_c00365{bottom:788.733333pt;}
.ya_c00365{bottom:808.893333pt;}
.y9_c00365{bottom:836.733333pt;}
.y8_c00365{bottom:864.253333pt;}
.y6_c00365{bottom:891.773333pt;}
.y7_c00365{bottom:899.173333pt;}
.y5_c00365{bottom:919.333333pt;}
.y4_c00365{bottom:947.173333pt;}
.y1_c00365{bottom:993.573333pt;}
.h7_c00365{height:30.982500pt;}
.h4_c00365{height:41.456250pt;}
.h9_c00365{height:48.195000pt;}
.h8_c00365{height:48.457500pt;}
.h6_c00365{height:52.736250pt;}
.h5_c00365{height:52.762500pt;}
.h1_c00365{height:57.375000pt;}
.h2_c00365{height:62.812500pt;}
.h3_c00365{height:1055.996000pt;}
.h0_c00365{height:1056.000000pt;}
.w1_c00365{width:815.997333pt;}
.w0_c00365{width:816.000000pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:113.312000pt;}
.xb_c00365{left:126.752000pt;}
.x3_c00365{left:151.106667pt;}
.x4_c00365{left:194.304000pt;}
.x5_c00365{left:210.626667pt;}
.x6_c00365{left:225.050667pt;}
.x7_c00365{left:241.373333pt;}
.xa_c00365{left:305.413333pt;}
.x2_c00365{left:396.000000pt;}
.x8_c00365{left:451.037333pt;}
.x9_c00365{left:467.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_c00366 {
    display:none;
  }
  .loading-indicator_c00366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00366 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00366 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00366" -> "#page-container .classname_c00366")
 */
.pf_c00366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00366 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00366 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00366 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00366 {overflow:visible;}
  }
}
.c_c00366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00366 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00366:after { /* webkit #35443 */
  content: '';
}
.t_c00366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00366 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00366 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00366 { /* info for Javascript */
  display:none;
}
.l_c00366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00366:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00366;src:url('chunks/assets/font_dff8e9f9609c4bff93c6665b.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_b4985ba41a3f296718882c5f.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_0a20ad26179a9650d11e0e99.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;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_c00366;src:url('chunks/assets/font_8d7946972f0334284d58c5f4.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_c371077ef003737f75d97103.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00366;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00366{font-family:ff6_c00366;line-height:1.311035;font-style:normal;font-weight: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_c00366;src:url('chunks/assets/font_19dfcb2c11a6f59016c62894.woff2')format("woff");}.ff7_c00366{font-family:ff7_c00366;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls8_c00366{letter-spacing:-0.302400px;}
.ls4_c00366{letter-spacing:0.000000px;}
.ls3_c00366{letter-spacing:0.180000px;}
.ls5_c00366{letter-spacing:0.486600px;}
.ls6_c00366{letter-spacing:0.507000px;}
.ls1_c00366{letter-spacing:0.720000px;}
.ls7_c00366{letter-spacing:1.440000px;}
.ls0_c00366{letter-spacing:3.600000px;}
.ls2_c00366{letter-spacing:6.480000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00366{word-spacing:-72.000000px;}
.ws6_c00366{word-spacing:-60.480000px;}
.ws0_c00366{word-spacing:-18.000000px;}
.ws3_c00366{word-spacing:-15.627000px;}
.ws2_c00366{word-spacing:-15.606600px;}
.ws4_c00366{word-spacing:-15.120000px;}
.ws5_c00366{word-spacing:-14.817600px;}
.ws7_c00366{word-spacing:0.000000px;}
._5_c00366{margin-left:-2.448000px;}
._2_c00366{margin-left:-1.440000px;}
._1_c00366{width:1.080000px;}
._4_c00366{width:2.088000px;}
._7_c00366{width:3.528000px;}
._8_c00366{width:5.112000px;}
._9_c00366{width:7.200000px;}
._6_c00366{width:8.568000px;}
._0_c00366{width:9.864000px;}
._3_c00366{width:10.944000px;}
._d_c00366{width:15.336000px;}
._e_c00366{width:16.632000px;}
._a_c00366{width:19.512000px;}
._b_c00366{width:20.520000px;}
._c_c00366{width:22.368000px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs1_c00366{font-size:60.480000px;}
.fs0_c00366{font-size:72.000000px;}
.y0_c00366{bottom:0.000000px;}
.y3_c00366{bottom:57.996000px;}
.y2_c00366{bottom:78.876000px;}
.y1e_c00366{bottom:202.395000px;}
.y1d_c00366{bottom:233.715000px;}
.y1c_c00366{bottom:264.675000px;}
.y1b_c00366{bottom:295.665000px;}
.y1a_c00366{bottom:324.465000px;}
.y19_c00366{bottom:359.385000px;}
.y18_c00366{bottom:385.305000px;}
.y17_c00366{bottom:411.270000px;}
.y16_c00366{bottom:460.230000px;}
.y15_c00366{bottom:512.430000px;}
.y14_c00366{bottom:543.420000px;}
.y13_c00366{bottom:574.380000px;}
.y12_c00366{bottom:605.340000px;}
.y11_c00366{bottom:636.660000px;}
.y10_c00366{bottom:667.650000px;}
.yf_c00366{bottom:696.450000px;}
.ye_c00366{bottom:722.370000px;}
.yd_c00366{bottom:756.930000px;}
.yc_c00366{bottom:782.895000px;}
.yb_c00366{bottom:808.815000px;}
.ya_c00366{bottom:858.135000px;}
.y9_c00366{bottom:910.005000px;}
.y8_c00366{bottom:941.325000px;}
.y7_c00366{bottom:972.285000px;}
.y6_c00366{bottom:1003.245000px;}
.y5_c00366{bottom:1034.250000px;}
.y4_c00366{bottom:1065.570000px;}
.y1_c00366{bottom:1117.770000px;}
.h4_c00366{height:59.328281px;}
.h3_c00366{height:59.357813px;}
.h5_c00366{height:60.952500px;}
.h1_c00366{height:64.546875px;}
.h2_c00366{height:70.664062px;}
.h0_c00366{height:1188.000000px;}
.w0_c00366{width:918.000000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:127.476000px;}
.x3_c00366{left:169.995000px;}
.x2_c00366{left:445.500000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls8_c00366{letter-spacing:-0.268800pt;}
.ls4_c00366{letter-spacing:0.000000pt;}
.ls3_c00366{letter-spacing:0.160000pt;}
.ls5_c00366{letter-spacing:0.432533pt;}
.ls6_c00366{letter-spacing:0.450667pt;}
.ls1_c00366{letter-spacing:0.640000pt;}
.ls7_c00366{letter-spacing:1.280000pt;}
.ls0_c00366{letter-spacing:3.200000pt;}
.ls2_c00366{letter-spacing:5.760000pt;}
.ws1_c00366{word-spacing:-64.000000pt;}
.ws6_c00366{word-spacing:-53.760000pt;}
.ws0_c00366{word-spacing:-16.000000pt;}
.ws3_c00366{word-spacing:-13.890667pt;}
.ws2_c00366{word-spacing:-13.872533pt;}
.ws4_c00366{word-spacing:-13.440000pt;}
.ws5_c00366{word-spacing:-13.171200pt;}
.ws7_c00366{word-spacing:0.000000pt;}
._5_c00366{margin-left:-2.176000pt;}
._2_c00366{margin-left:-1.280000pt;}
._1_c00366{width:0.960000pt;}
._4_c00366{width:1.856000pt;}
._7_c00366{width:3.136000pt;}
._8_c00366{width:4.544000pt;}
._9_c00366{width:6.400000pt;}
._6_c00366{width:7.616000pt;}
._0_c00366{width:8.768000pt;}
._3_c00366{width:9.728000pt;}
._d_c00366{width:13.632000pt;}
._e_c00366{width:14.784000pt;}
._a_c00366{width:17.344000pt;}
._b_c00366{width:18.240000pt;}
._c_c00366{width:19.882667pt;}
.fs1_c00366{font-size:53.760000pt;}
.fs0_c00366{font-size:64.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y3_c00366{bottom:51.552000pt;}
.y2_c00366{bottom:70.112000pt;}
.y1e_c00366{bottom:179.906667pt;}
.y1d_c00366{bottom:207.746667pt;}
.y1c_c00366{bottom:235.266667pt;}
.y1b_c00366{bottom:262.813333pt;}
.y1a_c00366{bottom:288.413333pt;}
.y19_c00366{bottom:319.453333pt;}
.y18_c00366{bottom:342.493333pt;}
.y17_c00366{bottom:365.573333pt;}
.y16_c00366{bottom:409.093333pt;}
.y15_c00366{bottom:455.493333pt;}
.y14_c00366{bottom:483.040000pt;}
.y13_c00366{bottom:510.560000pt;}
.y12_c00366{bottom:538.080000pt;}
.y11_c00366{bottom:565.920000pt;}
.y10_c00366{bottom:593.466667pt;}
.yf_c00366{bottom:619.066667pt;}
.ye_c00366{bottom:642.106667pt;}
.yd_c00366{bottom:672.826667pt;}
.yc_c00366{bottom:695.906667pt;}
.yb_c00366{bottom:718.946667pt;}
.ya_c00366{bottom:762.786667pt;}
.y9_c00366{bottom:808.893333pt;}
.y8_c00366{bottom:836.733333pt;}
.y7_c00366{bottom:864.253333pt;}
.y6_c00366{bottom:891.773333pt;}
.y5_c00366{bottom:919.333333pt;}
.y4_c00366{bottom:947.173333pt;}
.y1_c00366{bottom:993.573333pt;}
.h4_c00366{height:52.736250pt;}
.h3_c00366{height:52.762500pt;}
.h5_c00366{height:54.180000pt;}
.h1_c00366{height:57.375000pt;}
.h2_c00366{height:62.812500pt;}
.h0_c00366{height:1056.000000pt;}
.w0_c00366{width:816.000000pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:113.312000pt;}
.x3_c00366{left:151.106667pt;}
.x2_c00366{left:396.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_c00367 {
    display:none;
  }
  .loading-indicator_c00367.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00367 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00367 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00367" -> "#page-container .classname_c00367")
 */
.pf_c00367 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00367 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00367 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00367 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00367 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00367 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00367 {overflow:visible;}
  }
}
.c_c00367 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00367 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00367:after { /* webkit #35443 */
  content: '';
}
.t_c00367:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00367 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00367 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00367 { /* info for Javascript */
  display:none;
}
.l_c00367 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00367 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00367 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00367:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00367;src:url('chunks/assets/font_57d965a54aa3ca5267376303.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_f56f8ebeb05c19bd50422180.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_af1ace6b3fd0a9b188f5d3dc.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_270be5f366c41ab6b7175c3e.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_6c62d2de4d1c9448ab8cabe6.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;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_c00367;src:url('chunks/assets/font_3cf70c6e2c370013c1fa47f5.woff2')format("woff");}.ff6_c00367{font-family:ff6_c00367;line-height:1.104004;font-style:normal;font-weight: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_c00367;src:url('chunks/assets/font_1d20cd67f888d969d7d1470f.woff2')format("woff");}.ff7_c00367{font-family:ff7_c00367;line-height:1.112305;font-style:normal;font-weight: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_c00367;src:url('chunks/assets/font_437ad7683e7cf8485c51bcb2.woff2')format("woff");}.ff8_c00367{font-family:ff8_c00367;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls16_c00367{letter-spacing:-0.912000px;}
.lsd_c00367{letter-spacing:-0.720000px;}
.ls11_c00367{letter-spacing:-0.532800px;}
.ls1a_c00367{letter-spacing:-0.486600px;}
.ls12_c00367{letter-spacing:-0.241800px;}
.ls17_c00367{letter-spacing:-0.169800px;}
.lsc_c00367{letter-spacing:0.000000px;}
.ls15_c00367{letter-spacing:0.022800px;}
.lsa_c00367{letter-spacing:0.048960px;}
.lsf_c00367{letter-spacing:0.166800px;}
.ls4_c00367{letter-spacing:0.302400px;}
.ls18_c00367{letter-spacing:0.313800px;}
.ls14_c00367{letter-spacing:0.466800px;}
.lse_c00367{letter-spacing:0.486600px;}
.lsb_c00367{letter-spacing:0.489600px;}
.ls19_c00367{letter-spacing:0.521400px;}
.ls10_c00367{letter-spacing:0.529800px;}
.ls13_c00367{letter-spacing:0.630000px;}
.ls1_c00367{letter-spacing:0.720000px;}
.ls2_c00367{letter-spacing:0.860425px;}
.ls9_c00367{letter-spacing:2.136363px;}
.ls8_c00367{letter-spacing:2.160000px;}
.ls6_c00367{letter-spacing:5.040000px;}
.ls7_c00367{letter-spacing:6.480000px;}
.ls0_c00367{letter-spacing:7.920000px;}
.ls3_c00367{letter-spacing:10.800000px;}
.ls5_c00367{letter-spacing:23.760000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00367{word-spacing:-72.000000px;}
.ws5_c00367{word-spacing:-60.480000px;}
.ws0_c00367{word-spacing:-18.000000px;}
.ws6_c00367{word-spacing:-15.750000px;}
.wsa_c00367{word-spacing:-15.641400px;}
.ws2_c00367{word-spacing:-15.606600px;}
.ws9_c00367{word-spacing:-15.433800px;}
.ws3_c00367{word-spacing:-15.286800px;}
.ws4_c00367{word-spacing:-15.120000px;}
.ws8_c00367{word-spacing:-14.950200px;}
.ws7_c00367{word-spacing:-14.878200px;}
.wsb_c00367{word-spacing:-14.633400px;}
.wsc_c00367{word-spacing:0.000000px;}
._2_c00367{margin-left:-2.736000px;}
._0_c00367{margin-left:-1.296000px;}
._1_c00367{width:1.368000px;}
._5_c00367{width:2.687976px;}
._7_c00367{width:4.176000px;}
._a_c00367{width:5.544000px;}
._8_c00367{width:6.912000px;}
._3_c00367{width:8.208000px;}
._4_c00367{width:9.864000px;}
._6_c00367{width:11.352024px;}
._d_c00367{width:12.412800px;}
._b_c00367{width:17.009401px;}
._c_c00367{width:18.540020px;}
._9_c00367{width:19.584000px;}
._10_c00367{width:21.869135px;}
._e_c00367{width:23.458080px;}
._f_c00367{width:24.504480px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs3_c00367{font-size:38.880000px;}
.fs1_c00367{font-size:47.520000px;}
.fs2_c00367{font-size:60.480000px;}
.fs0_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.y3_c00367{bottom:57.996000px;}
.y2_c00367{bottom:78.876000px;}
.y2f_c00367{bottom:130.716000px;}
.y2e_c00367{bottom:147.996000px;}
.y2d_c00367{bottom:165.315000px;}
.y2c_c00367{bottom:172.155000px;}
.y2b_c00367{bottom:182.595000px;}
.y2a_c00367{bottom:199.515000px;}
.y29_c00367{bottom:206.355000px;}
.y28_c00367{bottom:216.795000px;}
.y27_c00367{bottom:234.075000px;}
.y26_c00367{bottom:251.355000px;}
.y25_c00367{bottom:268.635000px;}
.y24_c00367{bottom:285.945000px;}
.y23_c00367{bottom:303.225000px;}
.y22_c00367{bottom:320.505000px;}
.y21_c00367{bottom:337.785000px;}
.y20_c00367{bottom:355.065000px;}
.y1f_c00367{bottom:372.345000px;}
.y1e_c00367{bottom:389.625000px;}
.y1d_c00367{bottom:406.590000px;}
.y1c_c00367{bottom:423.870000px;}
.y1b_c00367{bottom:441.150000px;}
.y1a_c00367{bottom:447.990000px;}
.y19_c00367{bottom:459.150000px;}
.y18_c00367{bottom:496.950000px;}
.y17_c00367{bottom:525.420000px;}
.y16_c00367{bottom:551.340000px;}
.y15_c00367{bottom:577.260000px;}
.y14_c00367{bottom:612.180000px;}
.y13_c00367{bottom:638.100000px;}
.y12_c00367{bottom:664.050000px;}
.y11_c00367{bottom:689.970000px;}
.y10_c00367{bottom:715.530000px;}
.yf_c00367{bottom:764.895000px;}
.ye_c00367{bottom:817.095000px;}
.yd_c00367{bottom:848.055000px;}
.yc_c00367{bottom:879.015000px;}
.yb_c00367{bottom:910.005000px;}
.ya_c00367{bottom:941.325000px;}
.y9_c00367{bottom:972.285000px;}
.y7_c00367{bottom:1003.245000px;}
.y8_c00367{bottom:1011.570000px;}
.y6_c00367{bottom:1034.250000px;}
.y4_c00367{bottom:1065.570000px;}
.y5_c00367{bottom:1073.850000px;}
.y1_c00367{bottom:1117.770000px;}
.h8_c00367{height:34.855313px;}
.hb_c00367{height:38.158594px;}
.h4_c00367{height:46.638281px;}
.h9_c00367{height:54.219375px;}
.ha_c00367{height:54.514688px;}
.h6_c00367{height:59.328281px;}
.h5_c00367{height:59.357813px;}
.h1_c00367{height:64.546875px;}
.h7_c00367{height:70.628906px;}
.h2_c00367{height:70.664062px;}
.h3_c00367{height:1187.995500px;}
.h0_c00367{height:1188.000000px;}
.w1_c00367{width:917.997000px;}
.w0_c00367{width:918.000000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:127.476000px;}
.xb_c00367{left:142.596000px;}
.x9_c00367{left:169.995000px;}
.x5_c00367{left:184.392000px;}
.x6_c00367{left:202.755000px;}
.xa_c00367{left:343.590000px;}
.x2_c00367{left:445.500000px;}
.x3_c00367{left:598.167000px;}
.x4_c00367{left:616.530000px;}
.x7_c00367{left:767.802000px;}
.x8_c00367{left:786.165000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls16_c00367{letter-spacing:-0.810667pt;}
.lsd_c00367{letter-spacing:-0.640000pt;}
.ls11_c00367{letter-spacing:-0.473600pt;}
.ls1a_c00367{letter-spacing:-0.432533pt;}
.ls12_c00367{letter-spacing:-0.214933pt;}
.ls17_c00367{letter-spacing:-0.150933pt;}
.lsc_c00367{letter-spacing:0.000000pt;}
.ls15_c00367{letter-spacing:0.020267pt;}
.lsa_c00367{letter-spacing:0.043520pt;}
.lsf_c00367{letter-spacing:0.148267pt;}
.ls4_c00367{letter-spacing:0.268800pt;}
.ls18_c00367{letter-spacing:0.278933pt;}
.ls14_c00367{letter-spacing:0.414933pt;}
.lse_c00367{letter-spacing:0.432533pt;}
.lsb_c00367{letter-spacing:0.435200pt;}
.ls19_c00367{letter-spacing:0.463467pt;}
.ls10_c00367{letter-spacing:0.470933pt;}
.ls13_c00367{letter-spacing:0.560000pt;}
.ls1_c00367{letter-spacing:0.640000pt;}
.ls2_c00367{letter-spacing:0.764822pt;}
.ls9_c00367{letter-spacing:1.898989pt;}
.ls8_c00367{letter-spacing:1.920000pt;}
.ls6_c00367{letter-spacing:4.480000pt;}
.ls7_c00367{letter-spacing:5.760000pt;}
.ls0_c00367{letter-spacing:7.040000pt;}
.ls3_c00367{letter-spacing:9.600000pt;}
.ls5_c00367{letter-spacing:21.120000pt;}
.ws1_c00367{word-spacing:-64.000000pt;}
.ws5_c00367{word-spacing:-53.760000pt;}
.ws0_c00367{word-spacing:-16.000000pt;}
.ws6_c00367{word-spacing:-14.000000pt;}
.wsa_c00367{word-spacing:-13.903467pt;}
.ws2_c00367{word-spacing:-13.872533pt;}
.ws9_c00367{word-spacing:-13.718933pt;}
.ws3_c00367{word-spacing:-13.588267pt;}
.ws4_c00367{word-spacing:-13.440000pt;}
.ws8_c00367{word-spacing:-13.289067pt;}
.ws7_c00367{word-spacing:-13.225067pt;}
.wsb_c00367{word-spacing:-13.007467pt;}
.wsc_c00367{word-spacing:0.000000pt;}
._2_c00367{margin-left:-2.432000pt;}
._0_c00367{margin-left:-1.152000pt;}
._1_c00367{width:1.216000pt;}
._5_c00367{width:2.389312pt;}
._7_c00367{width:3.712000pt;}
._a_c00367{width:4.928000pt;}
._8_c00367{width:6.144000pt;}
._3_c00367{width:7.296000pt;}
._4_c00367{width:8.768000pt;}
._6_c00367{width:10.090688pt;}
._d_c00367{width:11.033600pt;}
._b_c00367{width:15.119468pt;}
._c_c00367{width:16.480018pt;}
._9_c00367{width:17.408000pt;}
._10_c00367{width:19.439231pt;}
._e_c00367{width:20.851627pt;}
._f_c00367{width:21.781760pt;}
.fs3_c00367{font-size:34.560000pt;}
.fs1_c00367{font-size:42.240000pt;}
.fs2_c00367{font-size:53.760000pt;}
.fs0_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y3_c00367{bottom:51.552000pt;}
.y2_c00367{bottom:70.112000pt;}
.y2f_c00367{bottom:116.192000pt;}
.y2e_c00367{bottom:131.552000pt;}
.y2d_c00367{bottom:146.946667pt;}
.y2c_c00367{bottom:153.026667pt;}
.y2b_c00367{bottom:162.306667pt;}
.y2a_c00367{bottom:177.346667pt;}
.y29_c00367{bottom:183.426667pt;}
.y28_c00367{bottom:192.706667pt;}
.y27_c00367{bottom:208.066667pt;}
.y26_c00367{bottom:223.426667pt;}
.y25_c00367{bottom:238.786667pt;}
.y24_c00367{bottom:254.173333pt;}
.y23_c00367{bottom:269.533333pt;}
.y22_c00367{bottom:284.893333pt;}
.y21_c00367{bottom:300.253333pt;}
.y20_c00367{bottom:315.613333pt;}
.y1f_c00367{bottom:330.973333pt;}
.y1e_c00367{bottom:346.333333pt;}
.y1d_c00367{bottom:361.413333pt;}
.y1c_c00367{bottom:376.773333pt;}
.y1b_c00367{bottom:392.133333pt;}
.y1a_c00367{bottom:398.213333pt;}
.y19_c00367{bottom:408.133333pt;}
.y18_c00367{bottom:441.733333pt;}
.y17_c00367{bottom:467.040000pt;}
.y16_c00367{bottom:490.080000pt;}
.y15_c00367{bottom:513.120000pt;}
.y14_c00367{bottom:544.160000pt;}
.y13_c00367{bottom:567.200000pt;}
.y12_c00367{bottom:590.266667pt;}
.y11_c00367{bottom:613.306667pt;}
.y10_c00367{bottom:636.026667pt;}
.yf_c00367{bottom:679.906667pt;}
.ye_c00367{bottom:726.306667pt;}
.yd_c00367{bottom:753.826667pt;}
.yc_c00367{bottom:781.346667pt;}
.yb_c00367{bottom:808.893333pt;}
.ya_c00367{bottom:836.733333pt;}
.y9_c00367{bottom:864.253333pt;}
.y7_c00367{bottom:891.773333pt;}
.y8_c00367{bottom:899.173333pt;}
.y6_c00367{bottom:919.333333pt;}
.y4_c00367{bottom:947.173333pt;}
.y5_c00367{bottom:954.533333pt;}
.y1_c00367{bottom:993.573333pt;}
.h8_c00367{height:30.982500pt;}
.hb_c00367{height:33.918750pt;}
.h4_c00367{height:41.456250pt;}
.h9_c00367{height:48.195000pt;}
.ha_c00367{height:48.457500pt;}
.h6_c00367{height:52.736250pt;}
.h5_c00367{height:52.762500pt;}
.h1_c00367{height:57.375000pt;}
.h7_c00367{height:62.781250pt;}
.h2_c00367{height:62.812500pt;}
.h3_c00367{height:1055.996000pt;}
.h0_c00367{height:1056.000000pt;}
.w1_c00367{width:815.997333pt;}
.w0_c00367{width:816.000000pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:113.312000pt;}
.xb_c00367{left:126.752000pt;}
.x9_c00367{left:151.106667pt;}
.x5_c00367{left:163.904000pt;}
.x6_c00367{left:180.226667pt;}
.xa_c00367{left:305.413333pt;}
.x2_c00367{left:396.000000pt;}
.x3_c00367{left:531.704000pt;}
.x4_c00367{left:548.026667pt;}
.x7_c00367{left:682.490667pt;}
.x8_c00367{left:698.813333pt;}
}





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

.ir_c00368:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00368;src:url('chunks/assets/font_7d167e104d9a49456d9ae12c.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_8d9c5d8722c22fb4daf6c4b6.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_0fc670d33b49e471652b7bfd.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_e8647f377eb05c9aff26e452.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;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_c00368;src:url('chunks/assets/font_ac7c0ab184a735c60e5afba7.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00368;src:url('chunks/assets/font_9cad24505cd3cd5592782544.woff2')format("woff");}.ff6_c00368{font-family:ff6_c00368;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls4_c00368{letter-spacing:-0.486600px;}
.ls3_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:0.120000px;}
.ls2_c00368{letter-spacing:0.720000px;}
.ls1_c00368{letter-spacing:7.920000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00368{word-spacing:-72.000000px;}
.ws0_c00368{word-spacing:-18.000000px;}
.ws2_c00368{word-spacing:-15.120000px;}
.ws3_c00368{word-spacing:-14.633400px;}
.ws4_c00368{word-spacing:0.000000px;}
._9_c00368{margin-left:-3.024000px;}
._0_c00368{margin-left:-1.800000px;}
._1_c00368{width:1.368000px;}
._5_c00368{width:2.520000px;}
._8_c00368{width:3.816000px;}
._f_c00368{width:5.040000px;}
._10_c00368{width:6.048000px;}
._2_c00368{width:7.560000px;}
._3_c00368{width:8.616024px;}
._e_c00368{width:9.864000px;}
._16_c00368{width:10.872839px;}
._a_c00368{width:11.880000px;}
._b_c00368{width:13.464000px;}
._14_c00368{width:15.192000px;}
._15_c00368{width:16.728000px;}
._d_c00368{width:21.264000px;}
._c_c00368{width:23.340000px;}
._7_c00368{width:30.888000px;}
._6_c00368{width:32.544000px;}
._4_c00368{width:33.624000px;}
._11_c00368{width:40.752000px;}
._12_c00368{width:41.904000px;}
._13_c00368{width:43.056000px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs2_c00368{font-size:38.880000px;}
.fs1_c00368{font-size:47.520000px;}
.fs3_c00368{font-size:60.480000px;}
.fs0_c00368{font-size:72.000000px;}
.y0_c00368{bottom:0.000000px;}
.y3_c00368{bottom:57.996000px;}
.y2_c00368{bottom:78.876000px;}
.y26_c00368{bottom:130.716000px;}
.y25_c00368{bottom:137.556000px;}
.y24_c00368{bottom:147.996000px;}
.y23_c00368{bottom:165.315000px;}
.y22_c00368{bottom:172.155000px;}
.y21_c00368{bottom:182.955000px;}
.y20_c00368{bottom:230.835000px;}
.y1f_c00368{bottom:262.155000px;}
.y1e_c00368{bottom:293.145000px;}
.y1d_c00368{bottom:324.105000px;}
.y1c_c00368{bottom:355.065000px;}
.y1b_c00368{bottom:395.070000px;}
.y1a_c00368{bottom:426.390000px;}
.y19_c00368{bottom:457.350000px;}
.y18_c00368{bottom:488.310000px;}
.y17_c00368{bottom:519.300000px;}
.y16_c00368{bottom:550.620000px;}
.y15_c00368{bottom:581.580000px;}
.y14_c00368{bottom:612.540000px;}
.y13_c00368{bottom:643.530000px;}
.y12_c00368{bottom:674.850000px;}
.y11_c00368{bottom:714.810000px;}
.y10_c00368{bottom:745.770000px;}
.ye_c00368{bottom:785.775000px;}
.yf_c00368{bottom:794.055000px;}
.yd_c00368{bottom:817.095000px;}
.yc_c00368{bottom:848.055000px;}
.yb_c00368{bottom:879.015000px;}
.y9_c00368{bottom:910.005000px;}
.ya_c00368{bottom:918.285000px;}
.y8_c00368{bottom:941.325000px;}
.y7_c00368{bottom:972.285000px;}
.y6_c00368{bottom:1003.245000px;}
.y5_c00368{bottom:1034.250000px;}
.y4_c00368{bottom:1065.570000px;}
.y1_c00368{bottom:1117.770000px;}
.h6_c00368{height:34.855313px;}
.h4_c00368{height:46.638281px;}
.h8_c00368{height:54.219375px;}
.h7_c00368{height:54.514688px;}
.h1_c00368{height:64.546875px;}
.h5_c00368{height:70.628906px;}
.h2_c00368{height:70.664062px;}
.h3_c00368{height:1187.995500px;}
.h0_c00368{height:1188.000000px;}
.w1_c00368{width:917.997000px;}
.w0_c00368{width:918.000000px;}
.x0_c00368{left:0.000000px;}
.x1_c00368{left:127.476000px;}
.xa_c00368{left:142.596000px;}
.x3_c00368{left:169.995000px;}
.x8_c00368{left:178.635000px;}
.x9_c00368{left:343.590000px;}
.x2_c00368{left:445.500000px;}
.x6_c00368{left:647.172000px;}
.x7_c00368{left:665.535000px;}
.x4_c00368{left:740.442000px;}
.x5_c00368{left:758.805000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls4_c00368{letter-spacing:-0.432533pt;}
.ls3_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:0.106667pt;}
.ls2_c00368{letter-spacing:0.640000pt;}
.ls1_c00368{letter-spacing:7.040000pt;}
.ws1_c00368{word-spacing:-64.000000pt;}
.ws0_c00368{word-spacing:-16.000000pt;}
.ws2_c00368{word-spacing:-13.440000pt;}
.ws3_c00368{word-spacing:-13.007467pt;}
.ws4_c00368{word-spacing:0.000000pt;}
._9_c00368{margin-left:-2.688000pt;}
._0_c00368{margin-left:-1.600000pt;}
._1_c00368{width:1.216000pt;}
._5_c00368{width:2.240000pt;}
._8_c00368{width:3.392000pt;}
._f_c00368{width:4.480000pt;}
._10_c00368{width:5.376000pt;}
._2_c00368{width:6.720000pt;}
._3_c00368{width:7.658688pt;}
._e_c00368{width:8.768000pt;}
._16_c00368{width:9.664746pt;}
._a_c00368{width:10.560000pt;}
._b_c00368{width:11.968000pt;}
._14_c00368{width:13.504000pt;}
._15_c00368{width:14.869333pt;}
._d_c00368{width:18.901333pt;}
._c_c00368{width:20.746667pt;}
._7_c00368{width:27.456000pt;}
._6_c00368{width:28.928000pt;}
._4_c00368{width:29.888000pt;}
._11_c00368{width:36.224000pt;}
._12_c00368{width:37.248000pt;}
._13_c00368{width:38.272000pt;}
.fs2_c00368{font-size:34.560000pt;}
.fs1_c00368{font-size:42.240000pt;}
.fs3_c00368{font-size:53.760000pt;}
.fs0_c00368{font-size:64.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.y3_c00368{bottom:51.552000pt;}
.y2_c00368{bottom:70.112000pt;}
.y26_c00368{bottom:116.192000pt;}
.y25_c00368{bottom:122.272000pt;}
.y24_c00368{bottom:131.552000pt;}
.y23_c00368{bottom:146.946667pt;}
.y22_c00368{bottom:153.026667pt;}
.y21_c00368{bottom:162.626667pt;}
.y20_c00368{bottom:205.186667pt;}
.y1f_c00368{bottom:233.026667pt;}
.y1e_c00368{bottom:260.573333pt;}
.y1d_c00368{bottom:288.093333pt;}
.y1c_c00368{bottom:315.613333pt;}
.y1b_c00368{bottom:351.173333pt;}
.y1a_c00368{bottom:379.013333pt;}
.y19_c00368{bottom:406.533333pt;}
.y18_c00368{bottom:434.053333pt;}
.y17_c00368{bottom:461.600000pt;}
.y16_c00368{bottom:489.440000pt;}
.y15_c00368{bottom:516.960000pt;}
.y14_c00368{bottom:544.480000pt;}
.y13_c00368{bottom:572.026667pt;}
.y12_c00368{bottom:599.866667pt;}
.y11_c00368{bottom:635.386667pt;}
.y10_c00368{bottom:662.906667pt;}
.ye_c00368{bottom:698.466667pt;}
.yf_c00368{bottom:705.826667pt;}
.yd_c00368{bottom:726.306667pt;}
.yc_c00368{bottom:753.826667pt;}
.yb_c00368{bottom:781.346667pt;}
.y9_c00368{bottom:808.893333pt;}
.ya_c00368{bottom:816.253333pt;}
.y8_c00368{bottom:836.733333pt;}
.y7_c00368{bottom:864.253333pt;}
.y6_c00368{bottom:891.773333pt;}
.y5_c00368{bottom:919.333333pt;}
.y4_c00368{bottom:947.173333pt;}
.y1_c00368{bottom:993.573333pt;}
.h6_c00368{height:30.982500pt;}
.h4_c00368{height:41.456250pt;}
.h8_c00368{height:48.195000pt;}
.h7_c00368{height:48.457500pt;}
.h1_c00368{height:57.375000pt;}
.h5_c00368{height:62.781250pt;}
.h2_c00368{height:62.812500pt;}
.h3_c00368{height:1055.996000pt;}
.h0_c00368{height:1056.000000pt;}
.w1_c00368{width:815.997333pt;}
.w0_c00368{width:816.000000pt;}
.x0_c00368{left:0.000000pt;}
.x1_c00368{left:113.312000pt;}
.xa_c00368{left:126.752000pt;}
.x3_c00368{left:151.106667pt;}
.x8_c00368{left:158.786667pt;}
.x9_c00368{left:305.413333pt;}
.x2_c00368{left:396.000000pt;}
.x6_c00368{left:575.264000pt;}
.x7_c00368{left:591.586667pt;}
.x4_c00368{left:658.170667pt;}
.x5_c00368{left:674.493333pt;}
}





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

.ir_c00369:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00369;src:url('chunks/assets/font_6f11757d43a2100e0356bc06.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_19d94573b431dcf9e8280088.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_bf5ecca428f36a73b9ddf224.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;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_c00369;src:url('chunks/assets/font_aa09d4c77d261c5d655ce2a5.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00369;src:url('chunks/assets/font_a43ba01d9e9e85bd83cfc8a3.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls3_c00369{letter-spacing:-0.288000px;}
.ls2_c00369{letter-spacing:0.000000px;}
.ls1_c00369{letter-spacing:0.720000px;}
.ls0_c00369{letter-spacing:5.040000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00369{word-spacing:-40.608000px;}
.ws0_c00369{word-spacing:-18.000000px;}
.ws1_c00369{word-spacing:-17.712000px;}
.ws3_c00369{word-spacing:0.000000px;}
._2_c00369{margin-left:-2.520000px;}
._0_c00369{margin-left:-1.224000px;}
._1_c00369{width:1.080000px;}
._3_c00369{width:2.808000px;}
._5_c00369{width:4.091976px;}
._b_c00369{width:5.592072px;}
._11_c00369{width:6.696000px;}
._10_c00369{width:8.496000px;}
._13_c00369{width:9.864000px;}
._c_c00369{width:11.304000px;}
._e_c00369{width:12.888000px;}
._d_c00369{width:14.472000px;}
._f_c00369{width:15.660000px;}
._14_c00369{width:16.956000px;}
._4_c00369{width:19.080000px;}
._12_c00369{width:20.232000px;}
._15_c00369{width:21.240000px;}
._6_c00369{width:22.248000px;}
._7_c00369{width:23.904000px;}
._9_c00369{width:27.288000px;}
._8_c00369{width:28.656000px;}
._a_c00369{width:31.680000px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs2_c00369{font-size:38.880000px;}
.fs1_c00369{font-size:47.520000px;}
.fs3_c00369{font-size:60.480000px;}
.fs0_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.y3_c00369{bottom:57.996000px;}
.y2_c00369{bottom:78.876000px;}
.y23_c00369{bottom:130.716000px;}
.y22_c00369{bottom:147.996000px;}
.y21_c00369{bottom:165.315000px;}
.y20_c00369{bottom:172.155000px;}
.y1f_c00369{bottom:182.955000px;}
.y1e_c00369{bottom:211.035000px;}
.y1d_c00369{bottom:263.235000px;}
.y1c_c00369{bottom:315.105000px;}
.y1b_c00369{bottom:355.065000px;}
.y1a_c00369{bottom:386.025000px;}
.y19_c00369{bottom:417.390000px;}
.y18_c00369{bottom:448.350000px;}
.y17_c00369{bottom:479.310000px;}
.y15_c00369{bottom:510.270000px;}
.y16_c00369{bottom:518.580000px;}
.y14_c00369{bottom:541.620000px;}
.y13_c00369{bottom:572.580000px;}
.y12_c00369{bottom:603.540000px;}
.y11_c00369{bottom:634.500000px;}
.y10_c00369{bottom:665.850000px;}
.yf_c00369{bottom:696.810000px;}
.ye_c00369{bottom:727.770000px;}
.yd_c00369{bottom:758.730000px;}
.yc_c00369{bottom:799.095000px;}
.yb_c00369{bottom:839.055000px;}
.ya_c00369{bottom:870.015000px;}
.y9_c00369{bottom:901.005000px;}
.y8_c00369{bottom:932.325000px;}
.y7_c00369{bottom:963.285000px;}
.y6_c00369{bottom:1003.245000px;}
.y5_c00369{bottom:1034.250000px;}
.y4_c00369{bottom:1065.570000px;}
.y1_c00369{bottom:1117.770000px;}
.h6_c00369{height:34.855313px;}
.h5_c00369{height:46.638281px;}
.h7_c00369{height:54.219375px;}
.h1_c00369{height:64.546875px;}
.h3_c00369{height:70.628906px;}
.h2_c00369{height:70.664062px;}
.h4_c00369{height:1187.995500px;}
.h0_c00369{height:1188.000000px;}
.w1_c00369{width:917.997000px;}
.w0_c00369{width:918.000000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:127.476000px;}
.x9_c00369{left:142.596000px;}
.x7_c00369{left:169.995000px;}
.x3_c00369{left:178.635000px;}
.x6_c00369{left:180.795000px;}
.x8_c00369{left:343.590000px;}
.x2_c00369{left:445.500000px;}
.x4_c00369{left:709.812000px;}
.x5_c00369{left:728.205000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls3_c00369{letter-spacing:-0.256000pt;}
.ls2_c00369{letter-spacing:0.000000pt;}
.ls1_c00369{letter-spacing:0.640000pt;}
.ls0_c00369{letter-spacing:4.480000pt;}
.ws2_c00369{word-spacing:-36.096000pt;}
.ws0_c00369{word-spacing:-16.000000pt;}
.ws1_c00369{word-spacing:-15.744000pt;}
.ws3_c00369{word-spacing:0.000000pt;}
._2_c00369{margin-left:-2.240000pt;}
._0_c00369{margin-left:-1.088000pt;}
._1_c00369{width:0.960000pt;}
._3_c00369{width:2.496000pt;}
._5_c00369{width:3.637312pt;}
._b_c00369{width:4.970731pt;}
._11_c00369{width:5.952000pt;}
._10_c00369{width:7.552000pt;}
._13_c00369{width:8.768000pt;}
._c_c00369{width:10.048000pt;}
._e_c00369{width:11.456000pt;}
._d_c00369{width:12.864000pt;}
._f_c00369{width:13.920000pt;}
._14_c00369{width:15.072000pt;}
._4_c00369{width:16.960000pt;}
._12_c00369{width:17.984000pt;}
._15_c00369{width:18.880000pt;}
._6_c00369{width:19.776000pt;}
._7_c00369{width:21.248000pt;}
._9_c00369{width:24.256000pt;}
._8_c00369{width:25.472000pt;}
._a_c00369{width:28.160000pt;}
.fs2_c00369{font-size:34.560000pt;}
.fs1_c00369{font-size:42.240000pt;}
.fs3_c00369{font-size:53.760000pt;}
.fs0_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y3_c00369{bottom:51.552000pt;}
.y2_c00369{bottom:70.112000pt;}
.y23_c00369{bottom:116.192000pt;}
.y22_c00369{bottom:131.552000pt;}
.y21_c00369{bottom:146.946667pt;}
.y20_c00369{bottom:153.026667pt;}
.y1f_c00369{bottom:162.626667pt;}
.y1e_c00369{bottom:187.586667pt;}
.y1d_c00369{bottom:233.986667pt;}
.y1c_c00369{bottom:280.093333pt;}
.y1b_c00369{bottom:315.613333pt;}
.y1a_c00369{bottom:343.133333pt;}
.y19_c00369{bottom:371.013333pt;}
.y18_c00369{bottom:398.533333pt;}
.y17_c00369{bottom:426.053333pt;}
.y15_c00369{bottom:453.573333pt;}
.y16_c00369{bottom:460.960000pt;}
.y14_c00369{bottom:481.440000pt;}
.y13_c00369{bottom:508.960000pt;}
.y12_c00369{bottom:536.480000pt;}
.y11_c00369{bottom:564.000000pt;}
.y10_c00369{bottom:591.866667pt;}
.yf_c00369{bottom:619.386667pt;}
.ye_c00369{bottom:646.906667pt;}
.yd_c00369{bottom:674.426667pt;}
.yc_c00369{bottom:710.306667pt;}
.yb_c00369{bottom:745.826667pt;}
.ya_c00369{bottom:773.346667pt;}
.y9_c00369{bottom:800.893333pt;}
.y8_c00369{bottom:828.733333pt;}
.y7_c00369{bottom:856.253333pt;}
.y6_c00369{bottom:891.773333pt;}
.y5_c00369{bottom:919.333333pt;}
.y4_c00369{bottom:947.173333pt;}
.y1_c00369{bottom:993.573333pt;}
.h6_c00369{height:30.982500pt;}
.h5_c00369{height:41.456250pt;}
.h7_c00369{height:48.195000pt;}
.h1_c00369{height:57.375000pt;}
.h3_c00369{height:62.781250pt;}
.h2_c00369{height:62.812500pt;}
.h4_c00369{height:1055.996000pt;}
.h0_c00369{height:1056.000000pt;}
.w1_c00369{width:815.997333pt;}
.w0_c00369{width:816.000000pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:113.312000pt;}
.x9_c00369{left:126.752000pt;}
.x7_c00369{left:151.106667pt;}
.x3_c00369{left:158.786667pt;}
.x6_c00369{left:160.706667pt;}
.x8_c00369{left:305.413333pt;}
.x2_c00369{left:396.000000pt;}
.x4_c00369{left:630.944000pt;}
.x5_c00369{left:647.293333pt;}
}





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

.ir_c00370:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00370;src:url('chunks/assets/font_87766205a202b6f70795ec03.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_970f90547099ba3da1f871cc.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_b2b3a701044757f22a80203b.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;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_c00370;src:url('chunks/assets/font_abd48258606edc81b570fc45.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00370;src:url('chunks/assets/font_1502cac255e929335b5b489d.woff2')format("woff");}.ff5_c00370{font-family:ff5_c00370;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00370;src:url('chunks/assets/font_94ee417a9f18c4fb826dd85b.woff2')format("woff");}.ff6_c00370{font-family:ff6_c00370;line-height:1.104004;font-style:normal;font-weight: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_c00370;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00370{font-family:ff7_c00370;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls8_c00370{letter-spacing:-0.912000px;}
.ls9_c00370{letter-spacing:-0.720000px;}
.ls5_c00370{letter-spacing:0.000000px;}
.ls7_c00370{letter-spacing:0.060600px;}
.lsa_c00370{letter-spacing:0.313800px;}
.ls6_c00370{letter-spacing:0.486600px;}
.ls4_c00370{letter-spacing:0.518400px;}
.ls2_c00370{letter-spacing:0.708589px;}
.ls0_c00370{letter-spacing:0.720000px;}
.ls3_c00370{letter-spacing:0.740339px;}
.ls1_c00370{letter-spacing:0.900000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00370{word-spacing:-60.480000px;}
.ws4_c00370{word-spacing:-18.000000px;}
.ws6_c00370{word-spacing:-15.840000px;}
.ws0_c00370{word-spacing:-15.606600px;}
.ws5_c00370{word-spacing:-15.433800px;}
.ws7_c00370{word-spacing:-15.180600px;}
.ws1_c00370{word-spacing:-15.120000px;}
.ws3_c00370{word-spacing:-14.208000px;}
.ws8_c00370{word-spacing:0.000000px;}
._2_c00370{margin-left:-2.696521px;}
._0_c00370{margin-left:-1.439760px;}
._1_c00370{width:1.644095px;}
._5_c00370{width:3.181659px;}
._7_c00370{width:5.450333px;}
._6_c00370{width:7.067425px;}
._4_c00370{width:8.324426px;}
._c_c00370{width:10.271498px;}
._f_c00370{width:11.540593px;}
._10_c00370{width:12.872091px;}
._8_c00370{width:14.105038px;}
._e_c00370{width:15.570052px;}
._d_c00370{width:16.736281px;}
._3_c00370{width:19.727760px;}
._a_c00370{width:33.287330px;}
._9_c00370{width:34.304521px;}
._b_c00370{width:35.640000px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs1_c00370{font-size:60.480000px;}
.fs0_c00370{font-size:72.000000px;}
.y0_c00370{bottom:0.000000px;}
.y3_c00370{bottom:57.996000px;}
.y2_c00370{bottom:78.876000px;}
.y23_c00370{bottom:115.236000px;}
.y22_c00370{bottom:146.196000px;}
.y21_c00370{bottom:177.195000px;}
.y20_c00370{bottom:208.155000px;}
.y1f_c00370{bottom:239.475000px;}
.y1e_c00370{bottom:270.435000px;}
.y1d_c00370{bottom:301.425000px;}
.y1c_c00370{bottom:332.385000px;}
.y1b_c00370{bottom:363.705000px;}
.y1a_c00370{bottom:392.145000px;}
.y19_c00370{bottom:418.110000px;}
.y18_c00370{bottom:444.030000px;}
.y17_c00370{bottom:469.950000px;}
.y16_c00370{bottom:504.870000px;}
.y15_c00370{bottom:530.820000px;}
.y14_c00370{bottom:556.740000px;}
.y13_c00370{bottom:582.660000px;}
.y12_c00370{bottom:608.220000px;}
.y11_c00370{bottom:634.140000px;}
.y10_c00370{bottom:660.090000px;}
.yf_c00370{bottom:709.410000px;}
.ye_c00370{bottom:761.250000px;}
.yd_c00370{bottom:792.615000px;}
.yc_c00370{bottom:823.575000px;}
.yb_c00370{bottom:854.535000px;}
.ya_c00370{bottom:885.525000px;}
.y9_c00370{bottom:916.485000px;}
.y8_c00370{bottom:947.805000px;}
.y7_c00370{bottom:978.765000px;}
.y6_c00370{bottom:1007.565000px;}
.y5_c00370{bottom:1042.530000px;}
.y4_c00370{bottom:1068.450000px;}
.y1_c00370{bottom:1117.770000px;}
.h6_c00370{height:59.328281px;}
.h2_c00370{height:59.357813px;}
.h5_c00370{height:60.952500px;}
.h1_c00370{height:64.546875px;}
.h3_c00370{height:70.628906px;}
.h4_c00370{height:70.664062px;}
.h0_c00370{height:1188.000000px;}
.w0_c00370{width:918.000000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:127.476000px;}
.x3_c00370{left:169.995000px;}
.x2_c00370{left:445.500000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls8_c00370{letter-spacing:-0.810667pt;}
.ls9_c00370{letter-spacing:-0.640000pt;}
.ls5_c00370{letter-spacing:0.000000pt;}
.ls7_c00370{letter-spacing:0.053867pt;}
.lsa_c00370{letter-spacing:0.278933pt;}
.ls6_c00370{letter-spacing:0.432533pt;}
.ls4_c00370{letter-spacing:0.460800pt;}
.ls2_c00370{letter-spacing:0.629857pt;}
.ls0_c00370{letter-spacing:0.640000pt;}
.ls3_c00370{letter-spacing:0.658079pt;}
.ls1_c00370{letter-spacing:0.800000pt;}
.ws2_c00370{word-spacing:-53.760000pt;}
.ws4_c00370{word-spacing:-16.000000pt;}
.ws6_c00370{word-spacing:-14.080000pt;}
.ws0_c00370{word-spacing:-13.872533pt;}
.ws5_c00370{word-spacing:-13.718933pt;}
.ws7_c00370{word-spacing:-13.493867pt;}
.ws1_c00370{word-spacing:-13.440000pt;}
.ws3_c00370{word-spacing:-12.629333pt;}
.ws8_c00370{word-spacing:0.000000pt;}
._2_c00370{margin-left:-2.396908pt;}
._0_c00370{margin-left:-1.279787pt;}
._1_c00370{width:1.461418pt;}
._5_c00370{width:2.828141pt;}
._7_c00370{width:4.844740pt;}
._6_c00370{width:6.282156pt;}
._4_c00370{width:7.399490pt;}
._c_c00370{width:9.130220pt;}
._f_c00370{width:10.258305pt;}
._10_c00370{width:11.441859pt;}
._8_c00370{width:12.537812pt;}
._e_c00370{width:13.840046pt;}
._d_c00370{width:14.876694pt;}
._3_c00370{width:17.535787pt;}
._a_c00370{width:29.588738pt;}
._9_c00370{width:30.492908pt;}
._b_c00370{width:31.680000pt;}
.fs1_c00370{font-size:53.760000pt;}
.fs0_c00370{font-size:64.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y3_c00370{bottom:51.552000pt;}
.y2_c00370{bottom:70.112000pt;}
.y23_c00370{bottom:102.432000pt;}
.y22_c00370{bottom:129.952000pt;}
.y21_c00370{bottom:157.506667pt;}
.y20_c00370{bottom:185.026667pt;}
.y1f_c00370{bottom:212.866667pt;}
.y1e_c00370{bottom:240.386667pt;}
.y1d_c00370{bottom:267.933333pt;}
.y1c_c00370{bottom:295.453333pt;}
.y1b_c00370{bottom:323.293333pt;}
.y1a_c00370{bottom:348.573333pt;}
.y19_c00370{bottom:371.653333pt;}
.y18_c00370{bottom:394.693333pt;}
.y17_c00370{bottom:417.733333pt;}
.y16_c00370{bottom:448.773333pt;}
.y15_c00370{bottom:471.840000pt;}
.y14_c00370{bottom:494.880000pt;}
.y13_c00370{bottom:517.920000pt;}
.y12_c00370{bottom:540.640000pt;}
.y11_c00370{bottom:563.680000pt;}
.y10_c00370{bottom:586.746667pt;}
.yf_c00370{bottom:630.586667pt;}
.ye_c00370{bottom:676.666667pt;}
.yd_c00370{bottom:704.546667pt;}
.yc_c00370{bottom:732.066667pt;}
.yb_c00370{bottom:759.586667pt;}
.ya_c00370{bottom:787.133333pt;}
.y9_c00370{bottom:814.653333pt;}
.y8_c00370{bottom:842.493333pt;}
.y7_c00370{bottom:870.013333pt;}
.y6_c00370{bottom:895.613333pt;}
.y5_c00370{bottom:926.693333pt;}
.y4_c00370{bottom:949.733333pt;}
.y1_c00370{bottom:993.573333pt;}
.h6_c00370{height:52.736250pt;}
.h2_c00370{height:52.762500pt;}
.h5_c00370{height:54.180000pt;}
.h1_c00370{height:57.375000pt;}
.h3_c00370{height:62.781250pt;}
.h4_c00370{height:62.812500pt;}
.h0_c00370{height:1056.000000pt;}
.w0_c00370{width:816.000000pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:113.312000pt;}
.x3_c00370{left:151.106667pt;}
.x2_c00370{left:396.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_c00371 {
    display:none;
  }
  .loading-indicator_c00371.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00371 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00371 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00371" -> "#page-container .classname_c00371")
 */
.pf_c00371 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00371 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00371 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00371 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00371 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00371 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00371 {overflow:visible;}
  }
}
.c_c00371 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00371 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00371:after { /* webkit #35443 */
  content: '';
}
.t_c00371:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00371 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00371 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00371 { /* info for Javascript */
  display:none;
}
.l_c00371 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00371 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00371 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00371:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00371;src:url('chunks/assets/font_d329ce74c6bee90520d0de18.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_99871dc5fcf89acd957aee4f.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_2c345543638cfebdf997782b.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_1f58d09a801632e00d99f866.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;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_c00371;src:url('chunks/assets/font_2b66b1f876d567f1ae3dcb27.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00371;src:url('chunks/assets/font_ccea96241bf76f7425ed2df6.woff2')format("woff");}.ff6_c00371{font-family:ff6_c00371;line-height:1.104004;font-style:normal;font-weight: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_c00371;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00371{font-family:ff7_c00371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls9_c00371{letter-spacing:-1.440000px;}
.ls8_c00371{letter-spacing:-0.241800px;}
.ls4_c00371{letter-spacing:0.000000px;}
.lsa_c00371{letter-spacing:0.022800px;}
.ls7_c00371{letter-spacing:0.166800px;}
.ls5_c00371{letter-spacing:0.486600px;}
.lsb_c00371{letter-spacing:0.504000px;}
.ls6_c00371{letter-spacing:0.648000px;}
.ls0_c00371{letter-spacing:0.720000px;}
.ls1_c00371{letter-spacing:0.740310px;}
.ls2_c00371{letter-spacing:2.160000px;}
.ls3_c00371{letter-spacing:3.600000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00371{word-spacing:-60.480000px;}
.ws9_c00371{word-spacing:-18.504000px;}
.ws0_c00371{word-spacing:-18.000000px;}
.ws3_c00371{word-spacing:-15.768000px;}
.ws1_c00371{word-spacing:-15.606600px;}
.ws5_c00371{word-spacing:-15.286800px;}
.ws8_c00371{word-spacing:-15.142800px;}
.ws2_c00371{word-spacing:-15.120000px;}
.ws6_c00371{word-spacing:-14.878200px;}
.ws7_c00371{word-spacing:-13.680000px;}
.wsa_c00371{word-spacing:0.000000px;}
._1_c00371{margin-left:-2.880000px;}
._2_c00371{margin-left:-1.656000px;}
._0_c00371{width:1.848000px;}
._4_c00371{width:3.073799px;}
._3_c00371{width:4.959602px;}
._5_c00371{width:6.800398px;}
._6_c00371{width:8.847602px;}
._16_c00371{width:10.048804px;}
._15_c00371{width:11.149799px;}
._11_c00371{width:12.910201px;}
._12_c00371{width:13.993799px;}
._f_c00371{width:15.000000px;}
._10_c00371{width:16.462201px;}
._a_c00371{width:19.224000px;}
._b_c00371{width:20.280000px;}
._9_c00371{width:21.696000px;}
._13_c00371{width:24.264000px;}
._14_c00371{width:25.800000px;}
._7_c00371{width:27.456000px;}
._8_c00371{width:29.688000px;}
._e_c00371{width:34.368000px;}
._c_c00371{width:35.400000px;}
._d_c00371{width:36.684024px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs1_c00371{font-size:60.480000px;}
.fs0_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y3_c00371{bottom:57.996000px;}
.y2_c00371{bottom:78.876000px;}
.y22_c00371{bottom:130.716000px;}
.y21_c00371{bottom:161.715000px;}
.y20_c00371{bottom:192.675000px;}
.y1f_c00371{bottom:223.635000px;}
.y1e_c00371{bottom:254.955000px;}
.y1d_c00371{bottom:285.945000px;}
.y1c_c00371{bottom:316.905000px;}
.y1b_c00371{bottom:347.865000px;}
.y1a_c00371{bottom:388.185000px;}
.y19_c00371{bottom:419.190000px;}
.y18_c00371{bottom:450.150000px;}
.y17_c00371{bottom:481.110000px;}
.y16_c00371{bottom:512.430000px;}
.y15_c00371{bottom:543.420000px;}
.y14_c00371{bottom:574.380000px;}
.y13_c00371{bottom:605.340000px;}
.y12_c00371{bottom:636.660000px;}
.y11_c00371{bottom:667.650000px;}
.y10_c00371{bottom:696.450000px;}
.yf_c00371{bottom:722.370000px;}
.ye_c00371{bottom:747.930000px;}
.yd_c00371{bottom:773.895000px;}
.yc_c00371{bottom:808.815000px;}
.yb_c00371{bottom:834.735000px;}
.ya_c00371{bottom:860.655000px;}
.y9_c00371{bottom:886.605000px;}
.y8_c00371{bottom:912.525000px;}
.y7_c00371{bottom:938.445000px;}
.y6_c00371{bottom:964.005000px;}
.y5_c00371{bottom:1013.370000px;}
.y4_c00371{bottom:1065.570000px;}
.y1_c00371{bottom:1117.770000px;}
.h5_c00371{height:59.328281px;}
.h3_c00371{height:59.357813px;}
.h4_c00371{height:60.952500px;}
.h1_c00371{height:64.546875px;}
.h2_c00371{height:70.664062px;}
.h0_c00371{height:1188.000000px;}
.w0_c00371{width:918.000000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:127.476000px;}
.x3_c00371{left:169.995000px;}
.x2_c00371{left:445.500000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls9_c00371{letter-spacing:-1.280000pt;}
.ls8_c00371{letter-spacing:-0.214933pt;}
.ls4_c00371{letter-spacing:0.000000pt;}
.lsa_c00371{letter-spacing:0.020267pt;}
.ls7_c00371{letter-spacing:0.148267pt;}
.ls5_c00371{letter-spacing:0.432533pt;}
.lsb_c00371{letter-spacing:0.448000pt;}
.ls6_c00371{letter-spacing:0.576000pt;}
.ls0_c00371{letter-spacing:0.640000pt;}
.ls1_c00371{letter-spacing:0.658053pt;}
.ls2_c00371{letter-spacing:1.920000pt;}
.ls3_c00371{letter-spacing:3.200000pt;}
.ws4_c00371{word-spacing:-53.760000pt;}
.ws9_c00371{word-spacing:-16.448000pt;}
.ws0_c00371{word-spacing:-16.000000pt;}
.ws3_c00371{word-spacing:-14.016000pt;}
.ws1_c00371{word-spacing:-13.872533pt;}
.ws5_c00371{word-spacing:-13.588267pt;}
.ws8_c00371{word-spacing:-13.460267pt;}
.ws2_c00371{word-spacing:-13.440000pt;}
.ws6_c00371{word-spacing:-13.225067pt;}
.ws7_c00371{word-spacing:-12.160000pt;}
.wsa_c00371{word-spacing:0.000000pt;}
._1_c00371{margin-left:-2.560000pt;}
._2_c00371{margin-left:-1.472000pt;}
._0_c00371{width:1.642667pt;}
._4_c00371{width:2.732266pt;}
._3_c00371{width:4.408535pt;}
._5_c00371{width:6.044798pt;}
._6_c00371{width:7.864535pt;}
._16_c00371{width:8.932270pt;}
._15_c00371{width:9.910932pt;}
._11_c00371{width:11.475734pt;}
._12_c00371{width:12.438932pt;}
._f_c00371{width:13.333333pt;}
._10_c00371{width:14.633068pt;}
._a_c00371{width:17.088000pt;}
._b_c00371{width:18.026667pt;}
._9_c00371{width:19.285333pt;}
._13_c00371{width:21.568000pt;}
._14_c00371{width:22.933333pt;}
._7_c00371{width:24.405333pt;}
._8_c00371{width:26.389333pt;}
._e_c00371{width:30.549333pt;}
._c_c00371{width:31.466667pt;}
._d_c00371{width:32.608021pt;}
.fs1_c00371{font-size:53.760000pt;}
.fs0_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y3_c00371{bottom:51.552000pt;}
.y2_c00371{bottom:70.112000pt;}
.y22_c00371{bottom:116.192000pt;}
.y21_c00371{bottom:143.746667pt;}
.y20_c00371{bottom:171.266667pt;}
.y1f_c00371{bottom:198.786667pt;}
.y1e_c00371{bottom:226.626667pt;}
.y1d_c00371{bottom:254.173333pt;}
.y1c_c00371{bottom:281.693333pt;}
.y1b_c00371{bottom:309.213333pt;}
.y1a_c00371{bottom:345.053333pt;}
.y19_c00371{bottom:372.613333pt;}
.y18_c00371{bottom:400.133333pt;}
.y17_c00371{bottom:427.653333pt;}
.y16_c00371{bottom:455.493333pt;}
.y15_c00371{bottom:483.040000pt;}
.y14_c00371{bottom:510.560000pt;}
.y13_c00371{bottom:538.080000pt;}
.y12_c00371{bottom:565.920000pt;}
.y11_c00371{bottom:593.466667pt;}
.y10_c00371{bottom:619.066667pt;}
.yf_c00371{bottom:642.106667pt;}
.ye_c00371{bottom:664.826667pt;}
.yd_c00371{bottom:687.906667pt;}
.yc_c00371{bottom:718.946667pt;}
.yb_c00371{bottom:741.986667pt;}
.ya_c00371{bottom:765.026667pt;}
.y9_c00371{bottom:788.093333pt;}
.y8_c00371{bottom:811.133333pt;}
.y7_c00371{bottom:834.173333pt;}
.y6_c00371{bottom:856.893333pt;}
.y5_c00371{bottom:900.773333pt;}
.y4_c00371{bottom:947.173333pt;}
.y1_c00371{bottom:993.573333pt;}
.h5_c00371{height:52.736250pt;}
.h3_c00371{height:52.762500pt;}
.h4_c00371{height:54.180000pt;}
.h1_c00371{height:57.375000pt;}
.h2_c00371{height:62.812500pt;}
.h0_c00371{height:1056.000000pt;}
.w0_c00371{width:816.000000pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:113.312000pt;}
.x3_c00371{left:151.106667pt;}
.x2_c00371{left:396.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_c00372 {
    display:none;
  }
  .loading-indicator_c00372.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00372 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00372 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00372" -> "#page-container .classname_c00372")
 */
.pf_c00372 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00372 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00372 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00372 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00372 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00372 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00372 {overflow:visible;}
  }
}
.c_c00372 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00372 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00372:after { /* webkit #35443 */
  content: '';
}
.t_c00372:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00372 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00372 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00372 { /* info for Javascript */
  display:none;
}
.l_c00372 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00372 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00372 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00372:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00372;src:url('chunks/assets/font_f4b42e79bf7d9712624b3bab.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_a61798573cd8ca23d42fd655.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_ea63e9c7beb6553d1d606c7f.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;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_c00372;src:url('chunks/assets/font_86b494f103390f16d8e39857.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00372;src:url('chunks/assets/font_af3172fa823e4caf319bc14a.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00372;src:url('chunks/assets/font_41a6938890841cae40385754.woff2')format("woff");}.ff6_c00372{font-family:ff6_c00372;line-height:1.104004;font-style:normal;font-weight: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_c00372;src:url('chunks/assets/font_5c60b88e351f98af04826b23.woff2')format("woff");}.ff7_c00372{font-family:ff7_c00372;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.lsf_c00372{letter-spacing:-2.376000px;}
.ls7_c00372{letter-spacing:-1.440000px;}
.lsc_c00372{letter-spacing:-1.422000px;}
.ls11_c00372{letter-spacing:-0.936000px;}
.lsa_c00372{letter-spacing:-0.720000px;}
.ls10_c00372{letter-spacing:-0.486600px;}
.lse_c00372{letter-spacing:-0.241800px;}
.lsd_c00372{letter-spacing:-0.169800px;}
.ls6_c00372{letter-spacing:0.000000px;}
.ls8_c00372{letter-spacing:0.144000px;}
.lsb_c00372{letter-spacing:0.166800px;}
.ls9_c00372{letter-spacing:0.486600px;}
.ls5_c00372{letter-spacing:0.506880px;}
.ls1_c00372{letter-spacing:0.720000px;}
.ls3_c00372{letter-spacing:0.743305px;}
.ls2_c00372{letter-spacing:0.900000px;}
.ls4_c00372{letter-spacing:3.600000px;}
.ls0_c00372{letter-spacing:18.000000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00372{word-spacing:-72.000000px;}
.ws4_c00372{word-spacing:-60.480000px;}
.ws0_c00372{word-spacing:-18.000000px;}
.ws2_c00372{word-spacing:-15.606600px;}
.ws5_c00372{word-spacing:-15.286800px;}
.ws3_c00372{word-spacing:-15.120000px;}
.ws6_c00372{word-spacing:-14.950200px;}
.ws7_c00372{word-spacing:-14.878200px;}
.ws9_c00372{word-spacing:-14.633400px;}
.ws8_c00372{word-spacing:-12.744000px;}
.wsa_c00372{word-spacing:0.000000px;}
._3_c00372{margin-left:-2.736000px;}
._1_c00372{margin-left:-1.296000px;}
._0_c00372{width:1.224000px;}
._4_c00372{width:2.376000px;}
._5_c00372{width:4.008024px;}
._6_c00372{width:5.555904px;}
._f_c00372{width:6.756432px;}
._d_c00372{width:8.352000px;}
._b_c00372{width:9.432000px;}
._c_c00372{width:10.584000px;}
._9_c00372{width:12.168000px;}
._a_c00372{width:13.896000px;}
._2_c00372{width:15.048000px;}
._10_c00372{width:16.488000px;}
._e_c00372{width:21.240000px;}
._7_c00372{width:22.392000px;}
._8_c00372{width:23.688000px;}
.fc0_c00372{color:rgb(0,0,0);}
.fs3_c00372{font-size:38.880000px;}
.fs1_c00372{font-size:47.520000px;}
.fs2_c00372{font-size:60.480000px;}
.fs0_c00372{font-size:72.000000px;}
.y0_c00372{bottom:0.000000px;}
.y3_c00372{bottom:57.996000px;}
.y2_c00372{bottom:78.876000px;}
.y26_c00372{bottom:130.716000px;}
.y25_c00372{bottom:147.996000px;}
.y24_c00372{bottom:154.875000px;}
.y23_c00372{bottom:165.315000px;}
.y22_c00372{bottom:172.155000px;}
.y21_c00372{bottom:182.955000px;}
.y20_c00372{bottom:248.475000px;}
.y1e_c00372{bottom:279.465000px;}
.y1f_c00372{bottom:287.745000px;}
.y1d_c00372{bottom:310.425000px;}
.y1c_c00372{bottom:341.385000px;}
.y1b_c00372{bottom:372.705000px;}
.y1a_c00372{bottom:401.190000px;}
.y19_c00372{bottom:427.110000px;}
.y18_c00372{bottom:453.030000px;}
.y17_c00372{bottom:487.950000px;}
.y16_c00372{bottom:513.870000px;}
.y15_c00372{bottom:539.820000px;}
.y14_c00372{bottom:565.740000px;}
.y13_c00372{bottom:591.660000px;}
.y12_c00372{bottom:640.650000px;}
.y11_c00372{bottom:692.850000px;}
.y10_c00372{bottom:723.810000px;}
.yf_c00372{bottom:754.770000px;}
.ye_c00372{bottom:785.775000px;}
.yc_c00372{bottom:817.095000px;}
.yd_c00372{bottom:825.375000px;}
.yb_c00372{bottom:848.055000px;}
.ya_c00372{bottom:879.015000px;}
.y9_c00372{bottom:910.005000px;}
.y8_c00372{bottom:941.325000px;}
.y7_c00372{bottom:972.285000px;}
.y6_c00372{bottom:1003.245000px;}
.y5_c00372{bottom:1034.250000px;}
.y4_c00372{bottom:1065.570000px;}
.y1_c00372{bottom:1117.770000px;}
.h7_c00372{height:34.855313px;}
.h4_c00372{height:46.638281px;}
.h8_c00372{height:54.219375px;}
.h9_c00372{height:54.514688px;}
.h6_c00372{height:59.328281px;}
.h5_c00372{height:59.357813px;}
.h1_c00372{height:64.546875px;}
.h2_c00372{height:70.664062px;}
.h3_c00372{height:1187.995500px;}
.h0_c00372{height:1188.000000px;}
.w1_c00372{width:917.997000px;}
.w0_c00372{width:918.000000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:127.476000px;}
.x9_c00372{left:142.596000px;}
.x5_c00372{left:169.995000px;}
.x3_c00372{left:308.262000px;}
.x4_c00372{left:326.625000px;}
.x8_c00372{left:343.590000px;}
.x6_c00372{left:364.107000px;}
.x7_c00372{left:382.470000px;}
.x2_c00372{left:445.500000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.lsf_c00372{letter-spacing:-2.112000pt;}
.ls7_c00372{letter-spacing:-1.280000pt;}
.lsc_c00372{letter-spacing:-1.264000pt;}
.ls11_c00372{letter-spacing:-0.832000pt;}
.lsa_c00372{letter-spacing:-0.640000pt;}
.ls10_c00372{letter-spacing:-0.432533pt;}
.lse_c00372{letter-spacing:-0.214933pt;}
.lsd_c00372{letter-spacing:-0.150933pt;}
.ls6_c00372{letter-spacing:0.000000pt;}
.ls8_c00372{letter-spacing:0.128000pt;}
.lsb_c00372{letter-spacing:0.148267pt;}
.ls9_c00372{letter-spacing:0.432533pt;}
.ls5_c00372{letter-spacing:0.450560pt;}
.ls1_c00372{letter-spacing:0.640000pt;}
.ls3_c00372{letter-spacing:0.660716pt;}
.ls2_c00372{letter-spacing:0.800000pt;}
.ls4_c00372{letter-spacing:3.200000pt;}
.ls0_c00372{letter-spacing:16.000000pt;}
.ws1_c00372{word-spacing:-64.000000pt;}
.ws4_c00372{word-spacing:-53.760000pt;}
.ws0_c00372{word-spacing:-16.000000pt;}
.ws2_c00372{word-spacing:-13.872533pt;}
.ws5_c00372{word-spacing:-13.588267pt;}
.ws3_c00372{word-spacing:-13.440000pt;}
.ws6_c00372{word-spacing:-13.289067pt;}
.ws7_c00372{word-spacing:-13.225067pt;}
.ws9_c00372{word-spacing:-13.007467pt;}
.ws8_c00372{word-spacing:-11.328000pt;}
.wsa_c00372{word-spacing:0.000000pt;}
._3_c00372{margin-left:-2.432000pt;}
._1_c00372{margin-left:-1.152000pt;}
._0_c00372{width:1.088000pt;}
._4_c00372{width:2.112000pt;}
._5_c00372{width:3.562688pt;}
._6_c00372{width:4.938581pt;}
._f_c00372{width:6.005717pt;}
._d_c00372{width:7.424000pt;}
._b_c00372{width:8.384000pt;}
._c_c00372{width:9.408000pt;}
._9_c00372{width:10.816000pt;}
._a_c00372{width:12.352000pt;}
._2_c00372{width:13.376000pt;}
._10_c00372{width:14.656000pt;}
._e_c00372{width:18.880000pt;}
._7_c00372{width:19.904000pt;}
._8_c00372{width:21.056000pt;}
.fs3_c00372{font-size:34.560000pt;}
.fs1_c00372{font-size:42.240000pt;}
.fs2_c00372{font-size:53.760000pt;}
.fs0_c00372{font-size:64.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y3_c00372{bottom:51.552000pt;}
.y2_c00372{bottom:70.112000pt;}
.y26_c00372{bottom:116.192000pt;}
.y25_c00372{bottom:131.552000pt;}
.y24_c00372{bottom:137.666667pt;}
.y23_c00372{bottom:146.946667pt;}
.y22_c00372{bottom:153.026667pt;}
.y21_c00372{bottom:162.626667pt;}
.y20_c00372{bottom:220.866667pt;}
.y1e_c00372{bottom:248.413333pt;}
.y1f_c00372{bottom:255.773333pt;}
.y1d_c00372{bottom:275.933333pt;}
.y1c_c00372{bottom:303.453333pt;}
.y1b_c00372{bottom:331.293333pt;}
.y1a_c00372{bottom:356.613333pt;}
.y19_c00372{bottom:379.653333pt;}
.y18_c00372{bottom:402.693333pt;}
.y17_c00372{bottom:433.733333pt;}
.y16_c00372{bottom:456.773333pt;}
.y15_c00372{bottom:479.840000pt;}
.y14_c00372{bottom:502.880000pt;}
.y13_c00372{bottom:525.920000pt;}
.y12_c00372{bottom:569.466667pt;}
.y11_c00372{bottom:615.866667pt;}
.y10_c00372{bottom:643.386667pt;}
.yf_c00372{bottom:670.906667pt;}
.ye_c00372{bottom:698.466667pt;}
.yc_c00372{bottom:726.306667pt;}
.yd_c00372{bottom:733.666667pt;}
.yb_c00372{bottom:753.826667pt;}
.ya_c00372{bottom:781.346667pt;}
.y9_c00372{bottom:808.893333pt;}
.y8_c00372{bottom:836.733333pt;}
.y7_c00372{bottom:864.253333pt;}
.y6_c00372{bottom:891.773333pt;}
.y5_c00372{bottom:919.333333pt;}
.y4_c00372{bottom:947.173333pt;}
.y1_c00372{bottom:993.573333pt;}
.h7_c00372{height:30.982500pt;}
.h4_c00372{height:41.456250pt;}
.h8_c00372{height:48.195000pt;}
.h9_c00372{height:48.457500pt;}
.h6_c00372{height:52.736250pt;}
.h5_c00372{height:52.762500pt;}
.h1_c00372{height:57.375000pt;}
.h2_c00372{height:62.812500pt;}
.h3_c00372{height:1055.996000pt;}
.h0_c00372{height:1056.000000pt;}
.w1_c00372{width:815.997333pt;}
.w0_c00372{width:816.000000pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:113.312000pt;}
.x9_c00372{left:126.752000pt;}
.x5_c00372{left:151.106667pt;}
.x3_c00372{left:274.010667pt;}
.x4_c00372{left:290.333333pt;}
.x8_c00372{left:305.413333pt;}
.x6_c00372{left:323.650667pt;}
.x7_c00372{left:339.973333pt;}
.x2_c00372{left:396.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_c00373 {
    display:none;
  }
  .loading-indicator_c00373.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00373 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00373 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00373" -> "#page-container .classname_c00373")
 */
.pf_c00373 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00373 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00373 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00373 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00373 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00373 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00373 {overflow:visible;}
  }
}
.c_c00373 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00373 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00373:after { /* webkit #35443 */
  content: '';
}
.t_c00373:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00373 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00373 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00373 { /* info for Javascript */
  display:none;
}
.l_c00373 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00373 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00373 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00373:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00373;src:url('chunks/assets/font_6183797ca10389e4669b254c.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_72dec97780c1042459ae7ca4.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_1da13ae28850c21e63468336.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_2dc23e3056834899fa29c121.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;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_c00373;src:url('chunks/assets/font_945eede4b6b88346e313a99b.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00373;src:url('chunks/assets/font_d942d4c8ad03cdabd40cef1d.woff2')format("woff");}.ff6_c00373{font-family:ff6_c00373;line-height:1.104004;font-style:normal;font-weight: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_c00373;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff7_c00373{font-family:ff7_c00373;line-height:1.117188;font-style:normal;font-weight: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_c00373;src:url('chunks/assets/font_a5d6c33d57a42d27398ec83f.woff2')format("woff");}.ff8_c00373{font-family:ff8_c00373;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls11_c00373{letter-spacing:-1.440000px;}
.ls13_c00373{letter-spacing:-0.954000px;}
.ls10_c00373{letter-spacing:-0.810000px;}
.lsb_c00373{letter-spacing:-0.720000px;}
.lsc_c00373{letter-spacing:-0.532800px;}
.ls12_c00373{letter-spacing:-0.486600px;}
.lsf_c00373{letter-spacing:-0.241800px;}
.ls9_c00373{letter-spacing:0.000000px;}
.lsd_c00373{letter-spacing:0.020400px;}
.lse_c00373{letter-spacing:0.166800px;}
.ls5_c00373{letter-spacing:0.302400px;}
.lsa_c00373{letter-spacing:0.486600px;}
.ls0_c00373{letter-spacing:0.720000px;}
.ls4_c00373{letter-spacing:0.739907px;}
.ls7_c00373{letter-spacing:0.740071px;}
.ls3_c00373{letter-spacing:0.743034px;}
.ls6_c00373{letter-spacing:0.743272px;}
.ls2_c00373{letter-spacing:0.840000px;}
.ls1_c00373{letter-spacing:0.900000px;}
.ls8_c00373{letter-spacing:12.240000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00373{word-spacing:-60.480000px;}
.ws0_c00373{word-spacing:-18.000000px;}
.ws1_c00373{word-spacing:-15.606600px;}
.ws6_c00373{word-spacing:-15.286800px;}
.ws5_c00373{word-spacing:-15.140400px;}
.ws2_c00373{word-spacing:-15.120000px;}
.ws7_c00373{word-spacing:-14.878200px;}
.wsa_c00373{word-spacing:-14.633400px;}
.ws4_c00373{word-spacing:-14.587200px;}
.ws8_c00373{word-spacing:-14.310000px;}
.wsb_c00373{word-spacing:-14.166000px;}
.ws9_c00373{word-spacing:-13.680000px;}
.wsc_c00373{word-spacing:0.000000px;}
._1_c00373{margin-left:-2.736000px;}
._3_c00373{margin-left:-1.584000px;}
._0_c00373{width:1.512000px;}
._5_c00373{width:3.048048px;}
._c_c00373{width:4.702009px;}
._6_c00373{width:6.289799px;}
._7_c00373{width:7.862400px;}
._a_c00373{width:8.894408px;}
._8_c00373{width:9.918599px;}
._9_c00373{width:11.612402px;}
._b_c00373{width:12.773942px;}
._2_c00373{width:14.328000px;}
._4_c00373{width:15.395976px;}
._d_c00373{width:27.156000px;}
._e_c00373{width:28.428000px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs3_c00373{font-size:38.880000px;}
.fs2_c00373{font-size:47.520000px;}
.fs1_c00373{font-size:60.480000px;}
.fs0_c00373{font-size:72.000000px;}
.y0_c00373{bottom:0.000000px;}
.y3_c00373{bottom:57.996000px;}
.y2_c00373{bottom:78.876000px;}
.y28_c00373{bottom:130.716000px;}
.y27_c00373{bottom:147.996000px;}
.y26_c00373{bottom:165.315000px;}
.y25_c00373{bottom:182.595000px;}
.y24_c00373{bottom:189.435000px;}
.y23_c00373{bottom:199.515000px;}
.y22_c00373{bottom:206.355000px;}
.y21_c00373{bottom:217.515000px;}
.y20_c00373{bottom:249.555000px;}
.y1f_c00373{bottom:280.905000px;}
.y1e_c00373{bottom:311.865000px;}
.y1d_c00373{bottom:342.825000px;}
.y1c_c00373{bottom:373.785000px;}
.y1b_c00373{bottom:405.150000px;}
.y19_c00373{bottom:445.110000px;}
.y1a_c00373{bottom:453.390000px;}
.y18_c00373{bottom:476.070000px;}
.y17_c00373{bottom:507.030000px;}
.y16_c00373{bottom:538.380000px;}
.y14_c00373{bottom:569.340000px;}
.y15_c00373{bottom:577.620000px;}
.y13_c00373{bottom:600.300000px;}
.y12_c00373{bottom:631.260000px;}
.y11_c00373{bottom:662.610000px;}
.y10_c00373{bottom:691.050000px;}
.yf_c00373{bottom:716.970000px;}
.ye_c00373{bottom:742.890000px;}
.yd_c00373{bottom:768.855000px;}
.yc_c00373{bottom:803.775000px;}
.yb_c00373{bottom:829.695000px;}
.ya_c00373{bottom:855.615000px;}
.y9_c00373{bottom:881.175000px;}
.y8_c00373{bottom:907.125000px;}
.y7_c00373{bottom:933.045000px;}
.y6_c00373{bottom:982.365000px;}
.y5_c00373{bottom:1034.250000px;}
.y4_c00373{bottom:1065.570000px;}
.y1_c00373{bottom:1117.770000px;}
.h7_c00373{height:34.855313px;}
.h6_c00373{height:46.638281px;}
.h9_c00373{height:54.219375px;}
.h8_c00373{height:54.514688px;}
.h4_c00373{height:59.328281px;}
.h3_c00373{height:59.357813px;}
.h1_c00373{height:64.546875px;}
.h2_c00373{height:70.664062px;}
.h5_c00373{height:1187.995500px;}
.h0_c00373{height:1188.000000px;}
.w1_c00373{width:917.997000px;}
.w0_c00373{width:918.000000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:127.476000px;}
.x9_c00373{left:142.596000px;}
.x3_c00373{left:169.995000px;}
.x6_c00373{left:192.312000px;}
.x7_c00373{left:210.675000px;}
.x4_c00373{left:245.982000px;}
.x5_c00373{left:264.345000px;}
.x8_c00373{left:343.590000px;}
.x2_c00373{left:445.500000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls11_c00373{letter-spacing:-1.280000pt;}
.ls13_c00373{letter-spacing:-0.848000pt;}
.ls10_c00373{letter-spacing:-0.720000pt;}
.lsb_c00373{letter-spacing:-0.640000pt;}
.lsc_c00373{letter-spacing:-0.473600pt;}
.ls12_c00373{letter-spacing:-0.432533pt;}
.lsf_c00373{letter-spacing:-0.214933pt;}
.ls9_c00373{letter-spacing:0.000000pt;}
.lsd_c00373{letter-spacing:0.018133pt;}
.lse_c00373{letter-spacing:0.148267pt;}
.ls5_c00373{letter-spacing:0.268800pt;}
.lsa_c00373{letter-spacing:0.432533pt;}
.ls0_c00373{letter-spacing:0.640000pt;}
.ls4_c00373{letter-spacing:0.657695pt;}
.ls7_c00373{letter-spacing:0.657841pt;}
.ls3_c00373{letter-spacing:0.660475pt;}
.ls6_c00373{letter-spacing:0.660687pt;}
.ls2_c00373{letter-spacing:0.746667pt;}
.ls1_c00373{letter-spacing:0.800000pt;}
.ls8_c00373{letter-spacing:10.880000pt;}
.ws3_c00373{word-spacing:-53.760000pt;}
.ws0_c00373{word-spacing:-16.000000pt;}
.ws1_c00373{word-spacing:-13.872533pt;}
.ws6_c00373{word-spacing:-13.588267pt;}
.ws5_c00373{word-spacing:-13.458133pt;}
.ws2_c00373{word-spacing:-13.440000pt;}
.ws7_c00373{word-spacing:-13.225067pt;}
.wsa_c00373{word-spacing:-13.007467pt;}
.ws4_c00373{word-spacing:-12.966400pt;}
.ws8_c00373{word-spacing:-12.720000pt;}
.wsb_c00373{word-spacing:-12.592000pt;}
.ws9_c00373{word-spacing:-12.160000pt;}
.wsc_c00373{word-spacing:0.000000pt;}
._1_c00373{margin-left:-2.432000pt;}
._3_c00373{margin-left:-1.408000pt;}
._0_c00373{width:1.344000pt;}
._5_c00373{width:2.709376pt;}
._c_c00373{width:4.179564pt;}
._6_c00373{width:5.590932pt;}
._7_c00373{width:6.988800pt;}
._a_c00373{width:7.906140pt;}
._8_c00373{width:8.816532pt;}
._9_c00373{width:10.322135pt;}
._b_c00373{width:11.354615pt;}
._2_c00373{width:12.736000pt;}
._4_c00373{width:13.685312pt;}
._d_c00373{width:24.138667pt;}
._e_c00373{width:25.269333pt;}
.fs3_c00373{font-size:34.560000pt;}
.fs2_c00373{font-size:42.240000pt;}
.fs1_c00373{font-size:53.760000pt;}
.fs0_c00373{font-size:64.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y3_c00373{bottom:51.552000pt;}
.y2_c00373{bottom:70.112000pt;}
.y28_c00373{bottom:116.192000pt;}
.y27_c00373{bottom:131.552000pt;}
.y26_c00373{bottom:146.946667pt;}
.y25_c00373{bottom:162.306667pt;}
.y24_c00373{bottom:168.386667pt;}
.y23_c00373{bottom:177.346667pt;}
.y22_c00373{bottom:183.426667pt;}
.y21_c00373{bottom:193.346667pt;}
.y20_c00373{bottom:221.826667pt;}
.y1f_c00373{bottom:249.693333pt;}
.y1e_c00373{bottom:277.213333pt;}
.y1d_c00373{bottom:304.733333pt;}
.y1c_c00373{bottom:332.253333pt;}
.y1b_c00373{bottom:360.133333pt;}
.y19_c00373{bottom:395.653333pt;}
.y1a_c00373{bottom:403.013333pt;}
.y18_c00373{bottom:423.173333pt;}
.y17_c00373{bottom:450.693333pt;}
.y16_c00373{bottom:478.560000pt;}
.y14_c00373{bottom:506.080000pt;}
.y15_c00373{bottom:513.440000pt;}
.y13_c00373{bottom:533.600000pt;}
.y12_c00373{bottom:561.120000pt;}
.y11_c00373{bottom:588.986667pt;}
.y10_c00373{bottom:614.266667pt;}
.yf_c00373{bottom:637.306667pt;}
.ye_c00373{bottom:660.346667pt;}
.yd_c00373{bottom:683.426667pt;}
.yc_c00373{bottom:714.466667pt;}
.yb_c00373{bottom:737.506667pt;}
.ya_c00373{bottom:760.546667pt;}
.y9_c00373{bottom:783.266667pt;}
.y8_c00373{bottom:806.333333pt;}
.y7_c00373{bottom:829.373333pt;}
.y6_c00373{bottom:873.213333pt;}
.y5_c00373{bottom:919.333333pt;}
.y4_c00373{bottom:947.173333pt;}
.y1_c00373{bottom:993.573333pt;}
.h7_c00373{height:30.982500pt;}
.h6_c00373{height:41.456250pt;}
.h9_c00373{height:48.195000pt;}
.h8_c00373{height:48.457500pt;}
.h4_c00373{height:52.736250pt;}
.h3_c00373{height:52.762500pt;}
.h1_c00373{height:57.375000pt;}
.h2_c00373{height:62.812500pt;}
.h5_c00373{height:1055.996000pt;}
.h0_c00373{height:1056.000000pt;}
.w1_c00373{width:815.997333pt;}
.w0_c00373{width:816.000000pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:113.312000pt;}
.x9_c00373{left:126.752000pt;}
.x3_c00373{left:151.106667pt;}
.x6_c00373{left:170.944000pt;}
.x7_c00373{left:187.266667pt;}
.x4_c00373{left:218.650667pt;}
.x5_c00373{left:234.973333pt;}
.x8_c00373{left:305.413333pt;}
.x2_c00373{left:396.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_c00374 {
    display:none;
  }
  .loading-indicator_c00374.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00374 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00374 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00374" -> "#page-container .classname_c00374")
 */
.pf_c00374 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00374 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00374 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00374 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00374 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00374 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00374 {overflow:visible;}
  }
}
.c_c00374 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00374 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00374:after { /* webkit #35443 */
  content: '';
}
.t_c00374:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00374 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00374 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00374 { /* info for Javascript */
  display:none;
}
.l_c00374 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00374 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00374 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00374:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00374;src:url('chunks/assets/font_d02c758cdc715ec3313396f1.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00374;src:url('chunks/assets/font_abfb2353457006d9bdacd412.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_8b6cfb69ec23a8afa028f493.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;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_c00374;src:url('chunks/assets/font_46ebcb8bd43d47a8b77b875a.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00374;src:url('chunks/assets/font_bb1ab9b28a261f4757aab12a.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00374;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00374{font-family:ff6_c00374;line-height:1.311035;font-style:normal;font-weight: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_c00374;src:url('chunks/assets/font_94b9c8cbd87fc9484fa46254.woff2')format("woff");}.ff7_c00374{font-family:ff7_c00374;line-height:1.104004;font-style:normal;font-weight: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_c00374;src:url('chunks/assets/font_781d5c0545835d7ec4428213.woff2')format("woff");}.ff8_c00374{font-family:ff8_c00374;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.lsf_c00374{letter-spacing:-1.440000px;}
.lse_c00374{letter-spacing:-1.416000px;}
.ls11_c00374{letter-spacing:-0.936000px;}
.lsb_c00374{letter-spacing:-0.720000px;}
.ls10_c00374{letter-spacing:-0.486600px;}
.ls13_c00374{letter-spacing:-0.337200px;}
.lsd_c00374{letter-spacing:-0.302400px;}
.lsc_c00374{letter-spacing:-0.241800px;}
.lsa_c00374{letter-spacing:0.000000px;}
.ls12_c00374{letter-spacing:0.020400px;}
.ls15_c00374{letter-spacing:0.166800px;}
.ls7_c00374{letter-spacing:0.302400px;}
.ls14_c00374{letter-spacing:0.518400px;}
.ls1_c00374{letter-spacing:0.524160px;}
.ls2_c00374{letter-spacing:0.720000px;}
.ls4_c00374{letter-spacing:3.600000px;}
.ls3_c00374{letter-spacing:3.744000px;}
.ls9_c00374{letter-spacing:5.027399px;}
.ls5_c00374{letter-spacing:5.040000px;}
.ls6_c00374{letter-spacing:5.060160px;}
.ls8_c00374{letter-spacing:5.063272px;}
.ls0_c00374{letter-spacing:10.800000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00374{word-spacing:-72.000000px;}
.ws4_c00374{word-spacing:-60.480000px;}
.ws0_c00374{word-spacing:-18.000000px;}
.ws9_c00374{word-spacing:-15.638400px;}
.wsa_c00374{word-spacing:-15.286800px;}
.ws7_c00374{word-spacing:-15.140400px;}
.ws2_c00374{word-spacing:-15.120000px;}
.ws3_c00374{word-spacing:-14.817600px;}
.ws8_c00374{word-spacing:-14.782800px;}
.ws6_c00374{word-spacing:-14.633400px;}
.ws5_c00374{word-spacing:-13.680000px;}
.wsb_c00374{word-spacing:0.000000px;}
._5_c00374{margin-left:-3.528000px;}
._8_c00374{margin-left:-2.448000px;}
._2_c00374{margin-left:-1.440000px;}
._1_c00374{width:1.368000px;}
._6_c00374{width:2.952000px;}
._7_c00374{width:4.752000px;}
._13_c00374{width:5.820000px;}
._d_c00374{width:6.912000px;}
._e_c00374{width:8.136000px;}
._11_c00374{width:9.576000px;}
._b_c00374{width:10.656000px;}
._c_c00374{width:12.384000px;}
._0_c00374{width:14.184000px;}
._3_c00374{width:15.696000px;}
._4_c00374{width:16.848000px;}
._12_c00374{width:18.123598px;}
._9_c00374{width:19.584000px;}
._a_c00374{width:21.504000px;}
._10_c00374{width:28.584000px;}
._f_c00374{width:29.808000px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs3_c00374{font-size:38.880000px;}
.fs1_c00374{font-size:47.520000px;}
.fs2_c00374{font-size:60.480000px;}
.fs0_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y3_c00374{bottom:57.996000px;}
.y2_c00374{bottom:78.876000px;}
.y2b_c00374{bottom:130.716000px;}
.y2a_c00374{bottom:147.996000px;}
.y29_c00374{bottom:154.875000px;}
.y28_c00374{bottom:165.315000px;}
.y27_c00374{bottom:182.595000px;}
.y26_c00374{bottom:199.515000px;}
.y25_c00374{bottom:216.795000px;}
.y24_c00374{bottom:223.635000px;}
.y23_c00374{bottom:234.075000px;}
.y22_c00374{bottom:251.355000px;}
.y21_c00374{bottom:258.195000px;}
.y20_c00374{bottom:269.355000px;}
.y1f_c00374{bottom:294.945000px;}
.y1e_c00374{bottom:325.905000px;}
.y1d_c00374{bottom:356.865000px;}
.y1c_c00374{bottom:388.185000px;}
.y1b_c00374{bottom:419.190000px;}
.y1a_c00374{bottom:450.150000px;}
.y19_c00374{bottom:478.950000px;}
.y18_c00374{bottom:504.870000px;}
.y17_c00374{bottom:539.820000px;}
.y16_c00374{bottom:565.740000px;}
.y15_c00374{bottom:591.660000px;}
.y14_c00374{bottom:640.650000px;}
.y12_c00374{bottom:692.850000px;}
.y13_c00374{bottom:701.130000px;}
.y11_c00374{bottom:723.810000px;}
.y10_c00374{bottom:754.770000px;}
.yf_c00374{bottom:785.775000px;}
.ye_c00374{bottom:817.095000px;}
.yd_c00374{bottom:848.055000px;}
.yc_c00374{bottom:879.015000px;}
.ya_c00374{bottom:910.005000px;}
.yb_c00374{bottom:918.285000px;}
.y9_c00374{bottom:941.325000px;}
.y8_c00374{bottom:972.285000px;}
.y7_c00374{bottom:1003.245000px;}
.y6_c00374{bottom:1034.250000px;}
.y4_c00374{bottom:1065.570000px;}
.y5_c00374{bottom:1073.850000px;}
.y1_c00374{bottom:1117.770000px;}
.h8_c00374{height:34.855313px;}
.h4_c00374{height:46.638281px;}
.ha_c00374{height:54.219375px;}
.h9_c00374{height:54.514688px;}
.h7_c00374{height:59.328281px;}
.h5_c00374{height:59.357813px;}
.h6_c00374{height:60.952500px;}
.h1_c00374{height:64.546875px;}
.h2_c00374{height:70.664062px;}
.h3_c00374{height:1187.995500px;}
.h0_c00374{height:1188.000000px;}
.w1_c00374{width:917.997000px;}
.w0_c00374{width:918.000000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:127.476000px;}
.xb_c00374{left:142.596000px;}
.x9_c00374{left:169.995000px;}
.x3_c00374{left:195.912000px;}
.x4_c00374{left:214.275000px;}
.xa_c00374{left:343.590000px;}
.x2_c00374{left:445.500000px;}
.x5_c00374{left:480.057000px;}
.x6_c00374{left:498.420000px;}
.x7_c00374{left:705.132000px;}
.x8_c00374{left:723.495000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.lsf_c00374{letter-spacing:-1.280000pt;}
.lse_c00374{letter-spacing:-1.258667pt;}
.ls11_c00374{letter-spacing:-0.832000pt;}
.lsb_c00374{letter-spacing:-0.640000pt;}
.ls10_c00374{letter-spacing:-0.432533pt;}
.ls13_c00374{letter-spacing:-0.299733pt;}
.lsd_c00374{letter-spacing:-0.268800pt;}
.lsc_c00374{letter-spacing:-0.214933pt;}
.lsa_c00374{letter-spacing:0.000000pt;}
.ls12_c00374{letter-spacing:0.018133pt;}
.ls15_c00374{letter-spacing:0.148267pt;}
.ls7_c00374{letter-spacing:0.268800pt;}
.ls14_c00374{letter-spacing:0.460800pt;}
.ls1_c00374{letter-spacing:0.465920pt;}
.ls2_c00374{letter-spacing:0.640000pt;}
.ls4_c00374{letter-spacing:3.200000pt;}
.ls3_c00374{letter-spacing:3.328000pt;}
.ls9_c00374{letter-spacing:4.468799pt;}
.ls5_c00374{letter-spacing:4.480000pt;}
.ls6_c00374{letter-spacing:4.497920pt;}
.ls8_c00374{letter-spacing:4.500687pt;}
.ls0_c00374{letter-spacing:9.600000pt;}
.ws1_c00374{word-spacing:-64.000000pt;}
.ws4_c00374{word-spacing:-53.760000pt;}
.ws0_c00374{word-spacing:-16.000000pt;}
.ws9_c00374{word-spacing:-13.900800pt;}
.wsa_c00374{word-spacing:-13.588267pt;}
.ws7_c00374{word-spacing:-13.458133pt;}
.ws2_c00374{word-spacing:-13.440000pt;}
.ws3_c00374{word-spacing:-13.171200pt;}
.ws8_c00374{word-spacing:-13.140267pt;}
.ws6_c00374{word-spacing:-13.007467pt;}
.ws5_c00374{word-spacing:-12.160000pt;}
.wsb_c00374{word-spacing:0.000000pt;}
._5_c00374{margin-left:-3.136000pt;}
._8_c00374{margin-left:-2.176000pt;}
._2_c00374{margin-left:-1.280000pt;}
._1_c00374{width:1.216000pt;}
._6_c00374{width:2.624000pt;}
._7_c00374{width:4.224000pt;}
._13_c00374{width:5.173333pt;}
._d_c00374{width:6.144000pt;}
._e_c00374{width:7.232000pt;}
._11_c00374{width:8.512000pt;}
._b_c00374{width:9.472000pt;}
._c_c00374{width:11.008000pt;}
._0_c00374{width:12.608000pt;}
._3_c00374{width:13.952000pt;}
._4_c00374{width:14.976000pt;}
._12_c00374{width:16.109865pt;}
._9_c00374{width:17.408000pt;}
._a_c00374{width:19.114667pt;}
._10_c00374{width:25.408000pt;}
._f_c00374{width:26.496000pt;}
.fs3_c00374{font-size:34.560000pt;}
.fs1_c00374{font-size:42.240000pt;}
.fs2_c00374{font-size:53.760000pt;}
.fs0_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y3_c00374{bottom:51.552000pt;}
.y2_c00374{bottom:70.112000pt;}
.y2b_c00374{bottom:116.192000pt;}
.y2a_c00374{bottom:131.552000pt;}
.y29_c00374{bottom:137.666667pt;}
.y28_c00374{bottom:146.946667pt;}
.y27_c00374{bottom:162.306667pt;}
.y26_c00374{bottom:177.346667pt;}
.y25_c00374{bottom:192.706667pt;}
.y24_c00374{bottom:198.786667pt;}
.y23_c00374{bottom:208.066667pt;}
.y22_c00374{bottom:223.426667pt;}
.y21_c00374{bottom:229.506667pt;}
.y20_c00374{bottom:239.426667pt;}
.y1f_c00374{bottom:262.173333pt;}
.y1e_c00374{bottom:289.693333pt;}
.y1d_c00374{bottom:317.213333pt;}
.y1c_c00374{bottom:345.053333pt;}
.y1b_c00374{bottom:372.613333pt;}
.y1a_c00374{bottom:400.133333pt;}
.y19_c00374{bottom:425.733333pt;}
.y18_c00374{bottom:448.773333pt;}
.y17_c00374{bottom:479.840000pt;}
.y16_c00374{bottom:502.880000pt;}
.y15_c00374{bottom:525.920000pt;}
.y14_c00374{bottom:569.466667pt;}
.y12_c00374{bottom:615.866667pt;}
.y13_c00374{bottom:623.226667pt;}
.y11_c00374{bottom:643.386667pt;}
.y10_c00374{bottom:670.906667pt;}
.yf_c00374{bottom:698.466667pt;}
.ye_c00374{bottom:726.306667pt;}
.yd_c00374{bottom:753.826667pt;}
.yc_c00374{bottom:781.346667pt;}
.ya_c00374{bottom:808.893333pt;}
.yb_c00374{bottom:816.253333pt;}
.y9_c00374{bottom:836.733333pt;}
.y8_c00374{bottom:864.253333pt;}
.y7_c00374{bottom:891.773333pt;}
.y6_c00374{bottom:919.333333pt;}
.y4_c00374{bottom:947.173333pt;}
.y5_c00374{bottom:954.533333pt;}
.y1_c00374{bottom:993.573333pt;}
.h8_c00374{height:30.982500pt;}
.h4_c00374{height:41.456250pt;}
.ha_c00374{height:48.195000pt;}
.h9_c00374{height:48.457500pt;}
.h7_c00374{height:52.736250pt;}
.h5_c00374{height:52.762500pt;}
.h6_c00374{height:54.180000pt;}
.h1_c00374{height:57.375000pt;}
.h2_c00374{height:62.812500pt;}
.h3_c00374{height:1055.996000pt;}
.h0_c00374{height:1056.000000pt;}
.w1_c00374{width:815.997333pt;}
.w0_c00374{width:816.000000pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:113.312000pt;}
.xb_c00374{left:126.752000pt;}
.x9_c00374{left:151.106667pt;}
.x3_c00374{left:174.144000pt;}
.x4_c00374{left:190.466667pt;}
.xa_c00374{left:305.413333pt;}
.x2_c00374{left:396.000000pt;}
.x5_c00374{left:426.717333pt;}
.x6_c00374{left:443.040000pt;}
.x7_c00374{left:626.784000pt;}
.x8_c00374{left:643.106667pt;}
}





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

.ir_c00375:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00375;src:url('chunks/assets/font_930ec28739176361881771b3.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_c19162c86b105b7413e99c2e.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_dd357f5ab3fecb3d08ee3a20.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_47a7aa11b8eee93ccaac6c23.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;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_c00375;src:url('chunks/assets/font_f74eb75a4e7e737de37ffc5e.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls2_c00375{letter-spacing:0.000000px;}
.ls0_c00375{letter-spacing:0.120000px;}
.ls3_c00375{letter-spacing:1.440000px;}
.ls1_c00375{letter-spacing:22.320000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00375{word-spacing:-72.000000px;}
.ws0_c00375{word-spacing:-18.000000px;}
.ws2_c00375{word-spacing:0.000000px;}
._1_c00375{margin-left:-3.312000px;}
._3_c00375{margin-left:-1.368000px;}
._2_c00375{width:1.368000px;}
._6_c00375{width:3.180024px;}
._8_c00375{width:4.896000px;}
._9_c00375{width:6.048000px;}
._f_c00375{width:8.796000px;}
._e_c00375{width:9.864000px;}
._d_c00375{width:11.160000px;}
._4_c00375{width:12.888000px;}
._0_c00375{width:13.896000px;}
._5_c00375{width:15.264000px;}
._7_c00375{width:16.931976px;}
._10_c00375{width:19.872000px;}
._a_c00375{width:21.384000px;}
._c_c00375{width:22.440000px;}
._b_c00375{width:24.480000px;}
._11_c00375{width:27.864000px;}
._12_c00375{width:29.160000px;}
._15_c00375{width:30.672000px;}
._13_c00375{width:32.256000px;}
._14_c00375{width:33.840000px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs0_c00375{font-size:72.000000px;}
.y0_c00375{bottom:0.000000px;}
.y3_c00375{bottom:57.996000px;}
.y2_c00375{bottom:78.876000px;}
.y21_c00375{bottom:128.916000px;}
.y20_c00375{bottom:159.915000px;}
.y1f_c00375{bottom:199.875000px;}
.y1e_c00375{bottom:230.835000px;}
.y1d_c00375{bottom:262.155000px;}
.y1c_c00375{bottom:293.145000px;}
.y1b_c00375{bottom:324.105000px;}
.y1a_c00375{bottom:355.065000px;}
.y19_c00375{bottom:386.025000px;}
.y18_c00375{bottom:417.390000px;}
.y17_c00375{bottom:448.350000px;}
.y16_c00375{bottom:479.310000px;}
.y15_c00375{bottom:510.270000px;}
.y14_c00375{bottom:541.620000px;}
.y13_c00375{bottom:572.580000px;}
.y12_c00375{bottom:612.540000px;}
.y11_c00375{bottom:643.530000px;}
.y10_c00375{bottom:674.850000px;}
.yf_c00375{bottom:705.810000px;}
.ye_c00375{bottom:736.770000px;}
.yd_c00375{bottom:767.775000px;}
.yc_c00375{bottom:799.095000px;}
.yb_c00375{bottom:830.055000px;}
.ya_c00375{bottom:861.015000px;}
.y9_c00375{bottom:901.005000px;}
.y8_c00375{bottom:932.325000px;}
.y7_c00375{bottom:972.285000px;}
.y6_c00375{bottom:1003.245000px;}
.y5_c00375{bottom:1034.250000px;}
.y4_c00375{bottom:1065.570000px;}
.y1_c00375{bottom:1117.770000px;}
.h1_c00375{height:64.546875px;}
.h4_c00375{height:64.898438px;}
.h3_c00375{height:70.628906px;}
.h2_c00375{height:70.664062px;}
.h0_c00375{height:1188.000000px;}
.w0_c00375{width:918.000000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:127.476000px;}
.x3_c00375{left:178.635000px;}
.x2_c00375{left:445.500000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls2_c00375{letter-spacing:0.000000pt;}
.ls0_c00375{letter-spacing:0.106667pt;}
.ls3_c00375{letter-spacing:1.280000pt;}
.ls1_c00375{letter-spacing:19.840000pt;}
.ws1_c00375{word-spacing:-64.000000pt;}
.ws0_c00375{word-spacing:-16.000000pt;}
.ws2_c00375{word-spacing:0.000000pt;}
._1_c00375{margin-left:-2.944000pt;}
._3_c00375{margin-left:-1.216000pt;}
._2_c00375{width:1.216000pt;}
._6_c00375{width:2.826688pt;}
._8_c00375{width:4.352000pt;}
._9_c00375{width:5.376000pt;}
._f_c00375{width:7.818667pt;}
._e_c00375{width:8.768000pt;}
._d_c00375{width:9.920000pt;}
._4_c00375{width:11.456000pt;}
._0_c00375{width:12.352000pt;}
._5_c00375{width:13.568000pt;}
._7_c00375{width:15.050645pt;}
._10_c00375{width:17.664000pt;}
._a_c00375{width:19.008000pt;}
._c_c00375{width:19.946667pt;}
._b_c00375{width:21.760000pt;}
._11_c00375{width:24.768000pt;}
._12_c00375{width:25.920000pt;}
._15_c00375{width:27.264000pt;}
._13_c00375{width:28.672000pt;}
._14_c00375{width:30.080000pt;}
.fs0_c00375{font-size:64.000000pt;}
.y0_c00375{bottom:0.000000pt;}
.y3_c00375{bottom:51.552000pt;}
.y2_c00375{bottom:70.112000pt;}
.y21_c00375{bottom:114.592000pt;}
.y20_c00375{bottom:142.146667pt;}
.y1f_c00375{bottom:177.666667pt;}
.y1e_c00375{bottom:205.186667pt;}
.y1d_c00375{bottom:233.026667pt;}
.y1c_c00375{bottom:260.573333pt;}
.y1b_c00375{bottom:288.093333pt;}
.y1a_c00375{bottom:315.613333pt;}
.y19_c00375{bottom:343.133333pt;}
.y18_c00375{bottom:371.013333pt;}
.y17_c00375{bottom:398.533333pt;}
.y16_c00375{bottom:426.053333pt;}
.y15_c00375{bottom:453.573333pt;}
.y14_c00375{bottom:481.440000pt;}
.y13_c00375{bottom:508.960000pt;}
.y12_c00375{bottom:544.480000pt;}
.y11_c00375{bottom:572.026667pt;}
.y10_c00375{bottom:599.866667pt;}
.yf_c00375{bottom:627.386667pt;}
.ye_c00375{bottom:654.906667pt;}
.yd_c00375{bottom:682.466667pt;}
.yc_c00375{bottom:710.306667pt;}
.yb_c00375{bottom:737.826667pt;}
.ya_c00375{bottom:765.346667pt;}
.y9_c00375{bottom:800.893333pt;}
.y8_c00375{bottom:828.733333pt;}
.y7_c00375{bottom:864.253333pt;}
.y6_c00375{bottom:891.773333pt;}
.y5_c00375{bottom:919.333333pt;}
.y4_c00375{bottom:947.173333pt;}
.y1_c00375{bottom:993.573333pt;}
.h1_c00375{height:57.375000pt;}
.h4_c00375{height:57.687500pt;}
.h3_c00375{height:62.781250pt;}
.h2_c00375{height:62.812500pt;}
.h0_c00375{height:1056.000000pt;}
.w0_c00375{width:816.000000pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:113.312000pt;}
.x3_c00375{left:158.786667pt;}
.x2_c00375{left:396.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_c00376 {
    display:none;
  }
  .loading-indicator_c00376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00376 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00376 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00376" -> "#page-container .classname_c00376")
 */
.pf_c00376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00376 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00376 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00376 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00376 {overflow:visible;}
  }
}
.c_c00376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00376 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00376:after { /* webkit #35443 */
  content: '';
}
.t_c00376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00376 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00376 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00376 { /* info for Javascript */
  display:none;
}
.l_c00376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00376:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00376;src:url('chunks/assets/font_ea85574e018ff0a8a9275396.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_8f17535ff9274efb5a8cb6fb.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_ff1492742ef64a2e239cfdb5.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;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_c00376;src:url('chunks/assets/font_259b9dc68df3fa31f5161ffc.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00376;src:url('chunks/assets/font_735256870e7edbdaaef82b55.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00376;src:url('chunks/assets/font_23b41e41e09401e1d1c72e1a.woff2')format("woff");}.ff6_c00376{font-family:ff6_c00376;line-height:1.104004;font-style:normal;font-weight: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_c00376;src:url('chunks/assets/font_ec23aa44eb5f90b090a56d55.woff2')format("woff");}.ff7_c00376{font-family:ff7_c00376;line-height:1.112305;font-style:normal;font-weight: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_c00376;src:url('chunks/assets/font_636e6843bfe82730e5c8fc48.woff2')format("woff");}.ff8_c00376{font-family:ff8_c00376;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.lsa_c00376{letter-spacing:-2.880000px;}
.ls9_c00376{letter-spacing:-0.241800px;}
.ls5_c00376{letter-spacing:0.000000px;}
.ls8_c00376{letter-spacing:0.060600px;}
.ls1_c00376{letter-spacing:0.120000px;}
.ls7_c00376{letter-spacing:0.219000px;}
.ls6_c00376{letter-spacing:0.486600px;}
.ls2_c00376{letter-spacing:0.691185px;}
.ls0_c00376{letter-spacing:0.720000px;}
.ls4_c00376{letter-spacing:0.732000px;}
.ls3_c00376{letter-spacing:10.800000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00376{word-spacing:-60.699000px;}
.ws2_c00376{word-spacing:-60.480000px;}
.ws0_c00376{word-spacing:-18.000000px;}
.ws1_c00376{word-spacing:-15.606600px;}
.ws4_c00376{word-spacing:-15.120000px;}
.ws5_c00376{word-spacing:-14.878200px;}
.ws6_c00376{word-spacing:0.000000px;}
._c_c00376{margin-left:-3.805440px;}
._4_c00376{margin-left:-2.736000px;}
._0_c00376{margin-left:-1.728000px;}
._1_c00376{width:1.512000px;}
._5_c00376{width:2.544048px;}
._6_c00376{width:4.295952px;}
._7_c00376{width:5.904144px;}
._8_c00376{width:7.056000px;}
._9_c00376{width:9.191592px;}
._a_c00376{width:10.740744px;}
._2_c00376{width:12.036024px;}
._3_c00376{width:14.015952px;}
._b_c00376{width:20.160000px;}
._d_c00376{width:28.452000px;}
._e_c00376{width:30.049488px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs3_c00376{font-size:38.880000px;}
.fs2_c00376{font-size:47.520000px;}
.fs1_c00376{font-size:60.480000px;}
.fs0_c00376{font-size:72.000000px;}
.y0_c00376{bottom:0.000000px;}
.y3_c00376{bottom:57.996000px;}
.y2_c00376{bottom:78.876000px;}
.y23_c00376{bottom:130.716000px;}
.y22_c00376{bottom:147.636000px;}
.y21_c00376{bottom:165.315000px;}
.y20_c00376{bottom:182.595000px;}
.y1f_c00376{bottom:199.515000px;}
.y1e_c00376{bottom:206.355000px;}
.y1d_c00376{bottom:217.515000px;}
.y1c_c00376{bottom:271.155000px;}
.y1a_c00376{bottom:302.145000px;}
.y1b_c00376{bottom:310.425000px;}
.y19_c00376{bottom:333.105000px;}
.y18_c00376{bottom:364.425000px;}
.y17_c00376{bottom:393.225000px;}
.y16_c00376{bottom:427.830000px;}
.y15_c00376{bottom:453.750000px;}
.y14_c00376{bottom:503.070000px;}
.y13_c00376{bottom:554.940000px;}
.y12_c00376{bottom:586.260000px;}
.y11_c00376{bottom:617.220000px;}
.y10_c00376{bottom:648.210000px;}
.yf_c00376{bottom:679.170000px;}
.ye_c00376{bottom:710.490000px;}
.yd_c00376{bottom:738.930000px;}
.yc_c00376{bottom:773.895000px;}
.yb_c00376{bottom:799.815000px;}
.ya_c00376{bottom:849.135000px;}
.y9_c00376{bottom:901.005000px;}
.y8_c00376{bottom:941.325000px;}
.y7_c00376{bottom:972.285000px;}
.y6_c00376{bottom:1003.245000px;}
.y5_c00376{bottom:1034.250000px;}
.y4_c00376{bottom:1065.570000px;}
.y1_c00376{bottom:1117.770000px;}
.h7_c00376{height:34.855313px;}
.h9_c00376{height:43.794844px;}
.h6_c00376{height:46.638281px;}
.h8_c00376{height:54.219375px;}
.h4_c00376{height:59.357813px;}
.h1_c00376{height:64.546875px;}
.h3_c00376{height:70.628906px;}
.h2_c00376{height:70.664062px;}
.h5_c00376{height:1187.995500px;}
.h0_c00376{height:1188.000000px;}
.w1_c00376{width:917.997000px;}
.w0_c00376{width:918.000000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:127.476000px;}
.x8_c00376{left:142.596000px;}
.x4_c00376{left:169.995000px;}
.x3_c00376{left:180.795000px;}
.x7_c00376{left:343.590000px;}
.x2_c00376{left:445.500000px;}
.x5_c00376{left:711.612000px;}
.x6_c00376{left:730.005000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.lsa_c00376{letter-spacing:-2.560000pt;}
.ls9_c00376{letter-spacing:-0.214933pt;}
.ls5_c00376{letter-spacing:0.000000pt;}
.ls8_c00376{letter-spacing:0.053867pt;}
.ls1_c00376{letter-spacing:0.106667pt;}
.ls7_c00376{letter-spacing:0.194667pt;}
.ls6_c00376{letter-spacing:0.432533pt;}
.ls2_c00376{letter-spacing:0.614386pt;}
.ls0_c00376{letter-spacing:0.640000pt;}
.ls4_c00376{letter-spacing:0.650667pt;}
.ls3_c00376{letter-spacing:9.600000pt;}
.ws3_c00376{word-spacing:-53.954667pt;}
.ws2_c00376{word-spacing:-53.760000pt;}
.ws0_c00376{word-spacing:-16.000000pt;}
.ws1_c00376{word-spacing:-13.872533pt;}
.ws4_c00376{word-spacing:-13.440000pt;}
.ws5_c00376{word-spacing:-13.225067pt;}
.ws6_c00376{word-spacing:0.000000pt;}
._c_c00376{margin-left:-3.382613pt;}
._4_c00376{margin-left:-2.432000pt;}
._0_c00376{margin-left:-1.536000pt;}
._1_c00376{width:1.344000pt;}
._5_c00376{width:2.261376pt;}
._6_c00376{width:3.818624pt;}
._7_c00376{width:5.248128pt;}
._8_c00376{width:6.272000pt;}
._9_c00376{width:8.170304pt;}
._a_c00376{width:9.547328pt;}
._2_c00376{width:10.698688pt;}
._3_c00376{width:12.458624pt;}
._b_c00376{width:17.920000pt;}
._d_c00376{width:25.290667pt;}
._e_c00376{width:26.710656pt;}
.fs3_c00376{font-size:34.560000pt;}
.fs2_c00376{font-size:42.240000pt;}
.fs1_c00376{font-size:53.760000pt;}
.fs0_c00376{font-size:64.000000pt;}
.y0_c00376{bottom:0.000000pt;}
.y3_c00376{bottom:51.552000pt;}
.y2_c00376{bottom:70.112000pt;}
.y23_c00376{bottom:116.192000pt;}
.y22_c00376{bottom:131.232000pt;}
.y21_c00376{bottom:146.946667pt;}
.y20_c00376{bottom:162.306667pt;}
.y1f_c00376{bottom:177.346667pt;}
.y1e_c00376{bottom:183.426667pt;}
.y1d_c00376{bottom:193.346667pt;}
.y1c_c00376{bottom:241.026667pt;}
.y1a_c00376{bottom:268.573333pt;}
.y1b_c00376{bottom:275.933333pt;}
.y19_c00376{bottom:296.093333pt;}
.y18_c00376{bottom:323.933333pt;}
.y17_c00376{bottom:349.533333pt;}
.y16_c00376{bottom:380.293333pt;}
.y15_c00376{bottom:403.333333pt;}
.y14_c00376{bottom:447.173333pt;}
.y13_c00376{bottom:493.280000pt;}
.y12_c00376{bottom:521.120000pt;}
.y11_c00376{bottom:548.640000pt;}
.y10_c00376{bottom:576.186667pt;}
.yf_c00376{bottom:603.706667pt;}
.ye_c00376{bottom:631.546667pt;}
.yd_c00376{bottom:656.826667pt;}
.yc_c00376{bottom:687.906667pt;}
.yb_c00376{bottom:710.946667pt;}
.ya_c00376{bottom:754.786667pt;}
.y9_c00376{bottom:800.893333pt;}
.y8_c00376{bottom:836.733333pt;}
.y7_c00376{bottom:864.253333pt;}
.y6_c00376{bottom:891.773333pt;}
.y5_c00376{bottom:919.333333pt;}
.y4_c00376{bottom:947.173333pt;}
.y1_c00376{bottom:993.573333pt;}
.h7_c00376{height:30.982500pt;}
.h9_c00376{height:38.928750pt;}
.h6_c00376{height:41.456250pt;}
.h8_c00376{height:48.195000pt;}
.h4_c00376{height:52.762500pt;}
.h1_c00376{height:57.375000pt;}
.h3_c00376{height:62.781250pt;}
.h2_c00376{height:62.812500pt;}
.h5_c00376{height:1055.996000pt;}
.h0_c00376{height:1056.000000pt;}
.w1_c00376{width:815.997333pt;}
.w0_c00376{width:816.000000pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:113.312000pt;}
.x8_c00376{left:126.752000pt;}
.x4_c00376{left:151.106667pt;}
.x3_c00376{left:160.706667pt;}
.x7_c00376{left:305.413333pt;}
.x2_c00376{left:396.000000pt;}
.x5_c00376{left:632.544000pt;}
.x6_c00376{left:648.893333pt;}
}





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

.ir_c00377:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_38365768d86dd11013004aef.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_3312b3fdc96de4f6437ae130.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_34351e8eb6ab1b834469e01b.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_a5efb2338cd71f7b78602b90.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;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_c00377;src:url('chunks/assets/font_0257b71aefa2d6e9562dbfd3.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00377;src:url('chunks/assets/font_f3125f8eb2c662c08728f8c3.woff2')format("woff");}.ff6_c00377{font-family:ff6_c00377;line-height:1.104004;font-style:normal;font-weight: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_c00377;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00377{font-family:ff7_c00377;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls5_c00377{letter-spacing:-0.720000px;}
.ls6_c00377{letter-spacing:-0.532800px;}
.ls4_c00377{letter-spacing:0.000000px;}
.ls1_c00377{letter-spacing:0.048960px;}
.ls7_c00377{letter-spacing:0.466800px;}
.ls9_c00377{letter-spacing:0.486600px;}
.ls8_c00377{letter-spacing:0.521400px;}
.ls0_c00377{letter-spacing:0.720000px;}
.ls3_c00377{letter-spacing:0.728908px;}
.ls2_c00377{letter-spacing:6.480000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:-18.000000px;}
.ws2_c00377{word-spacing:-15.641400px;}
.ws3_c00377{word-spacing:-15.606600px;}
.ws1_c00377{word-spacing:-15.120000px;}
.ws4_c00377{word-spacing:0.000000px;}
._b_c00377{margin-left:-3.528000px;}
._5_c00377{margin-left:-2.520000px;}
._0_c00377{margin-left:-1.296000px;}
._1_c00377{width:1.368000px;}
._6_c00377{width:2.376000px;}
._3_c00377{width:4.032000px;}
._4_c00377{width:5.832000px;}
._2_c00377{width:7.200000px;}
._e_c00377{width:9.504000px;}
._f_c00377{width:10.512000px;}
._7_c00377{width:11.880000px;}
._8_c00377{width:13.032000px;}
._c_c00377{width:14.160024px;}
._d_c00377{width:16.416000px;}
._9_c00377{width:22.464000px;}
._a_c00377{width:24.552000px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs1_c00377{font-size:60.480000px;}
.fs0_c00377{font-size:72.000000px;}
.y0_c00377{bottom:0.000000px;}
.y3_c00377{bottom:57.996000px;}
.y2_c00377{bottom:78.876000px;}
.y20_c00377{bottom:117.036000px;}
.y1f_c00377{bottom:148.356000px;}
.y1e_c00377{bottom:179.355000px;}
.y1d_c00377{bottom:219.315000px;}
.y1c_c00377{bottom:250.275000px;}
.y1b_c00377{bottom:290.625000px;}
.y1a_c00377{bottom:321.585000px;}
.y19_c00377{bottom:352.545000px;}
.y18_c00377{bottom:383.505000px;}
.y17_c00377{bottom:414.870000px;}
.y16_c00377{bottom:445.830000px;}
.y15_c00377{bottom:474.630000px;}
.y14_c00377{bottom:509.550000px;}
.y13_c00377{bottom:535.140000px;}
.y12_c00377{bottom:584.460000px;}
.y11_c00377{bottom:636.660000px;}
.y10_c00377{bottom:667.650000px;}
.yf_c00377{bottom:698.610000px;}
.ye_c00377{bottom:729.570000px;}
.yd_c00377{bottom:760.890000px;}
.yc_c00377{bottom:791.895000px;}
.yb_c00377{bottom:820.695000px;}
.ya_c00377{bottom:846.615000px;}
.y9_c00377{bottom:881.175000px;}
.y8_c00377{bottom:907.125000px;}
.y7_c00377{bottom:933.045000px;}
.y6_c00377{bottom:982.365000px;}
.y5_c00377{bottom:1034.250000px;}
.y4_c00377{bottom:1065.570000px;}
.y1_c00377{bottom:1117.770000px;}
.h4_c00377{height:59.328281px;}
.h3_c00377{height:59.357813px;}
.h5_c00377{height:60.952500px;}
.h1_c00377{height:64.546875px;}
.h6_c00377{height:70.628906px;}
.h2_c00377{height:70.664062px;}
.h0_c00377{height:1188.000000px;}
.w0_c00377{width:918.000000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:127.476000px;}
.x3_c00377{left:169.995000px;}
.x4_c00377{left:178.635000px;}
.x2_c00377{left:445.500000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls5_c00377{letter-spacing:-0.640000pt;}
.ls6_c00377{letter-spacing:-0.473600pt;}
.ls4_c00377{letter-spacing:0.000000pt;}
.ls1_c00377{letter-spacing:0.043520pt;}
.ls7_c00377{letter-spacing:0.414933pt;}
.ls9_c00377{letter-spacing:0.432533pt;}
.ls8_c00377{letter-spacing:0.463467pt;}
.ls0_c00377{letter-spacing:0.640000pt;}
.ls3_c00377{letter-spacing:0.647918pt;}
.ls2_c00377{letter-spacing:5.760000pt;}
.ws0_c00377{word-spacing:-16.000000pt;}
.ws2_c00377{word-spacing:-13.903467pt;}
.ws3_c00377{word-spacing:-13.872533pt;}
.ws1_c00377{word-spacing:-13.440000pt;}
.ws4_c00377{word-spacing:0.000000pt;}
._b_c00377{margin-left:-3.136000pt;}
._5_c00377{margin-left:-2.240000pt;}
._0_c00377{margin-left:-1.152000pt;}
._1_c00377{width:1.216000pt;}
._6_c00377{width:2.112000pt;}
._3_c00377{width:3.584000pt;}
._4_c00377{width:5.184000pt;}
._2_c00377{width:6.400000pt;}
._e_c00377{width:8.448000pt;}
._f_c00377{width:9.344000pt;}
._7_c00377{width:10.560000pt;}
._8_c00377{width:11.584000pt;}
._c_c00377{width:12.586688pt;}
._d_c00377{width:14.592000pt;}
._9_c00377{width:19.968000pt;}
._a_c00377{width:21.824000pt;}
.fs1_c00377{font-size:53.760000pt;}
.fs0_c00377{font-size:64.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y3_c00377{bottom:51.552000pt;}
.y2_c00377{bottom:70.112000pt;}
.y20_c00377{bottom:104.032000pt;}
.y1f_c00377{bottom:131.872000pt;}
.y1e_c00377{bottom:159.426667pt;}
.y1d_c00377{bottom:194.946667pt;}
.y1c_c00377{bottom:222.466667pt;}
.y1b_c00377{bottom:258.333333pt;}
.y1a_c00377{bottom:285.853333pt;}
.y19_c00377{bottom:313.373333pt;}
.y18_c00377{bottom:340.893333pt;}
.y17_c00377{bottom:368.773333pt;}
.y16_c00377{bottom:396.293333pt;}
.y15_c00377{bottom:421.893333pt;}
.y14_c00377{bottom:452.933333pt;}
.y13_c00377{bottom:475.680000pt;}
.y12_c00377{bottom:519.520000pt;}
.y11_c00377{bottom:565.920000pt;}
.y10_c00377{bottom:593.466667pt;}
.yf_c00377{bottom:620.986667pt;}
.ye_c00377{bottom:648.506667pt;}
.yd_c00377{bottom:676.346667pt;}
.yc_c00377{bottom:703.906667pt;}
.yb_c00377{bottom:729.506667pt;}
.ya_c00377{bottom:752.546667pt;}
.y9_c00377{bottom:783.266667pt;}
.y8_c00377{bottom:806.333333pt;}
.y7_c00377{bottom:829.373333pt;}
.y6_c00377{bottom:873.213333pt;}
.y5_c00377{bottom:919.333333pt;}
.y4_c00377{bottom:947.173333pt;}
.y1_c00377{bottom:993.573333pt;}
.h4_c00377{height:52.736250pt;}
.h3_c00377{height:52.762500pt;}
.h5_c00377{height:54.180000pt;}
.h1_c00377{height:57.375000pt;}
.h6_c00377{height:62.781250pt;}
.h2_c00377{height:62.812500pt;}
.h0_c00377{height:1056.000000pt;}
.w0_c00377{width:816.000000pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:113.312000pt;}
.x3_c00377{left:151.106667pt;}
.x4_c00377{left:158.786667pt;}
.x2_c00377{left:396.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_c00378 {
    display:none;
  }
  .loading-indicator_c00378.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00378 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00378 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00378" -> "#page-container .classname_c00378")
 */
.pf_c00378 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00378 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00378 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00378 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00378 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00378 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00378 {overflow:visible;}
  }
}
.c_c00378 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00378 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00378:after { /* webkit #35443 */
  content: '';
}
.t_c00378:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00378 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00378 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00378 { /* info for Javascript */
  display:none;
}
.l_c00378 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00378 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00378 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00378:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00378;src:url('chunks/assets/font_4c318b47154b9a884417759f.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00378;src:url('chunks/assets/font_144538ddea18b64fb4499a90.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_3890ddcd3ee49b67684348f7.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;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_c00378;src:url('chunks/assets/font_7b3489d3f2638fbaea16bda1.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls2_c00378{letter-spacing:0.000000px;}
.ls1_c00378{letter-spacing:0.020400px;}
.ls0_c00378{letter-spacing:0.720000px;}
.ls3_c00378{letter-spacing:1.440000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00378{word-spacing:-72.000000px;}
.ws2_c00378{word-spacing:-60.480000px;}
.ws0_c00378{word-spacing:-18.000000px;}
.ws4_c00378{word-spacing:-15.140400px;}
.ws3_c00378{word-spacing:-15.120000px;}
.ws5_c00378{word-spacing:0.000000px;}
._c_c00378{margin-left:-3.432000px;}
._2_c00378{margin-left:-2.376000px;}
._0_c00378{margin-left:-1.152000px;}
._3_c00378{width:1.368000px;}
._5_c00378{width:3.264000px;}
._8_c00378{width:4.572024px;}
._7_c00378{width:5.808000px;}
._6_c00378{width:7.056000px;}
._9_c00378{width:8.232000px;}
._a_c00378{width:9.648000px;}
._b_c00378{width:11.136000px;}
._4_c00378{width:12.408000px;}
._1_c00378{width:14.184000px;}
._11_c00378{width:15.456000px;}
._10_c00378{width:16.512000px;}
._d_c00378{width:22.224000px;}
._e_c00378{width:23.328000px;}
._f_c00378{width:24.408000px;}
._12_c00378{width:26.136000px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs2_c00378{font-size:38.880000px;}
.fs1_c00378{font-size:47.520000px;}
.fs3_c00378{font-size:60.480000px;}
.fs0_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y3_c00378{bottom:57.996000px;}
.y2_c00378{bottom:78.876000px;}
.y29_c00378{bottom:130.716000px;}
.y28_c00378{bottom:147.996000px;}
.y27_c00378{bottom:165.315000px;}
.y26_c00378{bottom:182.595000px;}
.y25_c00378{bottom:199.515000px;}
.y24_c00378{bottom:216.795000px;}
.y23_c00378{bottom:223.635000px;}
.y22_c00378{bottom:234.075000px;}
.y21_c00378{bottom:251.355000px;}
.y20_c00378{bottom:258.195000px;}
.y1f_c00378{bottom:269.355000px;}
.y1e_c00378{bottom:302.145000px;}
.y1d_c00378{bottom:342.105000px;}
.y1c_c00378{bottom:373.065000px;}
.y1b_c00378{bottom:404.070000px;}
.y1a_c00378{bottom:435.390000px;}
.y19_c00378{bottom:466.350000px;}
.y18_c00378{bottom:497.310000px;}
.y16_c00378{bottom:537.300000px;}
.y17_c00378{bottom:545.580000px;}
.y15_c00378{bottom:568.620000px;}
.y14_c00378{bottom:599.580000px;}
.y13_c00378{bottom:630.540000px;}
.y12_c00378{bottom:661.530000px;}
.y11_c00378{bottom:692.850000px;}
.y10_c00378{bottom:723.810000px;}
.ye_c00378{bottom:754.770000px;}
.yf_c00378{bottom:763.095000px;}
.yd_c00378{bottom:785.775000px;}
.yc_c00378{bottom:817.095000px;}
.yb_c00378{bottom:848.055000px;}
.ya_c00378{bottom:879.015000px;}
.y9_c00378{bottom:910.005000px;}
.y8_c00378{bottom:941.325000px;}
.y7_c00378{bottom:972.285000px;}
.y6_c00378{bottom:1003.245000px;}
.y5_c00378{bottom:1034.250000px;}
.y4_c00378{bottom:1065.570000px;}
.y1_c00378{bottom:1117.770000px;}
.h6_c00378{height:38.158594px;}
.h5_c00378{height:46.638281px;}
.h7_c00378{height:59.357813px;}
.h1_c00378{height:64.546875px;}
.h3_c00378{height:70.628906px;}
.h2_c00378{height:70.664062px;}
.h4_c00378{height:1187.995500px;}
.h0_c00378{height:1188.000000px;}
.w1_c00378{width:917.997000px;}
.w0_c00378{width:918.000000px;}
.x0_c00378{left:0.000000px;}
.x1_c00378{left:127.476000px;}
.x9_c00378{left:142.596000px;}
.x3_c00378{left:178.635000px;}
.x6_c00378{left:266.502000px;}
.x7_c00378{left:284.865000px;}
.x8_c00378{left:343.590000px;}
.x2_c00378{left:445.500000px;}
.x4_c00378{left:661.212000px;}
.x5_c00378{left:679.575000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls2_c00378{letter-spacing:0.000000pt;}
.ls1_c00378{letter-spacing:0.018133pt;}
.ls0_c00378{letter-spacing:0.640000pt;}
.ls3_c00378{letter-spacing:1.280000pt;}
.ws1_c00378{word-spacing:-64.000000pt;}
.ws2_c00378{word-spacing:-53.760000pt;}
.ws0_c00378{word-spacing:-16.000000pt;}
.ws4_c00378{word-spacing:-13.458133pt;}
.ws3_c00378{word-spacing:-13.440000pt;}
.ws5_c00378{word-spacing:0.000000pt;}
._c_c00378{margin-left:-3.050667pt;}
._2_c00378{margin-left:-2.112000pt;}
._0_c00378{margin-left:-1.024000pt;}
._3_c00378{width:1.216000pt;}
._5_c00378{width:2.901333pt;}
._8_c00378{width:4.064021pt;}
._7_c00378{width:5.162667pt;}
._6_c00378{width:6.272000pt;}
._9_c00378{width:7.317333pt;}
._a_c00378{width:8.576000pt;}
._b_c00378{width:9.898667pt;}
._4_c00378{width:11.029333pt;}
._1_c00378{width:12.608000pt;}
._11_c00378{width:13.738667pt;}
._10_c00378{width:14.677333pt;}
._d_c00378{width:19.754667pt;}
._e_c00378{width:20.736000pt;}
._f_c00378{width:21.696000pt;}
._12_c00378{width:23.232000pt;}
.fs2_c00378{font-size:34.560000pt;}
.fs1_c00378{font-size:42.240000pt;}
.fs3_c00378{font-size:53.760000pt;}
.fs0_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y3_c00378{bottom:51.552000pt;}
.y2_c00378{bottom:70.112000pt;}
.y29_c00378{bottom:116.192000pt;}
.y28_c00378{bottom:131.552000pt;}
.y27_c00378{bottom:146.946667pt;}
.y26_c00378{bottom:162.306667pt;}
.y25_c00378{bottom:177.346667pt;}
.y24_c00378{bottom:192.706667pt;}
.y23_c00378{bottom:198.786667pt;}
.y22_c00378{bottom:208.066667pt;}
.y21_c00378{bottom:223.426667pt;}
.y20_c00378{bottom:229.506667pt;}
.y1f_c00378{bottom:239.426667pt;}
.y1e_c00378{bottom:268.573333pt;}
.y1d_c00378{bottom:304.093333pt;}
.y1c_c00378{bottom:331.613333pt;}
.y1b_c00378{bottom:359.173333pt;}
.y1a_c00378{bottom:387.013333pt;}
.y19_c00378{bottom:414.533333pt;}
.y18_c00378{bottom:442.053333pt;}
.y16_c00378{bottom:477.600000pt;}
.y17_c00378{bottom:484.960000pt;}
.y15_c00378{bottom:505.440000pt;}
.y14_c00378{bottom:532.960000pt;}
.y13_c00378{bottom:560.480000pt;}
.y12_c00378{bottom:588.026667pt;}
.y11_c00378{bottom:615.866667pt;}
.y10_c00378{bottom:643.386667pt;}
.ye_c00378{bottom:670.906667pt;}
.yf_c00378{bottom:678.306667pt;}
.yd_c00378{bottom:698.466667pt;}
.yc_c00378{bottom:726.306667pt;}
.yb_c00378{bottom:753.826667pt;}
.ya_c00378{bottom:781.346667pt;}
.y9_c00378{bottom:808.893333pt;}
.y8_c00378{bottom:836.733333pt;}
.y7_c00378{bottom:864.253333pt;}
.y6_c00378{bottom:891.773333pt;}
.y5_c00378{bottom:919.333333pt;}
.y4_c00378{bottom:947.173333pt;}
.y1_c00378{bottom:993.573333pt;}
.h6_c00378{height:33.918750pt;}
.h5_c00378{height:41.456250pt;}
.h7_c00378{height:52.762500pt;}
.h1_c00378{height:57.375000pt;}
.h3_c00378{height:62.781250pt;}
.h2_c00378{height:62.812500pt;}
.h4_c00378{height:1055.996000pt;}
.h0_c00378{height:1056.000000pt;}
.w1_c00378{width:815.997333pt;}
.w0_c00378{width:816.000000pt;}
.x0_c00378{left:0.000000pt;}
.x1_c00378{left:113.312000pt;}
.x9_c00378{left:126.752000pt;}
.x3_c00378{left:158.786667pt;}
.x6_c00378{left:236.890667pt;}
.x7_c00378{left:253.213333pt;}
.x8_c00378{left:305.413333pt;}
.x2_c00378{left:396.000000pt;}
.x4_c00378{left:587.744000pt;}
.x5_c00378{left:604.066667pt;}
}





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

.ir_c00379:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00379;src:url('chunks/assets/font_9b598a3a1ef5f668505c565d.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_7938575cd632509cb80b0b92.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_e81fa263386cb996e6b1258f.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_1b52f2a65c9bc16d8c8512cc.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_bec8637443fd27a8dcecd58c.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00379;src:url('chunks/assets/font_abbb2ba21bcf9c014b118fe1.woff2')format("woff");}.ff6_c00379{font-family:ff6_c00379;line-height:1.311035;font-style:normal;font-weight: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_c00379;src:url('chunks/assets/font_e7af3020483b879db9e0c0cb.woff2')format("woff");}.ff7_c00379{font-family:ff7_c00379;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls18_c00379{letter-spacing:-1.776000px;}
.ls13_c00379{letter-spacing:-1.416000px;}
.ls16_c00379{letter-spacing:-1.296000px;}
.ls11_c00379{letter-spacing:-1.044000px;}
.lsc_c00379{letter-spacing:-0.720000px;}
.lsd_c00379{letter-spacing:-0.532800px;}
.ls1a_c00379{letter-spacing:-0.429000px;}
.ls15_c00379{letter-spacing:-0.360000px;}
.ls17_c00379{letter-spacing:-0.337200px;}
.lse_c00379{letter-spacing:-0.241800px;}
.lsa_c00379{letter-spacing:0.000000px;}
.ls1b_c00379{letter-spacing:0.022800px;}
.ls1_c00379{letter-spacing:0.108480px;}
.ls3_c00379{letter-spacing:0.290880px;}
.ls10_c00379{letter-spacing:0.291000px;}
.ls6_c00379{letter-spacing:0.302400px;}
.lsf_c00379{letter-spacing:0.313800px;}
.ls19_c00379{letter-spacing:0.466800px;}
.lsb_c00379{letter-spacing:0.486600px;}
.ls4_c00379{letter-spacing:0.504000px;}
.ls12_c00379{letter-spacing:0.507000px;}
.ls9_c00379{letter-spacing:0.524160px;}
.ls14_c00379{letter-spacing:0.529800px;}
.ls7_c00379{letter-spacing:0.708480px;}
.ls0_c00379{letter-spacing:0.720000px;}
.ls8_c00379{letter-spacing:0.739927px;}
.ls2_c00379{letter-spacing:0.740339px;}
.ls5_c00379{letter-spacing:2.160000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:-72.000000px;}
.ws6_c00379{word-spacing:-60.480000px;}
.ws1_c00379{word-spacing:-18.000000px;}
.ws9_c00379{word-spacing:-17.640000px;}
.ws8_c00379{word-spacing:-15.649800px;}
.ws2_c00379{word-spacing:-15.606600px;}
.ws5_c00379{word-spacing:-15.433800px;}
.ws7_c00379{word-spacing:-15.411000px;}
.ws3_c00379{word-spacing:-15.120000px;}
.ws4_c00379{word-spacing:-14.878200px;}
.wsa_c00379{word-spacing:-14.782800px;}
.wsc_c00379{word-spacing:-14.691000px;}
.wsb_c00379{word-spacing:-13.344000px;}
.wsd_c00379{word-spacing:0.000000px;}
._2_c00379{margin-left:-2.688000px;}
._1_c00379{margin-left:-1.440000px;}
._0_c00379{width:1.296000px;}
._3_c00379{width:2.543520px;}
._4_c00379{width:4.475399px;}
._5_c00379{width:5.769003px;}
._6_c00379{width:7.245596px;}
._a_c00379{width:8.805022px;}
._9_c00379{width:10.106986px;}
._8_c00379{width:11.496008px;}
._7_c00379{width:12.579598px;}
._b_c00379{width:13.847992px;}
._c_c00379{width:15.432023px;}
._e_c00379{width:19.800000px;}
._d_c00379{width:21.876960px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs1_c00379{font-size:60.480000px;}
.fs0_c00379{font-size:72.000000px;}
.y0_c00379{bottom:0.000000px;}
.y3_c00379{bottom:57.996000px;}
.y2_c00379{bottom:78.876000px;}
.y22_c00379{bottom:122.436000px;}
.y21_c00379{bottom:148.356000px;}
.y20_c00379{bottom:174.315000px;}
.y1f_c00379{bottom:200.235000px;}
.y1e_c00379{bottom:249.555000px;}
.y1d_c00379{bottom:301.425000px;}
.y1c_c00379{bottom:341.385000px;}
.y1b_c00379{bottom:372.705000px;}
.y1a_c00379{bottom:403.710000px;}
.y19_c00379{bottom:434.670000px;}
.y18_c00379{bottom:465.630000px;}
.y17_c00379{bottom:496.950000px;}
.y16_c00379{bottom:527.940000px;}
.y15_c00379{bottom:558.900000px;}
.y14_c00379{bottom:589.860000px;}
.y13_c00379{bottom:618.660000px;}
.y12_c00379{bottom:644.610000px;}
.y11_c00379{bottom:670.530000px;}
.y10_c00379{bottom:696.450000px;}
.yf_c00379{bottom:722.370000px;}
.ye_c00379{bottom:747.930000px;}
.yd_c00379{bottom:782.895000px;}
.yc_c00379{bottom:808.815000px;}
.yb_c00379{bottom:834.735000px;}
.ya_c00379{bottom:860.655000px;}
.y9_c00379{bottom:886.605000px;}
.y8_c00379{bottom:912.525000px;}
.y7_c00379{bottom:938.445000px;}
.y6_c00379{bottom:964.005000px;}
.y5_c00379{bottom:1013.370000px;}
.y4_c00379{bottom:1065.570000px;}
.y1_c00379{bottom:1117.770000px;}
.h6_c00379{height:59.328281px;}
.h4_c00379{height:59.357813px;}
.h5_c00379{height:60.952500px;}
.h1_c00379{height:64.546875px;}
.h2_c00379{height:70.628906px;}
.h3_c00379{height:70.664062px;}
.h0_c00379{height:1188.000000px;}
.w0_c00379{width:918.000000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:127.476000px;}
.x4_c00379{left:169.995000px;}
.x3_c00379{left:180.795000px;}
.x2_c00379{left:445.500000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls18_c00379{letter-spacing:-1.578667pt;}
.ls13_c00379{letter-spacing:-1.258667pt;}
.ls16_c00379{letter-spacing:-1.152000pt;}
.ls11_c00379{letter-spacing:-0.928000pt;}
.lsc_c00379{letter-spacing:-0.640000pt;}
.lsd_c00379{letter-spacing:-0.473600pt;}
.ls1a_c00379{letter-spacing:-0.381333pt;}
.ls15_c00379{letter-spacing:-0.320000pt;}
.ls17_c00379{letter-spacing:-0.299733pt;}
.lse_c00379{letter-spacing:-0.214933pt;}
.lsa_c00379{letter-spacing:0.000000pt;}
.ls1b_c00379{letter-spacing:0.020267pt;}
.ls1_c00379{letter-spacing:0.096427pt;}
.ls3_c00379{letter-spacing:0.258560pt;}
.ls10_c00379{letter-spacing:0.258667pt;}
.ls6_c00379{letter-spacing:0.268800pt;}
.lsf_c00379{letter-spacing:0.278933pt;}
.ls19_c00379{letter-spacing:0.414933pt;}
.lsb_c00379{letter-spacing:0.432533pt;}
.ls4_c00379{letter-spacing:0.448000pt;}
.ls12_c00379{letter-spacing:0.450667pt;}
.ls9_c00379{letter-spacing:0.465920pt;}
.ls14_c00379{letter-spacing:0.470933pt;}
.ls7_c00379{letter-spacing:0.629760pt;}
.ls0_c00379{letter-spacing:0.640000pt;}
.ls8_c00379{letter-spacing:0.657713pt;}
.ls2_c00379{letter-spacing:0.658079pt;}
.ls5_c00379{letter-spacing:1.920000pt;}
.ws0_c00379{word-spacing:-64.000000pt;}
.ws6_c00379{word-spacing:-53.760000pt;}
.ws1_c00379{word-spacing:-16.000000pt;}
.ws9_c00379{word-spacing:-15.680000pt;}
.ws8_c00379{word-spacing:-13.910933pt;}
.ws2_c00379{word-spacing:-13.872533pt;}
.ws5_c00379{word-spacing:-13.718933pt;}
.ws7_c00379{word-spacing:-13.698667pt;}
.ws3_c00379{word-spacing:-13.440000pt;}
.ws4_c00379{word-spacing:-13.225067pt;}
.wsa_c00379{word-spacing:-13.140267pt;}
.wsc_c00379{word-spacing:-13.058667pt;}
.wsb_c00379{word-spacing:-11.861333pt;}
.wsd_c00379{word-spacing:0.000000pt;}
._2_c00379{margin-left:-2.389333pt;}
._1_c00379{margin-left:-1.280000pt;}
._0_c00379{width:1.152000pt;}
._3_c00379{width:2.260907pt;}
._4_c00379{width:3.978132pt;}
._5_c00379{width:5.128003pt;}
._6_c00379{width:6.440530pt;}
._a_c00379{width:7.826686pt;}
._9_c00379{width:8.983987pt;}
._8_c00379{width:10.218673pt;}
._7_c00379{width:11.181865pt;}
._b_c00379{width:12.309327pt;}
._c_c00379{width:13.717354pt;}
._e_c00379{width:17.600000pt;}
._d_c00379{width:19.446187pt;}
.fs1_c00379{font-size:53.760000pt;}
.fs0_c00379{font-size:64.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y3_c00379{bottom:51.552000pt;}
.y2_c00379{bottom:70.112000pt;}
.y22_c00379{bottom:108.832000pt;}
.y21_c00379{bottom:131.872000pt;}
.y20_c00379{bottom:154.946667pt;}
.y1f_c00379{bottom:177.986667pt;}
.y1e_c00379{bottom:221.826667pt;}
.y1d_c00379{bottom:267.933333pt;}
.y1c_c00379{bottom:303.453333pt;}
.y1b_c00379{bottom:331.293333pt;}
.y1a_c00379{bottom:358.853333pt;}
.y19_c00379{bottom:386.373333pt;}
.y18_c00379{bottom:413.893333pt;}
.y17_c00379{bottom:441.733333pt;}
.y16_c00379{bottom:469.280000pt;}
.y15_c00379{bottom:496.800000pt;}
.y14_c00379{bottom:524.320000pt;}
.y13_c00379{bottom:549.920000pt;}
.y12_c00379{bottom:572.986667pt;}
.y11_c00379{bottom:596.026667pt;}
.y10_c00379{bottom:619.066667pt;}
.yf_c00379{bottom:642.106667pt;}
.ye_c00379{bottom:664.826667pt;}
.yd_c00379{bottom:695.906667pt;}
.yc_c00379{bottom:718.946667pt;}
.yb_c00379{bottom:741.986667pt;}
.ya_c00379{bottom:765.026667pt;}
.y9_c00379{bottom:788.093333pt;}
.y8_c00379{bottom:811.133333pt;}
.y7_c00379{bottom:834.173333pt;}
.y6_c00379{bottom:856.893333pt;}
.y5_c00379{bottom:900.773333pt;}
.y4_c00379{bottom:947.173333pt;}
.y1_c00379{bottom:993.573333pt;}
.h6_c00379{height:52.736250pt;}
.h4_c00379{height:52.762500pt;}
.h5_c00379{height:54.180000pt;}
.h1_c00379{height:57.375000pt;}
.h2_c00379{height:62.781250pt;}
.h3_c00379{height:62.812500pt;}
.h0_c00379{height:1056.000000pt;}
.w0_c00379{width:816.000000pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:113.312000pt;}
.x4_c00379{left:151.106667pt;}
.x3_c00379{left:160.706667pt;}
.x2_c00379{left:396.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_c00380 {
    display:none;
  }
  .loading-indicator_c00380.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00380 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00380 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00380" -> "#page-container .classname_c00380")
 */
.pf_c00380 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00380 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00380 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00380 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00380 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00380 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00380 {overflow:visible;}
  }
}
.c_c00380 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00380 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00380:after { /* webkit #35443 */
  content: '';
}
.t_c00380:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00380 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00380 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00380 { /* info for Javascript */
  display:none;
}
.l_c00380 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00380 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00380 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00380:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00380;src:url('chunks/assets/font_d3815c36820cf73a88d0f5ab.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_080946c2aa28dec69daa73b6.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_517fbff7081709f1e4de122f.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_60a193540e6e18a0ade8c4ba.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;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_c00380;src:url('chunks/assets/font_411adbc4b8152127ceb80ecc.woff2')format("woff");}.ff5_c00380{font-family:ff5_c00380;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00380;src:url('chunks/assets/font_b7b58c86698670186a7b14a0.woff2')format("woff");}.ff6_c00380{font-family:ff6_c00380;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls9_c00380{letter-spacing:-1.440000px;}
.lsa_c00380{letter-spacing:-0.486600px;}
.ls6_c00380{letter-spacing:0.000000px;}
.ls7_c00380{letter-spacing:0.022800px;}
.ls4_c00380{letter-spacing:0.120000px;}
.ls8_c00380{letter-spacing:0.486600px;}
.ls5_c00380{letter-spacing:0.720000px;}
.ls0_c00380{letter-spacing:0.740335px;}
.ls1_c00380{letter-spacing:0.900000px;}
.ls2_c00380{letter-spacing:6.480000px;}
.ls3_c00380{letter-spacing:20.880000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00380{word-spacing:-18.000000px;}
.ws3_c00380{word-spacing:-15.606600px;}
.ws1_c00380{word-spacing:-15.142800px;}
.ws0_c00380{word-spacing:-15.120000px;}
.ws5_c00380{word-spacing:-14.633400px;}
.ws4_c00380{word-spacing:-13.680000px;}
.ws6_c00380{word-spacing:0.000000px;}
._6_c00380{margin-left:-2.736000px;}
._0_c00380{margin-left:-1.440029px;}
._1_c00380{width:1.298989px;}
._5_c00380{width:2.304029px;}
._d_c00380{width:3.522050px;}
._f_c00380{width:5.172129px;}
._7_c00380{width:6.189011px;}
._4_c00380{width:8.208029px;}
._10_c00380{width:9.864000px;}
._3_c00380{width:11.106063px;}
._2_c00380{width:12.277198px;}
._e_c00380{width:13.608029px;}
._8_c00380{width:14.760000px;}
._9_c00380{width:16.467074px;}
._b_c00380{width:19.598989px;}
._a_c00380{width:20.643089px;}
._11_c00380{width:21.890732px;}
._c_c00380{width:22.920200px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs3_c00380{font-size:38.880000px;}
.fs2_c00380{font-size:47.520000px;}
.fs1_c00380{font-size:60.480000px;}
.fs0_c00380{font-size:72.000000px;}
.y0_c00380{bottom:0.000000px;}
.y3_c00380{bottom:57.996000px;}
.y2_c00380{bottom:78.876000px;}
.y24_c00380{bottom:130.716000px;}
.y23_c00380{bottom:147.996000px;}
.y22_c00380{bottom:165.315000px;}
.y21_c00380{bottom:172.155000px;}
.y20_c00380{bottom:182.955000px;}
.y1f_c00380{bottom:206.355000px;}
.y1e_c00380{bottom:255.675000px;}
.y1d_c00380{bottom:307.905000px;}
.y1c_c00380{bottom:347.865000px;}
.y1b_c00380{bottom:378.825000px;}
.y1a_c00380{bottom:409.830000px;}
.y19_c00380{bottom:441.150000px;}
.y18_c00380{bottom:472.110000px;}
.y17_c00380{bottom:518.220000px;}
.y16_c00380{bottom:549.180000px;}
.y15_c00380{bottom:580.140000px;}
.y14_c00380{bottom:611.100000px;}
.y13_c00380{bottom:642.450000px;}
.y11_c00380{bottom:673.410000px;}
.y12_c00380{bottom:681.690000px;}
.y10_c00380{bottom:704.370000px;}
.yf_c00380{bottom:735.330000px;}
.ye_c00380{bottom:766.695000px;}
.yd_c00380{bottom:797.655000px;}
.yc_c00380{bottom:828.615000px;}
.yb_c00380{bottom:859.575000px;}
.ya_c00380{bottom:890.925000px;}
.y9_c00380{bottom:921.885000px;}
.y8_c00380{bottom:952.845000px;}
.y7_c00380{bottom:981.645000px;}
.y6_c00380{bottom:1007.565000px;}
.y5_c00380{bottom:1033.530000px;}
.y4_c00380{bottom:1068.450000px;}
.y1_c00380{bottom:1117.770000px;}
.h8_c00380{height:34.855313px;}
.h6_c00380{height:46.638281px;}
.h9_c00380{height:54.514688px;}
.h3_c00380{height:59.328281px;}
.h2_c00380{height:59.357813px;}
.h1_c00380{height:64.546875px;}
.h7_c00380{height:70.628906px;}
.h4_c00380{height:70.664062px;}
.h5_c00380{height:1187.995500px;}
.h0_c00380{height:1188.000000px;}
.w1_c00380{width:917.997000px;}
.w0_c00380{width:918.000000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:127.476000px;}
.x9_c00380{left:142.596000px;}
.x3_c00380{left:169.995000px;}
.x6_c00380{left:178.635000px;}
.x7_c00380{left:180.795000px;}
.x4_c00380{left:220.032000px;}
.x5_c00380{left:238.395000px;}
.x8_c00380{left:343.590000px;}
.x2_c00380{left:445.500000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls9_c00380{letter-spacing:-1.280000pt;}
.lsa_c00380{letter-spacing:-0.432533pt;}
.ls6_c00380{letter-spacing:0.000000pt;}
.ls7_c00380{letter-spacing:0.020267pt;}
.ls4_c00380{letter-spacing:0.106667pt;}
.ls8_c00380{letter-spacing:0.432533pt;}
.ls5_c00380{letter-spacing:0.640000pt;}
.ls0_c00380{letter-spacing:0.658075pt;}
.ls1_c00380{letter-spacing:0.800000pt;}
.ls2_c00380{letter-spacing:5.760000pt;}
.ls3_c00380{letter-spacing:18.560000pt;}
.ws2_c00380{word-spacing:-16.000000pt;}
.ws3_c00380{word-spacing:-13.872533pt;}
.ws1_c00380{word-spacing:-13.460267pt;}
.ws0_c00380{word-spacing:-13.440000pt;}
.ws5_c00380{word-spacing:-13.007467pt;}
.ws4_c00380{word-spacing:-12.160000pt;}
.ws6_c00380{word-spacing:0.000000pt;}
._6_c00380{margin-left:-2.432000pt;}
._0_c00380{margin-left:-1.280026pt;}
._1_c00380{width:1.154657pt;}
._5_c00380{width:2.048026pt;}
._d_c00380{width:3.130711pt;}
._f_c00380{width:4.597448pt;}
._7_c00380{width:5.501343pt;}
._4_c00380{width:7.296026pt;}
._10_c00380{width:8.768000pt;}
._3_c00380{width:9.872056pt;}
._2_c00380{width:10.913065pt;}
._e_c00380{width:12.096026pt;}
._8_c00380{width:13.120000pt;}
._9_c00380{width:14.637399pt;}
._b_c00380{width:17.421324pt;}
._a_c00380{width:18.349413pt;}
._11_c00380{width:19.458429pt;}
._c_c00380{width:20.373511pt;}
.fs3_c00380{font-size:34.560000pt;}
.fs2_c00380{font-size:42.240000pt;}
.fs1_c00380{font-size:53.760000pt;}
.fs0_c00380{font-size:64.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.y3_c00380{bottom:51.552000pt;}
.y2_c00380{bottom:70.112000pt;}
.y24_c00380{bottom:116.192000pt;}
.y23_c00380{bottom:131.552000pt;}
.y22_c00380{bottom:146.946667pt;}
.y21_c00380{bottom:153.026667pt;}
.y20_c00380{bottom:162.626667pt;}
.y1f_c00380{bottom:183.426667pt;}
.y1e_c00380{bottom:227.266667pt;}
.y1d_c00380{bottom:273.693333pt;}
.y1c_c00380{bottom:309.213333pt;}
.y1b_c00380{bottom:336.733333pt;}
.y1a_c00380{bottom:364.293333pt;}
.y19_c00380{bottom:392.133333pt;}
.y18_c00380{bottom:419.653333pt;}
.y17_c00380{bottom:460.640000pt;}
.y16_c00380{bottom:488.160000pt;}
.y15_c00380{bottom:515.680000pt;}
.y14_c00380{bottom:543.200000pt;}
.y13_c00380{bottom:571.066667pt;}
.y11_c00380{bottom:598.586667pt;}
.y12_c00380{bottom:605.946667pt;}
.y10_c00380{bottom:626.106667pt;}
.yf_c00380{bottom:653.626667pt;}
.ye_c00380{bottom:681.506667pt;}
.yd_c00380{bottom:709.026667pt;}
.yc_c00380{bottom:736.546667pt;}
.yb_c00380{bottom:764.066667pt;}
.ya_c00380{bottom:791.933333pt;}
.y9_c00380{bottom:819.453333pt;}
.y8_c00380{bottom:846.973333pt;}
.y7_c00380{bottom:872.573333pt;}
.y6_c00380{bottom:895.613333pt;}
.y5_c00380{bottom:918.693333pt;}
.y4_c00380{bottom:949.733333pt;}
.y1_c00380{bottom:993.573333pt;}
.h8_c00380{height:30.982500pt;}
.h6_c00380{height:41.456250pt;}
.h9_c00380{height:48.457500pt;}
.h3_c00380{height:52.736250pt;}
.h2_c00380{height:52.762500pt;}
.h1_c00380{height:57.375000pt;}
.h7_c00380{height:62.781250pt;}
.h4_c00380{height:62.812500pt;}
.h5_c00380{height:1055.996000pt;}
.h0_c00380{height:1056.000000pt;}
.w1_c00380{width:815.997333pt;}
.w0_c00380{width:816.000000pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:113.312000pt;}
.x9_c00380{left:126.752000pt;}
.x3_c00380{left:151.106667pt;}
.x6_c00380{left:158.786667pt;}
.x7_c00380{left:160.706667pt;}
.x4_c00380{left:195.584000pt;}
.x5_c00380{left:211.906667pt;}
.x8_c00380{left:305.413333pt;}
.x2_c00380{left:396.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_c00381 {
    display:none;
  }
  .loading-indicator_c00381.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00381 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00381 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00381" -> "#page-container .classname_c00381")
 */
.pf_c00381 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00381 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00381 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00381 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00381 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00381 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00381 {overflow:visible;}
  }
}
.c_c00381 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00381 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00381:after { /* webkit #35443 */
  content: '';
}
.t_c00381:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00381 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00381 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00381 { /* info for Javascript */
  display:none;
}
.l_c00381 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00381 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00381 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00381:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00381;src:url('chunks/assets/font_9ecb614671228184e350f3c4.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_95a577656334dde23a761cf5.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_00f5f81396e59937dad697ec.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_9df9bee3c054717f9508509a.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00381;src:url('chunks/assets/font_d97e90bb0ceca7a95df186bb.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;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_c00381;src:url('chunks/assets/font_b0e6cb57d36734e920fd5740.woff2')format("woff");}.ff6_c00381{font-family:ff6_c00381;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls6_c00381{letter-spacing:-1.680000px;}
.lsa_c00381{letter-spacing:-1.416000px;}
.ls9_c00381{letter-spacing:-1.380000px;}
.ls7_c00381{letter-spacing:-0.912000px;}
.ls5_c00381{letter-spacing:0.000000px;}
.ls1_c00381{letter-spacing:0.302400px;}
.ls8_c00381{letter-spacing:0.486600px;}
.ls4_c00381{letter-spacing:0.708716px;}
.ls0_c00381{letter-spacing:0.720000px;}
.ls3_c00381{letter-spacing:0.728617px;}
.ls2_c00381{letter-spacing:0.740160px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00381{word-spacing:-60.480000px;}
.ws2_c00381{word-spacing:-18.000000px;}
.ws3_c00381{word-spacing:-15.606600px;}
.ws0_c00381{word-spacing:-15.120000px;}
.ws4_c00381{word-spacing:-13.704000px;}
.ws5_c00381{word-spacing:0.000000px;}
._1_c00381{margin-left:-2.871879px;}
._0_c00381{margin-left:-1.356627px;}
._3_c00381{width:1.076423px;}
._2_c00381{width:2.578080px;}
._4_c00381{width:4.055898px;}
._5_c00381{width:5.392204px;}
._b_c00381{width:6.422976px;}
._6_c00381{width:13.948831px;}
._7_c00381{width:15.595171px;}
._a_c00381{width:21.287715px;}
._9_c00381{width:22.520408px;}
._8_c00381{width:24.259456px;}
.fc0_c00381{color:rgb(0,0,0);}
.fs1_c00381{font-size:60.480000px;}
.fs0_c00381{font-size:72.000000px;}
.y0_c00381{bottom:0.000000px;}
.y3_c00381{bottom:57.996000px;}
.y2_c00381{bottom:78.876000px;}
.y25_c00381{bottom:118.116000px;}
.y24_c00381{bottom:143.676000px;}
.y23_c00381{bottom:169.635000px;}
.y22_c00381{bottom:195.555000px;}
.y21_c00381{bottom:230.475000px;}
.y20_c00381{bottom:256.395000px;}
.y1f_c00381{bottom:282.345000px;}
.y1e_c00381{bottom:308.265000px;}
.y1d_c00381{bottom:334.185000px;}
.y1c_c00381{bottom:359.745000px;}
.y1b_c00381{bottom:385.665000px;}
.y1a_c00381{bottom:411.630000px;}
.y19_c00381{bottom:437.550000px;}
.y18_c00381{bottom:463.470000px;}
.y17_c00381{bottom:489.390000px;}
.y16_c00381{bottom:515.310000px;}
.y15_c00381{bottom:541.260000px;}
.y14_c00381{bottom:566.820000px;}
.y13_c00381{bottom:592.740000px;}
.y12_c00381{bottom:618.660000px;}
.y11_c00381{bottom:644.610000px;}
.y10_c00381{bottom:670.530000px;}
.yf_c00381{bottom:719.850000px;}
.ye_c00381{bottom:771.735000px;}
.yd_c00381{bottom:802.695000px;}
.yc_c00381{bottom:834.015000px;}
.yb_c00381{bottom:864.975000px;}
.ya_c00381{bottom:895.965000px;}
.y9_c00381{bottom:926.925000px;}
.y8_c00381{bottom:955.725000px;}
.y7_c00381{bottom:981.645000px;}
.y6_c00381{bottom:1016.610000px;}
.y5_c00381{bottom:1042.530000px;}
.y4_c00381{bottom:1068.450000px;}
.y1_c00381{bottom:1117.770000px;}
.h3_c00381{height:59.328281px;}
.h2_c00381{height:59.357813px;}
.h1_c00381{height:64.546875px;}
.h4_c00381{height:70.664062px;}
.h0_c00381{height:1188.000000px;}
.w0_c00381{width:918.000000px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:127.476000px;}
.x3_c00381{left:169.995000px;}
.x2_c00381{left:445.500000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls6_c00381{letter-spacing:-1.493333pt;}
.lsa_c00381{letter-spacing:-1.258667pt;}
.ls9_c00381{letter-spacing:-1.226667pt;}
.ls7_c00381{letter-spacing:-0.810667pt;}
.ls5_c00381{letter-spacing:0.000000pt;}
.ls1_c00381{letter-spacing:0.268800pt;}
.ls8_c00381{letter-spacing:0.432533pt;}
.ls4_c00381{letter-spacing:0.629970pt;}
.ls0_c00381{letter-spacing:0.640000pt;}
.ls3_c00381{letter-spacing:0.647660pt;}
.ls2_c00381{letter-spacing:0.657920pt;}
.ws1_c00381{word-spacing:-53.760000pt;}
.ws2_c00381{word-spacing:-16.000000pt;}
.ws3_c00381{word-spacing:-13.872533pt;}
.ws0_c00381{word-spacing:-13.440000pt;}
.ws4_c00381{word-spacing:-12.181333pt;}
.ws5_c00381{word-spacing:0.000000pt;}
._1_c00381{margin-left:-2.552782pt;}
._0_c00381{margin-left:-1.205891pt;}
._3_c00381{width:0.956820pt;}
._2_c00381{width:2.291627pt;}
._4_c00381{width:3.605243pt;}
._5_c00381{width:4.793070pt;}
._b_c00381{width:5.709312pt;}
._6_c00381{width:12.398961pt;}
._7_c00381{width:13.862374pt;}
._a_c00381{width:18.922413pt;}
._9_c00381{width:20.018140pt;}
._8_c00381{width:21.563961pt;}
.fs1_c00381{font-size:53.760000pt;}
.fs0_c00381{font-size:64.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y3_c00381{bottom:51.552000pt;}
.y2_c00381{bottom:70.112000pt;}
.y25_c00381{bottom:104.992000pt;}
.y24_c00381{bottom:127.712000pt;}
.y23_c00381{bottom:150.786667pt;}
.y22_c00381{bottom:173.826667pt;}
.y21_c00381{bottom:204.866667pt;}
.y20_c00381{bottom:227.906667pt;}
.y1f_c00381{bottom:250.973333pt;}
.y1e_c00381{bottom:274.013333pt;}
.y1d_c00381{bottom:297.053333pt;}
.y1c_c00381{bottom:319.773333pt;}
.y1b_c00381{bottom:342.813333pt;}
.y1a_c00381{bottom:365.893333pt;}
.y19_c00381{bottom:388.933333pt;}
.y18_c00381{bottom:411.973333pt;}
.y17_c00381{bottom:435.013333pt;}
.y16_c00381{bottom:458.053333pt;}
.y15_c00381{bottom:481.120000pt;}
.y14_c00381{bottom:503.840000pt;}
.y13_c00381{bottom:526.880000pt;}
.y12_c00381{bottom:549.920000pt;}
.y11_c00381{bottom:572.986667pt;}
.y10_c00381{bottom:596.026667pt;}
.yf_c00381{bottom:639.866667pt;}
.ye_c00381{bottom:685.986667pt;}
.yd_c00381{bottom:713.506667pt;}
.yc_c00381{bottom:741.346667pt;}
.yb_c00381{bottom:768.866667pt;}
.ya_c00381{bottom:796.413333pt;}
.y9_c00381{bottom:823.933333pt;}
.y8_c00381{bottom:849.533333pt;}
.y7_c00381{bottom:872.573333pt;}
.y6_c00381{bottom:903.653333pt;}
.y5_c00381{bottom:926.693333pt;}
.y4_c00381{bottom:949.733333pt;}
.y1_c00381{bottom:993.573333pt;}
.h3_c00381{height:52.736250pt;}
.h2_c00381{height:52.762500pt;}
.h1_c00381{height:57.375000pt;}
.h4_c00381{height:62.812500pt;}
.h0_c00381{height:1056.000000pt;}
.w0_c00381{width:816.000000pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:113.312000pt;}
.x3_c00381{left:151.106667pt;}
.x2_c00381{left:396.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_c00382 {
    display:none;
  }
  .loading-indicator_c00382.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00382 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00382 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00382" -> "#page-container .classname_c00382")
 */
.pf_c00382 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00382 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00382 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00382 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00382 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00382 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00382 {overflow:visible;}
  }
}
.c_c00382 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00382 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00382:after { /* webkit #35443 */
  content: '';
}
.t_c00382:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00382 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00382 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00382 { /* info for Javascript */
  display:none;
}
.l_c00382 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00382 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00382 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00382:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00382;src:url('chunks/assets/font_4b4cad7f37924c015e327547.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_459527f36263b62d9a521925.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_33b16fc31862f33318a003d2.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_8ee2a19f4d1a0382d22908c1.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00382;src:url('chunks/assets/font_9451d54f145df9ee68d7b41c.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00382;src:url('chunks/assets/font_0a372121f1baba4a406834ad.woff2')format("woff");}.ff6_c00382{font-family:ff6_c00382;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.lsb_c00382{letter-spacing:-0.302400px;}
.ls7_c00382{letter-spacing:0.000000px;}
.lsa_c00382{letter-spacing:0.022800px;}
.ls9_c00382{letter-spacing:0.166800px;}
.ls8_c00382{letter-spacing:0.486600px;}
.ls4_c00382{letter-spacing:0.524160px;}
.ls5_c00382{letter-spacing:0.708506px;}
.ls3_c00382{letter-spacing:0.720000px;}
.ls6_c00382{letter-spacing:0.860137px;}
.ls0_c00382{letter-spacing:6.480000px;}
.ls1_c00382{letter-spacing:7.920000px;}
.ls2_c00382{letter-spacing:15.120000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00382{word-spacing:-60.480000px;}
.ws0_c00382{word-spacing:-18.000000px;}
.ws1_c00382{word-spacing:-15.606600px;}
.ws3_c00382{word-spacing:-15.286800px;}
.ws5_c00382{word-spacing:-15.142800px;}
.ws2_c00382{word-spacing:-15.120000px;}
.ws6_c00382{word-spacing:-14.817600px;}
.ws7_c00382{word-spacing:0.000000px;}
._6_c00382{margin-left:-2.887736px;}
._1_c00382{margin-left:-1.825770px;}
._3_c00382{width:1.231736px;}
._4_c00382{width:3.193770px;}
._5_c00382{width:4.924149px;}
._7_c00382{width:6.408000px;}
._2_c00382{width:7.995577px;}
._0_c00382{width:9.253198px;}
._8_c00382{width:11.520000px;}
._9_c00382{width:12.872667px;}
._a_c00382{width:14.099138px;}
._e_c00382{width:15.184264px;}
._b_c00382{width:26.568000px;}
._c_c00382{width:27.900023px;}
._d_c00382{width:31.656093px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs1_c00382{font-size:60.480000px;}
.fs0_c00382{font-size:72.000000px;}
.y0_c00382{bottom:0.000000px;}
.y3_c00382{bottom:57.996000px;}
.y2_c00382{bottom:78.876000px;}
.y23_c00382{bottom:116.676000px;}
.y22_c00382{bottom:142.596000px;}
.y21_c00382{bottom:177.555000px;}
.y20_c00382{bottom:203.115000px;}
.y1f_c00382{bottom:229.035000px;}
.y1e_c00382{bottom:254.955000px;}
.y1d_c00382{bottom:280.905000px;}
.y1c_c00382{bottom:306.825000px;}
.y1b_c00382{bottom:332.745000px;}
.y1a_c00382{bottom:358.665000px;}
.y19_c00382{bottom:384.585000px;}
.y18_c00382{bottom:433.590000px;}
.y17_c00382{bottom:485.790000px;}
.y16_c00382{bottom:516.750000px;}
.y15_c00382{bottom:547.740000px;}
.y14_c00382{bottom:578.700000px;}
.y13_c00382{bottom:610.020000px;}
.y12_c00382{bottom:641.010000px;}
.y11_c00382{bottom:671.970000px;}
.y10_c00382{bottom:702.930000px;}
.yf_c00382{bottom:734.250000px;}
.ye_c00382{bottom:765.255000px;}
.yd_c00382{bottom:796.215000px;}
.yc_c00382{bottom:827.175000px;}
.yb_c00382{bottom:858.495000px;}
.ya_c00382{bottom:889.485000px;}
.y9_c00382{bottom:920.445000px;}
.y8_c00382{bottom:951.405000px;}
.y7_c00382{bottom:982.725000px;}
.y6_c00382{bottom:1013.730000px;}
.y5_c00382{bottom:1042.530000px;}
.y4_c00382{bottom:1068.450000px;}
.y1_c00382{bottom:1117.770000px;}
.h2_c00382{height:59.328281px;}
.h4_c00382{height:59.357813px;}
.h1_c00382{height:64.546875px;}
.h3_c00382{height:70.664062px;}
.h0_c00382{height:1188.000000px;}
.w0_c00382{width:918.000000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:127.476000px;}
.x3_c00382{left:169.995000px;}
.x2_c00382{left:445.500000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.lsb_c00382{letter-spacing:-0.268800pt;}
.ls7_c00382{letter-spacing:0.000000pt;}
.lsa_c00382{letter-spacing:0.020267pt;}
.ls9_c00382{letter-spacing:0.148267pt;}
.ls8_c00382{letter-spacing:0.432533pt;}
.ls4_c00382{letter-spacing:0.465920pt;}
.ls5_c00382{letter-spacing:0.629783pt;}
.ls3_c00382{letter-spacing:0.640000pt;}
.ls6_c00382{letter-spacing:0.764566pt;}
.ls0_c00382{letter-spacing:5.760000pt;}
.ls1_c00382{letter-spacing:7.040000pt;}
.ls2_c00382{letter-spacing:13.440000pt;}
.ws4_c00382{word-spacing:-53.760000pt;}
.ws0_c00382{word-spacing:-16.000000pt;}
.ws1_c00382{word-spacing:-13.872533pt;}
.ws3_c00382{word-spacing:-13.588267pt;}
.ws5_c00382{word-spacing:-13.460267pt;}
.ws2_c00382{word-spacing:-13.440000pt;}
.ws6_c00382{word-spacing:-13.171200pt;}
.ws7_c00382{word-spacing:0.000000pt;}
._6_c00382{margin-left:-2.566876pt;}
._1_c00382{margin-left:-1.622907pt;}
._3_c00382{width:1.094876pt;}
._4_c00382{width:2.838907pt;}
._5_c00382{width:4.377021pt;}
._7_c00382{width:5.696000pt;}
._2_c00382{width:7.107180pt;}
._0_c00382{width:8.225065pt;}
._8_c00382{width:10.240000pt;}
._9_c00382{width:11.442371pt;}
._a_c00382{width:12.532567pt;}
._e_c00382{width:13.497124pt;}
._b_c00382{width:23.616000pt;}
._c_c00382{width:24.800020pt;}
._d_c00382{width:28.138749pt;}
.fs1_c00382{font-size:53.760000pt;}
.fs0_c00382{font-size:64.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y3_c00382{bottom:51.552000pt;}
.y2_c00382{bottom:70.112000pt;}
.y23_c00382{bottom:103.712000pt;}
.y22_c00382{bottom:126.752000pt;}
.y21_c00382{bottom:157.826667pt;}
.y20_c00382{bottom:180.546667pt;}
.y1f_c00382{bottom:203.586667pt;}
.y1e_c00382{bottom:226.626667pt;}
.y1d_c00382{bottom:249.693333pt;}
.y1c_c00382{bottom:272.733333pt;}
.y1b_c00382{bottom:295.773333pt;}
.y1a_c00382{bottom:318.813333pt;}
.y19_c00382{bottom:341.853333pt;}
.y18_c00382{bottom:385.413333pt;}
.y17_c00382{bottom:431.813333pt;}
.y16_c00382{bottom:459.333333pt;}
.y15_c00382{bottom:486.880000pt;}
.y14_c00382{bottom:514.400000pt;}
.y13_c00382{bottom:542.240000pt;}
.y12_c00382{bottom:569.786667pt;}
.y11_c00382{bottom:597.306667pt;}
.y10_c00382{bottom:624.826667pt;}
.yf_c00382{bottom:652.666667pt;}
.ye_c00382{bottom:680.226667pt;}
.yd_c00382{bottom:707.746667pt;}
.yc_c00382{bottom:735.266667pt;}
.yb_c00382{bottom:763.106667pt;}
.ya_c00382{bottom:790.653333pt;}
.y9_c00382{bottom:818.173333pt;}
.y8_c00382{bottom:845.693333pt;}
.y7_c00382{bottom:873.533333pt;}
.y6_c00382{bottom:901.093333pt;}
.y5_c00382{bottom:926.693333pt;}
.y4_c00382{bottom:949.733333pt;}
.y1_c00382{bottom:993.573333pt;}
.h2_c00382{height:52.736250pt;}
.h4_c00382{height:52.762500pt;}
.h1_c00382{height:57.375000pt;}
.h3_c00382{height:62.812500pt;}
.h0_c00382{height:1056.000000pt;}
.w0_c00382{width:816.000000pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:113.312000pt;}
.x3_c00382{left:151.106667pt;}
.x2_c00382{left:396.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_c00383 {
    display:none;
  }
  .loading-indicator_c00383.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00383 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00383 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00383" -> "#page-container .classname_c00383")
 */
.pf_c00383 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00383 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00383 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00383 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00383 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00383 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00383 {overflow:visible;}
  }
}
.c_c00383 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00383 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00383:after { /* webkit #35443 */
  content: '';
}
.t_c00383:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00383 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00383 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00383 { /* info for Javascript */
  display:none;
}
.l_c00383 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00383 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00383 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00383:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00383;src:url('chunks/assets/font_161fda424c40c7b405d6e0a7.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_a316962d6ba37e007262f10d.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_36bde4fca3253a5e87a7f5ef.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_87c8d177809d16c57be4fdcc.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00383;src:url('chunks/assets/font_63f274d3fe45e0f87d30c498.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls3_c00383{letter-spacing:-1.440000px;}
.ls2_c00383{letter-spacing:0.000000px;}
.ls1_c00383{letter-spacing:0.720000px;}
.ls0_c00383{letter-spacing:18.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:-18.000000px;}
.ws1_c00383{word-spacing:-15.120000px;}
.ws2_c00383{word-spacing:0.000000px;}
._4_c00383{margin-left:-2.672398px;}
._0_c00383{margin-left:-1.088398px;}
._1_c00383{width:1.088398px;}
._b_c00383{width:2.193592px;}
._5_c00383{width:3.231602px;}
._f_c00383{width:4.392000px;}
._6_c00383{width:6.255602px;}
._7_c00383{width:9.898787px;}
._12_c00383{width:11.382048px;}
._2_c00383{width:13.040398px;}
._3_c00383{width:14.184000px;}
._e_c00383{width:15.575976px;}
._d_c00383{width:16.740000px;}
._c_c00383{width:19.300796px;}
._10_c00383{width:21.960000px;}
._11_c00383{width:23.637612px;}
._9_c00383{width:25.576796px;}
._8_c00383{width:27.144000px;}
._a_c00383{width:28.639204px;}
._13_c00383{width:30.295204px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs3_c00383{font-size:38.880000px;}
.fs2_c00383{font-size:47.520000px;}
.fs1_c00383{font-size:60.480000px;}
.fs0_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y3_c00383{bottom:57.996000px;}
.y2_c00383{bottom:78.876000px;}
.y24_c00383{bottom:130.716000px;}
.y23_c00383{bottom:147.996000px;}
.y22_c00383{bottom:165.315000px;}
.y21_c00383{bottom:172.155000px;}
.y20_c00383{bottom:182.955000px;}
.y1f_c00383{bottom:268.275000px;}
.y1e_c00383{bottom:299.265000px;}
.y1c_c00383{bottom:330.585000px;}
.y1d_c00383{bottom:338.865000px;}
.y1b_c00383{bottom:361.545000px;}
.y1a_c00383{bottom:392.505000px;}
.y19_c00383{bottom:423.510000px;}
.y18_c00383{bottom:454.470000px;}
.y17_c00383{bottom:485.790000px;}
.y16_c00383{bottom:516.750000px;}
.y15_c00383{bottom:547.740000px;}
.y14_c00383{bottom:578.700000px;}
.y13_c00383{bottom:610.020000px;}
.y12_c00383{bottom:641.010000px;}
.y11_c00383{bottom:671.970000px;}
.y10_c00383{bottom:702.930000px;}
.yf_c00383{bottom:734.250000px;}
.ye_c00383{bottom:765.255000px;}
.yd_c00383{bottom:796.215000px;}
.yc_c00383{bottom:827.175000px;}
.yb_c00383{bottom:858.495000px;}
.ya_c00383{bottom:889.485000px;}
.y9_c00383{bottom:920.445000px;}
.y8_c00383{bottom:951.405000px;}
.y7_c00383{bottom:982.725000px;}
.y6_c00383{bottom:1013.730000px;}
.y5_c00383{bottom:1042.530000px;}
.y4_c00383{bottom:1068.450000px;}
.y1_c00383{bottom:1117.770000px;}
.h7_c00383{height:38.158594px;}
.h6_c00383{height:46.638281px;}
.h2_c00383{height:59.328281px;}
.h8_c00383{height:59.357813px;}
.h1_c00383{height:64.546875px;}
.h4_c00383{height:70.628906px;}
.h3_c00383{height:70.664062px;}
.h5_c00383{height:1187.995500px;}
.h0_c00383{height:1188.000000px;}
.w1_c00383{width:917.997000px;}
.w0_c00383{width:918.000000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:127.476000px;}
.x8_c00383{left:142.596000px;}
.x3_c00383{left:169.995000px;}
.x4_c00383{left:178.635000px;}
.x5_c00383{left:189.432000px;}
.x6_c00383{left:207.795000px;}
.x7_c00383{left:343.590000px;}
.x2_c00383{left:445.500000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls3_c00383{letter-spacing:-1.280000pt;}
.ls2_c00383{letter-spacing:0.000000pt;}
.ls1_c00383{letter-spacing:0.640000pt;}
.ls0_c00383{letter-spacing:16.000000pt;}
.ws0_c00383{word-spacing:-16.000000pt;}
.ws1_c00383{word-spacing:-13.440000pt;}
.ws2_c00383{word-spacing:0.000000pt;}
._4_c00383{margin-left:-2.375465pt;}
._0_c00383{margin-left:-0.967465pt;}
._1_c00383{width:0.967465pt;}
._b_c00383{width:1.949860pt;}
._5_c00383{width:2.872535pt;}
._f_c00383{width:3.904000pt;}
._6_c00383{width:5.560535pt;}
._7_c00383{width:8.798921pt;}
._12_c00383{width:10.117376pt;}
._2_c00383{width:11.591465pt;}
._3_c00383{width:12.608000pt;}
._e_c00383{width:13.845312pt;}
._d_c00383{width:14.880000pt;}
._c_c00383{width:17.156263pt;}
._10_c00383{width:19.520000pt;}
._11_c00383{width:21.011210pt;}
._9_c00383{width:22.734930pt;}
._8_c00383{width:24.128000pt;}
._a_c00383{width:25.457070pt;}
._13_c00383{width:26.929070pt;}
.fs3_c00383{font-size:34.560000pt;}
.fs2_c00383{font-size:42.240000pt;}
.fs1_c00383{font-size:53.760000pt;}
.fs0_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y3_c00383{bottom:51.552000pt;}
.y2_c00383{bottom:70.112000pt;}
.y24_c00383{bottom:116.192000pt;}
.y23_c00383{bottom:131.552000pt;}
.y22_c00383{bottom:146.946667pt;}
.y21_c00383{bottom:153.026667pt;}
.y20_c00383{bottom:162.626667pt;}
.y1f_c00383{bottom:238.466667pt;}
.y1e_c00383{bottom:266.013333pt;}
.y1c_c00383{bottom:293.853333pt;}
.y1d_c00383{bottom:301.213333pt;}
.y1b_c00383{bottom:321.373333pt;}
.y1a_c00383{bottom:348.893333pt;}
.y19_c00383{bottom:376.453333pt;}
.y18_c00383{bottom:403.973333pt;}
.y17_c00383{bottom:431.813333pt;}
.y16_c00383{bottom:459.333333pt;}
.y15_c00383{bottom:486.880000pt;}
.y14_c00383{bottom:514.400000pt;}
.y13_c00383{bottom:542.240000pt;}
.y12_c00383{bottom:569.786667pt;}
.y11_c00383{bottom:597.306667pt;}
.y10_c00383{bottom:624.826667pt;}
.yf_c00383{bottom:652.666667pt;}
.ye_c00383{bottom:680.226667pt;}
.yd_c00383{bottom:707.746667pt;}
.yc_c00383{bottom:735.266667pt;}
.yb_c00383{bottom:763.106667pt;}
.ya_c00383{bottom:790.653333pt;}
.y9_c00383{bottom:818.173333pt;}
.y8_c00383{bottom:845.693333pt;}
.y7_c00383{bottom:873.533333pt;}
.y6_c00383{bottom:901.093333pt;}
.y5_c00383{bottom:926.693333pt;}
.y4_c00383{bottom:949.733333pt;}
.y1_c00383{bottom:993.573333pt;}
.h7_c00383{height:33.918750pt;}
.h6_c00383{height:41.456250pt;}
.h2_c00383{height:52.736250pt;}
.h8_c00383{height:52.762500pt;}
.h1_c00383{height:57.375000pt;}
.h4_c00383{height:62.781250pt;}
.h3_c00383{height:62.812500pt;}
.h5_c00383{height:1055.996000pt;}
.h0_c00383{height:1056.000000pt;}
.w1_c00383{width:815.997333pt;}
.w0_c00383{width:816.000000pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:113.312000pt;}
.x8_c00383{left:126.752000pt;}
.x3_c00383{left:151.106667pt;}
.x4_c00383{left:158.786667pt;}
.x5_c00383{left:168.384000pt;}
.x6_c00383{left:184.706667pt;}
.x7_c00383{left:305.413333pt;}
.x2_c00383{left:396.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_c00384 {
    display:none;
  }
  .loading-indicator_c00384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00384 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00384 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00384" -> "#page-container .classname_c00384")
 */
.pf_c00384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00384 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00384 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00384 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00384 {overflow:visible;}
  }
}
.c_c00384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00384 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00384:after { /* webkit #35443 */
  content: '';
}
.t_c00384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00384 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00384 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00384 { /* info for Javascript */
  display:none;
}
.l_c00384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00384:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00384;src:url('chunks/assets/font_2b75f6c5d14254d5695c55c3.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_5737187a7df75cf765ac497a.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_92c0b165e4f90cd09bf30fb3.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;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_c00384;src:url('chunks/assets/font_87a87e3c1c084f2cec40d5cb.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00384;src:url('chunks/assets/font_8ba10c238443b4122c49c011.woff2')format("woff");}.ff5_c00384{font-family:ff5_c00384;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00384;src:url('chunks/assets/font_64b2087e1e14213a52a37568.woff2')format("woff");}.ff6_c00384{font-family:ff6_c00384;line-height:1.104004;font-style:normal;font-weight: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_c00384;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00384{font-family:ff7_c00384;line-height:1.311035;font-style:normal;font-weight: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_c00384;src:url('chunks/assets/font_bc495f27eca8f300faf3c0bb.woff2')format("woff");}.ff8_c00384{font-family:ff8_c00384;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls6_c00384{letter-spacing:-0.486600px;}
.ls2_c00384{letter-spacing:0.000000px;}
.ls5_c00384{letter-spacing:0.020400px;}
.ls4_c00384{letter-spacing:0.486600px;}
.ls1_c00384{letter-spacing:0.506880px;}
.ls0_c00384{letter-spacing:0.720000px;}
.ls3_c00384{letter-spacing:1.152000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00384{word-spacing:-72.000000px;}
.ws3_c00384{word-spacing:-60.480000px;}
.ws0_c00384{word-spacing:-19.152000px;}
.ws5_c00384{word-spacing:-18.000000px;}
.ws2_c00384{word-spacing:-15.606600px;}
.ws4_c00384{word-spacing:-15.120000px;}
.ws6_c00384{word-spacing:0.000000px;}
._8_c00384{margin-left:-3.239904px;}
._0_c00384{margin-left:-1.872000px;}
._1_c00384{width:1.080000px;}
._4_c00384{width:2.520048px;}
._9_c00384{width:3.743952px;}
._10_c00384{width:4.907904px;}
._a_c00384{width:5.975904px;}
._b_c00384{width:7.128000px;}
._c_c00384{width:8.280288px;}
._7_c00384{width:10.295952px;}
._6_c00384{width:11.304000px;}
._5_c00384{width:13.032000px;}
._d_c00384{width:14.112000px;}
._3_c00384{width:15.539976px;}
._2_c00384{width:16.848000px;}
._f_c00384{width:21.384000px;}
._e_c00384{width:23.340000px;}
.fc0_c00384{color:rgb(0,0,0);}
.fs3_c00384{font-size:38.880000px;}
.fs1_c00384{font-size:47.520000px;}
.fs2_c00384{font-size:60.480000px;}
.fs0_c00384{font-size:72.000000px;}
.y0_c00384{bottom:0.000000px;}
.y3_c00384{bottom:57.996000px;}
.y2_c00384{bottom:78.876000px;}
.y2a_c00384{bottom:130.716000px;}
.y29_c00384{bottom:147.996000px;}
.y28_c00384{bottom:165.315000px;}
.y27_c00384{bottom:172.155000px;}
.y26_c00384{bottom:182.595000px;}
.y25_c00384{bottom:199.515000px;}
.y24_c00384{bottom:206.355000px;}
.y23_c00384{bottom:216.795000px;}
.y22_c00384{bottom:234.075000px;}
.y21_c00384{bottom:240.915000px;}
.y20_c00384{bottom:252.075000px;}
.y1f_c00384{bottom:285.945000px;}
.y1e_c00384{bottom:316.905000px;}
.y1c_c00384{bottom:347.865000px;}
.y1d_c00384{bottom:356.145000px;}
.y1b_c00384{bottom:379.185000px;}
.y1a_c00384{bottom:410.190000px;}
.y19_c00384{bottom:441.150000px;}
.y18_c00384{bottom:472.110000px;}
.y17_c00384{bottom:500.910000px;}
.y16_c00384{bottom:526.860000px;}
.y15_c00384{bottom:561.780000px;}
.y14_c00384{bottom:587.700000px;}
.y13_c00384{bottom:613.620000px;}
.y12_c00384{bottom:662.970000px;}
.y11_c00384{bottom:714.810000px;}
.y10_c00384{bottom:754.770000px;}
.yf_c00384{bottom:785.775000px;}
.yd_c00384{bottom:817.095000px;}
.ye_c00384{bottom:825.375000px;}
.yc_c00384{bottom:848.055000px;}
.yb_c00384{bottom:879.015000px;}
.y9_c00384{bottom:910.005000px;}
.ya_c00384{bottom:918.285000px;}
.y8_c00384{bottom:941.325000px;}
.y7_c00384{bottom:972.285000px;}
.y6_c00384{bottom:1003.245000px;}
.y5_c00384{bottom:1034.250000px;}
.y4_c00384{bottom:1065.570000px;}
.y1_c00384{bottom:1117.770000px;}
.h9_c00384{height:34.855313px;}
.hc_c00384{height:38.158594px;}
.h4_c00384{height:46.638281px;}
.ha_c00384{height:54.219375px;}
.hb_c00384{height:54.514688px;}
.h8_c00384{height:59.328281px;}
.h6_c00384{height:59.357813px;}
.h7_c00384{height:60.952500px;}
.h1_c00384{height:64.546875px;}
.h5_c00384{height:70.628906px;}
.h2_c00384{height:70.664062px;}
.h3_c00384{height:1187.995500px;}
.h0_c00384{height:1188.000000px;}
.w1_c00384{width:917.997000px;}
.w0_c00384{width:918.000000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:127.476000px;}
.xc_c00384{left:142.596000px;}
.x8_c00384{left:169.995000px;}
.x7_c00384{left:180.795000px;}
.xb_c00384{left:343.590000px;}
.x5_c00384{left:440.097000px;}
.x2_c00384{left:445.500000px;}
.x6_c00384{left:458.460000px;}
.x3_c00384{left:510.297000px;}
.x4_c00384{left:528.660000px;}
.x9_c00384{left:576.927000px;}
.xa_c00384{left:595.290000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls6_c00384{letter-spacing:-0.432533pt;}
.ls2_c00384{letter-spacing:0.000000pt;}
.ls5_c00384{letter-spacing:0.018133pt;}
.ls4_c00384{letter-spacing:0.432533pt;}
.ls1_c00384{letter-spacing:0.450560pt;}
.ls0_c00384{letter-spacing:0.640000pt;}
.ls3_c00384{letter-spacing:1.024000pt;}
.ws1_c00384{word-spacing:-64.000000pt;}
.ws3_c00384{word-spacing:-53.760000pt;}
.ws0_c00384{word-spacing:-17.024000pt;}
.ws5_c00384{word-spacing:-16.000000pt;}
.ws2_c00384{word-spacing:-13.872533pt;}
.ws4_c00384{word-spacing:-13.440000pt;}
.ws6_c00384{word-spacing:0.000000pt;}
._8_c00384{margin-left:-2.879915pt;}
._0_c00384{margin-left:-1.664000pt;}
._1_c00384{width:0.960000pt;}
._4_c00384{width:2.240043pt;}
._9_c00384{width:3.327957pt;}
._10_c00384{width:4.362581pt;}
._a_c00384{width:5.311915pt;}
._b_c00384{width:6.336000pt;}
._c_c00384{width:7.360256pt;}
._7_c00384{width:9.151957pt;}
._6_c00384{width:10.048000pt;}
._5_c00384{width:11.584000pt;}
._d_c00384{width:12.544000pt;}
._3_c00384{width:13.813312pt;}
._2_c00384{width:14.976000pt;}
._f_c00384{width:19.008000pt;}
._e_c00384{width:20.746667pt;}
.fs3_c00384{font-size:34.560000pt;}
.fs1_c00384{font-size:42.240000pt;}
.fs2_c00384{font-size:53.760000pt;}
.fs0_c00384{font-size:64.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y3_c00384{bottom:51.552000pt;}
.y2_c00384{bottom:70.112000pt;}
.y2a_c00384{bottom:116.192000pt;}
.y29_c00384{bottom:131.552000pt;}
.y28_c00384{bottom:146.946667pt;}
.y27_c00384{bottom:153.026667pt;}
.y26_c00384{bottom:162.306667pt;}
.y25_c00384{bottom:177.346667pt;}
.y24_c00384{bottom:183.426667pt;}
.y23_c00384{bottom:192.706667pt;}
.y22_c00384{bottom:208.066667pt;}
.y21_c00384{bottom:214.146667pt;}
.y20_c00384{bottom:224.066667pt;}
.y1f_c00384{bottom:254.173333pt;}
.y1e_c00384{bottom:281.693333pt;}
.y1c_c00384{bottom:309.213333pt;}
.y1d_c00384{bottom:316.573333pt;}
.y1b_c00384{bottom:337.053333pt;}
.y1a_c00384{bottom:364.613333pt;}
.y19_c00384{bottom:392.133333pt;}
.y18_c00384{bottom:419.653333pt;}
.y17_c00384{bottom:445.253333pt;}
.y16_c00384{bottom:468.320000pt;}
.y15_c00384{bottom:499.360000pt;}
.y14_c00384{bottom:522.400000pt;}
.y13_c00384{bottom:545.440000pt;}
.y12_c00384{bottom:589.306667pt;}
.y11_c00384{bottom:635.386667pt;}
.y10_c00384{bottom:670.906667pt;}
.yf_c00384{bottom:698.466667pt;}
.yd_c00384{bottom:726.306667pt;}
.ye_c00384{bottom:733.666667pt;}
.yc_c00384{bottom:753.826667pt;}
.yb_c00384{bottom:781.346667pt;}
.y9_c00384{bottom:808.893333pt;}
.ya_c00384{bottom:816.253333pt;}
.y8_c00384{bottom:836.733333pt;}
.y7_c00384{bottom:864.253333pt;}
.y6_c00384{bottom:891.773333pt;}
.y5_c00384{bottom:919.333333pt;}
.y4_c00384{bottom:947.173333pt;}
.y1_c00384{bottom:993.573333pt;}
.h9_c00384{height:30.982500pt;}
.hc_c00384{height:33.918750pt;}
.h4_c00384{height:41.456250pt;}
.ha_c00384{height:48.195000pt;}
.hb_c00384{height:48.457500pt;}
.h8_c00384{height:52.736250pt;}
.h6_c00384{height:52.762500pt;}
.h7_c00384{height:54.180000pt;}
.h1_c00384{height:57.375000pt;}
.h5_c00384{height:62.781250pt;}
.h2_c00384{height:62.812500pt;}
.h3_c00384{height:1055.996000pt;}
.h0_c00384{height:1056.000000pt;}
.w1_c00384{width:815.997333pt;}
.w0_c00384{width:816.000000pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:113.312000pt;}
.xc_c00384{left:126.752000pt;}
.x8_c00384{left:151.106667pt;}
.x7_c00384{left:160.706667pt;}
.xb_c00384{left:305.413333pt;}
.x5_c00384{left:391.197333pt;}
.x2_c00384{left:396.000000pt;}
.x6_c00384{left:407.520000pt;}
.x3_c00384{left:453.597333pt;}
.x4_c00384{left:469.920000pt;}
.x9_c00384{left:512.824000pt;}
.xa_c00384{left:529.146667pt;}
}





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

.ir_c00385:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00385;src:url('chunks/assets/font_adad224a7bd7742c2dbe09dc.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_c45fa22dfccef8cf8cc9f9f4.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_6f99e2f1de24757c8fd5d9e6.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;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_c00385;src:url('chunks/assets/font_f178296e7809ab232f9b4d66.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00385;src:url('chunks/assets/font_87a87e3c1c084f2cec40d5cb.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00385;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6_c00385{font-family:ff6_c00385;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_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls1_c00385{letter-spacing:-0.288000px;}
.ls0_c00385{letter-spacing:0.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00385{word-spacing:-72.000000px;}
.ws0_c00385{word-spacing:-18.000000px;}
.ws1_c00385{word-spacing:-17.712000px;}
.ws3_c00385{word-spacing:0.000000px;}
._a_c00385{margin-left:-3.600024px;}
._1_c00385{margin-left:-2.232000px;}
._3_c00385{margin-left:-1.224000px;}
._0_c00385{width:1.080000px;}
._2_c00385{width:2.448000px;}
._4_c00385{width:4.176000px;}
._9_c00385{width:6.048000px;}
._7_c00385{width:7.488000px;}
._8_c00385{width:8.640000px;}
._f_c00385{width:10.152000px;}
._d_c00385{width:11.424000px;}
._c_c00385{width:13.044000px;}
._10_c00385{width:14.160024px;}
._b_c00385{width:16.776000px;}
._e_c00385{width:19.440024px;}
._12_c00385{width:21.240000px;}
._11_c00385{width:22.752024px;}
._6_c00385{width:23.976000px;}
._5_c00385{width:25.776000px;}
.fc0_c00385{color:rgb(0,0,0);}
.fs0_c00385{font-size:72.000000px;}
.y0_c00385{bottom:0.000000px;}
.y3_c00385{bottom:57.996000px;}
.y2_c00385{bottom:78.876000px;}
.y17_c00385{bottom:394.350000px;}
.y16_c00385{bottom:433.950000px;}
.y15_c00385{bottom:474.270000px;}
.y14_c00385{bottom:505.590000px;}
.y13_c00385{bottom:536.580000px;}
.y12_c00385{bottom:567.540000px;}
.y11_c00385{bottom:598.500000px;}
.y10_c00385{bottom:629.820000px;}
.yf_c00385{bottom:660.810000px;}
.ye_c00385{bottom:691.770000px;}
.yd_c00385{bottom:743.970000px;}
.yc_c00385{bottom:774.975000px;}
.yb_c00385{bottom:805.935000px;}
.ya_c00385{bottom:858.135000px;}
.y9_c00385{bottom:910.005000px;}
.y8_c00385{bottom:941.325000px;}
.y7_c00385{bottom:972.285000px;}
.y6_c00385{bottom:1003.245000px;}
.y5_c00385{bottom:1034.250000px;}
.y4_c00385{bottom:1065.570000px;}
.y1_c00385{bottom:1117.770000px;}
.h1_c00385{height:64.546875px;}
.h3_c00385{height:70.628906px;}
.h2_c00385{height:70.664062px;}
.h0_c00385{height:1188.000000px;}
.w0_c00385{width:918.000000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:127.476000px;}
.x3_c00385{left:178.635000px;}
.x4_c00385{left:180.795000px;}
.x2_c00385{left:445.500000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls1_c00385{letter-spacing:-0.256000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws2_c00385{word-spacing:-64.000000pt;}
.ws0_c00385{word-spacing:-16.000000pt;}
.ws1_c00385{word-spacing:-15.744000pt;}
.ws3_c00385{word-spacing:0.000000pt;}
._a_c00385{margin-left:-3.200021pt;}
._1_c00385{margin-left:-1.984000pt;}
._3_c00385{margin-left:-1.088000pt;}
._0_c00385{width:0.960000pt;}
._2_c00385{width:2.176000pt;}
._4_c00385{width:3.712000pt;}
._9_c00385{width:5.376000pt;}
._7_c00385{width:6.656000pt;}
._8_c00385{width:7.680000pt;}
._f_c00385{width:9.024000pt;}
._d_c00385{width:10.154667pt;}
._c_c00385{width:11.594667pt;}
._10_c00385{width:12.586688pt;}
._b_c00385{width:14.912000pt;}
._e_c00385{width:17.280021pt;}
._12_c00385{width:18.880000pt;}
._11_c00385{width:20.224021pt;}
._6_c00385{width:21.312000pt;}
._5_c00385{width:22.912000pt;}
.fs0_c00385{font-size:64.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y3_c00385{bottom:51.552000pt;}
.y2_c00385{bottom:70.112000pt;}
.y17_c00385{bottom:350.533333pt;}
.y16_c00385{bottom:385.733333pt;}
.y15_c00385{bottom:421.573333pt;}
.y14_c00385{bottom:449.413333pt;}
.y13_c00385{bottom:476.960000pt;}
.y12_c00385{bottom:504.480000pt;}
.y11_c00385{bottom:532.000000pt;}
.y10_c00385{bottom:559.840000pt;}
.yf_c00385{bottom:587.386667pt;}
.ye_c00385{bottom:614.906667pt;}
.yd_c00385{bottom:661.306667pt;}
.yc_c00385{bottom:688.866667pt;}
.yb_c00385{bottom:716.386667pt;}
.ya_c00385{bottom:762.786667pt;}
.y9_c00385{bottom:808.893333pt;}
.y8_c00385{bottom:836.733333pt;}
.y7_c00385{bottom:864.253333pt;}
.y6_c00385{bottom:891.773333pt;}
.y5_c00385{bottom:919.333333pt;}
.y4_c00385{bottom:947.173333pt;}
.y1_c00385{bottom:993.573333pt;}
.h1_c00385{height:57.375000pt;}
.h3_c00385{height:62.781250pt;}
.h2_c00385{height:62.812500pt;}
.h0_c00385{height:1056.000000pt;}
.w0_c00385{width:816.000000pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:113.312000pt;}
.x3_c00385{left:158.786667pt;}
.x4_c00385{left:160.706667pt;}
.x2_c00385{left:396.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_c00386 {
    display:none;
  }
  .loading-indicator_c00386.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00386 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00386 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00386" -> "#page-container .classname_c00386")
 */
.pf_c00386 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00386 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00386 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00386 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00386 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00386 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00386 {overflow:visible;}
  }
}
.c_c00386 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00386 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00386:after { /* webkit #35443 */
  content: '';
}
.t_c00386:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00386 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00386 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00386 { /* info for Javascript */
  display:none;
}
.l_c00386 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00386 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00386 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00386:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00386;src:url('chunks/assets/font_1e66bc8acd4b6d97113e7491.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_dd377fc76585d0e9ac708dd5.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_ec318967e334252daf0ab425.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;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_c00386;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;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_c00386;src:url('chunks/assets/font_0ee2cbb8203b52eb73fe28a8.woff2')format("woff");}.ff5_c00386{font-family:ff5_c00386;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00386;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00386{font-family:ff6_c00386;line-height:1.311035;font-style:normal;font-weight: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_c00386;src:url('chunks/assets/font_91634368631903188c1e40a9.woff2')format("woff");}.ff7_c00386{font-family:ff7_c00386;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls5_c00386{letter-spacing:-1.416000px;}
.ls3_c00386{letter-spacing:-0.954000px;}
.ls7_c00386{letter-spacing:-0.720000px;}
.ls8_c00386{letter-spacing:-0.532800px;}
.ls2_c00386{letter-spacing:0.000000px;}
.ls1_c00386{letter-spacing:0.048960px;}
.ls4_c00386{letter-spacing:0.313800px;}
.ls9_c00386{letter-spacing:0.466800px;}
.ls6_c00386{letter-spacing:0.486600px;}
.lsa_c00386{letter-spacing:0.521400px;}
.ls0_c00386{letter-spacing:0.720000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00386{word-spacing:-60.480000px;}
.ws0_c00386{word-spacing:-18.000000px;}
.ws7_c00386{word-spacing:-15.641400px;}
.ws5_c00386{word-spacing:-15.606600px;}
.ws4_c00386{word-spacing:-15.433800px;}
.ws2_c00386{word-spacing:-15.120000px;}
.ws6_c00386{word-spacing:-14.587200px;}
.ws1_c00386{word-spacing:-14.166000px;}
.ws8_c00386{word-spacing:0.000000px;}
._3_c00386{margin-left:-3.024000px;}
._1_c00386{margin-left:-1.584000px;}
._0_c00386{width:1.440000px;}
._b_c00386{width:2.448000px;}
._2_c00386{width:3.456000px;}
._4_c00386{width:4.896000px;}
._5_c00386{width:5.904000px;}
._6_c00386{width:7.200000px;}
._7_c00386{width:9.564000px;}
._8_c00386{width:14.184000px;}
._a_c00386{width:15.408000px;}
._9_c00386{width:16.416000px;}
.fc0_c00386{color:rgb(0,0,0);}
.fs1_c00386{font-size:60.480000px;}
.fs0_c00386{font-size:72.000000px;}
.y0_c00386{bottom:0.000000px;}
.y19_c00386{bottom:12.229500px;}
.y11_c00386{bottom:12.600000px;}
.y18_c00386{bottom:38.149500px;}
.y3_c00386{bottom:57.996000px;}
.y17_c00386{bottom:64.099500px;}
.y2_c00386{bottom:78.876000px;}
.y16_c00386{bottom:90.019500px;}
.y15_c00386{bottom:115.939500px;}
.y14_c00386{bottom:141.859500px;}
.y12_c00386{bottom:146.245500px;}
.y13_c00386{bottom:167.824500px;}
.y10_c00386{bottom:328.110000px;}
.yf_c00386{bottom:378.510000px;}
.ye_c00386{bottom:418.500000px;}
.yd_c00386{bottom:458.460000px;}
.yc_c00386{bottom:489.810000px;}
.yb_c00386{bottom:520.770000px;}
.ya_c00386{bottom:560.730000px;}
.y9_c00386{bottom:600.735000px;}
.y8_c00386{bottom:632.055000px;}
.y7_c00386{bottom:663.015000px;}
.y6_c00386{bottom:703.005000px;}
.y5_c00386{bottom:733.965000px;}
.y4_c00386{bottom:774.285000px;}
.y1_c00386{bottom:847.770000px;}
.h4_c00386{height:25.905000px;}
.h5_c00386{height:59.357813px;}
.h7_c00386{height:60.952500px;}
.h1_c00386{height:64.546875px;}
.h3_c00386{height:70.628906px;}
.h2_c00386{height:70.664062px;}
.h6_c00386{height:181.125000px;}
.h0_c00386{height:918.000000px;}
.w1_c00386{width:495.135000px;}
.w0_c00386{width:1188.000000px;}
.x0_c00386{left:0.000000px;}
.x6_c00386{left:7.546500px;}
.x8_c00386{left:9.000000px;}
.x5_c00386{left:98.689500px;}
.x1_c00386{left:106.236000px;}
.x4_c00386{left:157.350000px;}
.x3_c00386{left:159.510000px;}
.x2_c00386{left:580.500000px;}
.x7_c00386{left:594.540000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls5_c00386{letter-spacing:-1.258667pt;}
.ls3_c00386{letter-spacing:-0.848000pt;}
.ls7_c00386{letter-spacing:-0.640000pt;}
.ls8_c00386{letter-spacing:-0.473600pt;}
.ls2_c00386{letter-spacing:0.000000pt;}
.ls1_c00386{letter-spacing:0.043520pt;}
.ls4_c00386{letter-spacing:0.278933pt;}
.ls9_c00386{letter-spacing:0.414933pt;}
.ls6_c00386{letter-spacing:0.432533pt;}
.lsa_c00386{letter-spacing:0.463467pt;}
.ls0_c00386{letter-spacing:0.640000pt;}
.ws3_c00386{word-spacing:-53.760000pt;}
.ws0_c00386{word-spacing:-16.000000pt;}
.ws7_c00386{word-spacing:-13.903467pt;}
.ws5_c00386{word-spacing:-13.872533pt;}
.ws4_c00386{word-spacing:-13.718933pt;}
.ws2_c00386{word-spacing:-13.440000pt;}
.ws6_c00386{word-spacing:-12.966400pt;}
.ws1_c00386{word-spacing:-12.592000pt;}
.ws8_c00386{word-spacing:0.000000pt;}
._3_c00386{margin-left:-2.688000pt;}
._1_c00386{margin-left:-1.408000pt;}
._0_c00386{width:1.280000pt;}
._b_c00386{width:2.176000pt;}
._2_c00386{width:3.072000pt;}
._4_c00386{width:4.352000pt;}
._5_c00386{width:5.248000pt;}
._6_c00386{width:6.400000pt;}
._7_c00386{width:8.501333pt;}
._8_c00386{width:12.608000pt;}
._a_c00386{width:13.696000pt;}
._9_c00386{width:14.592000pt;}
.fs1_c00386{font-size:53.760000pt;}
.fs0_c00386{font-size:64.000000pt;}
.y0_c00386{bottom:0.000000pt;}
.y19_c00386{bottom:10.870667pt;}
.y11_c00386{bottom:11.200000pt;}
.y18_c00386{bottom:33.910667pt;}
.y3_c00386{bottom:51.552000pt;}
.y17_c00386{bottom:56.977333pt;}
.y2_c00386{bottom:70.112000pt;}
.y16_c00386{bottom:80.017333pt;}
.y15_c00386{bottom:103.057333pt;}
.y14_c00386{bottom:126.097333pt;}
.y12_c00386{bottom:129.996000pt;}
.y13_c00386{bottom:149.177333pt;}
.y10_c00386{bottom:291.653333pt;}
.yf_c00386{bottom:336.453333pt;}
.ye_c00386{bottom:372.000000pt;}
.yd_c00386{bottom:407.520000pt;}
.yc_c00386{bottom:435.386667pt;}
.yb_c00386{bottom:462.906667pt;}
.ya_c00386{bottom:498.426667pt;}
.y9_c00386{bottom:533.986667pt;}
.y8_c00386{bottom:561.826667pt;}
.y7_c00386{bottom:589.346667pt;}
.y6_c00386{bottom:624.893333pt;}
.y5_c00386{bottom:652.413333pt;}
.y4_c00386{bottom:688.253333pt;}
.y1_c00386{bottom:753.573333pt;}
.h4_c00386{height:23.026667pt;}
.h5_c00386{height:52.762500pt;}
.h7_c00386{height:54.180000pt;}
.h1_c00386{height:57.375000pt;}
.h3_c00386{height:62.781250pt;}
.h2_c00386{height:62.812500pt;}
.h6_c00386{height:161.000000pt;}
.h0_c00386{height:816.000000pt;}
.w1_c00386{width:440.120000pt;}
.w0_c00386{width:1056.000000pt;}
.x0_c00386{left:0.000000pt;}
.x6_c00386{left:6.708000pt;}
.x8_c00386{left:8.000000pt;}
.x5_c00386{left:87.724000pt;}
.x1_c00386{left:94.432000pt;}
.x4_c00386{left:139.866667pt;}
.x3_c00386{left:141.786667pt;}
.x2_c00386{left:516.000000pt;}
.x7_c00386{left:528.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_c00387 {
    display:none;
  }
  .loading-indicator_c00387.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00387 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00387 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00387" -> "#page-container .classname_c00387")
 */
.pf_c00387 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00387 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00387 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00387 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00387 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00387 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00387 {overflow:visible;}
  }
}
.c_c00387 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00387 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00387:after { /* webkit #35443 */
  content: '';
}
.t_c00387:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00387 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00387 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00387 { /* info for Javascript */
  display:none;
}
.l_c00387 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00387 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00387 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00387:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00387;src:url('chunks/assets/font_4c318b47154b9a884417759f.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_75907b1c8a851d1d1701b81b.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_dc12877545b7b87ac8d6b938.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_d15dd8d5809a7f0ab9296135.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00387;src:url('chunks/assets/font_272e42dfb8a275323dfa7707.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;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_c00387;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00387{font-family:ff6_c00387;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.lsf_c00387{letter-spacing:-1.440000px;}
.ls7_c00387{letter-spacing:-1.416000px;}
.ls11_c00387{letter-spacing:-1.380000px;}
.ls8_c00387{letter-spacing:-0.954000px;}
.ls6_c00387{letter-spacing:-0.912000px;}
.ls10_c00387{letter-spacing:-0.720000px;}
.lsa_c00387{letter-spacing:-0.302400px;}
.lse_c00387{letter-spacing:-0.241800px;}
.ls4_c00387{letter-spacing:0.000000px;}
.ls5_c00387{letter-spacing:0.022800px;}
.lsd_c00387{letter-spacing:0.166800px;}
.lsb_c00387{letter-spacing:0.486600px;}
.ls9_c00387{letter-spacing:0.507000px;}
.ls1_c00387{letter-spacing:0.518400px;}
.ls12_c00387{letter-spacing:0.529800px;}
.lsc_c00387{letter-spacing:0.630000px;}
.ls2_c00387{letter-spacing:0.696000px;}
.ls0_c00387{letter-spacing:0.720000px;}
.ls3_c00387{letter-spacing:0.840000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00387{word-spacing:-60.480000px;}
.ws8_c00387{word-spacing:-15.750000px;}
.ws5_c00387{word-spacing:-15.627000px;}
.ws7_c00387{word-spacing:-15.606600px;}
.ws9_c00387{word-spacing:-15.286800px;}
.ws2_c00387{word-spacing:-15.142800px;}
.ws0_c00387{word-spacing:-15.120000px;}
.wsa_c00387{word-spacing:-14.878200px;}
.ws6_c00387{word-spacing:-14.817600px;}
.ws4_c00387{word-spacing:-14.166000px;}
.ws3_c00387{word-spacing:-13.704000px;}
.wsb_c00387{word-spacing:-13.680000px;}
.wsc_c00387{word-spacing:0.000000px;}
._0_c00387{margin-left:-1.875001px;}
._1_c00387{width:1.209600px;}
._2_c00387{width:2.379725px;}
.fc0_c00387{color:rgb(0,0,0);}
.fs1_c00387{font-size:60.480000px;}
.fs0_c00387{font-size:72.000000px;}
.y0_c00387{bottom:0.000000px;}
.y1d_c00387{bottom:12.589500px;}
.y1c_c00387{bottom:38.509500px;}
.y3_c00387{bottom:57.996000px;}
.y1b_c00387{bottom:64.099500px;}
.y2_c00387{bottom:78.876000px;}
.y1a_c00387{bottom:90.019500px;}
.y19_c00387{bottom:115.939500px;}
.y18_c00387{bottom:141.859500px;}
.y4_c00387{bottom:142.645500px;}
.y17_c00387{bottom:167.824500px;}
.y16_c00387{bottom:193.744500px;}
.y15_c00387{bottom:219.664500px;}
.y14_c00387{bottom:245.614500px;}
.y13_c00387{bottom:271.174500px;}
.y12_c00387{bottom:297.094500px;}
.y11_c00387{bottom:323.014500px;}
.y10_c00387{bottom:348.964500px;}
.yf_c00387{bottom:374.884500px;}
.ye_c00387{bottom:400.804500px;}
.yd_c00387{bottom:426.724500px;}
.yc_c00387{bottom:452.329500px;}
.yb_c00387{bottom:478.249500px;}
.ya_c00387{bottom:504.169500px;}
.y9_c00387{bottom:530.089500px;}
.y8_c00387{bottom:556.039500px;}
.y7_c00387{bottom:581.959500px;}
.y6_c00387{bottom:607.879500px;}
.y5_c00387{bottom:633.844500px;}
.y1_c00387{bottom:847.770000px;}
.h3_c00387{height:59.357813px;}
.h4_c00387{height:60.952500px;}
.h1_c00387{height:64.546875px;}
.h2_c00387{height:647.145000px;}
.h0_c00387{height:918.000000px;}
.w1_c00387{width:495.135000px;}
.w0_c00387{width:1188.000000px;}
.x0_c00387{left:0.000000px;}
.x4_c00387{left:7.546500px;}
.x6_c00387{left:9.000000px;}
.x3_c00387{left:98.689500px;}
.x1_c00387{left:106.236000px;}
.x2_c00387{left:580.500000px;}
.x5_c00387{left:594.540000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.lsf_c00387{letter-spacing:-1.280000pt;}
.ls7_c00387{letter-spacing:-1.258667pt;}
.ls11_c00387{letter-spacing:-1.226667pt;}
.ls8_c00387{letter-spacing:-0.848000pt;}
.ls6_c00387{letter-spacing:-0.810667pt;}
.ls10_c00387{letter-spacing:-0.640000pt;}
.lsa_c00387{letter-spacing:-0.268800pt;}
.lse_c00387{letter-spacing:-0.214933pt;}
.ls4_c00387{letter-spacing:0.000000pt;}
.ls5_c00387{letter-spacing:0.020267pt;}
.lsd_c00387{letter-spacing:0.148267pt;}
.lsb_c00387{letter-spacing:0.432533pt;}
.ls9_c00387{letter-spacing:0.450667pt;}
.ls1_c00387{letter-spacing:0.460800pt;}
.ls12_c00387{letter-spacing:0.470933pt;}
.lsc_c00387{letter-spacing:0.560000pt;}
.ls2_c00387{letter-spacing:0.618667pt;}
.ls0_c00387{letter-spacing:0.640000pt;}
.ls3_c00387{letter-spacing:0.746667pt;}
.ws1_c00387{word-spacing:-53.760000pt;}
.ws8_c00387{word-spacing:-14.000000pt;}
.ws5_c00387{word-spacing:-13.890667pt;}
.ws7_c00387{word-spacing:-13.872533pt;}
.ws9_c00387{word-spacing:-13.588267pt;}
.ws2_c00387{word-spacing:-13.460267pt;}
.ws0_c00387{word-spacing:-13.440000pt;}
.wsa_c00387{word-spacing:-13.225067pt;}
.ws6_c00387{word-spacing:-13.171200pt;}
.ws4_c00387{word-spacing:-12.592000pt;}
.ws3_c00387{word-spacing:-12.181333pt;}
.wsb_c00387{word-spacing:-12.160000pt;}
.wsc_c00387{word-spacing:0.000000pt;}
._0_c00387{margin-left:-1.666668pt;}
._1_c00387{width:1.075200pt;}
._2_c00387{width:2.115311pt;}
.fs1_c00387{font-size:53.760000pt;}
.fs0_c00387{font-size:64.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y1d_c00387{bottom:11.190667pt;}
.y1c_c00387{bottom:34.230667pt;}
.y3_c00387{bottom:51.552000pt;}
.y1b_c00387{bottom:56.977333pt;}
.y2_c00387{bottom:70.112000pt;}
.y1a_c00387{bottom:80.017333pt;}
.y19_c00387{bottom:103.057333pt;}
.y18_c00387{bottom:126.097333pt;}
.y4_c00387{bottom:126.796000pt;}
.y17_c00387{bottom:149.177333pt;}
.y16_c00387{bottom:172.217333pt;}
.y15_c00387{bottom:195.257333pt;}
.y14_c00387{bottom:218.324000pt;}
.y13_c00387{bottom:241.044000pt;}
.y12_c00387{bottom:264.084000pt;}
.y11_c00387{bottom:287.124000pt;}
.y10_c00387{bottom:310.190667pt;}
.yf_c00387{bottom:333.230667pt;}
.ye_c00387{bottom:356.270667pt;}
.yd_c00387{bottom:379.310667pt;}
.yc_c00387{bottom:402.070667pt;}
.yb_c00387{bottom:425.110667pt;}
.ya_c00387{bottom:448.150667pt;}
.y9_c00387{bottom:471.190667pt;}
.y8_c00387{bottom:494.257333pt;}
.y7_c00387{bottom:517.297333pt;}
.y6_c00387{bottom:540.337333pt;}
.y5_c00387{bottom:563.417333pt;}
.y1_c00387{bottom:753.573333pt;}
.h3_c00387{height:52.762500pt;}
.h4_c00387{height:54.180000pt;}
.h1_c00387{height:57.375000pt;}
.h2_c00387{height:575.240000pt;}
.h0_c00387{height:816.000000pt;}
.w1_c00387{width:440.120000pt;}
.w0_c00387{width:1056.000000pt;}
.x0_c00387{left:0.000000pt;}
.x4_c00387{left:6.708000pt;}
.x6_c00387{left:8.000000pt;}
.x3_c00387{left:87.724000pt;}
.x1_c00387{left:94.432000pt;}
.x2_c00387{left:516.000000pt;}
.x5_c00387{left:528.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_c00388 {
    display:none;
  }
  .loading-indicator_c00388.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00388 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00388 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00388" -> "#page-container .classname_c00388")
 */
.pf_c00388 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00388 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00388 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00388 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00388 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00388 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00388 {overflow:visible;}
  }
}
.c_c00388 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00388 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00388:after { /* webkit #35443 */
  content: '';
}
.t_c00388:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00388 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00388 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00388 { /* info for Javascript */
  display:none;
}
.l_c00388 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00388 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00388 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00388:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00388;src:url('chunks/assets/font_161fda424c40c7b405d6e0a7.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_21e837f3613f74f693544daa.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_2a5ee1edaffe5647e8d3d2fa.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_c794d9509778968bd14258a2.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00388;src:url('chunks/assets/font_bed6ab9c467e7c92f65a22f8.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;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_c00388;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00388{font-family:ff6_c00388;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls17_c00388{letter-spacing:-1.680000px;}
.ls9_c00388{letter-spacing:-1.422000px;}
.lse_c00388{letter-spacing:-1.416000px;}
.ls14_c00388{letter-spacing:-1.044000px;}
.ls15_c00388{letter-spacing:-0.936000px;}
.ls19_c00388{letter-spacing:-0.918000px;}
.ls18_c00388{letter-spacing:-0.912000px;}
.lsc_c00388{letter-spacing:-0.720000px;}
.ls10_c00388{letter-spacing:-0.532800px;}
.lsd_c00388{letter-spacing:-0.302400px;}
.lsb_c00388{letter-spacing:-0.241800px;}
.lsa_c00388{letter-spacing:-0.169800px;}
.ls7_c00388{letter-spacing:0.000000px;}
.ls2_c00388{letter-spacing:0.020160px;}
.ls8_c00388{letter-spacing:0.166800px;}
.ls4_c00388{letter-spacing:0.168480px;}
.ls5_c00388{letter-spacing:0.290880px;}
.ls13_c00388{letter-spacing:0.291000px;}
.ls6_c00388{letter-spacing:0.302400px;}
.ls12_c00388{letter-spacing:0.313800px;}
.lsf_c00388{letter-spacing:0.486600px;}
.ls1_c00388{letter-spacing:0.524160px;}
.ls16_c00388{letter-spacing:0.529800px;}
.ls11_c00388{letter-spacing:0.630000px;}
.ls0_c00388{letter-spacing:0.720000px;}
.ls3_c00388{letter-spacing:0.900000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00388{word-spacing:-15.750000px;}
.wsa_c00388{word-spacing:-15.649800px;}
.ws5_c00388{word-spacing:-15.606600px;}
.ws8_c00388{word-spacing:-15.433800px;}
.ws9_c00388{word-spacing:-15.411000px;}
.ws1_c00388{word-spacing:-15.286800px;}
.ws0_c00388{word-spacing:-15.120000px;}
.ws2_c00388{word-spacing:-14.950200px;}
.ws3_c00388{word-spacing:-14.878200px;}
.ws4_c00388{word-spacing:-14.817600px;}
.ws6_c00388{word-spacing:-14.587200px;}
.wsb_c00388{word-spacing:-14.202000px;}
.wsc_c00388{word-spacing:0.000000px;}
._1_c00388{margin-left:-2.116800px;}
._2_c00388{margin-left:-1.045559px;}
._0_c00388{width:1.088398px;}
._3_c00388{width:2.530683px;}
.fc0_c00388{color:rgb(0,0,0);}
.fs1_c00388{font-size:60.480000px;}
.fs0_c00388{font-size:72.000000px;}
.y0_c00388{bottom:0.000000px;}
.y1d_c00388{bottom:12.589500px;}
.y1c_c00388{bottom:38.509500px;}
.y3_c00388{bottom:57.996000px;}
.y1b_c00388{bottom:64.099500px;}
.y2_c00388{bottom:78.876000px;}
.y1a_c00388{bottom:90.019500px;}
.y19_c00388{bottom:115.939500px;}
.y18_c00388{bottom:141.859500px;}
.y4_c00388{bottom:142.645500px;}
.y17_c00388{bottom:167.824500px;}
.y16_c00388{bottom:193.744500px;}
.y15_c00388{bottom:219.664500px;}
.y14_c00388{bottom:245.614500px;}
.y13_c00388{bottom:271.174500px;}
.y12_c00388{bottom:297.094500px;}
.y11_c00388{bottom:323.014500px;}
.y10_c00388{bottom:348.964500px;}
.yf_c00388{bottom:374.884500px;}
.ye_c00388{bottom:400.804500px;}
.yd_c00388{bottom:426.724500px;}
.yc_c00388{bottom:452.329500px;}
.yb_c00388{bottom:478.249500px;}
.ya_c00388{bottom:504.169500px;}
.y9_c00388{bottom:530.089500px;}
.y8_c00388{bottom:556.039500px;}
.y7_c00388{bottom:581.959500px;}
.y6_c00388{bottom:607.879500px;}
.y5_c00388{bottom:633.844500px;}
.y1_c00388{bottom:847.770000px;}
.h3_c00388{height:59.357813px;}
.h4_c00388{height:60.952500px;}
.h1_c00388{height:64.546875px;}
.h2_c00388{height:647.145000px;}
.h0_c00388{height:918.000000px;}
.w1_c00388{width:495.135000px;}
.w0_c00388{width:1188.000000px;}
.x0_c00388{left:0.000000px;}
.x4_c00388{left:7.546500px;}
.x3_c00388{left:98.689500px;}
.x1_c00388{left:106.236000px;}
.x2_c00388{left:580.500000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls17_c00388{letter-spacing:-1.493333pt;}
.ls9_c00388{letter-spacing:-1.264000pt;}
.lse_c00388{letter-spacing:-1.258667pt;}
.ls14_c00388{letter-spacing:-0.928000pt;}
.ls15_c00388{letter-spacing:-0.832000pt;}
.ls19_c00388{letter-spacing:-0.816000pt;}
.ls18_c00388{letter-spacing:-0.810667pt;}
.lsc_c00388{letter-spacing:-0.640000pt;}
.ls10_c00388{letter-spacing:-0.473600pt;}
.lsd_c00388{letter-spacing:-0.268800pt;}
.lsb_c00388{letter-spacing:-0.214933pt;}
.lsa_c00388{letter-spacing:-0.150933pt;}
.ls7_c00388{letter-spacing:0.000000pt;}
.ls2_c00388{letter-spacing:0.017920pt;}
.ls8_c00388{letter-spacing:0.148267pt;}
.ls4_c00388{letter-spacing:0.149760pt;}
.ls5_c00388{letter-spacing:0.258560pt;}
.ls13_c00388{letter-spacing:0.258667pt;}
.ls6_c00388{letter-spacing:0.268800pt;}
.ls12_c00388{letter-spacing:0.278933pt;}
.lsf_c00388{letter-spacing:0.432533pt;}
.ls1_c00388{letter-spacing:0.465920pt;}
.ls16_c00388{letter-spacing:0.470933pt;}
.ls11_c00388{letter-spacing:0.560000pt;}
.ls0_c00388{letter-spacing:0.640000pt;}
.ls3_c00388{letter-spacing:0.800000pt;}
.ws7_c00388{word-spacing:-14.000000pt;}
.wsa_c00388{word-spacing:-13.910933pt;}
.ws5_c00388{word-spacing:-13.872533pt;}
.ws8_c00388{word-spacing:-13.718933pt;}
.ws9_c00388{word-spacing:-13.698667pt;}
.ws1_c00388{word-spacing:-13.588267pt;}
.ws0_c00388{word-spacing:-13.440000pt;}
.ws2_c00388{word-spacing:-13.289067pt;}
.ws3_c00388{word-spacing:-13.225067pt;}
.ws4_c00388{word-spacing:-13.171200pt;}
.ws6_c00388{word-spacing:-12.966400pt;}
.wsb_c00388{word-spacing:-12.624000pt;}
.wsc_c00388{word-spacing:0.000000pt;}
._1_c00388{margin-left:-1.881600pt;}
._2_c00388{margin-left:-0.929386pt;}
._0_c00388{width:0.967465pt;}
._3_c00388{width:2.249496pt;}
.fs1_c00388{font-size:53.760000pt;}
.fs0_c00388{font-size:64.000000pt;}
.y0_c00388{bottom:0.000000pt;}
.y1d_c00388{bottom:11.190667pt;}
.y1c_c00388{bottom:34.230667pt;}
.y3_c00388{bottom:51.552000pt;}
.y1b_c00388{bottom:56.977333pt;}
.y2_c00388{bottom:70.112000pt;}
.y1a_c00388{bottom:80.017333pt;}
.y19_c00388{bottom:103.057333pt;}
.y18_c00388{bottom:126.097333pt;}
.y4_c00388{bottom:126.796000pt;}
.y17_c00388{bottom:149.177333pt;}
.y16_c00388{bottom:172.217333pt;}
.y15_c00388{bottom:195.257333pt;}
.y14_c00388{bottom:218.324000pt;}
.y13_c00388{bottom:241.044000pt;}
.y12_c00388{bottom:264.084000pt;}
.y11_c00388{bottom:287.124000pt;}
.y10_c00388{bottom:310.190667pt;}
.yf_c00388{bottom:333.230667pt;}
.ye_c00388{bottom:356.270667pt;}
.yd_c00388{bottom:379.310667pt;}
.yc_c00388{bottom:402.070667pt;}
.yb_c00388{bottom:425.110667pt;}
.ya_c00388{bottom:448.150667pt;}
.y9_c00388{bottom:471.190667pt;}
.y8_c00388{bottom:494.257333pt;}
.y7_c00388{bottom:517.297333pt;}
.y6_c00388{bottom:540.337333pt;}
.y5_c00388{bottom:563.417333pt;}
.y1_c00388{bottom:753.573333pt;}
.h3_c00388{height:52.762500pt;}
.h4_c00388{height:54.180000pt;}
.h1_c00388{height:57.375000pt;}
.h2_c00388{height:575.240000pt;}
.h0_c00388{height:816.000000pt;}
.w1_c00388{width:440.120000pt;}
.w0_c00388{width:1056.000000pt;}
.x0_c00388{left:0.000000pt;}
.x4_c00388{left:6.708000pt;}
.x3_c00388{left:87.724000pt;}
.x1_c00388{left:94.432000pt;}
.x2_c00388{left:516.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_c00389 {
    display:none;
  }
  .loading-indicator_c00389.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00389 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00389 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00389" -> "#page-container .classname_c00389")
 */
.pf_c00389 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00389 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00389 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00389 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00389 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00389 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00389 {overflow:visible;}
  }
}
.c_c00389 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00389 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00389:after { /* webkit #35443 */
  content: '';
}
.t_c00389:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00389 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00389 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00389 { /* info for Javascript */
  display:none;
}
.l_c00389 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00389 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00389 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00389:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00389;src:url('chunks/assets/font_9f61cafffffab642a1631b05.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_977886d647313aa0e1cf6d6e.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_fac78c839aff12fdb1ab8cac.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_2118bc812001adabacb87d65.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00389;src:url('chunks/assets/font_76cc700f33ecb6370ed5955d.woff2')format("woff");}.ff5_c00389{font-family:ff5_c00389;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_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls6_c00389{letter-spacing:-1.416000px;}
.ls5_c00389{letter-spacing:-1.380000px;}
.ls4_c00389{letter-spacing:-0.912000px;}
.lsb_c00389{letter-spacing:-0.302400px;}
.ls9_c00389{letter-spacing:-0.011400px;}
.ls3_c00389{letter-spacing:0.000000px;}
.lsa_c00389{letter-spacing:0.022800px;}
.ls8_c00389{letter-spacing:0.166800px;}
.ls7_c00389{letter-spacing:0.486600px;}
.ls2_c00389{letter-spacing:0.524160px;}
.ls0_c00389{letter-spacing:0.720000px;}
.ls1_c00389{letter-spacing:0.900000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:-60.480000px;}
.ws3_c00389{word-spacing:-15.606600px;}
.ws4_c00389{word-spacing:-15.286800px;}
.ws6_c00389{word-spacing:-15.142800px;}
.ws1_c00389{word-spacing:-15.120000px;}
.ws5_c00389{word-spacing:-15.108600px;}
.ws7_c00389{word-spacing:-14.817600px;}
.ws2_c00389{word-spacing:-13.704000px;}
.ws8_c00389{word-spacing:0.000000px;}
._3_c00389{margin-left:-2.510880px;}
._0_c00389{margin-left:-1.462919px;}
._1_c00389{width:1.411079px;}
._2_c00389{width:2.716800px;}
.fc0_c00389{color:rgb(0,0,0);}
.fs1_c00389{font-size:60.480000px;}
.fs0_c00389{font-size:72.000000px;}
.y0_c00389{bottom:0.000000px;}
.y1d_c00389{bottom:12.589500px;}
.y1c_c00389{bottom:38.509500px;}
.y3_c00389{bottom:57.996000px;}
.y1b_c00389{bottom:64.099500px;}
.y2_c00389{bottom:78.876000px;}
.y1a_c00389{bottom:90.019500px;}
.y19_c00389{bottom:115.939500px;}
.y18_c00389{bottom:141.859500px;}
.y4_c00389{bottom:142.645500px;}
.y17_c00389{bottom:167.824500px;}
.y16_c00389{bottom:193.744500px;}
.y15_c00389{bottom:219.664500px;}
.y14_c00389{bottom:245.614500px;}
.y13_c00389{bottom:271.174500px;}
.y12_c00389{bottom:297.094500px;}
.y11_c00389{bottom:323.014500px;}
.y10_c00389{bottom:348.964500px;}
.yf_c00389{bottom:374.884500px;}
.ye_c00389{bottom:400.804500px;}
.yd_c00389{bottom:426.724500px;}
.yc_c00389{bottom:452.329500px;}
.yb_c00389{bottom:478.249500px;}
.ya_c00389{bottom:504.169500px;}
.y9_c00389{bottom:530.089500px;}
.y8_c00389{bottom:556.039500px;}
.y7_c00389{bottom:581.959500px;}
.y6_c00389{bottom:607.879500px;}
.y5_c00389{bottom:633.844500px;}
.y1_c00389{bottom:847.770000px;}
.h3_c00389{height:59.357813px;}
.h1_c00389{height:64.546875px;}
.h2_c00389{height:647.145000px;}
.h0_c00389{height:918.000000px;}
.w1_c00389{width:495.135000px;}
.w0_c00389{width:1188.000000px;}
.x0_c00389{left:0.000000px;}
.x4_c00389{left:7.546500px;}
.x3_c00389{left:98.689500px;}
.x1_c00389{left:106.236000px;}
.x2_c00389{left:580.500000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls6_c00389{letter-spacing:-1.258667pt;}
.ls5_c00389{letter-spacing:-1.226667pt;}
.ls4_c00389{letter-spacing:-0.810667pt;}
.lsb_c00389{letter-spacing:-0.268800pt;}
.ls9_c00389{letter-spacing:-0.010133pt;}
.ls3_c00389{letter-spacing:0.000000pt;}
.lsa_c00389{letter-spacing:0.020267pt;}
.ls8_c00389{letter-spacing:0.148267pt;}
.ls7_c00389{letter-spacing:0.432533pt;}
.ls2_c00389{letter-spacing:0.465920pt;}
.ls0_c00389{letter-spacing:0.640000pt;}
.ls1_c00389{letter-spacing:0.800000pt;}
.ws0_c00389{word-spacing:-53.760000pt;}
.ws3_c00389{word-spacing:-13.872533pt;}
.ws4_c00389{word-spacing:-13.588267pt;}
.ws6_c00389{word-spacing:-13.460267pt;}
.ws1_c00389{word-spacing:-13.440000pt;}
.ws5_c00389{word-spacing:-13.429867pt;}
.ws7_c00389{word-spacing:-13.171200pt;}
.ws2_c00389{word-spacing:-12.181333pt;}
.ws8_c00389{word-spacing:0.000000pt;}
._3_c00389{margin-left:-2.231893pt;}
._0_c00389{margin-left:-1.300372pt;}
._1_c00389{width:1.254292pt;}
._2_c00389{width:2.414933pt;}
.fs1_c00389{font-size:53.760000pt;}
.fs0_c00389{font-size:64.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y1d_c00389{bottom:11.190667pt;}
.y1c_c00389{bottom:34.230667pt;}
.y3_c00389{bottom:51.552000pt;}
.y1b_c00389{bottom:56.977333pt;}
.y2_c00389{bottom:70.112000pt;}
.y1a_c00389{bottom:80.017333pt;}
.y19_c00389{bottom:103.057333pt;}
.y18_c00389{bottom:126.097333pt;}
.y4_c00389{bottom:126.796000pt;}
.y17_c00389{bottom:149.177333pt;}
.y16_c00389{bottom:172.217333pt;}
.y15_c00389{bottom:195.257333pt;}
.y14_c00389{bottom:218.324000pt;}
.y13_c00389{bottom:241.044000pt;}
.y12_c00389{bottom:264.084000pt;}
.y11_c00389{bottom:287.124000pt;}
.y10_c00389{bottom:310.190667pt;}
.yf_c00389{bottom:333.230667pt;}
.ye_c00389{bottom:356.270667pt;}
.yd_c00389{bottom:379.310667pt;}
.yc_c00389{bottom:402.070667pt;}
.yb_c00389{bottom:425.110667pt;}
.ya_c00389{bottom:448.150667pt;}
.y9_c00389{bottom:471.190667pt;}
.y8_c00389{bottom:494.257333pt;}
.y7_c00389{bottom:517.297333pt;}
.y6_c00389{bottom:540.337333pt;}
.y5_c00389{bottom:563.417333pt;}
.y1_c00389{bottom:753.573333pt;}
.h3_c00389{height:52.762500pt;}
.h1_c00389{height:57.375000pt;}
.h2_c00389{height:575.240000pt;}
.h0_c00389{height:816.000000pt;}
.w1_c00389{width:440.120000pt;}
.w0_c00389{width:1056.000000pt;}
.x0_c00389{left:0.000000pt;}
.x4_c00389{left:6.708000pt;}
.x3_c00389{left:87.724000pt;}
.x1_c00389{left:94.432000pt;}
.x2_c00389{left:516.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_c00390 {
    display:none;
  }
  .loading-indicator_c00390.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00390 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00390 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00390" -> "#page-container .classname_c00390")
 */
.pf_c00390 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00390 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00390 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00390 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00390 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00390 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00390 {overflow:visible;}
  }
}
.c_c00390 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00390 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00390:after { /* webkit #35443 */
  content: '';
}
.t_c00390:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00390 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00390 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00390 { /* info for Javascript */
  display:none;
}
.l_c00390 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00390 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00390 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00390:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00390;src:url('chunks/assets/font_25927ef7c95f40c53d15458b.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_c33cb379a4016cdcd96e6320.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_4c81dc0ad16210402a36e509.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_2999a0a073be999d301d114f.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;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_c00390;src:url('chunks/assets/font_d4b7e90c00b69220d09488b9.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00390;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00390{font-family:ff6_c00390;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls13_c00390{letter-spacing:-1.416000px;}
.ls9_c00390{letter-spacing:-0.954000px;}
.lsa_c00390{letter-spacing:-0.912000px;}
.ls12_c00390{letter-spacing:-0.810000px;}
.ls10_c00390{letter-spacing:-0.720000px;}
.lsd_c00390{letter-spacing:-0.532800px;}
.lse_c00390{letter-spacing:-0.241800px;}
.ls8_c00390{letter-spacing:0.000000px;}
.ls3_c00390{letter-spacing:0.020160px;}
.ls11_c00390{letter-spacing:0.020400px;}
.ls1_c00390{letter-spacing:0.048960px;}
.ls15_c00390{letter-spacing:0.060600px;}
.lsb_c00390{letter-spacing:0.166800px;}
.ls5_c00390{letter-spacing:0.302400px;}
.ls14_c00390{letter-spacing:0.313800px;}
.lsf_c00390{letter-spacing:0.486600px;}
.ls7_c00390{letter-spacing:0.518400px;}
.lsc_c00390{letter-spacing:0.529800px;}
.ls6_c00390{letter-spacing:0.696000px;}
.ls0_c00390{letter-spacing:0.720000px;}
.ls4_c00390{letter-spacing:0.840000px;}
.ls2_c00390{letter-spacing:0.900000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00390{word-spacing:-60.480000px;}
.wsd_c00390{word-spacing:-15.840000px;}
.wsb_c00390{word-spacing:-15.649800px;}
.ws6_c00390{word-spacing:-15.606600px;}
.wsc_c00390{word-spacing:-15.433800px;}
.ws4_c00390{word-spacing:-15.286800px;}
.wse_c00390{word-spacing:-15.180600px;}
.ws7_c00390{word-spacing:-15.140400px;}
.ws0_c00390{word-spacing:-15.120000px;}
.ws8_c00390{word-spacing:-14.878200px;}
.ws5_c00390{word-spacing:-14.587200px;}
.ws9_c00390{word-spacing:-14.310000px;}
.ws3_c00390{word-spacing:-14.208000px;}
.ws1_c00390{word-spacing:-14.166000px;}
.wsa_c00390{word-spacing:-13.704000px;}
.wsf_c00390{word-spacing:0.000000px;}
._2_c00390{margin-left:-2.421838px;}
._0_c00390{margin-left:-1.272960px;}
._1_c00390{width:1.250400px;}
.fc0_c00390{color:rgb(0,0,0);}
.fs1_c00390{font-size:60.480000px;}
.fs0_c00390{font-size:72.000000px;}
.y0_c00390{bottom:0.000000px;}
.yb_c00390{bottom:12.585000px;}
.y1f_c00390{bottom:12.586500px;}
.y7_c00390{bottom:12.600000px;}
.y1e_c00390{bottom:38.509500px;}
.y6_c00390{bottom:38.520000px;}
.y3_c00390{bottom:57.996000px;}
.y1d_c00390{bottom:64.099500px;}
.y5_c00390{bottom:64.485000px;}
.y2_c00390{bottom:78.876000px;}
.y1c_c00390{bottom:90.019500px;}
.y1b_c00390{bottom:115.939500px;}
.yc_c00390{bottom:130.045500px;}
.y1a_c00390{bottom:141.859500px;}
.y19_c00390{bottom:167.824500px;}
.y18_c00390{bottom:193.744500px;}
.y17_c00390{bottom:219.664500px;}
.y16_c00390{bottom:245.584500px;}
.y15_c00390{bottom:271.174500px;}
.y14_c00390{bottom:297.094500px;}
.y13_c00390{bottom:323.014500px;}
.y12_c00390{bottom:348.934500px;}
.y11_c00390{bottom:374.884500px;}
.y10_c00390{bottom:400.804500px;}
.yf_c00390{bottom:426.724500px;}
.ye_c00390{bottom:452.329500px;}
.yd_c00390{bottom:478.249500px;}
.ya_c00390{bottom:622.350000px;}
.y9_c00390{bottom:664.095000px;}
.y8_c00390{bottom:695.085000px;}
.y4_c00390{bottom:712.005000px;}
.y1_c00390{bottom:847.770000px;}
.h6_c00390{height:25.905000px;}
.h3_c00390{height:59.357813px;}
.h8_c00390{height:60.952500px;}
.h1_c00390{height:64.546875px;}
.h5_c00390{height:70.628906px;}
.h4_c00390{height:70.664062px;}
.h2_c00390{height:77.790000px;}
.h7_c00390{height:491.566500px;}
.h0_c00390{height:918.000000px;}
.w3_c00390{width:494.775000px;}
.w1_c00390{width:495.135000px;}
.w2_c00390{width:495.495000px;}
.w0_c00390{width:1188.000000px;}
.x0_c00390{left:0.000000px;}
.x4_c00390{left:7.546500px;}
.x7_c00390{left:8.640000px;}
.x3_c00390{left:98.689500px;}
.x1_c00390{left:106.236000px;}
.x5_c00390{left:157.350000px;}
.x2_c00390{left:580.500000px;}
.x6_c00390{left:594.900000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls13_c00390{letter-spacing:-1.258667pt;}
.ls9_c00390{letter-spacing:-0.848000pt;}
.lsa_c00390{letter-spacing:-0.810667pt;}
.ls12_c00390{letter-spacing:-0.720000pt;}
.ls10_c00390{letter-spacing:-0.640000pt;}
.lsd_c00390{letter-spacing:-0.473600pt;}
.lse_c00390{letter-spacing:-0.214933pt;}
.ls8_c00390{letter-spacing:0.000000pt;}
.ls3_c00390{letter-spacing:0.017920pt;}
.ls11_c00390{letter-spacing:0.018133pt;}
.ls1_c00390{letter-spacing:0.043520pt;}
.ls15_c00390{letter-spacing:0.053867pt;}
.lsb_c00390{letter-spacing:0.148267pt;}
.ls5_c00390{letter-spacing:0.268800pt;}
.ls14_c00390{letter-spacing:0.278933pt;}
.lsf_c00390{letter-spacing:0.432533pt;}
.ls7_c00390{letter-spacing:0.460800pt;}
.lsc_c00390{letter-spacing:0.470933pt;}
.ls6_c00390{letter-spacing:0.618667pt;}
.ls0_c00390{letter-spacing:0.640000pt;}
.ls4_c00390{letter-spacing:0.746667pt;}
.ls2_c00390{letter-spacing:0.800000pt;}
.ws2_c00390{word-spacing:-53.760000pt;}
.wsd_c00390{word-spacing:-14.080000pt;}
.wsb_c00390{word-spacing:-13.910933pt;}
.ws6_c00390{word-spacing:-13.872533pt;}
.wsc_c00390{word-spacing:-13.718933pt;}
.ws4_c00390{word-spacing:-13.588267pt;}
.wse_c00390{word-spacing:-13.493867pt;}
.ws7_c00390{word-spacing:-13.458133pt;}
.ws0_c00390{word-spacing:-13.440000pt;}
.ws8_c00390{word-spacing:-13.225067pt;}
.ws5_c00390{word-spacing:-12.966400pt;}
.ws9_c00390{word-spacing:-12.720000pt;}
.ws3_c00390{word-spacing:-12.629333pt;}
.ws1_c00390{word-spacing:-12.592000pt;}
.wsa_c00390{word-spacing:-12.181333pt;}
.wsf_c00390{word-spacing:0.000000pt;}
._2_c00390{margin-left:-2.152745pt;}
._0_c00390{margin-left:-1.131520pt;}
._1_c00390{width:1.111467pt;}
.fs1_c00390{font-size:53.760000pt;}
.fs0_c00390{font-size:64.000000pt;}
.y0_c00390{bottom:0.000000pt;}
.yb_c00390{bottom:11.186667pt;}
.y1f_c00390{bottom:11.188000pt;}
.y7_c00390{bottom:11.200000pt;}
.y1e_c00390{bottom:34.230667pt;}
.y6_c00390{bottom:34.240000pt;}
.y3_c00390{bottom:51.552000pt;}
.y1d_c00390{bottom:56.977333pt;}
.y5_c00390{bottom:57.320000pt;}
.y2_c00390{bottom:70.112000pt;}
.y1c_c00390{bottom:80.017333pt;}
.y1b_c00390{bottom:103.057333pt;}
.yc_c00390{bottom:115.596000pt;}
.y1a_c00390{bottom:126.097333pt;}
.y19_c00390{bottom:149.177333pt;}
.y18_c00390{bottom:172.217333pt;}
.y17_c00390{bottom:195.257333pt;}
.y16_c00390{bottom:218.297333pt;}
.y15_c00390{bottom:241.044000pt;}
.y14_c00390{bottom:264.084000pt;}
.y13_c00390{bottom:287.124000pt;}
.y12_c00390{bottom:310.164000pt;}
.y11_c00390{bottom:333.230667pt;}
.y10_c00390{bottom:356.270667pt;}
.yf_c00390{bottom:379.310667pt;}
.ye_c00390{bottom:402.070667pt;}
.yd_c00390{bottom:425.110667pt;}
.ya_c00390{bottom:553.200000pt;}
.y9_c00390{bottom:590.306667pt;}
.y8_c00390{bottom:617.853333pt;}
.y4_c00390{bottom:632.893333pt;}
.y1_c00390{bottom:753.573333pt;}
.h6_c00390{height:23.026667pt;}
.h3_c00390{height:52.762500pt;}
.h8_c00390{height:54.180000pt;}
.h1_c00390{height:57.375000pt;}
.h5_c00390{height:62.781250pt;}
.h4_c00390{height:62.812500pt;}
.h2_c00390{height:69.146667pt;}
.h7_c00390{height:436.948000pt;}
.h0_c00390{height:816.000000pt;}
.w3_c00390{width:439.800000pt;}
.w1_c00390{width:440.120000pt;}
.w2_c00390{width:440.440000pt;}
.w0_c00390{width:1056.000000pt;}
.x0_c00390{left:0.000000pt;}
.x4_c00390{left:6.708000pt;}
.x7_c00390{left:7.680000pt;}
.x3_c00390{left:87.724000pt;}
.x1_c00390{left:94.432000pt;}
.x5_c00390{left:139.866667pt;}
.x2_c00390{left:516.000000pt;}
.x6_c00390{left:528.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_c00391 {
    display:none;
  }
  .loading-indicator_c00391.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00391 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00391 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00391" -> "#page-container .classname_c00391")
 */
.pf_c00391 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00391 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00391 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00391 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00391 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00391 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00391 {overflow:visible;}
  }
}
.c_c00391 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00391 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00391:after { /* webkit #35443 */
  content: '';
}
.t_c00391:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00391 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00391 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00391 { /* info for Javascript */
  display:none;
}
.l_c00391 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00391 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00391 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00391:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00391;src:url('chunks/assets/font_eb3e7854f96a24254f755477.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_dd16d018626bb7a7741874f3.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_c2a65ff54a952f9f5838b3a9.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00391;src:url('chunks/assets/font_b044c52686fd4fb874f78d85.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00391;src:url('chunks/assets/font_272e42dfb8a275323dfa7707.woff2')format("woff");}.ff5_c00391{font-family:ff5_c00391;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_c00391;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00391{font-family:ff6_c00391;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls7_c00391{letter-spacing:-1.776000px;}
.ls8_c00391{letter-spacing:-1.422000px;}
.ls9_c00391{letter-spacing:-0.429000px;}
.ls6_c00391{letter-spacing:-0.337200px;}
.ls5_c00391{letter-spacing:0.000000px;}
.lsb_c00391{letter-spacing:0.022800px;}
.lsd_c00391{letter-spacing:0.219000px;}
.ls2_c00391{letter-spacing:0.278400px;}
.ls0_c00391{letter-spacing:0.302400px;}
.lsa_c00391{letter-spacing:0.313800px;}
.lsc_c00391{letter-spacing:0.486600px;}
.ls4_c00391{letter-spacing:0.524160px;}
.ls1_c00391{letter-spacing:0.720000px;}
.ls3_c00391{letter-spacing:0.840000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00391{word-spacing:-60.699000px;}
.ws2_c00391{word-spacing:-60.480000px;}
.ws7_c00391{word-spacing:-15.606600px;}
.ws5_c00391{word-spacing:-15.433800px;}
.ws6_c00391{word-spacing:-15.142800px;}
.ws4_c00391{word-spacing:-15.120000px;}
.ws0_c00391{word-spacing:-14.782800px;}
.ws3_c00391{word-spacing:-14.691000px;}
.ws1_c00391{word-spacing:-13.344000px;}
.ws9_c00391{word-spacing:0.000000px;}
._2_c00391{margin-left:-2.116800px;}
._3_c00391{margin-left:-1.022632px;}
._1_c00391{width:1.792558px;}
._0_c00391{width:3.149280px;}
.fc0_c00391{color:rgb(0,0,0);}
.fs1_c00391{font-size:60.480000px;}
.fs0_c00391{font-size:72.000000px;}
.y0_c00391{bottom:0.000000px;}
.yd_c00391{bottom:12.585000px;}
.yc_c00391{bottom:38.190000px;}
.y3_c00391{bottom:57.996000px;}
.yb_c00391{bottom:64.110000px;}
.y2_c00391{bottom:78.876000px;}
.ya_c00391{bottom:90.030000px;}
.y9_c00391{bottom:115.950000px;}
.y8_c00391{bottom:141.900000px;}
.y7_c00391{bottom:167.820000px;}
.y6_c00391{bottom:193.740000px;}
.y5_c00391{bottom:219.705000px;}
.y4_c00391{bottom:556.785000px;}
.y1_c00391{bottom:847.770000px;}
.h3_c00391{height:59.357813px;}
.h4_c00391{height:60.952500px;}
.h1_c00391{height:64.546875px;}
.h2_c00391{height:233.010000px;}
.h0_c00391{height:918.000000px;}
.w2_c00391{width:494.775000px;}
.w1_c00391{width:495.495000px;}
.w0_c00391{width:1188.000000px;}
.x0_c00391{left:0.000000px;}
.x4_c00391{left:8.266500px;}
.x3_c00391{left:98.689500px;}
.x1_c00391{left:106.236000px;}
.x2_c00391{left:580.500000px;}
.x5_c00391{left:594.900000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls7_c00391{letter-spacing:-1.578667pt;}
.ls8_c00391{letter-spacing:-1.264000pt;}
.ls9_c00391{letter-spacing:-0.381333pt;}
.ls6_c00391{letter-spacing:-0.299733pt;}
.ls5_c00391{letter-spacing:0.000000pt;}
.lsb_c00391{letter-spacing:0.020267pt;}
.lsd_c00391{letter-spacing:0.194667pt;}
.ls2_c00391{letter-spacing:0.247467pt;}
.ls0_c00391{letter-spacing:0.268800pt;}
.lsa_c00391{letter-spacing:0.278933pt;}
.lsc_c00391{letter-spacing:0.432533pt;}
.ls4_c00391{letter-spacing:0.465920pt;}
.ls1_c00391{letter-spacing:0.640000pt;}
.ls3_c00391{letter-spacing:0.746667pt;}
.ws8_c00391{word-spacing:-53.954667pt;}
.ws2_c00391{word-spacing:-53.760000pt;}
.ws7_c00391{word-spacing:-13.872533pt;}
.ws5_c00391{word-spacing:-13.718933pt;}
.ws6_c00391{word-spacing:-13.460267pt;}
.ws4_c00391{word-spacing:-13.440000pt;}
.ws0_c00391{word-spacing:-13.140267pt;}
.ws3_c00391{word-spacing:-13.058667pt;}
.ws1_c00391{word-spacing:-11.861333pt;}
.ws9_c00391{word-spacing:0.000000pt;}
._2_c00391{margin-left:-1.881600pt;}
._3_c00391{margin-left:-0.909007pt;}
._1_c00391{width:1.593385pt;}
._0_c00391{width:2.799360pt;}
.fs1_c00391{font-size:53.760000pt;}
.fs0_c00391{font-size:64.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.yd_c00391{bottom:11.186667pt;}
.yc_c00391{bottom:33.946667pt;}
.y3_c00391{bottom:51.552000pt;}
.yb_c00391{bottom:56.986667pt;}
.y2_c00391{bottom:70.112000pt;}
.ya_c00391{bottom:80.026667pt;}
.y9_c00391{bottom:103.066667pt;}
.y8_c00391{bottom:126.133333pt;}
.y7_c00391{bottom:149.173333pt;}
.y6_c00391{bottom:172.213333pt;}
.y5_c00391{bottom:195.293333pt;}
.y4_c00391{bottom:494.920000pt;}
.y1_c00391{bottom:753.573333pt;}
.h3_c00391{height:52.762500pt;}
.h4_c00391{height:54.180000pt;}
.h1_c00391{height:57.375000pt;}
.h2_c00391{height:207.120000pt;}
.h0_c00391{height:816.000000pt;}
.w2_c00391{width:439.800000pt;}
.w1_c00391{width:440.440000pt;}
.w0_c00391{width:1056.000000pt;}
.x0_c00391{left:0.000000pt;}
.x4_c00391{left:7.348000pt;}
.x3_c00391{left:87.724000pt;}
.x1_c00391{left:94.432000pt;}
.x2_c00391{left:516.000000pt;}
.x5_c00391{left:528.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_c00392 {
    display:none;
  }
  .loading-indicator_c00392.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00392 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00392 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00392" -> "#page-container .classname_c00392")
 */
.pf_c00392 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00392 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00392 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00392 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00392 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00392 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00392 {overflow:visible;}
  }
}
.c_c00392 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00392 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00392:after { /* webkit #35443 */
  content: '';
}
.t_c00392:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00392 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00392 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00392 { /* info for Javascript */
  display:none;
}
.l_c00392 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00392 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00392 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00392:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00392;src:url('chunks/assets/font_4c7e87e7f1076c340be15a8d.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_7a58e631b0272f552ff0818f.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_8462dc674de59f56afd279d5.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_0b0e9bc28742f9b48b2b6232.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls0_c00392{letter-spacing:0.000000px;}
.ls1_c00392{letter-spacing:0.792000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00392{word-spacing:-18.792000px;}
.ws0_c00392{word-spacing:-18.000000px;}
.ws2_c00392{word-spacing:0.000000px;}
._c_c00392{margin-left:-3.731976px;}
._5_c00392{margin-left:-2.520000px;}
._1_c00392{margin-left:-1.440000px;}
._0_c00392{width:1.296000px;}
._a_c00392{width:2.736000px;}
._d_c00392{width:3.875976px;}
._3_c00392{width:4.896000px;}
._4_c00392{width:5.904000px;}
._6_c00392{width:7.272000px;}
._b_c00392{width:8.856000px;}
._9_c00392{width:12.096000px;}
._8_c00392{width:13.320000px;}
._2_c00392{width:16.560000px;}
._14_c00392{width:19.211976px;}
._13_c00392{width:20.448000px;}
._12_c00392{width:22.176000px;}
._e_c00392{width:25.272000px;}
._7_c00392{width:39.468000px;}
._f_c00392{width:42.120000px;}
._10_c00392{width:43.331976px;}
._11_c00392{width:44.424048px;}
.fc0_c00392{color:rgb(0,0,0);}
.fs0_c00392{font-size:72.000000px;}
.y0_c00392{bottom:0.000000px;}
.y3_c00392{bottom:57.996000px;}
.y2_c00392{bottom:78.876000px;}
.y1c_c00392{bottom:287.025000px;}
.y1b_c00392{bottom:317.985000px;}
.y1a_c00392{bottom:349.305000px;}
.y19_c00392{bottom:380.265000px;}
.y18_c00392{bottom:411.270000px;}
.y17_c00392{bottom:442.590000px;}
.y16_c00392{bottom:488.310000px;}
.y15_c00392{bottom:519.300000px;}
.y14_c00392{bottom:550.620000px;}
.y13_c00392{bottom:581.580000px;}
.y12_c00392{bottom:612.540000px;}
.y11_c00392{bottom:643.530000px;}
.y10_c00392{bottom:674.850000px;}
.yf_c00392{bottom:705.810000px;}
.ye_c00392{bottom:736.770000px;}
.yd_c00392{bottom:767.775000px;}
.yc_c00392{bottom:799.095000px;}
.yb_c00392{bottom:830.055000px;}
.ya_c00392{bottom:861.015000px;}
.y9_c00392{bottom:892.005000px;}
.y8_c00392{bottom:923.325000px;}
.y7_c00392{bottom:954.285000px;}
.y6_c00392{bottom:985.245000px;}
.y5_c00392{bottom:1016.250000px;}
.y4_c00392{bottom:1056.570000px;}
.y1_c00392{bottom:1117.770000px;}
.h1_c00392{height:64.546875px;}
.h2_c00392{height:70.628906px;}
.h3_c00392{height:70.664062px;}
.h0_c00392{height:1188.000000px;}
.w0_c00392{width:918.000000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:127.476000px;}
.x4_c00392{left:169.995000px;}
.x3_c00392{left:180.795000px;}
.x2_c00392{left:445.500000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ls1_c00392{letter-spacing:0.704000pt;}
.ws1_c00392{word-spacing:-16.704000pt;}
.ws0_c00392{word-spacing:-16.000000pt;}
.ws2_c00392{word-spacing:0.000000pt;}
._c_c00392{margin-left:-3.317312pt;}
._5_c00392{margin-left:-2.240000pt;}
._1_c00392{margin-left:-1.280000pt;}
._0_c00392{width:1.152000pt;}
._a_c00392{width:2.432000pt;}
._d_c00392{width:3.445312pt;}
._3_c00392{width:4.352000pt;}
._4_c00392{width:5.248000pt;}
._6_c00392{width:6.464000pt;}
._b_c00392{width:7.872000pt;}
._9_c00392{width:10.752000pt;}
._8_c00392{width:11.840000pt;}
._2_c00392{width:14.720000pt;}
._14_c00392{width:17.077312pt;}
._13_c00392{width:18.176000pt;}
._12_c00392{width:19.712000pt;}
._e_c00392{width:22.464000pt;}
._7_c00392{width:35.082667pt;}
._f_c00392{width:37.440000pt;}
._10_c00392{width:38.517312pt;}
._11_c00392{width:39.488043pt;}
.fs0_c00392{font-size:64.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y3_c00392{bottom:51.552000pt;}
.y2_c00392{bottom:70.112000pt;}
.y1c_c00392{bottom:255.133333pt;}
.y1b_c00392{bottom:282.653333pt;}
.y1a_c00392{bottom:310.493333pt;}
.y19_c00392{bottom:338.013333pt;}
.y18_c00392{bottom:365.573333pt;}
.y17_c00392{bottom:393.413333pt;}
.y16_c00392{bottom:434.053333pt;}
.y15_c00392{bottom:461.600000pt;}
.y14_c00392{bottom:489.440000pt;}
.y13_c00392{bottom:516.960000pt;}
.y12_c00392{bottom:544.480000pt;}
.y11_c00392{bottom:572.026667pt;}
.y10_c00392{bottom:599.866667pt;}
.yf_c00392{bottom:627.386667pt;}
.ye_c00392{bottom:654.906667pt;}
.yd_c00392{bottom:682.466667pt;}
.yc_c00392{bottom:710.306667pt;}
.yb_c00392{bottom:737.826667pt;}
.ya_c00392{bottom:765.346667pt;}
.y9_c00392{bottom:792.893333pt;}
.y8_c00392{bottom:820.733333pt;}
.y7_c00392{bottom:848.253333pt;}
.y6_c00392{bottom:875.773333pt;}
.y5_c00392{bottom:903.333333pt;}
.y4_c00392{bottom:939.173333pt;}
.y1_c00392{bottom:993.573333pt;}
.h1_c00392{height:57.375000pt;}
.h2_c00392{height:62.781250pt;}
.h3_c00392{height:62.812500pt;}
.h0_c00392{height:1056.000000pt;}
.w0_c00392{width:816.000000pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:113.312000pt;}
.x4_c00392{left:151.106667pt;}
.x3_c00392{left:160.706667pt;}
.x2_c00392{left:396.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_c00393 {
    display:none;
  }
  .loading-indicator_c00393.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00393 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00393 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00393" -> "#page-container .classname_c00393")
 */
.pf_c00393 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00393 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00393 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00393 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00393 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00393 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00393 {overflow:visible;}
  }
}
.c_c00393 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00393 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00393:after { /* webkit #35443 */
  content: '';
}
.t_c00393:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00393 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00393 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00393 { /* info for Javascript */
  display:none;
}
.l_c00393 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00393 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00393 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00393:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00393;src:url('chunks/assets/font_5e3463a04aa8e657866e5266.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_7ceffe4ab300d545f4696769.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_3e2e25dffec6864986aa6d18.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00393;src:url('chunks/assets/font_0fc4312205ded22711025cdf.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;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_c00393;src:url('chunks/assets/font_3fc1f0046a261a3c121d861e.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls3_c00393{letter-spacing:-2.880000px;}
.ls5_c00393{letter-spacing:-0.486600px;}
.ls4_c00393{letter-spacing:-0.288000px;}
.ls2_c00393{letter-spacing:0.000000px;}
.ls1_c00393{letter-spacing:0.720000px;}
.ls0_c00393{letter-spacing:5.040000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:-18.000000px;}
.ws1_c00393{word-spacing:-17.712000px;}
.ws2_c00393{word-spacing:-15.120000px;}
.ws3_c00393{word-spacing:-14.633400px;}
.ws4_c00393{word-spacing:0.000000px;}
._d_c00393{margin-left:-3.672000px;}
._1_c00393{margin-left:-1.872000px;}
._2_c00393{width:1.080000px;}
._4_c00393{width:2.232000px;}
._7_c00393{width:3.479976px;}
._8_c00393{width:4.920048px;}
._9_c00393{width:6.131976px;}
._f_c00393{width:7.247952px;}
._a_c00393{width:8.784000px;}
._5_c00393{width:10.728000px;}
._6_c00393{width:12.240000px;}
._10_c00393{width:13.680000px;}
._e_c00393{width:15.552000px;}
._0_c00393{width:16.560000px;}
._3_c00393{width:25.128000px;}
._c_c00393{width:30.816000px;}
._b_c00393{width:31.824000px;}
.fc0_c00393{color:rgb(0,0,0);}
.fs2_c00393{font-size:38.880000px;}
.fs1_c00393{font-size:47.520000px;}
.fs3_c00393{font-size:60.480000px;}
.fs0_c00393{font-size:72.000000px;}
.y0_c00393{bottom:0.000000px;}
.y3_c00393{bottom:57.996000px;}
.y2_c00393{bottom:78.876000px;}
.y29_c00393{bottom:130.716000px;}
.y28_c00393{bottom:147.996000px;}
.y27_c00393{bottom:154.875000px;}
.y26_c00393{bottom:165.315000px;}
.y25_c00393{bottom:182.595000px;}
.y24_c00393{bottom:189.435000px;}
.y23_c00393{bottom:199.515000px;}
.y22_c00393{bottom:206.355000px;}
.y21_c00393{bottom:217.515000px;}
.y20_c00393{bottom:249.915000px;}
.y1f_c00393{bottom:280.905000px;}
.y1e_c00393{bottom:312.225000px;}
.y1d_c00393{bottom:343.185000px;}
.y1c_c00393{bottom:374.145000px;}
.y1b_c00393{bottom:405.150000px;}
.y1a_c00393{bottom:436.470000px;}
.y19_c00393{bottom:482.550000px;}
.y18_c00393{bottom:522.540000px;}
.y16_c00393{bottom:553.500000px;}
.y17_c00393{bottom:561.780000px;}
.y15_c00393{bottom:584.460000px;}
.y14_c00393{bottom:615.780000px;}
.y13_c00393{bottom:646.770000px;}
.y11_c00393{bottom:677.730000px;}
.y12_c00393{bottom:686.010000px;}
.y10_c00393{bottom:708.690000px;}
.yf_c00393{bottom:740.010000px;}
.ye_c00393{bottom:785.775000px;}
.yd_c00393{bottom:817.095000px;}
.yc_c00393{bottom:848.055000px;}
.yb_c00393{bottom:879.015000px;}
.ya_c00393{bottom:910.005000px;}
.y9_c00393{bottom:941.325000px;}
.y8_c00393{bottom:972.285000px;}
.y7_c00393{bottom:1003.245000px;}
.y5_c00393{bottom:1034.250000px;}
.y6_c00393{bottom:1042.530000px;}
.y4_c00393{bottom:1065.570000px;}
.y1_c00393{bottom:1117.770000px;}
.h6_c00393{height:34.855313px;}
.h4_c00393{height:46.638281px;}
.h8_c00393{height:54.219375px;}
.h7_c00393{height:54.514688px;}
.h1_c00393{height:64.546875px;}
.h5_c00393{height:70.628906px;}
.h2_c00393{height:70.664062px;}
.h3_c00393{height:1187.995500px;}
.h0_c00393{height:1188.000000px;}
.w1_c00393{width:917.997000px;}
.w0_c00393{width:918.000000px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:127.476000px;}
.xc_c00393{left:142.596000px;}
.x3_c00393{left:169.995000px;}
.xa_c00393{left:180.795000px;}
.xb_c00393{left:343.590000px;}
.x6_c00393{left:382.827000px;}
.x7_c00393{left:401.190000px;}
.x8_c00393{left:428.547000px;}
.x2_c00393{left:445.500000px;}
.x9_c00393{left:446.940000px;}
.x4_c00393{left:663.732000px;}
.x5_c00393{left:682.095000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls3_c00393{letter-spacing:-2.560000pt;}
.ls5_c00393{letter-spacing:-0.432533pt;}
.ls4_c00393{letter-spacing:-0.256000pt;}
.ls2_c00393{letter-spacing:0.000000pt;}
.ls1_c00393{letter-spacing:0.640000pt;}
.ls0_c00393{letter-spacing:4.480000pt;}
.ws0_c00393{word-spacing:-16.000000pt;}
.ws1_c00393{word-spacing:-15.744000pt;}
.ws2_c00393{word-spacing:-13.440000pt;}
.ws3_c00393{word-spacing:-13.007467pt;}
.ws4_c00393{word-spacing:0.000000pt;}
._d_c00393{margin-left:-3.264000pt;}
._1_c00393{margin-left:-1.664000pt;}
._2_c00393{width:0.960000pt;}
._4_c00393{width:1.984000pt;}
._7_c00393{width:3.093312pt;}
._8_c00393{width:4.373376pt;}
._9_c00393{width:5.450645pt;}
._f_c00393{width:6.442624pt;}
._a_c00393{width:7.808000pt;}
._5_c00393{width:9.536000pt;}
._6_c00393{width:10.880000pt;}
._10_c00393{width:12.160000pt;}
._e_c00393{width:13.824000pt;}
._0_c00393{width:14.720000pt;}
._3_c00393{width:22.336000pt;}
._c_c00393{width:27.392000pt;}
._b_c00393{width:28.288000pt;}
.fs2_c00393{font-size:34.560000pt;}
.fs1_c00393{font-size:42.240000pt;}
.fs3_c00393{font-size:53.760000pt;}
.fs0_c00393{font-size:64.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y3_c00393{bottom:51.552000pt;}
.y2_c00393{bottom:70.112000pt;}
.y29_c00393{bottom:116.192000pt;}
.y28_c00393{bottom:131.552000pt;}
.y27_c00393{bottom:137.666667pt;}
.y26_c00393{bottom:146.946667pt;}
.y25_c00393{bottom:162.306667pt;}
.y24_c00393{bottom:168.386667pt;}
.y23_c00393{bottom:177.346667pt;}
.y22_c00393{bottom:183.426667pt;}
.y21_c00393{bottom:193.346667pt;}
.y20_c00393{bottom:222.146667pt;}
.y1f_c00393{bottom:249.693333pt;}
.y1e_c00393{bottom:277.533333pt;}
.y1d_c00393{bottom:305.053333pt;}
.y1c_c00393{bottom:332.573333pt;}
.y1b_c00393{bottom:360.133333pt;}
.y1a_c00393{bottom:387.973333pt;}
.y19_c00393{bottom:428.933333pt;}
.y18_c00393{bottom:464.480000pt;}
.y16_c00393{bottom:492.000000pt;}
.y17_c00393{bottom:499.360000pt;}
.y15_c00393{bottom:519.520000pt;}
.y14_c00393{bottom:547.360000pt;}
.y13_c00393{bottom:574.906667pt;}
.y11_c00393{bottom:602.426667pt;}
.y12_c00393{bottom:609.786667pt;}
.y10_c00393{bottom:629.946667pt;}
.yf_c00393{bottom:657.786667pt;}
.ye_c00393{bottom:698.466667pt;}
.yd_c00393{bottom:726.306667pt;}
.yc_c00393{bottom:753.826667pt;}
.yb_c00393{bottom:781.346667pt;}
.ya_c00393{bottom:808.893333pt;}
.y9_c00393{bottom:836.733333pt;}
.y8_c00393{bottom:864.253333pt;}
.y7_c00393{bottom:891.773333pt;}
.y5_c00393{bottom:919.333333pt;}
.y6_c00393{bottom:926.693333pt;}
.y4_c00393{bottom:947.173333pt;}
.y1_c00393{bottom:993.573333pt;}
.h6_c00393{height:30.982500pt;}
.h4_c00393{height:41.456250pt;}
.h8_c00393{height:48.195000pt;}
.h7_c00393{height:48.457500pt;}
.h1_c00393{height:57.375000pt;}
.h5_c00393{height:62.781250pt;}
.h2_c00393{height:62.812500pt;}
.h3_c00393{height:1055.996000pt;}
.h0_c00393{height:1056.000000pt;}
.w1_c00393{width:815.997333pt;}
.w0_c00393{width:816.000000pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:113.312000pt;}
.xc_c00393{left:126.752000pt;}
.x3_c00393{left:151.106667pt;}
.xa_c00393{left:160.706667pt;}
.xb_c00393{left:305.413333pt;}
.x6_c00393{left:340.290667pt;}
.x7_c00393{left:356.613333pt;}
.x8_c00393{left:380.930667pt;}
.x2_c00393{left:396.000000pt;}
.x9_c00393{left:397.280000pt;}
.x4_c00393{left:589.984000pt;}
.x5_c00393{left:606.306667pt;}
}





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

.ir_c00394:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00394;src:url('chunks/assets/font_1aa9d124717dcee5ed0c41b6.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_65e09f4e7221110aac4af223.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_f74eb75a4e7e737de37ffc5e.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_b9ff4db7dc808a2325095c03.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;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_c00394;src:url('chunks/assets/font_f2ab93f03480f5f61373a51e.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00394;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff6_c00394{font-family:ff6_c00394;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls1_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:0.720000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:-72.000000px;}
.ws1_c00394{word-spacing:-18.000000px;}
.ws2_c00394{word-spacing:-15.120000px;}
.ws3_c00394{word-spacing:0.000000px;}
._3_c00394{margin-left:-2.736000px;}
._1_c00394{margin-left:-1.296000px;}
._2_c00394{width:1.296000px;}
._4_c00394{width:2.304000px;}
._5_c00394{width:3.600000px;}
._0_c00394{width:4.680000px;}
._7_c00394{width:5.688000px;}
._6_c00394{width:6.912000px;}
._b_c00394{width:7.920000px;}
._c_c00394{width:9.072000px;}
._10_c00394{width:10.224000px;}
._e_c00394{width:12.240000px;}
._f_c00394{width:14.112000px;}
._11_c00394{width:15.264000px;}
._a_c00394{width:20.952000px;}
._9_c00394{width:22.104000px;}
._8_c00394{width:23.616000px;}
._d_c00394{width:25.344000px;}
.fc0_c00394{color:rgb(0,0,0);}
.fs2_c00394{font-size:38.880000px;}
.fs1_c00394{font-size:47.520000px;}
.fs3_c00394{font-size:60.480000px;}
.fs0_c00394{font-size:72.000000px;}
.y0_c00394{bottom:0.000000px;}
.y3_c00394{bottom:57.996000px;}
.y2_c00394{bottom:78.876000px;}
.y26_c00394{bottom:130.716000px;}
.y25_c00394{bottom:147.996000px;}
.y24_c00394{bottom:165.315000px;}
.y23_c00394{bottom:172.155000px;}
.y22_c00394{bottom:182.595000px;}
.y21_c00394{bottom:189.435000px;}
.y20_c00394{bottom:200.235000px;}
.y1f_c00394{bottom:235.155000px;}
.y1e_c00394{bottom:281.265000px;}
.y1d_c00394{bottom:326.985000px;}
.y1c_c00394{bottom:358.305000px;}
.y1b_c00394{bottom:389.265000px;}
.y1a_c00394{bottom:420.270000px;}
.y19_c00394{bottom:451.230000px;}
.y18_c00394{bottom:482.550000px;}
.y17_c00394{bottom:513.510000px;}
.y16_c00394{bottom:544.500000px;}
.y15_c00394{bottom:575.460000px;}
.y14_c00394{bottom:606.780000px;}
.y13_c00394{bottom:637.740000px;}
.y11_c00394{bottom:668.730000px;}
.y12_c00394{bottom:677.010000px;}
.y10_c00394{bottom:699.690000px;}
.yf_c00394{bottom:730.650000px;}
.ye_c00394{bottom:761.970000px;}
.yd_c00394{bottom:792.975000px;}
.yc_c00394{bottom:823.935000px;}
.yb_c00394{bottom:855.255000px;}
.ya_c00394{bottom:901.005000px;}
.y8_c00394{bottom:941.325000px;}
.y9_c00394{bottom:949.605000px;}
.y7_c00394{bottom:972.285000px;}
.y6_c00394{bottom:1003.245000px;}
.y5_c00394{bottom:1034.250000px;}
.y4_c00394{bottom:1065.570000px;}
.y1_c00394{bottom:1117.770000px;}
.h6_c00394{height:34.855313px;}
.h4_c00394{height:46.638281px;}
.h8_c00394{height:54.219375px;}
.h7_c00394{height:54.514688px;}
.h1_c00394{height:64.546875px;}
.h5_c00394{height:70.628906px;}
.h2_c00394{height:70.664062px;}
.h3_c00394{height:1187.995500px;}
.h0_c00394{height:1188.000000px;}
.w1_c00394{width:917.997000px;}
.w0_c00394{width:918.000000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:127.476000px;}
.xa_c00394{left:142.596000px;}
.x6_c00394{left:169.995000px;}
.x5_c00394{left:180.795000px;}
.x7_c00394{left:336.342000px;}
.x9_c00394{left:343.590000px;}
.x8_c00394{left:354.750000px;}
.x2_c00394{left:445.500000px;}
.x3_c00394{left:529.737000px;}
.x4_c00394{left:548.130000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls1_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:0.640000pt;}
.ws0_c00394{word-spacing:-64.000000pt;}
.ws1_c00394{word-spacing:-16.000000pt;}
.ws2_c00394{word-spacing:-13.440000pt;}
.ws3_c00394{word-spacing:0.000000pt;}
._3_c00394{margin-left:-2.432000pt;}
._1_c00394{margin-left:-1.152000pt;}
._2_c00394{width:1.152000pt;}
._4_c00394{width:2.048000pt;}
._5_c00394{width:3.200000pt;}
._0_c00394{width:4.160000pt;}
._7_c00394{width:5.056000pt;}
._6_c00394{width:6.144000pt;}
._b_c00394{width:7.040000pt;}
._c_c00394{width:8.064000pt;}
._10_c00394{width:9.088000pt;}
._e_c00394{width:10.880000pt;}
._f_c00394{width:12.544000pt;}
._11_c00394{width:13.568000pt;}
._a_c00394{width:18.624000pt;}
._9_c00394{width:19.648000pt;}
._8_c00394{width:20.992000pt;}
._d_c00394{width:22.528000pt;}
.fs2_c00394{font-size:34.560000pt;}
.fs1_c00394{font-size:42.240000pt;}
.fs3_c00394{font-size:53.760000pt;}
.fs0_c00394{font-size:64.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y3_c00394{bottom:51.552000pt;}
.y2_c00394{bottom:70.112000pt;}
.y26_c00394{bottom:116.192000pt;}
.y25_c00394{bottom:131.552000pt;}
.y24_c00394{bottom:146.946667pt;}
.y23_c00394{bottom:153.026667pt;}
.y22_c00394{bottom:162.306667pt;}
.y21_c00394{bottom:168.386667pt;}
.y20_c00394{bottom:177.986667pt;}
.y1f_c00394{bottom:209.026667pt;}
.y1e_c00394{bottom:250.013333pt;}
.y1d_c00394{bottom:290.653333pt;}
.y1c_c00394{bottom:318.493333pt;}
.y1b_c00394{bottom:346.013333pt;}
.y1a_c00394{bottom:373.573333pt;}
.y19_c00394{bottom:401.093333pt;}
.y18_c00394{bottom:428.933333pt;}
.y17_c00394{bottom:456.453333pt;}
.y16_c00394{bottom:484.000000pt;}
.y15_c00394{bottom:511.520000pt;}
.y14_c00394{bottom:539.360000pt;}
.y13_c00394{bottom:566.880000pt;}
.y11_c00394{bottom:594.426667pt;}
.y12_c00394{bottom:601.786667pt;}
.y10_c00394{bottom:621.946667pt;}
.yf_c00394{bottom:649.466667pt;}
.ye_c00394{bottom:677.306667pt;}
.yd_c00394{bottom:704.866667pt;}
.yc_c00394{bottom:732.386667pt;}
.yb_c00394{bottom:760.226667pt;}
.ya_c00394{bottom:800.893333pt;}
.y8_c00394{bottom:836.733333pt;}
.y9_c00394{bottom:844.093333pt;}
.y7_c00394{bottom:864.253333pt;}
.y6_c00394{bottom:891.773333pt;}
.y5_c00394{bottom:919.333333pt;}
.y4_c00394{bottom:947.173333pt;}
.y1_c00394{bottom:993.573333pt;}
.h6_c00394{height:30.982500pt;}
.h4_c00394{height:41.456250pt;}
.h8_c00394{height:48.195000pt;}
.h7_c00394{height:48.457500pt;}
.h1_c00394{height:57.375000pt;}
.h5_c00394{height:62.781250pt;}
.h2_c00394{height:62.812500pt;}
.h3_c00394{height:1055.996000pt;}
.h0_c00394{height:1056.000000pt;}
.w1_c00394{width:815.997333pt;}
.w0_c00394{width:816.000000pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:113.312000pt;}
.xa_c00394{left:126.752000pt;}
.x6_c00394{left:151.106667pt;}
.x5_c00394{left:160.706667pt;}
.x7_c00394{left:298.970667pt;}
.x9_c00394{left:305.413333pt;}
.x8_c00394{left:315.333333pt;}
.x2_c00394{left:396.000000pt;}
.x3_c00394{left:470.877333pt;}
.x4_c00394{left:487.226667pt;}
}





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

.ir_c00395:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00395;src:url('chunks/assets/font_ddae7a1cc968476625f8da7c.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_66e042bd3d2b7360ea52b619.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_358304fba9aee2885a0937b5.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_8b83de45297be2d52f729f80.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00395;src:url('chunks/assets/font_ee1c1463f0c747f4e33fc4d4.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls3_c00395{letter-spacing:-0.720000px;}
.ls2_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:0.720000px;}
.ls1_c00395{letter-spacing:0.864000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00395{word-spacing:-72.000000px;}
.ws0_c00395{word-spacing:-18.000000px;}
.ws2_c00395{word-spacing:-15.120000px;}
.ws3_c00395{word-spacing:0.000000px;}
._3_c00395{margin-left:-2.759976px;}
._1_c00395{margin-left:-1.440000px;}
._0_c00395{width:1.296000px;}
._2_c00395{width:2.808000px;}
._b_c00395{width:3.996576px;}
._f_c00395{width:6.359976px;}
._4_c00395{width:7.560000px;}
._5_c00395{width:8.591976px;}
._6_c00395{width:9.719928px;}
._9_c00395{width:11.160000px;}
._a_c00395{width:12.528072px;}
._c_c00395{width:15.935976px;}
._d_c00395{width:16.992000px;}
._e_c00395{width:19.391976px;}
._7_c00395{width:20.808000px;}
._8_c00395{width:22.968000px;}
._15_c00395{width:24.335856px;}
._14_c00395{width:28.031976px;}
._12_c00395{width:29.160000px;}
._13_c00395{width:30.215952px;}
._10_c00395{width:37.440000px;}
._11_c00395{width:39.240000px;}
.fc0_c00395{color:rgb(0,0,0);}
.fs2_c00395{font-size:38.880000px;}
.fs1_c00395{font-size:47.520000px;}
.fs3_c00395{font-size:60.480000px;}
.fs0_c00395{font-size:72.000000px;}
.y0_c00395{bottom:0.000000px;}
.y3_c00395{bottom:57.996000px;}
.y2_c00395{bottom:78.876000px;}
.y24_c00395{bottom:130.716000px;}
.y23_c00395{bottom:147.996000px;}
.y22_c00395{bottom:154.875000px;}
.y21_c00395{bottom:165.315000px;}
.y20_c00395{bottom:172.155000px;}
.y1f_c00395{bottom:182.955000px;}
.y1e_c00395{bottom:271.905000px;}
.y1d_c00395{bottom:312.225000px;}
.y1c_c00395{bottom:343.185000px;}
.y1b_c00395{bottom:374.145000px;}
.y1a_c00395{bottom:405.510000px;}
.y19_c00395{bottom:451.230000px;}
.y18_c00395{bottom:491.550000px;}
.y17_c00395{bottom:522.540000px;}
.y16_c00395{bottom:553.500000px;}
.y15_c00395{bottom:584.460000px;}
.y14_c00395{bottom:615.780000px;}
.y12_c00395{bottom:646.770000px;}
.y13_c00395{bottom:655.050000px;}
.y10_c00395{bottom:677.730000px;}
.y11_c00395{bottom:686.010000px;}
.yf_c00395{bottom:708.690000px;}
.ye_c00395{bottom:739.650000px;}
.yd_c00395{bottom:771.015000px;}
.yc_c00395{bottom:801.975000px;}
.yb_c00395{bottom:832.935000px;}
.ya_c00395{bottom:863.895000px;}
.y9_c00395{bottom:895.245000px;}
.y8_c00395{bottom:926.205000px;}
.y7_c00395{bottom:957.165000px;}
.y6_c00395{bottom:988.125000px;}
.y5_c00395{bottom:1019.490000px;}
.y4_c00395{bottom:1065.570000px;}
.y1_c00395{bottom:1117.770000px;}
.h6_c00395{height:34.855313px;}
.h5_c00395{height:46.638281px;}
.h8_c00395{height:54.219375px;}
.h7_c00395{height:59.357813px;}
.h1_c00395{height:64.546875px;}
.h2_c00395{height:70.628906px;}
.h3_c00395{height:70.664062px;}
.h4_c00395{height:1187.995500px;}
.h0_c00395{height:1188.000000px;}
.w1_c00395{width:917.997000px;}
.w0_c00395{width:918.000000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:127.476000px;}
.xa_c00395{left:142.596000px;}
.x4_c00395{left:169.995000px;}
.x3_c00395{left:180.795000px;}
.x9_c00395{left:343.590000px;}
.x5_c00395{left:389.307000px;}
.x6_c00395{left:407.670000px;}
.x2_c00395{left:445.500000px;}
.x7_c00395{left:517.857000px;}
.x8_c00395{left:536.250000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls3_c00395{letter-spacing:-0.640000pt;}
.ls2_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:0.640000pt;}
.ls1_c00395{letter-spacing:0.768000pt;}
.ws1_c00395{word-spacing:-64.000000pt;}
.ws0_c00395{word-spacing:-16.000000pt;}
.ws2_c00395{word-spacing:-13.440000pt;}
.ws3_c00395{word-spacing:0.000000pt;}
._3_c00395{margin-left:-2.453312pt;}
._1_c00395{margin-left:-1.280000pt;}
._0_c00395{width:1.152000pt;}
._2_c00395{width:2.496000pt;}
._b_c00395{width:3.552512pt;}
._f_c00395{width:5.653312pt;}
._4_c00395{width:6.720000pt;}
._5_c00395{width:7.637312pt;}
._6_c00395{width:8.639936pt;}
._9_c00395{width:9.920000pt;}
._a_c00395{width:11.136064pt;}
._c_c00395{width:14.165312pt;}
._d_c00395{width:15.104000pt;}
._e_c00395{width:17.237312pt;}
._7_c00395{width:18.496000pt;}
._8_c00395{width:20.416000pt;}
._15_c00395{width:21.631872pt;}
._14_c00395{width:24.917312pt;}
._12_c00395{width:25.920000pt;}
._13_c00395{width:26.858624pt;}
._10_c00395{width:33.280000pt;}
._11_c00395{width:34.880000pt;}
.fs2_c00395{font-size:34.560000pt;}
.fs1_c00395{font-size:42.240000pt;}
.fs3_c00395{font-size:53.760000pt;}
.fs0_c00395{font-size:64.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y3_c00395{bottom:51.552000pt;}
.y2_c00395{bottom:70.112000pt;}
.y24_c00395{bottom:116.192000pt;}
.y23_c00395{bottom:131.552000pt;}
.y22_c00395{bottom:137.666667pt;}
.y21_c00395{bottom:146.946667pt;}
.y20_c00395{bottom:153.026667pt;}
.y1f_c00395{bottom:162.626667pt;}
.y1e_c00395{bottom:241.693333pt;}
.y1d_c00395{bottom:277.533333pt;}
.y1c_c00395{bottom:305.053333pt;}
.y1b_c00395{bottom:332.573333pt;}
.y1a_c00395{bottom:360.453333pt;}
.y19_c00395{bottom:401.093333pt;}
.y18_c00395{bottom:436.933333pt;}
.y17_c00395{bottom:464.480000pt;}
.y16_c00395{bottom:492.000000pt;}
.y15_c00395{bottom:519.520000pt;}
.y14_c00395{bottom:547.360000pt;}
.y12_c00395{bottom:574.906667pt;}
.y13_c00395{bottom:582.266667pt;}
.y10_c00395{bottom:602.426667pt;}
.y11_c00395{bottom:609.786667pt;}
.yf_c00395{bottom:629.946667pt;}
.ye_c00395{bottom:657.466667pt;}
.yd_c00395{bottom:685.346667pt;}
.yc_c00395{bottom:712.866667pt;}
.yb_c00395{bottom:740.386667pt;}
.ya_c00395{bottom:767.906667pt;}
.y9_c00395{bottom:795.773333pt;}
.y8_c00395{bottom:823.293333pt;}
.y7_c00395{bottom:850.813333pt;}
.y6_c00395{bottom:878.333333pt;}
.y5_c00395{bottom:906.213333pt;}
.y4_c00395{bottom:947.173333pt;}
.y1_c00395{bottom:993.573333pt;}
.h6_c00395{height:30.982500pt;}
.h5_c00395{height:41.456250pt;}
.h8_c00395{height:48.195000pt;}
.h7_c00395{height:52.762500pt;}
.h1_c00395{height:57.375000pt;}
.h2_c00395{height:62.781250pt;}
.h3_c00395{height:62.812500pt;}
.h4_c00395{height:1055.996000pt;}
.h0_c00395{height:1056.000000pt;}
.w1_c00395{width:815.997333pt;}
.w0_c00395{width:816.000000pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:113.312000pt;}
.xa_c00395{left:126.752000pt;}
.x4_c00395{left:151.106667pt;}
.x3_c00395{left:160.706667pt;}
.x9_c00395{left:305.413333pt;}
.x5_c00395{left:346.050667pt;}
.x6_c00395{left:362.373333pt;}
.x2_c00395{left:396.000000pt;}
.x7_c00395{left:460.317333pt;}
.x8_c00395{left:476.666667pt;}
}





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

.ir_c00396:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00396;src:url('chunks/assets/font_64733a45f4d70458c3011c5a.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_410c2853b15e42d90bc0f4d6.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_5afe76a44a1a4e9abe3385a5.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;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_c00396;src:url('chunks/assets/font_cb7d49c837b1ade6c7f18878.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_332da26017157388f9ab832a.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00396;src:url('chunks/assets/font_4f910eace201406a92abbec9.woff2')format("woff");}.ff6_c00396{font-family:ff6_c00396;line-height:1.104004;font-style:normal;font-weight: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_c00396;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00396{font-family:ff7_c00396;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls7_c00396{letter-spacing:-1.752000px;}
.lsd_c00396{letter-spacing:-1.692000px;}
.lsa_c00396{letter-spacing:-1.656000px;}
.lsc_c00396{letter-spacing:-1.512000px;}
.ls16_c00396{letter-spacing:-1.386000px;}
.lsf_c00396{letter-spacing:-0.942000px;}
.ls11_c00396{letter-spacing:-0.720000px;}
.ls13_c00396{letter-spacing:-0.696000px;}
.ls10_c00396{letter-spacing:-0.618000px;}
.ls14_c00396{letter-spacing:-0.397200px;}
.ls15_c00396{letter-spacing:-0.313800px;}
.lse_c00396{letter-spacing:-0.273600px;}
.ls9_c00396{letter-spacing:-0.253200px;}
.lsb_c00396{letter-spacing:-0.219000px;}
.ls8_c00396{letter-spacing:-0.069000px;}
.ls6_c00396{letter-spacing:0.000000px;}
.ls3_c00396{letter-spacing:0.057600px;}
.ls4_c00396{letter-spacing:0.181440px;}
.ls12_c00396{letter-spacing:0.294000px;}
.ls5_c00396{letter-spacing:0.498240px;}
.ls0_c00396{letter-spacing:0.720000px;}
.ls2_c00396{letter-spacing:0.840000px;}
.ls1_c00396{letter-spacing:0.864000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00396{word-spacing:-13.974000px;}
.ws0_c00396{word-spacing:-13.680000px;}
.ws2_c00396{word-spacing:-13.461000px;}
.ws4_c00396{word-spacing:-13.406400px;}
.wsa_c00396{word-spacing:-13.366200px;}
.ws9_c00396{word-spacing:-13.282800px;}
.ws6_c00396{word-spacing:-13.062000px;}
.ws8_c00396{word-spacing:-12.984000px;}
.ws5_c00396{word-spacing:-12.738000px;}
.ws3_c00396{word-spacing:-12.168000px;}
.wsb_c00396{word-spacing:-11.988000px;}
.ws1_c00396{word-spacing:-11.928000px;}
.wsc_c00396{word-spacing:0.000000px;}
._1_c00396{margin-left:-3.312000px;}
._4_c00396{margin-left:-2.232000px;}
._2_c00396{margin-left:-1.224000px;}
._5_c00396{width:1.008000px;}
._0_c00396{width:2.016000px;}
._3_c00396{width:3.096000px;}
._7_c00396{width:12.804000px;}
._6_c00396{width:14.328000px;}
._8_c00396{width:15.696000px;}
._b_c00396{width:657.724800px;}
._9_c00396{width:699.496320px;}
._c_c00396{width:702.355680px;}
._a_c00396{width:734.316000px;}
._d_c00396{width:775.171200px;}
.fc1_c00396{color:transparent;}
.fc0_c00396{color:rgb(0,0,0);}
.fs1_c00396{font-size:54.720000px;}
.fs0_c00396{font-size:72.000000px;}
.y0_c00396{bottom:0.000000px;}
.yc_c00396{bottom:11.145000px;}
.y2b_c00396{bottom:11.515500px;}
.y2a_c00396{bottom:34.915500px;}
.y29_c00396{bottom:57.994500px;}
.y3_c00396{bottom:57.996000px;}
.y2_c00396{bottom:78.876000px;}
.y28_c00396{bottom:81.394500px;}
.y27_c00396{bottom:104.794500px;}
.yd_c00396{bottom:110.560500px;}
.y26_c00396{bottom:127.834500px;}
.y25_c00396{bottom:151.234500px;}
.y24_c00396{bottom:174.664500px;}
.y23_c00396{bottom:197.704500px;}
.y22_c00396{bottom:221.104500px;}
.y21_c00396{bottom:244.504500px;}
.y20_c00396{bottom:267.544500px;}
.y1f_c00396{bottom:290.989500px;}
.y1e_c00396{bottom:314.389500px;}
.y1d_c00396{bottom:337.429500px;}
.y1c_c00396{bottom:360.829500px;}
.y1b_c00396{bottom:384.229500px;}
.y1a_c00396{bottom:407.659500px;}
.y19_c00396{bottom:430.699500px;}
.y18_c00396{bottom:454.099500px;}
.y17_c00396{bottom:477.499500px;}
.y16_c00396{bottom:500.539500px;}
.y15_c00396{bottom:523.939500px;}
.y14_c00396{bottom:547.369500px;}
.y13_c00396{bottom:570.409500px;}
.y12_c00396{bottom:593.809500px;}
.y11_c00396{bottom:617.209500px;}
.y10_c00396{bottom:640.249500px;}
.yf_c00396{bottom:663.694500px;}
.ye_c00396{bottom:687.094500px;}
.yb_c00396{bottom:810.270000px;}
.ya_c00396{bottom:849.135000px;}
.y9_c00396{bottom:889.125000px;}
.y8_c00396{bottom:920.085000px;}
.y7_c00396{bottom:951.405000px;}
.y6_c00396{bottom:1003.245000px;}
.y5_c00396{bottom:1034.250000px;}
.y4_c00396{bottom:1065.570000px;}
.y1_c00396{bottom:1117.770000px;}
.h4_c00396{height:23.025000px;}
.h5_c00396{height:53.704687px;}
.h7_c00396{height:55.147500px;}
.h1_c00396{height:64.546875px;}
.h3_c00396{height:70.628906px;}
.h2_c00396{height:70.664062px;}
.h6_c00396{height:698.965500px;}
.h0_c00396{height:1188.000000px;}
.w1_c00396{width:323.415000px;}
.w2_c00396{width:323.730000px;}
.w0_c00396{width:918.000000px;}
.x0_c00396{left:0.000000px;}
.x6_c00396{left:7.546500px;}
.x5_c00396{left:119.929500px;}
.x1_c00396{left:127.476000px;}
.x4_c00396{left:178.635000px;}
.x3_c00396{left:180.795000px;}
.x7_c00396{left:444.060000px;}
.x2_c00396{left:445.500000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls7_c00396{letter-spacing:-1.557333pt;}
.lsd_c00396{letter-spacing:-1.504000pt;}
.lsa_c00396{letter-spacing:-1.472000pt;}
.lsc_c00396{letter-spacing:-1.344000pt;}
.ls16_c00396{letter-spacing:-1.232000pt;}
.lsf_c00396{letter-spacing:-0.837333pt;}
.ls11_c00396{letter-spacing:-0.640000pt;}
.ls13_c00396{letter-spacing:-0.618667pt;}
.ls10_c00396{letter-spacing:-0.549333pt;}
.ls14_c00396{letter-spacing:-0.353067pt;}
.ls15_c00396{letter-spacing:-0.278933pt;}
.lse_c00396{letter-spacing:-0.243200pt;}
.ls9_c00396{letter-spacing:-0.225067pt;}
.lsb_c00396{letter-spacing:-0.194667pt;}
.ls8_c00396{letter-spacing:-0.061333pt;}
.ls6_c00396{letter-spacing:0.000000pt;}
.ls3_c00396{letter-spacing:0.051200pt;}
.ls4_c00396{letter-spacing:0.161280pt;}
.ls12_c00396{letter-spacing:0.261333pt;}
.ls5_c00396{letter-spacing:0.442880pt;}
.ls0_c00396{letter-spacing:0.640000pt;}
.ls2_c00396{letter-spacing:0.746667pt;}
.ls1_c00396{letter-spacing:0.768000pt;}
.ws7_c00396{word-spacing:-12.421333pt;}
.ws0_c00396{word-spacing:-12.160000pt;}
.ws2_c00396{word-spacing:-11.965333pt;}
.ws4_c00396{word-spacing:-11.916800pt;}
.wsa_c00396{word-spacing:-11.881067pt;}
.ws9_c00396{word-spacing:-11.806933pt;}
.ws6_c00396{word-spacing:-11.610667pt;}
.ws8_c00396{word-spacing:-11.541333pt;}
.ws5_c00396{word-spacing:-11.322667pt;}
.ws3_c00396{word-spacing:-10.816000pt;}
.wsb_c00396{word-spacing:-10.656000pt;}
.ws1_c00396{word-spacing:-10.602667pt;}
.wsc_c00396{word-spacing:0.000000pt;}
._1_c00396{margin-left:-2.944000pt;}
._4_c00396{margin-left:-1.984000pt;}
._2_c00396{margin-left:-1.088000pt;}
._5_c00396{width:0.896000pt;}
._0_c00396{width:1.792000pt;}
._3_c00396{width:2.752000pt;}
._7_c00396{width:11.381333pt;}
._6_c00396{width:12.736000pt;}
._8_c00396{width:13.952000pt;}
._b_c00396{width:584.644267pt;}
._9_c00396{width:621.774507pt;}
._c_c00396{width:624.316160pt;}
._a_c00396{width:652.725333pt;}
._d_c00396{width:689.041067pt;}
.fs1_c00396{font-size:48.640000pt;}
.fs0_c00396{font-size:64.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.yc_c00396{bottom:9.906667pt;}
.y2b_c00396{bottom:10.236000pt;}
.y2a_c00396{bottom:31.036000pt;}
.y29_c00396{bottom:51.550667pt;}
.y3_c00396{bottom:51.552000pt;}
.y2_c00396{bottom:70.112000pt;}
.y28_c00396{bottom:72.350667pt;}
.y27_c00396{bottom:93.150667pt;}
.yd_c00396{bottom:98.276000pt;}
.y26_c00396{bottom:113.630667pt;}
.y25_c00396{bottom:134.430667pt;}
.y24_c00396{bottom:155.257333pt;}
.y23_c00396{bottom:175.737333pt;}
.y22_c00396{bottom:196.537333pt;}
.y21_c00396{bottom:217.337333pt;}
.y20_c00396{bottom:237.817333pt;}
.y1f_c00396{bottom:258.657333pt;}
.y1e_c00396{bottom:279.457333pt;}
.y1d_c00396{bottom:299.937333pt;}
.y1c_c00396{bottom:320.737333pt;}
.y1b_c00396{bottom:341.537333pt;}
.y1a_c00396{bottom:362.364000pt;}
.y19_c00396{bottom:382.844000pt;}
.y18_c00396{bottom:403.644000pt;}
.y17_c00396{bottom:424.444000pt;}
.y16_c00396{bottom:444.924000pt;}
.y15_c00396{bottom:465.724000pt;}
.y14_c00396{bottom:486.550667pt;}
.y13_c00396{bottom:507.030667pt;}
.y12_c00396{bottom:527.830667pt;}
.y11_c00396{bottom:548.630667pt;}
.y10_c00396{bottom:569.110667pt;}
.yf_c00396{bottom:589.950667pt;}
.ye_c00396{bottom:610.750667pt;}
.yb_c00396{bottom:720.240000pt;}
.ya_c00396{bottom:754.786667pt;}
.y9_c00396{bottom:790.333333pt;}
.y8_c00396{bottom:817.853333pt;}
.y7_c00396{bottom:845.693333pt;}
.y6_c00396{bottom:891.773333pt;}
.y5_c00396{bottom:919.333333pt;}
.y4_c00396{bottom:947.173333pt;}
.y1_c00396{bottom:993.573333pt;}
.h4_c00396{height:20.466667pt;}
.h5_c00396{height:47.737500pt;}
.h7_c00396{height:49.020000pt;}
.h1_c00396{height:57.375000pt;}
.h3_c00396{height:62.781250pt;}
.h2_c00396{height:62.812500pt;}
.h6_c00396{height:621.302667pt;}
.h0_c00396{height:1056.000000pt;}
.w1_c00396{width:287.480000pt;}
.w2_c00396{width:287.760000pt;}
.w0_c00396{width:816.000000pt;}
.x0_c00396{left:0.000000pt;}
.x6_c00396{left:6.708000pt;}
.x5_c00396{left:106.604000pt;}
.x1_c00396{left:113.312000pt;}
.x4_c00396{left:158.786667pt;}
.x3_c00396{left:160.706667pt;}
.x7_c00396{left:394.720000pt;}
.x2_c00396{left:396.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_c00397 {
    display:none;
  }
  .loading-indicator_c00397.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00397 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00397 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00397" -> "#page-container .classname_c00397")
 */
.pf_c00397 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00397 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00397 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00397 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00397 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00397 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00397 {overflow:visible;}
  }
}
.c_c00397 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00397 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00397:after { /* webkit #35443 */
  content: '';
}
.t_c00397:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00397 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00397 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00397 { /* info for Javascript */
  display:none;
}
.l_c00397 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00397 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00397 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00397:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00397;src:url('chunks/assets/font_9b598a3a1ef5f668505c565d.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_4a2b4e3fd28865b314cb0282.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_f3dec5c4881563fa0dcab0aa.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_55a529562d4b70c5f7a73b55.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00397;src:url('chunks/assets/font_bef77d3f3312923ef73c8da3.woff2')format("woff");}.ff6_c00397{font-family:ff6_c00397;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_c00397;src:url('chunks/assets/font_43b4e76900a3b40572e60a73.woff2')format("woff");}.ff7_c00397{font-family:ff7_c00397;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.lsf_c00397{letter-spacing:-1.692000px;}
.ls15_c00397{letter-spacing:-1.512000px;}
.ls16_c00397{letter-spacing:-1.440000px;}
.lsc_c00397{letter-spacing:-1.386000px;}
.ls11_c00397{letter-spacing:-0.696000px;}
.lse_c00397{letter-spacing:-0.618000px;}
.ls10_c00397{letter-spacing:-0.397200px;}
.ls9_c00397{letter-spacing:-0.291000px;}
.lsb_c00397{letter-spacing:-0.253200px;}
.lsa_c00397{letter-spacing:-0.219000px;}
.lsd_c00397{letter-spacing:-0.069000px;}
.ls7_c00397{letter-spacing:0.000000px;}
.ls12_c00397{letter-spacing:0.020400px;}
.ls1_c00397{letter-spacing:0.054720px;}
.ls2_c00397{letter-spacing:0.057600px;}
.ls8_c00397{letter-spacing:0.126600px;}
.ls3_c00397{letter-spacing:0.181440px;}
.ls13_c00397{letter-spacing:0.184200px;}
.ls6_c00397{letter-spacing:0.417600px;}
.ls14_c00397{letter-spacing:0.498000px;}
.ls4_c00397{letter-spacing:0.498240px;}
.ls0_c00397{letter-spacing:0.720000px;}
.ls5_c00397{letter-spacing:0.732000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00397{word-spacing:-18.000000px;}
.ws8_c00397{word-spacing:-14.178000px;}
.ws1_c00397{word-spacing:-13.806600px;}
.ws0_c00397{word-spacing:-13.680000px;}
.wsa_c00397{word-spacing:-13.611000px;}
.ws3_c00397{word-spacing:-13.461000px;}
.ws2_c00397{word-spacing:-13.389000px;}
.ws6_c00397{word-spacing:-13.282800px;}
.ws4_c00397{word-spacing:-13.062000px;}
.ws7_c00397{word-spacing:-12.984000px;}
.ws9_c00397{word-spacing:-12.168000px;}
.ws5_c00397{word-spacing:-11.988000px;}
.wsc_c00397{word-spacing:0.000000px;}
._f_c00397{margin-left:-2.954139px;}
._0_c00397{margin-left:-1.860589px;}
._2_c00397{width:1.039789px;}
._3_c00397{width:2.259840px;}
._5_c00397{width:3.268648px;}
._b_c00397{width:4.432708px;}
._c_c00397{width:5.998560px;}
._d_c00397{width:7.116589px;}
._e_c00397{width:8.807411px;}
._10_c00397{width:19.227099px;}
._12_c00397{width:20.253011px;}
._11_c00397{width:21.412800px;}
._8_c00397{width:603.426046px;}
._6_c00397{width:692.000446px;}
._7_c00397{width:706.567747px;}
._9_c00397{width:709.786758px;}
._4_c00397{width:745.839057px;}
._1_c00397{width:808.217326px;}
._a_c00397{width:2258.076000px;}
.fc1_c00397{color:transparent;}
.fc0_c00397{color:rgb(0,0,0);}
.fs1_c00397{font-size:54.720000px;}
.fs0_c00397{font-size:72.000000px;}
.y0_c00397{bottom:0.000000px;}
.y25_c00397{bottom:11.520000px;}
.y24_c00397{bottom:34.560000px;}
.y23_c00397{bottom:57.960000px;}
.y3_c00397{bottom:57.996000px;}
.y2_c00397{bottom:78.876000px;}
.y22_c00397{bottom:81.360000px;}
.y21_c00397{bottom:104.445000px;}
.y20_c00397{bottom:127.845000px;}
.y2b_c00397{bottom:147.636000px;}
.y1f_c00397{bottom:151.245000px;}
.y1e_c00397{bottom:174.285000px;}
.y2a_c00397{bottom:178.995000px;}
.y1d_c00397{bottom:197.685000px;}
.y29_c00397{bottom:209.955000px;}
.y1c_c00397{bottom:221.115000px;}
.y28_c00397{bottom:240.915000px;}
.y1b_c00397{bottom:244.155000px;}
.y1a_c00397{bottom:267.555000px;}
.y27_c00397{bottom:271.905000px;}
.y19_c00397{bottom:290.955000px;}
.y26_c00397{bottom:299.625000px;}
.y4_c00397{bottom:312.225000px;}
.y18_c00397{bottom:314.355000px;}
.y17_c00397{bottom:337.425000px;}
.y16_c00397{bottom:360.825000px;}
.y15_c00397{bottom:384.225000px;}
.y14_c00397{bottom:407.265000px;}
.y13_c00397{bottom:430.665000px;}
.y12_c00397{bottom:454.110000px;}
.y11_c00397{bottom:477.150000px;}
.y10_c00397{bottom:500.550000px;}
.yf_c00397{bottom:523.950000px;}
.ye_c00397{bottom:546.990000px;}
.yd_c00397{bottom:570.390000px;}
.yc_c00397{bottom:593.820000px;}
.yb_c00397{bottom:616.860000px;}
.ya_c00397{bottom:640.260000px;}
.y9_c00397{bottom:663.660000px;}
.y8_c00397{bottom:686.700000px;}
.y7_c00397{bottom:710.145000px;}
.y6_c00397{bottom:733.545000px;}
.y5_c00397{bottom:756.945000px;}
.y1_c00397{bottom:1117.770000px;}
.h3_c00397{height:53.704687px;}
.h4_c00397{height:55.147500px;}
.h1_c00397{height:64.546875px;}
.h5_c00397{height:70.664062px;}
.h2_c00397{height:768.810000px;}
.h0_c00397{height:1188.000000px;}
.w1_c00397{width:323.415000px;}
.w0_c00397{width:918.000000px;}
.x0_c00397{left:0.000000px;}
.x4_c00397{left:7.546500px;}
.x3_c00397{left:119.929500px;}
.x1_c00397{left:127.476000px;}
.x5_c00397{left:178.635000px;}
.x2_c00397{left:445.500000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.lsf_c00397{letter-spacing:-1.504000pt;}
.ls15_c00397{letter-spacing:-1.344000pt;}
.ls16_c00397{letter-spacing:-1.280000pt;}
.lsc_c00397{letter-spacing:-1.232000pt;}
.ls11_c00397{letter-spacing:-0.618667pt;}
.lse_c00397{letter-spacing:-0.549333pt;}
.ls10_c00397{letter-spacing:-0.353067pt;}
.ls9_c00397{letter-spacing:-0.258667pt;}
.lsb_c00397{letter-spacing:-0.225067pt;}
.lsa_c00397{letter-spacing:-0.194667pt;}
.lsd_c00397{letter-spacing:-0.061333pt;}
.ls7_c00397{letter-spacing:0.000000pt;}
.ls12_c00397{letter-spacing:0.018133pt;}
.ls1_c00397{letter-spacing:0.048640pt;}
.ls2_c00397{letter-spacing:0.051200pt;}
.ls8_c00397{letter-spacing:0.112533pt;}
.ls3_c00397{letter-spacing:0.161280pt;}
.ls13_c00397{letter-spacing:0.163733pt;}
.ls6_c00397{letter-spacing:0.371200pt;}
.ls14_c00397{letter-spacing:0.442667pt;}
.ls4_c00397{letter-spacing:0.442880pt;}
.ls0_c00397{letter-spacing:0.640000pt;}
.ls5_c00397{letter-spacing:0.650667pt;}
.wsb_c00397{word-spacing:-16.000000pt;}
.ws8_c00397{word-spacing:-12.602667pt;}
.ws1_c00397{word-spacing:-12.272533pt;}
.ws0_c00397{word-spacing:-12.160000pt;}
.wsa_c00397{word-spacing:-12.098667pt;}
.ws3_c00397{word-spacing:-11.965333pt;}
.ws2_c00397{word-spacing:-11.901333pt;}
.ws6_c00397{word-spacing:-11.806933pt;}
.ws4_c00397{word-spacing:-11.610667pt;}
.ws7_c00397{word-spacing:-11.541333pt;}
.ws9_c00397{word-spacing:-10.816000pt;}
.ws5_c00397{word-spacing:-10.656000pt;}
.wsc_c00397{word-spacing:0.000000pt;}
._f_c00397{margin-left:-2.625901pt;}
._0_c00397{margin-left:-1.653857pt;}
._2_c00397{width:0.924257pt;}
._3_c00397{width:2.008747pt;}
._5_c00397{width:2.905465pt;}
._b_c00397{width:3.940185pt;}
._c_c00397{width:5.332053pt;}
._d_c00397{width:6.325857pt;}
._e_c00397{width:7.828809pt;}
._10_c00397{width:17.090755pt;}
._12_c00397{width:18.002676pt;}
._11_c00397{width:19.033600pt;}
._8_c00397{width:536.378708pt;}
._6_c00397{width:615.111508pt;}
._7_c00397{width:628.060220pt;}
._9_c00397{width:630.921562pt;}
._4_c00397{width:662.968050pt;}
._1_c00397{width:718.415401pt;}
._a_c00397{width:2007.178667pt;}
.fs1_c00397{font-size:48.640000pt;}
.fs0_c00397{font-size:64.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.y25_c00397{bottom:10.240000pt;}
.y24_c00397{bottom:30.720000pt;}
.y23_c00397{bottom:51.520000pt;}
.y3_c00397{bottom:51.552000pt;}
.y2_c00397{bottom:70.112000pt;}
.y22_c00397{bottom:72.320000pt;}
.y21_c00397{bottom:92.840000pt;}
.y20_c00397{bottom:113.640000pt;}
.y2b_c00397{bottom:131.232000pt;}
.y1f_c00397{bottom:134.440000pt;}
.y1e_c00397{bottom:154.920000pt;}
.y2a_c00397{bottom:159.106667pt;}
.y1d_c00397{bottom:175.720000pt;}
.y29_c00397{bottom:186.626667pt;}
.y1c_c00397{bottom:196.546667pt;}
.y28_c00397{bottom:214.146667pt;}
.y1b_c00397{bottom:217.026667pt;}
.y1a_c00397{bottom:237.826667pt;}
.y27_c00397{bottom:241.693333pt;}
.y19_c00397{bottom:258.626667pt;}
.y26_c00397{bottom:266.333333pt;}
.y4_c00397{bottom:277.533333pt;}
.y18_c00397{bottom:279.426667pt;}
.y17_c00397{bottom:299.933333pt;}
.y16_c00397{bottom:320.733333pt;}
.y15_c00397{bottom:341.533333pt;}
.y14_c00397{bottom:362.013333pt;}
.y13_c00397{bottom:382.813333pt;}
.y12_c00397{bottom:403.653333pt;}
.y11_c00397{bottom:424.133333pt;}
.y10_c00397{bottom:444.933333pt;}
.yf_c00397{bottom:465.733333pt;}
.ye_c00397{bottom:486.213333pt;}
.yd_c00397{bottom:507.013333pt;}
.yc_c00397{bottom:527.840000pt;}
.yb_c00397{bottom:548.320000pt;}
.ya_c00397{bottom:569.120000pt;}
.y9_c00397{bottom:589.920000pt;}
.y8_c00397{bottom:610.400000pt;}
.y7_c00397{bottom:631.240000pt;}
.y6_c00397{bottom:652.040000pt;}
.y5_c00397{bottom:672.840000pt;}
.y1_c00397{bottom:993.573333pt;}
.h3_c00397{height:47.737500pt;}
.h4_c00397{height:49.020000pt;}
.h1_c00397{height:57.375000pt;}
.h5_c00397{height:62.812500pt;}
.h2_c00397{height:683.386667pt;}
.h0_c00397{height:1056.000000pt;}
.w1_c00397{width:287.480000pt;}
.w0_c00397{width:816.000000pt;}
.x0_c00397{left:0.000000pt;}
.x4_c00397{left:6.708000pt;}
.x3_c00397{left:106.604000pt;}
.x1_c00397{left:113.312000pt;}
.x5_c00397{left:158.786667pt;}
.x2_c00397{left:396.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_c00398 {
    display:none;
  }
  .loading-indicator_c00398.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00398 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00398 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00398" -> "#page-container .classname_c00398")
 */
.pf_c00398 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00398 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00398 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00398 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00398 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00398 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00398 {overflow:visible;}
  }
}
.c_c00398 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00398 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00398:after { /* webkit #35443 */
  content: '';
}
.t_c00398:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00398 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00398 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00398 { /* info for Javascript */
  display:none;
}
.l_c00398 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00398 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00398 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00398:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00398;src:url('chunks/assets/font_986eab045562af542f8dc244.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_be5cec9bfe3e514d20e87b6c.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_312b3c800db9cbf342be838a.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_08597b6bd82db28f6f1509ff.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;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_c00398;src:url('chunks/assets/font_c1afddca8359d2be4a2e5e89.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00398;src:url('chunks/assets/font_3fc1f0046a261a3c121d861e.woff2')format("woff");}.ff6_c00398{font-family:ff6_c00398;line-height:1.117188;font-style:normal;font-weight: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_c00398;src:url('chunks/assets/font_dc9aa8350effd69258a5d259.woff2')format("woff");}.ff7_c00398{font-family:ff7_c00398;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls4_c00398{letter-spacing:-1.440000px;}
.ls5_c00398{letter-spacing:-0.486600px;}
.ls3_c00398{letter-spacing:0.000000px;}
.ls2_c00398{letter-spacing:0.720000px;}
.ls0_c00398{letter-spacing:1.440000px;}
.ls1_c00398{letter-spacing:9.360000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00398{word-spacing:-18.000000px;}
.ws1_c00398{word-spacing:-15.120000px;}
.ws3_c00398{word-spacing:-14.633400px;}
.ws2_c00398{word-spacing:-13.680000px;}
.ws4_c00398{word-spacing:0.000000px;}
._c_c00398{margin-left:-3.168000px;}
._0_c00398{margin-left:-2.160000px;}
._3_c00398{margin-left:-1.008000px;}
._2_c00398{width:1.368000px;}
._5_c00398{width:2.736000px;}
._7_c00398{width:4.091976px;}
._d_c00398{width:5.256000px;}
._e_c00398{width:6.336000px;}
._b_c00398{width:7.344000px;}
._8_c00398{width:8.928000px;}
._a_c00398{width:10.080000px;}
._9_c00398{width:11.160000px;}
._4_c00398{width:12.744000px;}
._1_c00398{width:14.256000px;}
._6_c00398{width:15.336000px;}
._16_c00398{width:16.920000px;}
._19_c00398{width:19.524000px;}
._15_c00398{width:21.096000px;}
._10_c00398{width:22.536000px;}
._f_c00398{width:24.480000px;}
._1b_c00398{width:25.776000px;}
._1a_c00398{width:27.288000px;}
._18_c00398{width:28.512000px;}
._17_c00398{width:30.096000px;}
._11_c00398{width:34.488000px;}
._12_c00398{width:35.568000px;}
._13_c00398{width:36.864000px;}
._14_c00398{width:38.160000px;}
.fc0_c00398{color:rgb(0,0,0);}
.fs2_c00398{font-size:38.880000px;}
.fs1_c00398{font-size:47.520000px;}
.fs3_c00398{font-size:60.480000px;}
.fs0_c00398{font-size:72.000000px;}
.y0_c00398{bottom:0.000000px;}
.y3_c00398{bottom:57.996000px;}
.y2_c00398{bottom:78.876000px;}
.y27_c00398{bottom:130.716000px;}
.y26_c00398{bottom:137.556000px;}
.y25_c00398{bottom:147.996000px;}
.y24_c00398{bottom:165.315000px;}
.y23_c00398{bottom:182.595000px;}
.y22_c00398{bottom:189.435000px;}
.y21_c00398{bottom:200.235000px;}
.y1f_c00398{bottom:239.835000px;}
.y20_c00398{bottom:248.115000px;}
.y1e_c00398{bottom:271.155000px;}
.y1d_c00398{bottom:302.145000px;}
.y1c_c00398{bottom:333.105000px;}
.y1a_c00398{bottom:364.065000px;}
.y1b_c00398{bottom:372.345000px;}
.y19_c00398{bottom:395.070000px;}
.y18_c00398{bottom:435.390000px;}
.y17_c00398{bottom:466.350000px;}
.y16_c00398{bottom:497.310000px;}
.y15_c00398{bottom:528.300000px;}
.y14_c00398{bottom:559.620000px;}
.y13_c00398{bottom:590.580000px;}
.y12_c00398{bottom:621.540000px;}
.y11_c00398{bottom:661.530000px;}
.y10_c00398{bottom:692.850000px;}
.yf_c00398{bottom:723.810000px;}
.ye_c00398{bottom:754.770000px;}
.yd_c00398{bottom:785.775000px;}
.yc_c00398{bottom:817.095000px;}
.yb_c00398{bottom:848.055000px;}
.ya_c00398{bottom:879.015000px;}
.y9_c00398{bottom:910.005000px;}
.y8_c00398{bottom:941.325000px;}
.y7_c00398{bottom:972.285000px;}
.y6_c00398{bottom:1003.245000px;}
.y5_c00398{bottom:1034.250000px;}
.y4_c00398{bottom:1065.570000px;}
.y1_c00398{bottom:1117.770000px;}
.h5_c00398{height:34.855313px;}
.h4_c00398{height:46.638281px;}
.h6_c00398{height:54.219375px;}
.h7_c00398{height:54.514688px;}
.h1_c00398{height:64.546875px;}
.h2_c00398{height:70.664062px;}
.h3_c00398{height:1187.995500px;}
.h0_c00398{height:1188.000000px;}
.w1_c00398{width:917.997000px;}
.w0_c00398{width:918.000000px;}
.x0_c00398{left:0.000000px;}
.x1_c00398{left:127.476000px;}
.x9_c00398{left:142.596000px;}
.x3_c00398{left:178.635000px;}
.x8_c00398{left:343.590000px;}
.x2_c00398{left:445.500000px;}
.x4_c00398{left:521.457000px;}
.x5_c00398{left:539.850000px;}
.x6_c00398{left:728.562000px;}
.x7_c00398{left:746.925000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls4_c00398{letter-spacing:-1.280000pt;}
.ls5_c00398{letter-spacing:-0.432533pt;}
.ls3_c00398{letter-spacing:0.000000pt;}
.ls2_c00398{letter-spacing:0.640000pt;}
.ls0_c00398{letter-spacing:1.280000pt;}
.ls1_c00398{letter-spacing:8.320000pt;}
.ws0_c00398{word-spacing:-16.000000pt;}
.ws1_c00398{word-spacing:-13.440000pt;}
.ws3_c00398{word-spacing:-13.007467pt;}
.ws2_c00398{word-spacing:-12.160000pt;}
.ws4_c00398{word-spacing:0.000000pt;}
._c_c00398{margin-left:-2.816000pt;}
._0_c00398{margin-left:-1.920000pt;}
._3_c00398{margin-left:-0.896000pt;}
._2_c00398{width:1.216000pt;}
._5_c00398{width:2.432000pt;}
._7_c00398{width:3.637312pt;}
._d_c00398{width:4.672000pt;}
._e_c00398{width:5.632000pt;}
._b_c00398{width:6.528000pt;}
._8_c00398{width:7.936000pt;}
._a_c00398{width:8.960000pt;}
._9_c00398{width:9.920000pt;}
._4_c00398{width:11.328000pt;}
._1_c00398{width:12.672000pt;}
._6_c00398{width:13.632000pt;}
._16_c00398{width:15.040000pt;}
._19_c00398{width:17.354667pt;}
._15_c00398{width:18.752000pt;}
._10_c00398{width:20.032000pt;}
._f_c00398{width:21.760000pt;}
._1b_c00398{width:22.912000pt;}
._1a_c00398{width:24.256000pt;}
._18_c00398{width:25.344000pt;}
._17_c00398{width:26.752000pt;}
._11_c00398{width:30.656000pt;}
._12_c00398{width:31.616000pt;}
._13_c00398{width:32.768000pt;}
._14_c00398{width:33.920000pt;}
.fs2_c00398{font-size:34.560000pt;}
.fs1_c00398{font-size:42.240000pt;}
.fs3_c00398{font-size:53.760000pt;}
.fs0_c00398{font-size:64.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.y3_c00398{bottom:51.552000pt;}
.y2_c00398{bottom:70.112000pt;}
.y27_c00398{bottom:116.192000pt;}
.y26_c00398{bottom:122.272000pt;}
.y25_c00398{bottom:131.552000pt;}
.y24_c00398{bottom:146.946667pt;}
.y23_c00398{bottom:162.306667pt;}
.y22_c00398{bottom:168.386667pt;}
.y21_c00398{bottom:177.986667pt;}
.y1f_c00398{bottom:213.186667pt;}
.y20_c00398{bottom:220.546667pt;}
.y1e_c00398{bottom:241.026667pt;}
.y1d_c00398{bottom:268.573333pt;}
.y1c_c00398{bottom:296.093333pt;}
.y1a_c00398{bottom:323.613333pt;}
.y1b_c00398{bottom:330.973333pt;}
.y19_c00398{bottom:351.173333pt;}
.y18_c00398{bottom:387.013333pt;}
.y17_c00398{bottom:414.533333pt;}
.y16_c00398{bottom:442.053333pt;}
.y15_c00398{bottom:469.600000pt;}
.y14_c00398{bottom:497.440000pt;}
.y13_c00398{bottom:524.960000pt;}
.y12_c00398{bottom:552.480000pt;}
.y11_c00398{bottom:588.026667pt;}
.y10_c00398{bottom:615.866667pt;}
.yf_c00398{bottom:643.386667pt;}
.ye_c00398{bottom:670.906667pt;}
.yd_c00398{bottom:698.466667pt;}
.yc_c00398{bottom:726.306667pt;}
.yb_c00398{bottom:753.826667pt;}
.ya_c00398{bottom:781.346667pt;}
.y9_c00398{bottom:808.893333pt;}
.y8_c00398{bottom:836.733333pt;}
.y7_c00398{bottom:864.253333pt;}
.y6_c00398{bottom:891.773333pt;}
.y5_c00398{bottom:919.333333pt;}
.y4_c00398{bottom:947.173333pt;}
.y1_c00398{bottom:993.573333pt;}
.h5_c00398{height:30.982500pt;}
.h4_c00398{height:41.456250pt;}
.h6_c00398{height:48.195000pt;}
.h7_c00398{height:48.457500pt;}
.h1_c00398{height:57.375000pt;}
.h2_c00398{height:62.812500pt;}
.h3_c00398{height:1055.996000pt;}
.h0_c00398{height:1056.000000pt;}
.w1_c00398{width:815.997333pt;}
.w0_c00398{width:816.000000pt;}
.x0_c00398{left:0.000000pt;}
.x1_c00398{left:113.312000pt;}
.x9_c00398{left:126.752000pt;}
.x3_c00398{left:158.786667pt;}
.x8_c00398{left:305.413333pt;}
.x2_c00398{left:396.000000pt;}
.x4_c00398{left:463.517333pt;}
.x5_c00398{left:479.866667pt;}
.x6_c00398{left:647.610667pt;}
.x7_c00398{left:663.933333pt;}
}





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

.ir_c00399:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00399;src:url('chunks/assets/font_5edf6a81f03fd43f4be04ee1.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_7e334e7d2e19cdd1dedbad38.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_ba5a869fe77020f77b801b8d.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;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_c00399;src:url('chunks/assets/font_f74eb75a4e7e737de37ffc5e.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_19602d47a1c0738e2c2c9075.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00399;src:url('chunks/assets/font_ffc68406e5f7120e33fe4a6f.woff2')format("woff");}.ff6_c00399{font-family:ff6_c00399;line-height:1.117188;font-style:normal;font-weight: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_c00399;src:url('chunks/assets/font_896af646b80af3a2dfb27ace.woff2')format("woff");}.ff7_c00399{font-family:ff7_c00399;line-height:1.117188;font-style:normal;font-weight: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_c00399;src:url('chunks/assets/font_e82534c392cdaa5624bf073d.woff2')format("woff");}.ff8_c00399{font-family:ff8_c00399;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls4_c00399{letter-spacing:0.000000px;}
.ls0_c00399{letter-spacing:0.120000px;}
.ls5_c00399{letter-spacing:0.288000px;}
.ls3_c00399{letter-spacing:0.506880px;}
.ls2_c00399{letter-spacing:0.720000px;}
.ls1_c00399{letter-spacing:18.000000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00399{word-spacing:-72.000000px;}
.ws3_c00399{word-spacing:-60.480000px;}
.ws0_c00399{word-spacing:-18.000000px;}
.ws2_c00399{word-spacing:-15.120000px;}
.ws4_c00399{word-spacing:0.000000px;}
._2_c00399{margin-left:-2.808000px;}
._0_c00399{margin-left:-1.224000px;}
._4_c00399{width:1.080000px;}
._1_c00399{width:2.232000px;}
._8_c00399{width:4.104000px;}
._9_c00399{width:5.112000px;}
._3_c00399{width:6.984000px;}
._d_c00399{width:8.292000px;}
._5_c00399{width:9.432000px;}
._e_c00399{width:10.620000px;}
._f_c00399{width:11.964000px;}
._17_c00399{width:13.092000px;}
._13_c00399{width:14.760000px;}
._14_c00399{width:16.632000px;}
._10_c00399{width:19.452024px;}
._12_c00399{width:20.507976px;}
._11_c00399{width:21.527856px;}
._6_c00399{width:23.256000px;}
._7_c00399{width:24.480000px;}
._c_c00399{width:30.576000px;}
._a_c00399{width:31.968000px;}
._b_c00399{width:33.432000px;}
._16_c00399{width:39.168000px;}
._15_c00399{width:40.320000px;}
.fc0_c00399{color:rgb(0,0,0);}
.fs3_c00399{font-size:38.880000px;}
.fs1_c00399{font-size:47.520000px;}
.fs2_c00399{font-size:60.480000px;}
.fs0_c00399{font-size:72.000000px;}
.y0_c00399{bottom:0.000000px;}
.y3_c00399{bottom:57.996000px;}
.y2_c00399{bottom:78.876000px;}
.y28_c00399{bottom:130.716000px;}
.y27_c00399{bottom:147.996000px;}
.y26_c00399{bottom:165.315000px;}
.y25_c00399{bottom:182.595000px;}
.y24_c00399{bottom:199.515000px;}
.y23_c00399{bottom:216.795000px;}
.y22_c00399{bottom:223.635000px;}
.y21_c00399{bottom:234.075000px;}
.y20_c00399{bottom:240.915000px;}
.y1f_c00399{bottom:252.075000px;}
.y1e_c00399{bottom:302.145000px;}
.y1d_c00399{bottom:333.105000px;}
.y1c_c00399{bottom:364.065000px;}
.y1b_c00399{bottom:395.070000px;}
.y1a_c00399{bottom:426.390000px;}
.y19_c00399{bottom:457.350000px;}
.y18_c00399{bottom:488.310000px;}
.y16_c00399{bottom:519.300000px;}
.y17_c00399{bottom:527.580000px;}
.y15_c00399{bottom:550.620000px;}
.y14_c00399{bottom:581.580000px;}
.y13_c00399{bottom:612.540000px;}
.y12_c00399{bottom:643.530000px;}
.y11_c00399{bottom:674.850000px;}
.y10_c00399{bottom:705.810000px;}
.yf_c00399{bottom:736.770000px;}
.ye_c00399{bottom:776.775000px;}
.yd_c00399{bottom:808.095000px;}
.yc_c00399{bottom:839.055000px;}
.yb_c00399{bottom:870.015000px;}
.ya_c00399{bottom:901.005000px;}
.y9_c00399{bottom:932.325000px;}
.y8_c00399{bottom:963.285000px;}
.y7_c00399{bottom:1003.245000px;}
.y6_c00399{bottom:1034.250000px;}
.y4_c00399{bottom:1065.570000px;}
.y5_c00399{bottom:1073.850000px;}
.y1_c00399{bottom:1117.770000px;}
.h5_c00399{height:34.855313px;}
.h4_c00399{height:46.638281px;}
.h7_c00399{height:54.219375px;}
.h6_c00399{height:54.514688px;}
.h1_c00399{height:64.546875px;}
.h2_c00399{height:70.664062px;}
.h3_c00399{height:1187.995500px;}
.h0_c00399{height:1188.000000px;}
.w1_c00399{width:917.997000px;}
.w0_c00399{width:918.000000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:127.476000px;}
.x9_c00399{left:142.596000px;}
.x5_c00399{left:178.635000px;}
.x8_c00399{left:343.590000px;}
.x3_c00399{left:391.467000px;}
.x4_c00399{left:409.830000px;}
.x2_c00399{left:445.500000px;}
.x6_c00399{left:585.927000px;}
.x7_c00399{left:604.290000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls4_c00399{letter-spacing:0.000000pt;}
.ls0_c00399{letter-spacing:0.106667pt;}
.ls5_c00399{letter-spacing:0.256000pt;}
.ls3_c00399{letter-spacing:0.450560pt;}
.ls2_c00399{letter-spacing:0.640000pt;}
.ls1_c00399{letter-spacing:16.000000pt;}
.ws1_c00399{word-spacing:-64.000000pt;}
.ws3_c00399{word-spacing:-53.760000pt;}
.ws0_c00399{word-spacing:-16.000000pt;}
.ws2_c00399{word-spacing:-13.440000pt;}
.ws4_c00399{word-spacing:0.000000pt;}
._2_c00399{margin-left:-2.496000pt;}
._0_c00399{margin-left:-1.088000pt;}
._4_c00399{width:0.960000pt;}
._1_c00399{width:1.984000pt;}
._8_c00399{width:3.648000pt;}
._9_c00399{width:4.544000pt;}
._3_c00399{width:6.208000pt;}
._d_c00399{width:7.370667pt;}
._5_c00399{width:8.384000pt;}
._e_c00399{width:9.440000pt;}
._f_c00399{width:10.634667pt;}
._17_c00399{width:11.637333pt;}
._13_c00399{width:13.120000pt;}
._14_c00399{width:14.784000pt;}
._10_c00399{width:17.290688pt;}
._12_c00399{width:18.229312pt;}
._11_c00399{width:19.135872pt;}
._6_c00399{width:20.672000pt;}
._7_c00399{width:21.760000pt;}
._c_c00399{width:27.178667pt;}
._a_c00399{width:28.416000pt;}
._b_c00399{width:29.717333pt;}
._16_c00399{width:34.816000pt;}
._15_c00399{width:35.840000pt;}
.fs3_c00399{font-size:34.560000pt;}
.fs1_c00399{font-size:42.240000pt;}
.fs2_c00399{font-size:53.760000pt;}
.fs0_c00399{font-size:64.000000pt;}
.y0_c00399{bottom:0.000000pt;}
.y3_c00399{bottom:51.552000pt;}
.y2_c00399{bottom:70.112000pt;}
.y28_c00399{bottom:116.192000pt;}
.y27_c00399{bottom:131.552000pt;}
.y26_c00399{bottom:146.946667pt;}
.y25_c00399{bottom:162.306667pt;}
.y24_c00399{bottom:177.346667pt;}
.y23_c00399{bottom:192.706667pt;}
.y22_c00399{bottom:198.786667pt;}
.y21_c00399{bottom:208.066667pt;}
.y20_c00399{bottom:214.146667pt;}
.y1f_c00399{bottom:224.066667pt;}
.y1e_c00399{bottom:268.573333pt;}
.y1d_c00399{bottom:296.093333pt;}
.y1c_c00399{bottom:323.613333pt;}
.y1b_c00399{bottom:351.173333pt;}
.y1a_c00399{bottom:379.013333pt;}
.y19_c00399{bottom:406.533333pt;}
.y18_c00399{bottom:434.053333pt;}
.y16_c00399{bottom:461.600000pt;}
.y17_c00399{bottom:468.960000pt;}
.y15_c00399{bottom:489.440000pt;}
.y14_c00399{bottom:516.960000pt;}
.y13_c00399{bottom:544.480000pt;}
.y12_c00399{bottom:572.026667pt;}
.y11_c00399{bottom:599.866667pt;}
.y10_c00399{bottom:627.386667pt;}
.yf_c00399{bottom:654.906667pt;}
.ye_c00399{bottom:690.466667pt;}
.yd_c00399{bottom:718.306667pt;}
.yc_c00399{bottom:745.826667pt;}
.yb_c00399{bottom:773.346667pt;}
.ya_c00399{bottom:800.893333pt;}
.y9_c00399{bottom:828.733333pt;}
.y8_c00399{bottom:856.253333pt;}
.y7_c00399{bottom:891.773333pt;}
.y6_c00399{bottom:919.333333pt;}
.y4_c00399{bottom:947.173333pt;}
.y5_c00399{bottom:954.533333pt;}
.y1_c00399{bottom:993.573333pt;}
.h5_c00399{height:30.982500pt;}
.h4_c00399{height:41.456250pt;}
.h7_c00399{height:48.195000pt;}
.h6_c00399{height:48.457500pt;}
.h1_c00399{height:57.375000pt;}
.h2_c00399{height:62.812500pt;}
.h3_c00399{height:1055.996000pt;}
.h0_c00399{height:1056.000000pt;}
.w1_c00399{width:815.997333pt;}
.w0_c00399{width:816.000000pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:113.312000pt;}
.x9_c00399{left:126.752000pt;}
.x5_c00399{left:158.786667pt;}
.x8_c00399{left:305.413333pt;}
.x3_c00399{left:347.970667pt;}
.x4_c00399{left:364.293333pt;}
.x2_c00399{left:396.000000pt;}
.x6_c00399{left:520.824000pt;}
.x7_c00399{left:537.146667pt;}
}





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

.ir_c00400:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00400;src:url('chunks/assets/font_1e4172ea313749b76ada2a46.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_9bd36ff8a0e3d44acc073999.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_4f4278c16f255c839cc789a9.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_9d291d7498455da2fff8e949.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;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_c00400;src:url('chunks/assets/font_6014fbbeb8085b7a0eebba4b.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00400;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:1.117188;font-style:normal;font-weight: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_c00400;src:url('chunks/assets/font_77deb91ebcfa81b0c4ae3e76.woff2')format("woff");}.ff7_c00400{font-family:ff7_c00400;line-height:1.117188;font-style:normal;font-weight: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_c00400;src:url('chunks/assets/font_896af646b80af3a2dfb27ace.woff2')format("woff");}.ff8_c00400{font-family:ff8_c00400;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.lsa_c00400{letter-spacing:-2.880000px;}
.lsb_c00400{letter-spacing:-1.440000px;}
.ls6_c00400{letter-spacing:-1.296000px;}
.ls9_c00400{letter-spacing:-0.288000px;}
.ls5_c00400{letter-spacing:0.000000px;}
.ls8_c00400{letter-spacing:0.072000px;}
.ls7_c00400{letter-spacing:0.504000px;}
.ls4_c00400{letter-spacing:0.506880px;}
.ls2_c00400{letter-spacing:0.720000px;}
.ls0_c00400{letter-spacing:3.600000px;}
.ls1_c00400{letter-spacing:7.920000px;}
.ls3_c00400{letter-spacing:25.200000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00400{word-spacing:-72.000000px;}
.ws1_c00400{word-spacing:-18.504000px;}
.ws4_c00400{word-spacing:-18.072000px;}
.ws2_c00400{word-spacing:-18.000000px;}
.ws3_c00400{word-spacing:-17.712000px;}
.ws0_c00400{word-spacing:-16.704000px;}
.ws6_c00400{word-spacing:-15.120000px;}
.ws7_c00400{word-spacing:0.000000px;}
._3_c00400{margin-left:-2.711952px;}
._0_c00400{margin-left:-1.584000px;}
._1_c00400{width:1.236024px;}
._5_c00400{width:2.303856px;}
._a_c00400{width:3.492216px;}
._9_c00400{width:4.620384px;}
._b_c00400{width:5.880096px;}
._10_c00400{width:7.823808px;}
._11_c00400{width:9.024192px;}
._2_c00400{width:10.847952px;}
._4_c00400{width:12.456000px;}
._7_c00400{width:13.584024px;}
._6_c00400{width:14.711904px;}
._8_c00400{width:16.739904px;}
._c_c00400{width:19.908072px;}
._f_c00400{width:20.927520px;}
._e_c00400{width:22.127904px;}
._12_c00400{width:23.267592px;}
._d_c00400{width:24.515928px;}
._13_c00400{width:25.908024px;}
.fc0_c00400{color:rgb(0,0,0);}
.fs3_c00400{font-size:38.880000px;}
.fs1_c00400{font-size:47.520000px;}
.fs2_c00400{font-size:60.480000px;}
.fs0_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y3_c00400{bottom:57.996000px;}
.y2_c00400{bottom:78.876000px;}
.y26_c00400{bottom:130.716000px;}
.y25_c00400{bottom:147.996000px;}
.y24_c00400{bottom:154.875000px;}
.y23_c00400{bottom:165.315000px;}
.y22_c00400{bottom:172.155000px;}
.y21_c00400{bottom:182.955000px;}
.y20_c00400{bottom:230.835000px;}
.y1f_c00400{bottom:262.155000px;}
.y1d_c00400{bottom:293.145000px;}
.y1e_c00400{bottom:301.425000px;}
.y1c_c00400{bottom:324.105000px;}
.y1b_c00400{bottom:355.065000px;}
.y1a_c00400{bottom:395.070000px;}
.y19_c00400{bottom:426.390000px;}
.y18_c00400{bottom:457.350000px;}
.y17_c00400{bottom:488.310000px;}
.y15_c00400{bottom:519.300000px;}
.y16_c00400{bottom:527.580000px;}
.y14_c00400{bottom:550.620000px;}
.y13_c00400{bottom:581.580000px;}
.y12_c00400{bottom:612.540000px;}
.y11_c00400{bottom:643.530000px;}
.y10_c00400{bottom:674.850000px;}
.yf_c00400{bottom:705.810000px;}
.ye_c00400{bottom:736.770000px;}
.yd_c00400{bottom:776.775000px;}
.yc_c00400{bottom:808.095000px;}
.yb_c00400{bottom:839.055000px;}
.ya_c00400{bottom:870.015000px;}
.y9_c00400{bottom:901.005000px;}
.y8_c00400{bottom:932.325000px;}
.y7_c00400{bottom:972.285000px;}
.y6_c00400{bottom:1003.245000px;}
.y5_c00400{bottom:1034.250000px;}
.y4_c00400{bottom:1065.570000px;}
.y1_c00400{bottom:1117.770000px;}
.h5_c00400{height:34.855313px;}
.h4_c00400{height:46.638281px;}
.h6_c00400{height:54.514688px;}
.h1_c00400{height:64.546875px;}
.h2_c00400{height:70.664062px;}
.h3_c00400{height:1187.995500px;}
.h0_c00400{height:1188.000000px;}
.w1_c00400{width:917.997000px;}
.w0_c00400{width:918.000000px;}
.x0_c00400{left:0.000000px;}
.x1_c00400{left:127.476000px;}
.x9_c00400{left:142.596000px;}
.x3_c00400{left:178.635000px;}
.x6_c00400{left:331.302000px;}
.x8_c00400{left:343.590000px;}
.x7_c00400{left:349.710000px;}
.x4_c00400{left:386.427000px;}
.x5_c00400{left:404.790000px;}
.x2_c00400{left:445.500000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.lsa_c00400{letter-spacing:-2.560000pt;}
.lsb_c00400{letter-spacing:-1.280000pt;}
.ls6_c00400{letter-spacing:-1.152000pt;}
.ls9_c00400{letter-spacing:-0.256000pt;}
.ls5_c00400{letter-spacing:0.000000pt;}
.ls8_c00400{letter-spacing:0.064000pt;}
.ls7_c00400{letter-spacing:0.448000pt;}
.ls4_c00400{letter-spacing:0.450560pt;}
.ls2_c00400{letter-spacing:0.640000pt;}
.ls0_c00400{letter-spacing:3.200000pt;}
.ls1_c00400{letter-spacing:7.040000pt;}
.ls3_c00400{letter-spacing:22.400000pt;}
.ws5_c00400{word-spacing:-64.000000pt;}
.ws1_c00400{word-spacing:-16.448000pt;}
.ws4_c00400{word-spacing:-16.064000pt;}
.ws2_c00400{word-spacing:-16.000000pt;}
.ws3_c00400{word-spacing:-15.744000pt;}
.ws0_c00400{word-spacing:-14.848000pt;}
.ws6_c00400{word-spacing:-13.440000pt;}
.ws7_c00400{word-spacing:0.000000pt;}
._3_c00400{margin-left:-2.410624pt;}
._0_c00400{margin-left:-1.408000pt;}
._1_c00400{width:1.098688pt;}
._5_c00400{width:2.047872pt;}
._a_c00400{width:3.104192pt;}
._9_c00400{width:4.107008pt;}
._b_c00400{width:5.226752pt;}
._10_c00400{width:6.954496pt;}
._11_c00400{width:8.021504pt;}
._2_c00400{width:9.642624pt;}
._4_c00400{width:11.072000pt;}
._7_c00400{width:12.074688pt;}
._6_c00400{width:13.077248pt;}
._8_c00400{width:14.879915pt;}
._c_c00400{width:17.696064pt;}
._f_c00400{width:18.602240pt;}
._e_c00400{width:19.669248pt;}
._12_c00400{width:20.682304pt;}
._d_c00400{width:21.791936pt;}
._13_c00400{width:23.029355pt;}
.fs3_c00400{font-size:34.560000pt;}
.fs1_c00400{font-size:42.240000pt;}
.fs2_c00400{font-size:53.760000pt;}
.fs0_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y3_c00400{bottom:51.552000pt;}
.y2_c00400{bottom:70.112000pt;}
.y26_c00400{bottom:116.192000pt;}
.y25_c00400{bottom:131.552000pt;}
.y24_c00400{bottom:137.666667pt;}
.y23_c00400{bottom:146.946667pt;}
.y22_c00400{bottom:153.026667pt;}
.y21_c00400{bottom:162.626667pt;}
.y20_c00400{bottom:205.186667pt;}
.y1f_c00400{bottom:233.026667pt;}
.y1d_c00400{bottom:260.573333pt;}
.y1e_c00400{bottom:267.933333pt;}
.y1c_c00400{bottom:288.093333pt;}
.y1b_c00400{bottom:315.613333pt;}
.y1a_c00400{bottom:351.173333pt;}
.y19_c00400{bottom:379.013333pt;}
.y18_c00400{bottom:406.533333pt;}
.y17_c00400{bottom:434.053333pt;}
.y15_c00400{bottom:461.600000pt;}
.y16_c00400{bottom:468.960000pt;}
.y14_c00400{bottom:489.440000pt;}
.y13_c00400{bottom:516.960000pt;}
.y12_c00400{bottom:544.480000pt;}
.y11_c00400{bottom:572.026667pt;}
.y10_c00400{bottom:599.866667pt;}
.yf_c00400{bottom:627.386667pt;}
.ye_c00400{bottom:654.906667pt;}
.yd_c00400{bottom:690.466667pt;}
.yc_c00400{bottom:718.306667pt;}
.yb_c00400{bottom:745.826667pt;}
.ya_c00400{bottom:773.346667pt;}
.y9_c00400{bottom:800.893333pt;}
.y8_c00400{bottom:828.733333pt;}
.y7_c00400{bottom:864.253333pt;}
.y6_c00400{bottom:891.773333pt;}
.y5_c00400{bottom:919.333333pt;}
.y4_c00400{bottom:947.173333pt;}
.y1_c00400{bottom:993.573333pt;}
.h5_c00400{height:30.982500pt;}
.h4_c00400{height:41.456250pt;}
.h6_c00400{height:48.457500pt;}
.h1_c00400{height:57.375000pt;}
.h2_c00400{height:62.812500pt;}
.h3_c00400{height:1055.996000pt;}
.h0_c00400{height:1056.000000pt;}
.w1_c00400{width:815.997333pt;}
.w0_c00400{width:816.000000pt;}
.x0_c00400{left:0.000000pt;}
.x1_c00400{left:113.312000pt;}
.x9_c00400{left:126.752000pt;}
.x3_c00400{left:158.786667pt;}
.x6_c00400{left:294.490667pt;}
.x8_c00400{left:305.413333pt;}
.x7_c00400{left:310.853333pt;}
.x4_c00400{left:343.490667pt;}
.x5_c00400{left:359.813333pt;}
.x2_c00400{left:396.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_c00401 {
    display:none;
  }
  .loading-indicator_c00401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00401 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00401 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00401" -> "#page-container .classname_c00401")
 */
.pf_c00401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00401 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00401 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00401 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00401 {overflow:visible;}
  }
}
.c_c00401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00401 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00401:after { /* webkit #35443 */
  content: '';
}
.t_c00401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00401 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00401 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00401 { /* info for Javascript */
  display:none;
}
.l_c00401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00401:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00401;src:url('chunks/assets/font_7915633a3748f32be8c86796.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_a1ad1004c0a2e20c5b2ab704.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_be463382ea442294f2072fc7.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;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_c00401;src:url('chunks/assets/font_f460ce23ee8b03e49fb0285a.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00401;src:url('chunks/assets/font_25f408cb4a97c1eb5d378fa3.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00401;src:url('chunks/assets/font_4453ead8d6fb642b663f614f.woff2')format("woff");}.ff6_c00401{font-family:ff6_c00401;line-height:1.117188;font-style:normal;font-weight: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_c00401;src:url('chunks/assets/font_9f24ae143cfdbe3c2782a3f2.woff2')format("woff");}.ff7_c00401{font-family:ff7_c00401;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls1e_c00401{letter-spacing:-2.880000px;}
.ls21_c00401{letter-spacing:-1.740000px;}
.ls1d_c00401{letter-spacing:-1.440000px;}
.ls17_c00401{letter-spacing:-1.416000px;}
.ls23_c00401{letter-spacing:-1.128000px;}
.ls1f_c00401{letter-spacing:-0.972000px;}
.ls15_c00401{letter-spacing:-0.912000px;}
.ls1b_c00401{letter-spacing:-0.486600px;}
.ls19_c00401{letter-spacing:-0.360000px;}
.ls1c_c00401{letter-spacing:-0.302400px;}
.ls16_c00401{letter-spacing:-0.241800px;}
.ls13_c00401{letter-spacing:0.000000px;}
.ls18_c00401{letter-spacing:0.022800px;}
.lsc_c00401{letter-spacing:0.048960px;}
.ls1a_c00401{letter-spacing:0.288000px;}
.ls1_c00401{letter-spacing:0.302400px;}
.ls22_c00401{letter-spacing:0.313800px;}
.ls6_c00401{letter-spacing:0.360000px;}
.ls20_c00401{letter-spacing:0.466800px;}
.ls3_c00401{letter-spacing:0.480000px;}
.lsf_c00401{letter-spacing:0.518400px;}
.ls11_c00401{letter-spacing:0.521280px;}
.lsb_c00401{letter-spacing:0.524160px;}
.ls14_c00401{letter-spacing:0.529800px;}
.ls12_c00401{letter-spacing:0.529920px;}
.ls8_c00401{letter-spacing:0.702720px;}
.ls0_c00401{letter-spacing:0.720000px;}
.ls2_c00401{letter-spacing:0.740310px;}
.lsa_c00401{letter-spacing:0.907200px;}
.ls4_c00401{letter-spacing:1.440000px;}
.ls7_c00401{letter-spacing:5.040000px;}
.lsd_c00401{letter-spacing:9.360000px;}
.lse_c00401{letter-spacing:9.383040px;}
.ls9_c00401{letter-spacing:10.800000px;}
.ls10_c00401{letter-spacing:10.823040px;}
.ls5_c00401{letter-spacing:18.000000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00401{word-spacing:-60.793800px;}
.ws4_c00401{word-spacing:-60.480000px;}
.wsc_c00401{word-spacing:-60.238200px;}
.ws8_c00401{word-spacing:-60.177600px;}
.wsd_c00401{word-spacing:-59.352000px;}
.ws9_c00401{word-spacing:-59.040000px;}
.wsa_c00401{word-spacing:-58.740000px;}
.ws0_c00401{word-spacing:-18.000000px;}
.ws6_c00401{word-spacing:-17.640000px;}
.ws5_c00401{word-spacing:-15.142800px;}
.ws1_c00401{word-spacing:-15.120000px;}
.ws2_c00401{word-spacing:-14.878200px;}
.ws7_c00401{word-spacing:-14.633400px;}
.ws3_c00401{word-spacing:-11.880000px;}
.wse_c00401{word-spacing:0.000000px;}
._1_c00401{margin-left:-2.736000px;}
._3_c00401{margin-left:-1.440000px;}
._0_c00401{width:1.080000px;}
._4_c00401{width:2.304000px;}
._2_c00401{width:3.528000px;}
._c_c00401{width:5.040000px;}
._a_c00401{width:6.120000px;}
._b_c00401{width:7.200000px;}
._f_c00401{width:8.449275px;}
._e_c00401{width:9.871788px;}
._d_c00401{width:11.588999px;}
._11_c00401{width:12.758985px;}
._10_c00401{width:14.187001px;}
._13_c00401{width:19.224000px;}
._14_c00401{width:21.528000px;}
._7_c00401{width:26.784000px;}
._8_c00401{width:27.864000px;}
._9_c00401{width:30.540000px;}
._12_c00401{width:31.968000px;}
._6_c00401{width:33.408000px;}
._5_c00401{width:34.920000px;}
.fc0_c00401{color:rgb(0,0,0);}
.fs3_c00401{font-size:38.880000px;}
.fs2_c00401{font-size:47.520000px;}
.fs1_c00401{font-size:60.480000px;}
.fs0_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.y3_c00401{bottom:57.996000px;}
.y2_c00401{bottom:78.876000px;}
.y2c_c00401{bottom:130.716000px;}
.y2b_c00401{bottom:147.996000px;}
.y2a_c00401{bottom:165.315000px;}
.y29_c00401{bottom:172.155000px;}
.y28_c00401{bottom:182.595000px;}
.y27_c00401{bottom:199.515000px;}
.y26_c00401{bottom:216.795000px;}
.y25_c00401{bottom:234.075000px;}
.y24_c00401{bottom:251.355000px;}
.y23_c00401{bottom:258.195000px;}
.y22_c00401{bottom:268.635000px;}
.y21_c00401{bottom:275.505000px;}
.y20_c00401{bottom:286.665000px;}
.y1f_c00401{bottom:316.545000px;}
.y1d_c00401{bottom:347.505000px;}
.y1e_c00401{bottom:355.785000px;}
.y1b_c00401{bottom:378.465000px;}
.y1c_c00401{bottom:386.745000px;}
.y1a_c00401{bottom:409.470000px;}
.y19_c00401{bottom:440.790000px;}
.y18_c00401{bottom:471.750000px;}
.y17_c00401{bottom:502.710000px;}
.y15_c00401{bottom:533.700000px;}
.y16_c00401{bottom:541.980000px;}
.y14_c00401{bottom:565.020000px;}
.y13_c00401{bottom:595.980000px;}
.y12_c00401{bottom:633.780000px;}
.y11_c00401{bottom:659.730000px;}
.y10_c00401{bottom:685.650000px;}
.yf_c00401{bottom:720.210000px;}
.ye_c00401{bottom:746.130000px;}
.yd_c00401{bottom:772.095000px;}
.yc_c00401{bottom:798.015000px;}
.yb_c00401{bottom:832.935000px;}
.ya_c00401{bottom:870.015000px;}
.y9_c00401{bottom:901.005000px;}
.y8_c00401{bottom:932.325000px;}
.y7_c00401{bottom:972.285000px;}
.y6_c00401{bottom:1003.245000px;}
.y5_c00401{bottom:1034.250000px;}
.y4_c00401{bottom:1065.570000px;}
.y1_c00401{bottom:1117.770000px;}
.h7_c00401{height:34.855313px;}
.h6_c00401{height:46.638281px;}
.h9_c00401{height:54.219375px;}
.h8_c00401{height:54.514688px;}
.h4_c00401{height:59.328281px;}
.h3_c00401{height:59.357813px;}
.h1_c00401{height:64.546875px;}
.h2_c00401{height:70.664062px;}
.h5_c00401{height:1187.995500px;}
.h0_c00401{height:1188.000000px;}
.w1_c00401{width:917.997000px;}
.w0_c00401{width:918.000000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:127.476000px;}
.xb_c00401{left:142.596000px;}
.x3_c00401{left:169.995000px;}
.xa_c00401{left:343.590000px;}
.x4_c00401{left:391.107000px;}
.x6_c00401{left:395.067000px;}
.x5_c00401{left:409.470000px;}
.x7_c00401{left:413.430000px;}
.x8_c00401{left:425.307000px;}
.x9_c00401{left:443.700000px;}
.x2_c00401{left:445.500000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls1e_c00401{letter-spacing:-2.560000pt;}
.ls21_c00401{letter-spacing:-1.546667pt;}
.ls1d_c00401{letter-spacing:-1.280000pt;}
.ls17_c00401{letter-spacing:-1.258667pt;}
.ls23_c00401{letter-spacing:-1.002667pt;}
.ls1f_c00401{letter-spacing:-0.864000pt;}
.ls15_c00401{letter-spacing:-0.810667pt;}
.ls1b_c00401{letter-spacing:-0.432533pt;}
.ls19_c00401{letter-spacing:-0.320000pt;}
.ls1c_c00401{letter-spacing:-0.268800pt;}
.ls16_c00401{letter-spacing:-0.214933pt;}
.ls13_c00401{letter-spacing:0.000000pt;}
.ls18_c00401{letter-spacing:0.020267pt;}
.lsc_c00401{letter-spacing:0.043520pt;}
.ls1a_c00401{letter-spacing:0.256000pt;}
.ls1_c00401{letter-spacing:0.268800pt;}
.ls22_c00401{letter-spacing:0.278933pt;}
.ls6_c00401{letter-spacing:0.320000pt;}
.ls20_c00401{letter-spacing:0.414933pt;}
.ls3_c00401{letter-spacing:0.426667pt;}
.lsf_c00401{letter-spacing:0.460800pt;}
.ls11_c00401{letter-spacing:0.463360pt;}
.lsb_c00401{letter-spacing:0.465920pt;}
.ls14_c00401{letter-spacing:0.470933pt;}
.ls12_c00401{letter-spacing:0.471040pt;}
.ls8_c00401{letter-spacing:0.624640pt;}
.ls0_c00401{letter-spacing:0.640000pt;}
.ls2_c00401{letter-spacing:0.658053pt;}
.lsa_c00401{letter-spacing:0.806400pt;}
.ls4_c00401{letter-spacing:1.280000pt;}
.ls7_c00401{letter-spacing:4.480000pt;}
.lsd_c00401{letter-spacing:8.320000pt;}
.lse_c00401{letter-spacing:8.340480pt;}
.ls9_c00401{letter-spacing:9.600000pt;}
.ls10_c00401{letter-spacing:9.620480pt;}
.ls5_c00401{letter-spacing:16.000000pt;}
.wsb_c00401{word-spacing:-54.038933pt;}
.ws4_c00401{word-spacing:-53.760000pt;}
.wsc_c00401{word-spacing:-53.545067pt;}
.ws8_c00401{word-spacing:-53.491200pt;}
.wsd_c00401{word-spacing:-52.757333pt;}
.ws9_c00401{word-spacing:-52.480000pt;}
.wsa_c00401{word-spacing:-52.213333pt;}
.ws0_c00401{word-spacing:-16.000000pt;}
.ws6_c00401{word-spacing:-15.680000pt;}
.ws5_c00401{word-spacing:-13.460267pt;}
.ws1_c00401{word-spacing:-13.440000pt;}
.ws2_c00401{word-spacing:-13.225067pt;}
.ws7_c00401{word-spacing:-13.007467pt;}
.ws3_c00401{word-spacing:-10.560000pt;}
.wse_c00401{word-spacing:0.000000pt;}
._1_c00401{margin-left:-2.432000pt;}
._3_c00401{margin-left:-1.280000pt;}
._0_c00401{width:0.960000pt;}
._4_c00401{width:2.048000pt;}
._2_c00401{width:3.136000pt;}
._c_c00401{width:4.480000pt;}
._a_c00401{width:5.440000pt;}
._b_c00401{width:6.400000pt;}
._f_c00401{width:7.510467pt;}
._e_c00401{width:8.774922pt;}
._d_c00401{width:10.301332pt;}
._11_c00401{width:11.341320pt;}
._10_c00401{width:12.610668pt;}
._13_c00401{width:17.088000pt;}
._14_c00401{width:19.136000pt;}
._7_c00401{width:23.808000pt;}
._8_c00401{width:24.768000pt;}
._9_c00401{width:27.146667pt;}
._12_c00401{width:28.416000pt;}
._6_c00401{width:29.696000pt;}
._5_c00401{width:31.040000pt;}
.fs3_c00401{font-size:34.560000pt;}
.fs2_c00401{font-size:42.240000pt;}
.fs1_c00401{font-size:53.760000pt;}
.fs0_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y3_c00401{bottom:51.552000pt;}
.y2_c00401{bottom:70.112000pt;}
.y2c_c00401{bottom:116.192000pt;}
.y2b_c00401{bottom:131.552000pt;}
.y2a_c00401{bottom:146.946667pt;}
.y29_c00401{bottom:153.026667pt;}
.y28_c00401{bottom:162.306667pt;}
.y27_c00401{bottom:177.346667pt;}
.y26_c00401{bottom:192.706667pt;}
.y25_c00401{bottom:208.066667pt;}
.y24_c00401{bottom:223.426667pt;}
.y23_c00401{bottom:229.506667pt;}
.y22_c00401{bottom:238.786667pt;}
.y21_c00401{bottom:244.893333pt;}
.y20_c00401{bottom:254.813333pt;}
.y1f_c00401{bottom:281.373333pt;}
.y1d_c00401{bottom:308.893333pt;}
.y1e_c00401{bottom:316.253333pt;}
.y1b_c00401{bottom:336.413333pt;}
.y1c_c00401{bottom:343.773333pt;}
.y1a_c00401{bottom:363.973333pt;}
.y19_c00401{bottom:391.813333pt;}
.y18_c00401{bottom:419.333333pt;}
.y17_c00401{bottom:446.853333pt;}
.y15_c00401{bottom:474.400000pt;}
.y16_c00401{bottom:481.760000pt;}
.y14_c00401{bottom:502.240000pt;}
.y13_c00401{bottom:529.760000pt;}
.y12_c00401{bottom:563.360000pt;}
.y11_c00401{bottom:586.426667pt;}
.y10_c00401{bottom:609.466667pt;}
.yf_c00401{bottom:640.186667pt;}
.ye_c00401{bottom:663.226667pt;}
.yd_c00401{bottom:686.306667pt;}
.yc_c00401{bottom:709.346667pt;}
.yb_c00401{bottom:740.386667pt;}
.ya_c00401{bottom:773.346667pt;}
.y9_c00401{bottom:800.893333pt;}
.y8_c00401{bottom:828.733333pt;}
.y7_c00401{bottom:864.253333pt;}
.y6_c00401{bottom:891.773333pt;}
.y5_c00401{bottom:919.333333pt;}
.y4_c00401{bottom:947.173333pt;}
.y1_c00401{bottom:993.573333pt;}
.h7_c00401{height:30.982500pt;}
.h6_c00401{height:41.456250pt;}
.h9_c00401{height:48.195000pt;}
.h8_c00401{height:48.457500pt;}
.h4_c00401{height:52.736250pt;}
.h3_c00401{height:52.762500pt;}
.h1_c00401{height:57.375000pt;}
.h2_c00401{height:62.812500pt;}
.h5_c00401{height:1055.996000pt;}
.h0_c00401{height:1056.000000pt;}
.w1_c00401{width:815.997333pt;}
.w0_c00401{width:816.000000pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:113.312000pt;}
.xb_c00401{left:126.752000pt;}
.x3_c00401{left:151.106667pt;}
.xa_c00401{left:305.413333pt;}
.x4_c00401{left:347.650667pt;}
.x6_c00401{left:351.170667pt;}
.x5_c00401{left:363.973333pt;}
.x7_c00401{left:367.493333pt;}
.x8_c00401{left:378.050667pt;}
.x9_c00401{left:394.400000pt;}
.x2_c00401{left:396.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_c00402 {
    display:none;
  }
  .loading-indicator_c00402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00402 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00402 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00402" -> "#page-container .classname_c00402")
 */
.pf_c00402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00402 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00402 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00402 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00402 {overflow:visible;}
  }
}
.c_c00402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00402 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00402:after { /* webkit #35443 */
  content: '';
}
.t_c00402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00402 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00402 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00402 { /* info for Javascript */
  display:none;
}
.l_c00402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00402:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00402;src:url('chunks/assets/font_5fe0de63d4e1707d9bf23786.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_8e10a183c04013734b45caac.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_4104b447ee26a1c75ac6434e.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_f8fa4b3dc4ed343bdec65b18.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;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_c00402;src:url('chunks/assets/font_56d864b0a244e9f1a8be22f5.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls7_c00402{letter-spacing:-0.532800px;}
.ls8_c00402{letter-spacing:-0.429000px;}
.ls4_c00402{letter-spacing:0.000000px;}
.ls6_c00402{letter-spacing:0.020400px;}
.ls5_c00402{letter-spacing:0.288000px;}
.ls2_c00402{letter-spacing:0.720000px;}
.ls3_c00402{letter-spacing:0.728674px;}
.ls0_c00402{letter-spacing:1.440000px;}
.ls1_c00402{letter-spacing:15.300000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00402{word-spacing:-60.480000px;}
.ws0_c00402{word-spacing:-18.000000px;}
.ws1_c00402{word-spacing:-15.140400px;}
.ws2_c00402{word-spacing:-15.120000px;}
.ws3_c00402{word-spacing:-14.691000px;}
.ws5_c00402{word-spacing:0.000000px;}
._4_c00402{margin-left:-2.736000px;}
._0_c00402{margin-left:-1.296000px;}
._1_c00402{width:1.080000px;}
._5_c00402{width:2.160000px;}
._7_c00402{width:3.744000px;}
._11_c00402{width:4.752000px;}
._10_c00402{width:6.048000px;}
._b_c00402{width:7.200000px;}
._2_c00402{width:9.000000px;}
._3_c00402{width:10.584000px;}
._f_c00402{width:12.384000px;}
._6_c00402{width:13.752000px;}
._9_c00402{width:14.760000px;}
._a_c00402{width:15.828000px;}
._8_c00402{width:16.848000px;}
._d_c00402{width:20.448000px;}
._c_c00402{width:21.960000px;}
._e_c00402{width:23.112000px;}
.fc0_c00402{color:rgb(0,0,0);}
.fs1_c00402{font-size:60.480000px;}
.fs0_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.y3_c00402{bottom:57.996000px;}
.y2_c00402{bottom:78.876000px;}
.y20_c00402{bottom:220.755000px;}
.y1f_c00402{bottom:251.715000px;}
.y1e_c00402{bottom:282.705000px;}
.y1d_c00402{bottom:313.665000px;}
.y1c_c00402{bottom:344.625000px;}
.y1b_c00402{bottom:375.945000px;}
.y1a_c00402{bottom:406.950000px;}
.y19_c00402{bottom:444.750000px;}
.y18_c00402{bottom:470.670000px;}
.y17_c00402{bottom:496.590000px;}
.y16_c00402{bottom:522.180000px;}
.y15_c00402{bottom:557.100000px;}
.y14_c00402{bottom:583.020000px;}
.y13_c00402{bottom:608.940000px;}
.y12_c00402{bottom:634.860000px;}
.y11_c00402{bottom:660.810000px;}
.y10_c00402{bottom:686.730000px;}
.yf_c00402{bottom:714.810000px;}
.ye_c00402{bottom:754.770000px;}
.yd_c00402{bottom:785.775000px;}
.yc_c00402{bottom:817.095000px;}
.yb_c00402{bottom:848.055000px;}
.ya_c00402{bottom:879.015000px;}
.y9_c00402{bottom:910.005000px;}
.y8_c00402{bottom:941.325000px;}
.y7_c00402{bottom:972.285000px;}
.y6_c00402{bottom:1003.245000px;}
.y5_c00402{bottom:1034.250000px;}
.y4_c00402{bottom:1065.570000px;}
.y1_c00402{bottom:1117.770000px;}
.h4_c00402{height:59.328281px;}
.h3_c00402{height:59.357813px;}
.h1_c00402{height:64.546875px;}
.h5_c00402{height:70.628906px;}
.h2_c00402{height:70.664062px;}
.h0_c00402{height:1188.000000px;}
.w0_c00402{width:918.000000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:127.476000px;}
.x3_c00402{left:169.995000px;}
.x2_c00402{left:445.500000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls7_c00402{letter-spacing:-0.473600pt;}
.ls8_c00402{letter-spacing:-0.381333pt;}
.ls4_c00402{letter-spacing:0.000000pt;}
.ls6_c00402{letter-spacing:0.018133pt;}
.ls5_c00402{letter-spacing:0.256000pt;}
.ls2_c00402{letter-spacing:0.640000pt;}
.ls3_c00402{letter-spacing:0.647710pt;}
.ls0_c00402{letter-spacing:1.280000pt;}
.ls1_c00402{letter-spacing:13.600000pt;}
.ws4_c00402{word-spacing:-53.760000pt;}
.ws0_c00402{word-spacing:-16.000000pt;}
.ws1_c00402{word-spacing:-13.458133pt;}
.ws2_c00402{word-spacing:-13.440000pt;}
.ws3_c00402{word-spacing:-13.058667pt;}
.ws5_c00402{word-spacing:0.000000pt;}
._4_c00402{margin-left:-2.432000pt;}
._0_c00402{margin-left:-1.152000pt;}
._1_c00402{width:0.960000pt;}
._5_c00402{width:1.920000pt;}
._7_c00402{width:3.328000pt;}
._11_c00402{width:4.224000pt;}
._10_c00402{width:5.376000pt;}
._b_c00402{width:6.400000pt;}
._2_c00402{width:8.000000pt;}
._3_c00402{width:9.408000pt;}
._f_c00402{width:11.008000pt;}
._6_c00402{width:12.224000pt;}
._9_c00402{width:13.120000pt;}
._a_c00402{width:14.069333pt;}
._8_c00402{width:14.976000pt;}
._d_c00402{width:18.176000pt;}
._c_c00402{width:19.520000pt;}
._e_c00402{width:20.544000pt;}
.fs1_c00402{font-size:53.760000pt;}
.fs0_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y3_c00402{bottom:51.552000pt;}
.y2_c00402{bottom:70.112000pt;}
.y20_c00402{bottom:196.226667pt;}
.y1f_c00402{bottom:223.746667pt;}
.y1e_c00402{bottom:251.293333pt;}
.y1d_c00402{bottom:278.813333pt;}
.y1c_c00402{bottom:306.333333pt;}
.y1b_c00402{bottom:334.173333pt;}
.y1a_c00402{bottom:361.733333pt;}
.y19_c00402{bottom:395.333333pt;}
.y18_c00402{bottom:418.373333pt;}
.y17_c00402{bottom:441.413333pt;}
.y16_c00402{bottom:464.160000pt;}
.y15_c00402{bottom:495.200000pt;}
.y14_c00402{bottom:518.240000pt;}
.y13_c00402{bottom:541.280000pt;}
.y12_c00402{bottom:564.320000pt;}
.y11_c00402{bottom:587.386667pt;}
.y10_c00402{bottom:610.426667pt;}
.yf_c00402{bottom:635.386667pt;}
.ye_c00402{bottom:670.906667pt;}
.yd_c00402{bottom:698.466667pt;}
.yc_c00402{bottom:726.306667pt;}
.yb_c00402{bottom:753.826667pt;}
.ya_c00402{bottom:781.346667pt;}
.y9_c00402{bottom:808.893333pt;}
.y8_c00402{bottom:836.733333pt;}
.y7_c00402{bottom:864.253333pt;}
.y6_c00402{bottom:891.773333pt;}
.y5_c00402{bottom:919.333333pt;}
.y4_c00402{bottom:947.173333pt;}
.y1_c00402{bottom:993.573333pt;}
.h4_c00402{height:52.736250pt;}
.h3_c00402{height:52.762500pt;}
.h1_c00402{height:57.375000pt;}
.h5_c00402{height:62.781250pt;}
.h2_c00402{height:62.812500pt;}
.h0_c00402{height:1056.000000pt;}
.w0_c00402{width:816.000000pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:113.312000pt;}
.x3_c00402{left:151.106667pt;}
.x2_c00402{left:396.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_c00403 {
    display:none;
  }
  .loading-indicator_c00403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00403 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00403 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00403" -> "#page-container .classname_c00403")
 */
.pf_c00403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00403 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00403 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00403 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00403 {overflow:visible;}
  }
}
.c_c00403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00403 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00403:after { /* webkit #35443 */
  content: '';
}
.t_c00403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00403 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00403 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00403 { /* info for Javascript */
  display:none;
}
.l_c00403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00403:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00403;src:url('chunks/assets/font_729496df9211db299f62f119.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_ba416fff8c8e0ff0a917eb1f.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_fea76b070df360835ed0e168.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;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_c00403;src:url('chunks/assets/font_aa32e6bf4dd8615db9767403.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00403;src:url('chunks/assets/font_3fa52a6ce31d8f825cc08eac.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00403;src:url('chunks/assets/font_00e71e803e720a45e96c3074.woff2')format("woff");}.ff6_c00403{font-family:ff6_c00403;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.lsc_c00403{letter-spacing:-0.360000px;}
.lsd_c00403{letter-spacing:-0.288000px;}
.lse_c00403{letter-spacing:-0.241800px;}
.lsb_c00403{letter-spacing:0.000000px;}
.lsa_c00403{letter-spacing:0.020400px;}
.ls4_c00403{letter-spacing:0.720000px;}
.ls0_c00403{letter-spacing:2.160000px;}
.ls9_c00403{letter-spacing:3.744000px;}
.ls6_c00403{letter-spacing:5.040000px;}
.ls5_c00403{letter-spacing:5.184000px;}
.ls2_c00403{letter-spacing:6.480000px;}
.ls3_c00403{letter-spacing:6.660000px;}
.ls8_c00403{letter-spacing:9.360000px;}
.ls7_c00403{letter-spacing:10.800000px;}
.ls1_c00403{letter-spacing:20.880000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:-18.000000px;}
.ws1_c00403{word-spacing:-17.640000px;}
.ws3_c00403{word-spacing:-15.140400px;}
.ws2_c00403{word-spacing:-15.120000px;}
.ws4_c00403{word-spacing:-14.878200px;}
.ws5_c00403{word-spacing:0.000000px;}
._b_c00403{margin-left:-3.672000px;}
._4_c00403{margin-left:-2.604000px;}
._1_c00403{margin-left:-1.296000px;}
._2_c00403{width:1.008000px;}
._3_c00403{width:2.016000px;}
._6_c00403{width:3.264024px;}
._8_c00403{width:4.392000px;}
._9_c00403{width:5.400000px;}
._a_c00403{width:7.284000px;}
._10_c00403{width:8.364000px;}
._11_c00403{width:9.798002px;}
._12_c00403{width:11.356800px;}
._13_c00403{width:12.365161px;}
._5_c00403{width:13.608000px;}
._0_c00403{width:14.616000px;}
._7_c00403{width:16.488000px;}
._f_c00403{width:20.064000px;}
._e_c00403{width:21.252000px;}
._c_c00403{width:23.112000px;}
._d_c00403{width:24.215976px;}
.fc0_c00403{color:rgb(0,0,0);}
.fs2_c00403{font-size:38.880000px;}
.fs1_c00403{font-size:47.520000px;}
.fs3_c00403{font-size:60.480000px;}
.fs0_c00403{font-size:72.000000px;}
.y0_c00403{bottom:0.000000px;}
.y3_c00403{bottom:57.996000px;}
.y2_c00403{bottom:78.876000px;}
.y2b_c00403{bottom:130.716000px;}
.y2a_c00403{bottom:147.996000px;}
.y29_c00403{bottom:165.315000px;}
.y28_c00403{bottom:182.595000px;}
.y27_c00403{bottom:199.515000px;}
.y26_c00403{bottom:216.795000px;}
.y25_c00403{bottom:234.075000px;}
.y24_c00403{bottom:251.355000px;}
.y23_c00403{bottom:258.195000px;}
.y22_c00403{bottom:268.635000px;}
.y21_c00403{bottom:285.945000px;}
.y20_c00403{bottom:303.225000px;}
.y1f_c00403{bottom:320.505000px;}
.y1e_c00403{bottom:337.785000px;}
.y1d_c00403{bottom:344.625000px;}
.y1c_c00403{bottom:355.425000px;}
.y1b_c00403{bottom:404.070000px;}
.y1a_c00403{bottom:435.390000px;}
.y19_c00403{bottom:466.350000px;}
.y18_c00403{bottom:497.310000px;}
.y17_c00403{bottom:528.300000px;}
.y16_c00403{bottom:559.620000px;}
.y15_c00403{bottom:590.580000px;}
.y14_c00403{bottom:621.540000px;}
.y13_c00403{bottom:652.530000px;}
.y12_c00403{bottom:683.850000px;}
.y11_c00403{bottom:714.810000px;}
.y10_c00403{bottom:745.770000px;}
.yf_c00403{bottom:776.775000px;}
.ye_c00403{bottom:808.095000px;}
.yd_c00403{bottom:839.055000px;}
.yc_c00403{bottom:870.015000px;}
.yb_c00403{bottom:910.005000px;}
.ya_c00403{bottom:941.325000px;}
.y8_c00403{bottom:972.285000px;}
.y9_c00403{bottom:980.565000px;}
.y6_c00403{bottom:1003.245000px;}
.y7_c00403{bottom:1011.570000px;}
.y5_c00403{bottom:1034.250000px;}
.y4_c00403{bottom:1065.570000px;}
.y1_c00403{bottom:1117.770000px;}
.h5_c00403{height:34.855313px;}
.h4_c00403{height:46.638281px;}
.h7_c00403{height:54.219375px;}
.h6_c00403{height:54.514688px;}
.h1_c00403{height:64.546875px;}
.h2_c00403{height:70.664062px;}
.h3_c00403{height:1187.995500px;}
.h0_c00403{height:1188.000000px;}
.w1_c00403{width:917.997000px;}
.w0_c00403{width:918.000000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:127.476000px;}
.x9_c00403{left:142.596000px;}
.x3_c00403{left:169.995000px;}
.x6_c00403{left:177.192000px;}
.x7_c00403{left:195.555000px;}
.x8_c00403{left:343.590000px;}
.x2_c00403{left:445.500000px;}
.x4_c00403{left:498.777000px;}
.x5_c00403{left:517.140000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.lsc_c00403{letter-spacing:-0.320000pt;}
.lsd_c00403{letter-spacing:-0.256000pt;}
.lse_c00403{letter-spacing:-0.214933pt;}
.lsb_c00403{letter-spacing:0.000000pt;}
.lsa_c00403{letter-spacing:0.018133pt;}
.ls4_c00403{letter-spacing:0.640000pt;}
.ls0_c00403{letter-spacing:1.920000pt;}
.ls9_c00403{letter-spacing:3.328000pt;}
.ls6_c00403{letter-spacing:4.480000pt;}
.ls5_c00403{letter-spacing:4.608000pt;}
.ls2_c00403{letter-spacing:5.760000pt;}
.ls3_c00403{letter-spacing:5.920000pt;}
.ls8_c00403{letter-spacing:8.320000pt;}
.ls7_c00403{letter-spacing:9.600000pt;}
.ls1_c00403{letter-spacing:18.560000pt;}
.ws0_c00403{word-spacing:-16.000000pt;}
.ws1_c00403{word-spacing:-15.680000pt;}
.ws3_c00403{word-spacing:-13.458133pt;}
.ws2_c00403{word-spacing:-13.440000pt;}
.ws4_c00403{word-spacing:-13.225067pt;}
.ws5_c00403{word-spacing:0.000000pt;}
._b_c00403{margin-left:-3.264000pt;}
._4_c00403{margin-left:-2.314667pt;}
._1_c00403{margin-left:-1.152000pt;}
._2_c00403{width:0.896000pt;}
._3_c00403{width:1.792000pt;}
._6_c00403{width:2.901355pt;}
._8_c00403{width:3.904000pt;}
._9_c00403{width:4.800000pt;}
._a_c00403{width:6.474667pt;}
._10_c00403{width:7.434667pt;}
._11_c00403{width:8.709335pt;}
._12_c00403{width:10.094933pt;}
._13_c00403{width:10.991254pt;}
._5_c00403{width:12.096000pt;}
._0_c00403{width:12.992000pt;}
._7_c00403{width:14.656000pt;}
._f_c00403{width:17.834667pt;}
._e_c00403{width:18.890667pt;}
._c_c00403{width:20.544000pt;}
._d_c00403{width:21.525312pt;}
.fs2_c00403{font-size:34.560000pt;}
.fs1_c00403{font-size:42.240000pt;}
.fs3_c00403{font-size:53.760000pt;}
.fs0_c00403{font-size:64.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y3_c00403{bottom:51.552000pt;}
.y2_c00403{bottom:70.112000pt;}
.y2b_c00403{bottom:116.192000pt;}
.y2a_c00403{bottom:131.552000pt;}
.y29_c00403{bottom:146.946667pt;}
.y28_c00403{bottom:162.306667pt;}
.y27_c00403{bottom:177.346667pt;}
.y26_c00403{bottom:192.706667pt;}
.y25_c00403{bottom:208.066667pt;}
.y24_c00403{bottom:223.426667pt;}
.y23_c00403{bottom:229.506667pt;}
.y22_c00403{bottom:238.786667pt;}
.y21_c00403{bottom:254.173333pt;}
.y20_c00403{bottom:269.533333pt;}
.y1f_c00403{bottom:284.893333pt;}
.y1e_c00403{bottom:300.253333pt;}
.y1d_c00403{bottom:306.333333pt;}
.y1c_c00403{bottom:315.933333pt;}
.y1b_c00403{bottom:359.173333pt;}
.y1a_c00403{bottom:387.013333pt;}
.y19_c00403{bottom:414.533333pt;}
.y18_c00403{bottom:442.053333pt;}
.y17_c00403{bottom:469.600000pt;}
.y16_c00403{bottom:497.440000pt;}
.y15_c00403{bottom:524.960000pt;}
.y14_c00403{bottom:552.480000pt;}
.y13_c00403{bottom:580.026667pt;}
.y12_c00403{bottom:607.866667pt;}
.y11_c00403{bottom:635.386667pt;}
.y10_c00403{bottom:662.906667pt;}
.yf_c00403{bottom:690.466667pt;}
.ye_c00403{bottom:718.306667pt;}
.yd_c00403{bottom:745.826667pt;}
.yc_c00403{bottom:773.346667pt;}
.yb_c00403{bottom:808.893333pt;}
.ya_c00403{bottom:836.733333pt;}
.y8_c00403{bottom:864.253333pt;}
.y9_c00403{bottom:871.613333pt;}
.y6_c00403{bottom:891.773333pt;}
.y7_c00403{bottom:899.173333pt;}
.y5_c00403{bottom:919.333333pt;}
.y4_c00403{bottom:947.173333pt;}
.y1_c00403{bottom:993.573333pt;}
.h5_c00403{height:30.982500pt;}
.h4_c00403{height:41.456250pt;}
.h7_c00403{height:48.195000pt;}
.h6_c00403{height:48.457500pt;}
.h1_c00403{height:57.375000pt;}
.h2_c00403{height:62.812500pt;}
.h3_c00403{height:1055.996000pt;}
.h0_c00403{height:1056.000000pt;}
.w1_c00403{width:815.997333pt;}
.w0_c00403{width:816.000000pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:113.312000pt;}
.x9_c00403{left:126.752000pt;}
.x3_c00403{left:151.106667pt;}
.x6_c00403{left:157.504000pt;}
.x7_c00403{left:173.826667pt;}
.x8_c00403{left:305.413333pt;}
.x2_c00403{left:396.000000pt;}
.x4_c00403{left:443.357333pt;}
.x5_c00403{left:459.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_c00404 {
    display:none;
  }
  .loading-indicator_c00404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00404 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00404 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00404" -> "#page-container .classname_c00404")
 */
.pf_c00404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00404 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00404 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00404 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00404 {overflow:visible;}
  }
}
.c_c00404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00404 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00404:after { /* webkit #35443 */
  content: '';
}
.t_c00404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00404 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00404 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00404 { /* info for Javascript */
  display:none;
}
.l_c00404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00404:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00404;src:url('chunks/assets/font_e45ef6b4b173beeca5f94ece.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_840db4444467bab6f2909920.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_a54496e841f7d0eeb69733c2.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_2e9501d33bfd4e015e7d8fe3.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;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_c00404;src:url('chunks/assets/font_1cb4ea9dee3a9f78dedb1b34.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls3_c00404{letter-spacing:-0.288000px;}
.ls2_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:0.720000px;}
.ls1_c00404{letter-spacing:1.620000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00404{word-spacing:-72.000000px;}
.ws0_c00404{word-spacing:-18.000000px;}
.ws1_c00404{word-spacing:-17.712000px;}
.ws3_c00404{word-spacing:0.000000px;}
._14_c00404{margin-left:-3.456000px;}
._2_c00404{margin-left:-2.448000px;}
._1_c00404{margin-left:-1.440000px;}
._0_c00404{width:1.152000px;}
._3_c00404{width:2.304000px;}
._8_c00404{width:3.600000px;}
._7_c00404{width:5.328000px;}
._6_c00404{width:6.336000px;}
._d_c00404{width:7.704000px;}
._5_c00404{width:9.000000px;}
._b_c00404{width:10.008000px;}
._c_c00404{width:11.160000px;}
._9_c00404{width:13.680000px;}
._a_c00404{width:14.904000px;}
._11_c00404{width:16.128000px;}
._4_c00404{width:20.016000px;}
._13_c00404{width:22.379976px;}
._f_c00404{width:23.556024px;}
._e_c00404{width:24.696000px;}
._10_c00404{width:25.895952px;}
._12_c00404{width:27.191784px;}
.fc0_c00404{color:rgb(0,0,0);}
.fs2_c00404{font-size:38.880000px;}
.fs1_c00404{font-size:47.520000px;}
.fs3_c00404{font-size:60.480000px;}
.fs0_c00404{font-size:72.000000px;}
.y0_c00404{bottom:0.000000px;}
.y3_c00404{bottom:57.996000px;}
.y2_c00404{bottom:78.876000px;}
.y24_c00404{bottom:130.716000px;}
.y23_c00404{bottom:147.996000px;}
.y22_c00404{bottom:165.315000px;}
.y21_c00404{bottom:172.155000px;}
.y20_c00404{bottom:182.955000px;}
.y1f_c00404{bottom:230.835000px;}
.y1d_c00404{bottom:262.155000px;}
.y1e_c00404{bottom:270.435000px;}
.y1c_c00404{bottom:293.145000px;}
.y1b_c00404{bottom:324.105000px;}
.y1a_c00404{bottom:355.065000px;}
.y19_c00404{bottom:386.025000px;}
.y18_c00404{bottom:417.390000px;}
.y17_c00404{bottom:457.350000px;}
.y16_c00404{bottom:488.310000px;}
.y15_c00404{bottom:519.300000px;}
.y14_c00404{bottom:550.620000px;}
.y13_c00404{bottom:581.580000px;}
.y12_c00404{bottom:612.540000px;}
.y11_c00404{bottom:643.530000px;}
.y10_c00404{bottom:674.850000px;}
.yf_c00404{bottom:705.810000px;}
.ye_c00404{bottom:736.770000px;}
.yd_c00404{bottom:767.775000px;}
.yc_c00404{bottom:799.095000px;}
.yb_c00404{bottom:830.055000px;}
.ya_c00404{bottom:861.015000px;}
.y9_c00404{bottom:892.005000px;}
.y8_c00404{bottom:923.325000px;}
.y7_c00404{bottom:963.285000px;}
.y6_c00404{bottom:994.245000px;}
.y5_c00404{bottom:1034.250000px;}
.y4_c00404{bottom:1065.570000px;}
.y1_c00404{bottom:1117.770000px;}
.h5_c00404{height:34.855313px;}
.h4_c00404{height:46.638281px;}
.h6_c00404{height:54.219375px;}
.h1_c00404{height:64.546875px;}
.h2_c00404{height:70.664062px;}
.h3_c00404{height:1187.995500px;}
.h0_c00404{height:1188.000000px;}
.w1_c00404{width:917.997000px;}
.w0_c00404{width:918.000000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:127.476000px;}
.x9_c00404{left:142.596000px;}
.x5_c00404{left:169.995000px;}
.x4_c00404{left:178.635000px;}
.x3_c00404{left:212.475000px;}
.x8_c00404{left:343.590000px;}
.x2_c00404{left:445.500000px;}
.x6_c00404{left:569.007000px;}
.x7_c00404{left:587.370000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls3_c00404{letter-spacing:-0.256000pt;}
.ls2_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:0.640000pt;}
.ls1_c00404{letter-spacing:1.440000pt;}
.ws2_c00404{word-spacing:-64.000000pt;}
.ws0_c00404{word-spacing:-16.000000pt;}
.ws1_c00404{word-spacing:-15.744000pt;}
.ws3_c00404{word-spacing:0.000000pt;}
._14_c00404{margin-left:-3.072000pt;}
._2_c00404{margin-left:-2.176000pt;}
._1_c00404{margin-left:-1.280000pt;}
._0_c00404{width:1.024000pt;}
._3_c00404{width:2.048000pt;}
._8_c00404{width:3.200000pt;}
._7_c00404{width:4.736000pt;}
._6_c00404{width:5.632000pt;}
._d_c00404{width:6.848000pt;}
._5_c00404{width:8.000000pt;}
._b_c00404{width:8.896000pt;}
._c_c00404{width:9.920000pt;}
._9_c00404{width:12.160000pt;}
._a_c00404{width:13.248000pt;}
._11_c00404{width:14.336000pt;}
._4_c00404{width:17.792000pt;}
._13_c00404{width:19.893312pt;}
._f_c00404{width:20.938688pt;}
._e_c00404{width:21.952000pt;}
._10_c00404{width:23.018624pt;}
._12_c00404{width:24.170475pt;}
.fs2_c00404{font-size:34.560000pt;}
.fs1_c00404{font-size:42.240000pt;}
.fs3_c00404{font-size:53.760000pt;}
.fs0_c00404{font-size:64.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y3_c00404{bottom:51.552000pt;}
.y2_c00404{bottom:70.112000pt;}
.y24_c00404{bottom:116.192000pt;}
.y23_c00404{bottom:131.552000pt;}
.y22_c00404{bottom:146.946667pt;}
.y21_c00404{bottom:153.026667pt;}
.y20_c00404{bottom:162.626667pt;}
.y1f_c00404{bottom:205.186667pt;}
.y1d_c00404{bottom:233.026667pt;}
.y1e_c00404{bottom:240.386667pt;}
.y1c_c00404{bottom:260.573333pt;}
.y1b_c00404{bottom:288.093333pt;}
.y1a_c00404{bottom:315.613333pt;}
.y19_c00404{bottom:343.133333pt;}
.y18_c00404{bottom:371.013333pt;}
.y17_c00404{bottom:406.533333pt;}
.y16_c00404{bottom:434.053333pt;}
.y15_c00404{bottom:461.600000pt;}
.y14_c00404{bottom:489.440000pt;}
.y13_c00404{bottom:516.960000pt;}
.y12_c00404{bottom:544.480000pt;}
.y11_c00404{bottom:572.026667pt;}
.y10_c00404{bottom:599.866667pt;}
.yf_c00404{bottom:627.386667pt;}
.ye_c00404{bottom:654.906667pt;}
.yd_c00404{bottom:682.466667pt;}
.yc_c00404{bottom:710.306667pt;}
.yb_c00404{bottom:737.826667pt;}
.ya_c00404{bottom:765.346667pt;}
.y9_c00404{bottom:792.893333pt;}
.y8_c00404{bottom:820.733333pt;}
.y7_c00404{bottom:856.253333pt;}
.y6_c00404{bottom:883.773333pt;}
.y5_c00404{bottom:919.333333pt;}
.y4_c00404{bottom:947.173333pt;}
.y1_c00404{bottom:993.573333pt;}
.h5_c00404{height:30.982500pt;}
.h4_c00404{height:41.456250pt;}
.h6_c00404{height:48.195000pt;}
.h1_c00404{height:57.375000pt;}
.h2_c00404{height:62.812500pt;}
.h3_c00404{height:1055.996000pt;}
.h0_c00404{height:1056.000000pt;}
.w1_c00404{width:815.997333pt;}
.w0_c00404{width:816.000000pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:113.312000pt;}
.x9_c00404{left:126.752000pt;}
.x5_c00404{left:151.106667pt;}
.x4_c00404{left:158.786667pt;}
.x3_c00404{left:188.866667pt;}
.x8_c00404{left:305.413333pt;}
.x2_c00404{left:396.000000pt;}
.x6_c00404{left:505.784000pt;}
.x7_c00404{left:522.106667pt;}
}





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

.ir_c00405:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00405;src:url('chunks/assets/font_a9514274c2eff0e94b7b52aa.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_d3fe383d801fc5126a8520bc.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_364173734e804410c5fae057.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_dd863ae700c833511ff679b2.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;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_c00405;src:url('chunks/assets/font_8503aff42478db5e1963a8b7.woff2')format("woff");}.ff5_c00405{font-family:ff5_c00405;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00405;src:url('chunks/assets/font_a86aa65905572d26daea15b5.woff2')format("woff");}.ff6_c00405{font-family:ff6_c00405;line-height:1.104004;font-style:normal;font-weight: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_c00405;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00405{font-family:ff7_c00405;line-height:1.311035;font-style:normal;font-weight: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_c00405;src:url('chunks/assets/font_3cf96cdf9150a548065e6f85.woff2')format("woff");}.ff8_c00405{font-family:ff8_c00405;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls7_c00405{letter-spacing:-2.880000px;}
.lsd_c00405{letter-spacing:-1.416000px;}
.ls10_c00405{letter-spacing:-1.380000px;}
.lsa_c00405{letter-spacing:-1.116000px;}
.ls9_c00405{letter-spacing:-0.720000px;}
.lse_c00405{letter-spacing:-0.532800px;}
.lsb_c00405{letter-spacing:-0.241800px;}
.ls6_c00405{letter-spacing:0.000000px;}
.lsf_c00405{letter-spacing:0.166800px;}
.ls8_c00405{letter-spacing:0.486600px;}
.lsc_c00405{letter-spacing:0.507000px;}
.ls0_c00405{letter-spacing:0.720000px;}
.ls3_c00405{letter-spacing:0.739909px;}
.ls4_c00405{letter-spacing:0.740071px;}
.ls1_c00405{letter-spacing:0.900000px;}
.ls5_c00405{letter-spacing:2.160000px;}
.ls2_c00405{letter-spacing:291.720000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00405{word-spacing:-72.000000px;}
.ws0_c00405{word-spacing:-18.000000px;}
.ws2_c00405{word-spacing:-15.606600px;}
.ws7_c00405{word-spacing:-15.286800px;}
.ws3_c00405{word-spacing:-15.120000px;}
.ws5_c00405{word-spacing:-14.878200px;}
.ws6_c00405{word-spacing:-14.587200px;}
.ws4_c00405{word-spacing:-12.600000px;}
.ws8_c00405{word-spacing:0.000000px;}
._4_c00405{margin-left:-3.168000px;}
._0_c00405{margin-left:-1.944000px;}
._1_c00405{width:1.080000px;}
._2_c00405{width:3.024000px;}
._3_c00405{width:4.392000px;}
._7_c00405{width:5.760000px;}
._e_c00405{width:7.056000px;}
._f_c00405{width:8.712000px;}
._10_c00405{width:9.792000px;}
._11_c00405{width:14.544000px;}
._12_c00405{width:15.840000px;}
._13_c00405{width:16.932024px;}
._d_c00405{width:19.872000px;}
._b_c00405{width:20.952000px;}
._c_c00405{width:22.608000px;}
._14_c00405{width:24.408000px;}
._15_c00405{width:25.488000px;}
._16_c00405{width:26.784000px;}
._9_c00405{width:30.240000px;}
._8_c00405{width:31.320000px;}
._a_c00405{width:33.120000px;}
._6_c00405{width:96.600012px;}
._5_c00405{width:207.768468px;}
.fc0_c00405{color:rgb(0,0,0);}
.fs3_c00405{font-size:38.880000px;}
.fs2_c00405{font-size:47.520000px;}
.fs1_c00405{font-size:60.480000px;}
.fs0_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y3_c00405{bottom:57.996000px;}
.y2_c00405{bottom:78.876000px;}
.y2b_c00405{bottom:130.716000px;}
.y2a_c00405{bottom:137.556000px;}
.y29_c00405{bottom:147.996000px;}
.y28_c00405{bottom:165.315000px;}
.y27_c00405{bottom:182.595000px;}
.y26_c00405{bottom:189.435000px;}
.y25_c00405{bottom:199.515000px;}
.y24_c00405{bottom:206.355000px;}
.y23_c00405{bottom:217.515000px;}
.y22_c00405{bottom:247.755000px;}
.y21_c00405{bottom:278.745000px;}
.y20_c00405{bottom:309.705000px;}
.y1f_c00405{bottom:340.665000px;}
.y1e_c00405{bottom:371.625000px;}
.y1d_c00405{bottom:402.990000px;}
.y1c_c00405{bottom:433.950000px;}
.y1a_c00405{bottom:464.910000px;}
.y1b_c00405{bottom:473.190000px;}
.y19_c00405{bottom:495.870000px;}
.y18_c00405{bottom:527.220000px;}
.y17_c00405{bottom:558.180000px;}
.y16_c00405{bottom:589.140000px;}
.y15_c00405{bottom:620.100000px;}
.y14_c00405{bottom:651.450000px;}
.y12_c00405{bottom:682.410000px;}
.y13_c00405{bottom:690.690000px;}
.y11_c00405{bottom:713.370000px;}
.y10_c00405{bottom:742.170000px;}
.yf_c00405{bottom:768.135000px;}
.ye_c00405{bottom:794.055000px;}
.yd_c00405{bottom:819.975000px;}
.yc_c00405{bottom:845.895000px;}
.yb_c00405{bottom:871.455000px;}
.ya_c00405{bottom:897.405000px;}
.y9_c00405{bottom:923.325000px;}
.y8_c00405{bottom:949.245000px;}
.y7_c00405{bottom:975.165000px;}
.y6_c00405{bottom:1003.245000px;}
.y5_c00405{bottom:1034.250000px;}
.y4_c00405{bottom:1065.570000px;}
.y1_c00405{bottom:1117.770000px;}
.h7_c00405{height:34.855313px;}
.h6_c00405{height:46.638281px;}
.h9_c00405{height:54.219375px;}
.h8_c00405{height:54.514688px;}
.h3_c00405{height:59.357813px;}
.h4_c00405{height:60.952500px;}
.h1_c00405{height:64.546875px;}
.h2_c00405{height:70.664062px;}
.h5_c00405{height:1187.995500px;}
.h0_c00405{height:1188.000000px;}
.w1_c00405{width:917.997000px;}
.w0_c00405{width:918.000000px;}
.x0_c00405{left:0.000000px;}
.x1_c00405{left:127.476000px;}
.xb_c00405{left:142.596000px;}
.x3_c00405{left:169.995000px;}
.x6_c00405{left:214.272000px;}
.x7_c00405{left:232.635000px;}
.xa_c00405{left:343.590000px;}
.x2_c00405{left:445.500000px;}
.x4_c00405{left:699.372000px;}
.x5_c00405{left:717.735000px;}
.x8_c00405{left:772.122000px;}
.x9_c00405{left:790.485000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls7_c00405{letter-spacing:-2.560000pt;}
.lsd_c00405{letter-spacing:-1.258667pt;}
.ls10_c00405{letter-spacing:-1.226667pt;}
.lsa_c00405{letter-spacing:-0.992000pt;}
.ls9_c00405{letter-spacing:-0.640000pt;}
.lse_c00405{letter-spacing:-0.473600pt;}
.lsb_c00405{letter-spacing:-0.214933pt;}
.ls6_c00405{letter-spacing:0.000000pt;}
.lsf_c00405{letter-spacing:0.148267pt;}
.ls8_c00405{letter-spacing:0.432533pt;}
.lsc_c00405{letter-spacing:0.450667pt;}
.ls0_c00405{letter-spacing:0.640000pt;}
.ls3_c00405{letter-spacing:0.657697pt;}
.ls4_c00405{letter-spacing:0.657841pt;}
.ls1_c00405{letter-spacing:0.800000pt;}
.ls5_c00405{letter-spacing:1.920000pt;}
.ls2_c00405{letter-spacing:259.306667pt;}
.ws1_c00405{word-spacing:-64.000000pt;}
.ws0_c00405{word-spacing:-16.000000pt;}
.ws2_c00405{word-spacing:-13.872533pt;}
.ws7_c00405{word-spacing:-13.588267pt;}
.ws3_c00405{word-spacing:-13.440000pt;}
.ws5_c00405{word-spacing:-13.225067pt;}
.ws6_c00405{word-spacing:-12.966400pt;}
.ws4_c00405{word-spacing:-11.200000pt;}
.ws8_c00405{word-spacing:0.000000pt;}
._4_c00405{margin-left:-2.816000pt;}
._0_c00405{margin-left:-1.728000pt;}
._1_c00405{width:0.960000pt;}
._2_c00405{width:2.688000pt;}
._3_c00405{width:3.904000pt;}
._7_c00405{width:5.120000pt;}
._e_c00405{width:6.272000pt;}
._f_c00405{width:7.744000pt;}
._10_c00405{width:8.704000pt;}
._11_c00405{width:12.928000pt;}
._12_c00405{width:14.080000pt;}
._13_c00405{width:15.050688pt;}
._d_c00405{width:17.664000pt;}
._b_c00405{width:18.624000pt;}
._c_c00405{width:20.096000pt;}
._14_c00405{width:21.696000pt;}
._15_c00405{width:22.656000pt;}
._16_c00405{width:23.808000pt;}
._9_c00405{width:26.880000pt;}
._8_c00405{width:27.840000pt;}
._a_c00405{width:29.440000pt;}
._6_c00405{width:85.866677pt;}
._5_c00405{width:184.683083pt;}
.fs3_c00405{font-size:34.560000pt;}
.fs2_c00405{font-size:42.240000pt;}
.fs1_c00405{font-size:53.760000pt;}
.fs0_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y3_c00405{bottom:51.552000pt;}
.y2_c00405{bottom:70.112000pt;}
.y2b_c00405{bottom:116.192000pt;}
.y2a_c00405{bottom:122.272000pt;}
.y29_c00405{bottom:131.552000pt;}
.y28_c00405{bottom:146.946667pt;}
.y27_c00405{bottom:162.306667pt;}
.y26_c00405{bottom:168.386667pt;}
.y25_c00405{bottom:177.346667pt;}
.y24_c00405{bottom:183.426667pt;}
.y23_c00405{bottom:193.346667pt;}
.y22_c00405{bottom:220.226667pt;}
.y21_c00405{bottom:247.773333pt;}
.y20_c00405{bottom:275.293333pt;}
.y1f_c00405{bottom:302.813333pt;}
.y1e_c00405{bottom:330.333333pt;}
.y1d_c00405{bottom:358.213333pt;}
.y1c_c00405{bottom:385.733333pt;}
.y1a_c00405{bottom:413.253333pt;}
.y1b_c00405{bottom:420.613333pt;}
.y19_c00405{bottom:440.773333pt;}
.y18_c00405{bottom:468.640000pt;}
.y17_c00405{bottom:496.160000pt;}
.y16_c00405{bottom:523.680000pt;}
.y15_c00405{bottom:551.200000pt;}
.y14_c00405{bottom:579.066667pt;}
.y12_c00405{bottom:606.586667pt;}
.y13_c00405{bottom:613.946667pt;}
.y11_c00405{bottom:634.106667pt;}
.y10_c00405{bottom:659.706667pt;}
.yf_c00405{bottom:682.786667pt;}
.ye_c00405{bottom:705.826667pt;}
.yd_c00405{bottom:728.866667pt;}
.yc_c00405{bottom:751.906667pt;}
.yb_c00405{bottom:774.626667pt;}
.ya_c00405{bottom:797.693333pt;}
.y9_c00405{bottom:820.733333pt;}
.y8_c00405{bottom:843.773333pt;}
.y7_c00405{bottom:866.813333pt;}
.y6_c00405{bottom:891.773333pt;}
.y5_c00405{bottom:919.333333pt;}
.y4_c00405{bottom:947.173333pt;}
.y1_c00405{bottom:993.573333pt;}
.h7_c00405{height:30.982500pt;}
.h6_c00405{height:41.456250pt;}
.h9_c00405{height:48.195000pt;}
.h8_c00405{height:48.457500pt;}
.h3_c00405{height:52.762500pt;}
.h4_c00405{height:54.180000pt;}
.h1_c00405{height:57.375000pt;}
.h2_c00405{height:62.812500pt;}
.h5_c00405{height:1055.996000pt;}
.h0_c00405{height:1056.000000pt;}
.w1_c00405{width:815.997333pt;}
.w0_c00405{width:816.000000pt;}
.x0_c00405{left:0.000000pt;}
.x1_c00405{left:113.312000pt;}
.xb_c00405{left:126.752000pt;}
.x3_c00405{left:151.106667pt;}
.x6_c00405{left:190.464000pt;}
.x7_c00405{left:206.786667pt;}
.xa_c00405{left:305.413333pt;}
.x2_c00405{left:396.000000pt;}
.x4_c00405{left:621.664000pt;}
.x5_c00405{left:637.986667pt;}
.x8_c00405{left:686.330667pt;}
.x9_c00405{left:702.653333pt;}
}





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

.ir_c00406:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00406;src:url('chunks/assets/font_352d202d7d51e7da498f5782.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_56a53a27c33aeaff77cd1e35.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_2ce295a98e7aafba0496a70f.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00406;src:url('chunks/assets/font_395400e85053e2f876873ab3.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;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_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls15_c00406{letter-spacing:-1.416000px;}
.ls17_c00406{letter-spacing:-1.380000px;}
.lsd_c00406{letter-spacing:-1.296000px;}
.ls11_c00406{letter-spacing:-0.912000px;}
.ls13_c00406{letter-spacing:-0.532800px;}
.ls19_c00406{letter-spacing:-0.302400px;}
.ls18_c00406{letter-spacing:-0.241800px;}
.lsa_c00406{letter-spacing:0.000000px;}
.ls14_c00406{letter-spacing:0.020400px;}
.ls10_c00406{letter-spacing:0.022800px;}
.lsc_c00406{letter-spacing:0.072000px;}
.ls1_c00406{letter-spacing:0.144000px;}
.ls16_c00406{letter-spacing:0.166800px;}
.ls4_c00406{letter-spacing:0.200160px;}
.lsb_c00406{letter-spacing:0.288000px;}
.ls12_c00406{letter-spacing:0.507000px;}
.ls8_c00406{letter-spacing:0.518400px;}
.lse_c00406{letter-spacing:0.521400px;}
.lsf_c00406{letter-spacing:0.529800px;}
.ls3_c00406{letter-spacing:0.720000px;}
.ls7_c00406{letter-spacing:0.840000px;}
.ls6_c00406{letter-spacing:0.900000px;}
.ls2_c00406{letter-spacing:2.160000px;}
.ls0_c00406{letter-spacing:10.800000px;}
.ls5_c00406{letter-spacing:614.460000px;}
.ls9_c00406{letter-spacing:644.700000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:-18.000000px;}
.ws8_c00406{word-spacing:-15.649800px;}
.ws1_c00406{word-spacing:-15.641400px;}
.ws7_c00406{word-spacing:-15.286800px;}
.ws3_c00406{word-spacing:-15.142800px;}
.ws6_c00406{word-spacing:-15.140400px;}
.ws2_c00406{word-spacing:-15.120000px;}
.ws9_c00406{word-spacing:-14.817600px;}
.ws4_c00406{word-spacing:-14.587200px;}
.ws5_c00406{word-spacing:-12.600000px;}
.wsa_c00406{word-spacing:0.000000px;}
._8_c00406{margin-left:-3.310488px;}
._4_c00406{margin-left:-2.148168px;}
._2_c00406{margin-left:-1.008024px;}
._1_c00406{width:1.380024px;}
._3_c00406{width:3.071952px;}
._5_c00406{width:4.212120px;}
._c_c00406{width:6.120000px;}
._b_c00406{width:7.164144px;}
._a_c00406{width:8.410656px;}
._9_c00406{width:9.552144px;}
._0_c00406{width:10.872000px;}
._6_c00406{width:13.320000px;}
._7_c00406{width:15.108168px;}
._f_c00406{width:19.992528px;}
._e_c00406{width:25.665024px;}
._d_c00406{width:26.902464px;}
.fc1_c00406{color:transparent;}
.fc0_c00406{color:rgb(0,0,0);}
.fs2_c00406{font-size:47.520000px;}
.fs1_c00406{font-size:60.480000px;}
.fs0_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y28_c00406{bottom:12.235500px;}
.y11_c00406{bottom:12.585000px;}
.y1e_c00406{bottom:14.760000px;}
.y27_c00406{bottom:38.194500px;}
.y1d_c00406{bottom:43.560000px;}
.y3_c00406{bottom:57.996000px;}
.y26_c00406{bottom:64.114500px;}
.y1c_c00406{bottom:69.525000px;}
.y2_c00406{bottom:78.876000px;}
.y25_c00406{bottom:90.034500px;}
.y1b_c00406{bottom:95.445000px;}
.y24_c00406{bottom:114.160500px;}
.y1a_c00406{bottom:121.365000px;}
.y19_c00406{bottom:146.925000px;}
.y1f_c00406{bottom:169.965000px;}
.y18_c00406{bottom:172.845000px;}
.y17_c00406{bottom:198.795000px;}
.y23_c00406{bottom:218.250000px;}
.y16_c00406{bottom:224.715000px;}
.y15_c00406{bottom:250.635000px;}
.y22_c00406{bottom:259.635000px;}
.y14_c00406{bottom:276.555000px;}
.y21_c00406{bottom:290.985000px;}
.y13_c00406{bottom:302.505000px;}
.y20_c00406{bottom:321.945000px;}
.y12_c00406{bottom:338.865000px;}
.y10_c00406{bottom:655.425000px;}
.yf_c00406{bottom:696.810000px;}
.ye_c00406{bottom:736.770000px;}
.yd_c00406{bottom:776.775000px;}
.yc_c00406{bottom:808.095000px;}
.yb_c00406{bottom:839.055000px;}
.ya_c00406{bottom:870.015000px;}
.y9_c00406{bottom:901.005000px;}
.y8_c00406{bottom:932.325000px;}
.y7_c00406{bottom:972.285000px;}
.y6_c00406{bottom:1003.245000px;}
.y5_c00406{bottom:1034.250000px;}
.y4_c00406{bottom:1065.570000px;}
.y1_c00406{bottom:1117.770000px;}
.h4_c00406{height:25.905000px;}
.h5_c00406{height:59.357813px;}
.h1_c00406{height:64.546875px;}
.h3_c00406{height:70.628906px;}
.h2_c00406{height:70.664062px;}
.h7_c00406{height:103.351500px;}
.h6_c00406{height:315.825000px;}
.h0_c00406{height:1188.000000px;}
.w1_c00406{width:315.495000px;}
.w2_c00406{width:323.730000px;}
.w0_c00406{width:918.000000px;}
.x0_c00406{left:0.000000px;}
.x4_c00406{left:7.906500px;}
.x1_c00406{left:127.476000px;}
.x3_c00406{left:178.635000px;}
.x5_c00406{left:444.060000px;}
.x2_c00406{left:445.500000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls15_c00406{letter-spacing:-1.258667pt;}
.ls17_c00406{letter-spacing:-1.226667pt;}
.lsd_c00406{letter-spacing:-1.152000pt;}
.ls11_c00406{letter-spacing:-0.810667pt;}
.ls13_c00406{letter-spacing:-0.473600pt;}
.ls19_c00406{letter-spacing:-0.268800pt;}
.ls18_c00406{letter-spacing:-0.214933pt;}
.lsa_c00406{letter-spacing:0.000000pt;}
.ls14_c00406{letter-spacing:0.018133pt;}
.ls10_c00406{letter-spacing:0.020267pt;}
.lsc_c00406{letter-spacing:0.064000pt;}
.ls1_c00406{letter-spacing:0.128000pt;}
.ls16_c00406{letter-spacing:0.148267pt;}
.ls4_c00406{letter-spacing:0.177920pt;}
.lsb_c00406{letter-spacing:0.256000pt;}
.ls12_c00406{letter-spacing:0.450667pt;}
.ls8_c00406{letter-spacing:0.460800pt;}
.lse_c00406{letter-spacing:0.463467pt;}
.lsf_c00406{letter-spacing:0.470933pt;}
.ls3_c00406{letter-spacing:0.640000pt;}
.ls7_c00406{letter-spacing:0.746667pt;}
.ls6_c00406{letter-spacing:0.800000pt;}
.ls2_c00406{letter-spacing:1.920000pt;}
.ls0_c00406{letter-spacing:9.600000pt;}
.ls5_c00406{letter-spacing:546.186667pt;}
.ls9_c00406{letter-spacing:573.066667pt;}
.ws0_c00406{word-spacing:-16.000000pt;}
.ws8_c00406{word-spacing:-13.910933pt;}
.ws1_c00406{word-spacing:-13.903467pt;}
.ws7_c00406{word-spacing:-13.588267pt;}
.ws3_c00406{word-spacing:-13.460267pt;}
.ws6_c00406{word-spacing:-13.458133pt;}
.ws2_c00406{word-spacing:-13.440000pt;}
.ws9_c00406{word-spacing:-13.171200pt;}
.ws4_c00406{word-spacing:-12.966400pt;}
.ws5_c00406{word-spacing:-11.200000pt;}
.wsa_c00406{word-spacing:0.000000pt;}
._8_c00406{margin-left:-2.942656pt;}
._4_c00406{margin-left:-1.909483pt;}
._2_c00406{margin-left:-0.896021pt;}
._1_c00406{width:1.226688pt;}
._3_c00406{width:2.730624pt;}
._5_c00406{width:3.744107pt;}
._c_c00406{width:5.440000pt;}
._b_c00406{width:6.368128pt;}
._a_c00406{width:7.476139pt;}
._9_c00406{width:8.490795pt;}
._0_c00406{width:9.664000pt;}
._6_c00406{width:11.840000pt;}
._7_c00406{width:13.429483pt;}
._f_c00406{width:17.771136pt;}
._e_c00406{width:22.813355pt;}
._d_c00406{width:23.913301pt;}
.fs2_c00406{font-size:42.240000pt;}
.fs1_c00406{font-size:53.760000pt;}
.fs0_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y28_c00406{bottom:10.876000pt;}
.y11_c00406{bottom:11.186667pt;}
.y1e_c00406{bottom:13.120000pt;}
.y27_c00406{bottom:33.950667pt;}
.y1d_c00406{bottom:38.720000pt;}
.y3_c00406{bottom:51.552000pt;}
.y26_c00406{bottom:56.990667pt;}
.y1c_c00406{bottom:61.800000pt;}
.y2_c00406{bottom:70.112000pt;}
.y25_c00406{bottom:80.030667pt;}
.y1b_c00406{bottom:84.840000pt;}
.y24_c00406{bottom:101.476000pt;}
.y1a_c00406{bottom:107.880000pt;}
.y19_c00406{bottom:130.600000pt;}
.y1f_c00406{bottom:151.080000pt;}
.y18_c00406{bottom:153.640000pt;}
.y17_c00406{bottom:176.706667pt;}
.y23_c00406{bottom:194.000000pt;}
.y16_c00406{bottom:199.746667pt;}
.y15_c00406{bottom:222.786667pt;}
.y22_c00406{bottom:230.786667pt;}
.y14_c00406{bottom:245.826667pt;}
.y21_c00406{bottom:258.653333pt;}
.y13_c00406{bottom:268.893333pt;}
.y20_c00406{bottom:286.173333pt;}
.y12_c00406{bottom:301.213333pt;}
.y10_c00406{bottom:582.600000pt;}
.yf_c00406{bottom:619.386667pt;}
.ye_c00406{bottom:654.906667pt;}
.yd_c00406{bottom:690.466667pt;}
.yc_c00406{bottom:718.306667pt;}
.yb_c00406{bottom:745.826667pt;}
.ya_c00406{bottom:773.346667pt;}
.y9_c00406{bottom:800.893333pt;}
.y8_c00406{bottom:828.733333pt;}
.y7_c00406{bottom:864.253333pt;}
.y6_c00406{bottom:891.773333pt;}
.y5_c00406{bottom:919.333333pt;}
.y4_c00406{bottom:947.173333pt;}
.y1_c00406{bottom:993.573333pt;}
.h4_c00406{height:23.026667pt;}
.h5_c00406{height:52.762500pt;}
.h1_c00406{height:57.375000pt;}
.h3_c00406{height:62.781250pt;}
.h2_c00406{height:62.812500pt;}
.h7_c00406{height:91.868000pt;}
.h6_c00406{height:280.733333pt;}
.h0_c00406{height:1056.000000pt;}
.w1_c00406{width:280.440000pt;}
.w2_c00406{width:287.760000pt;}
.w0_c00406{width:816.000000pt;}
.x0_c00406{left:0.000000pt;}
.x4_c00406{left:7.028000pt;}
.x1_c00406{left:113.312000pt;}
.x3_c00406{left:158.786667pt;}
.x5_c00406{left:394.720000pt;}
.x2_c00406{left:396.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_c00407 {
    display:none;
  }
  .loading-indicator_c00407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00407 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00407 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00407" -> "#page-container .classname_c00407")
 */
.pf_c00407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00407 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00407 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00407 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00407 {overflow:visible;}
  }
}
.c_c00407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00407 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00407:after { /* webkit #35443 */
  content: '';
}
.t_c00407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00407 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00407 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00407 { /* info for Javascript */
  display:none;
}
.l_c00407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00407:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00407;src:url('chunks/assets/font_10dec9154ca739a076874ce3.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_29183ceaafa2995e19230ebf.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_e47ccd4d08ed44b2b4ce1e38.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls16_c00407{letter-spacing:-1.608000px;}
.ls10_c00407{letter-spacing:-1.416000px;}
.ls19_c00407{letter-spacing:-1.380000px;}
.ls14_c00407{letter-spacing:-0.954000px;}
.lsf_c00407{letter-spacing:-0.918000px;}
.ls13_c00407{letter-spacing:-0.912000px;}
.ls11_c00407{letter-spacing:-0.532800px;}
.ls17_c00407{letter-spacing:-0.429000px;}
.lsd_c00407{letter-spacing:-0.241800px;}
.ls1a_c00407{letter-spacing:-0.169800px;}
.ls15_c00407{letter-spacing:-0.011400px;}
.lsb_c00407{letter-spacing:0.000000px;}
.ls3_c00407{letter-spacing:0.020160px;}
.ls18_c00407{letter-spacing:0.022800px;}
.ls4_c00407{letter-spacing:0.048960px;}
.ls7_c00407{letter-spacing:0.060480px;}
.lse_c00407{letter-spacing:0.166800px;}
.ls2_c00407{letter-spacing:0.518400px;}
.lsc_c00407{letter-spacing:0.529800px;}
.ls12_c00407{letter-spacing:0.630000px;}
.ls0_c00407{letter-spacing:0.720000px;}
.ls1_c00407{letter-spacing:0.732000px;}
.ls5_c00407{letter-spacing:558.300000px;}
.ls6_c00407{letter-spacing:608.700000px;}
.ls9_c00407{letter-spacing:656.220000px;}
.lsa_c00407{letter-spacing:657.660000px;}
.ls8_c00407{letter-spacing:725.340000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00407{word-spacing:-15.750000px;}
.ws2_c00407{word-spacing:-15.286800px;}
.ws0_c00407{word-spacing:-15.120000px;}
.ws9_c00407{word-spacing:-15.108600px;}
.wsc_c00407{word-spacing:-14.950200px;}
.ws1_c00407{word-spacing:-14.878200px;}
.wsb_c00407{word-spacing:-14.691000px;}
.ws4_c00407{word-spacing:-14.587200px;}
.ws7_c00407{word-spacing:-14.208000px;}
.ws3_c00407{word-spacing:-14.202000px;}
.ws8_c00407{word-spacing:-14.166000px;}
.wsd_c00407{word-spacing:-13.704000px;}
.wsa_c00407{word-spacing:-13.512000px;}
.ws6_c00407{word-spacing:-12.600000px;}
.wse_c00407{word-spacing:0.000000px;}
._2_c00407{margin-left:-2.276162px;}
._0_c00407{margin-left:-1.056480px;}
._1_c00407{width:1.290720px;}
._4_c00407{width:2.466728px;}
._3_c00407{width:690.779528px;}
.fc1_c00407{color:transparent;}
.fc0_c00407{color:rgb(0,0,0);}
.fs2_c00407{font-size:47.520000px;}
.fs1_c00407{font-size:60.480000px;}
.fs0_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y29_c00407{bottom:14.794500px;}
.y28_c00407{bottom:43.594500px;}
.y3_c00407{bottom:57.996000px;}
.y27_c00407{bottom:69.514500px;}
.y2_c00407{bottom:78.876000px;}
.y26_c00407{bottom:95.434500px;}
.y25_c00407{bottom:121.354500px;}
.y2a_c00407{bottom:127.116000px;}
.y4_c00407{bottom:144.040500px;}
.y24_c00407{bottom:146.944500px;}
.y23_c00407{bottom:172.864500px;}
.y22_c00407{bottom:198.784500px;}
.y21_c00407{bottom:224.704500px;}
.y20_c00407{bottom:250.669500px;}
.y1f_c00407{bottom:276.589500px;}
.y1e_c00407{bottom:302.509500px;}
.y1d_c00407{bottom:328.429500px;}
.y1c_c00407{bottom:353.989500px;}
.y1b_c00407{bottom:379.939500px;}
.y1a_c00407{bottom:405.859500px;}
.y19_c00407{bottom:431.779500px;}
.y18_c00407{bottom:457.699500px;}
.y17_c00407{bottom:483.619500px;}
.y16_c00407{bottom:509.569500px;}
.y15_c00407{bottom:535.129500px;}
.y14_c00407{bottom:561.049500px;}
.y12_c00407{bottom:584.089500px;}
.y13_c00407{bottom:586.969500px;}
.y11_c00407{bottom:612.889500px;}
.y10_c00407{bottom:638.854500px;}
.yf_c00407{bottom:664.774500px;}
.ye_c00407{bottom:690.694500px;}
.yd_c00407{bottom:716.614500px;}
.yc_c00407{bottom:742.204500px;}
.yb_c00407{bottom:768.124500px;}
.ya_c00407{bottom:794.044500px;}
.y9_c00407{bottom:819.964500px;}
.y8_c00407{bottom:845.884500px;}
.y7_c00407{bottom:871.849500px;}
.y6_c00407{bottom:897.769500px;}
.y5_c00407{bottom:923.689500px;}
.y1_c00407{bottom:1117.770000px;}
.h3_c00407{height:59.357813px;}
.h1_c00407{height:64.546875px;}
.h4_c00407{height:70.664062px;}
.h2_c00407{height:936.990000px;}
.h0_c00407{height:1188.000000px;}
.w1_c00407{width:315.495000px;}
.w2_c00407{width:323.730000px;}
.w0_c00407{width:918.000000px;}
.x0_c00407{left:0.000000px;}
.x3_c00407{left:7.906500px;}
.x1_c00407{left:127.476000px;}
.x4_c00407{left:444.060000px;}
.x2_c00407{left:445.500000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls16_c00407{letter-spacing:-1.429333pt;}
.ls10_c00407{letter-spacing:-1.258667pt;}
.ls19_c00407{letter-spacing:-1.226667pt;}
.ls14_c00407{letter-spacing:-0.848000pt;}
.lsf_c00407{letter-spacing:-0.816000pt;}
.ls13_c00407{letter-spacing:-0.810667pt;}
.ls11_c00407{letter-spacing:-0.473600pt;}
.ls17_c00407{letter-spacing:-0.381333pt;}
.lsd_c00407{letter-spacing:-0.214933pt;}
.ls1a_c00407{letter-spacing:-0.150933pt;}
.ls15_c00407{letter-spacing:-0.010133pt;}
.lsb_c00407{letter-spacing:0.000000pt;}
.ls3_c00407{letter-spacing:0.017920pt;}
.ls18_c00407{letter-spacing:0.020267pt;}
.ls4_c00407{letter-spacing:0.043520pt;}
.ls7_c00407{letter-spacing:0.053760pt;}
.lse_c00407{letter-spacing:0.148267pt;}
.ls2_c00407{letter-spacing:0.460800pt;}
.lsc_c00407{letter-spacing:0.470933pt;}
.ls12_c00407{letter-spacing:0.560000pt;}
.ls0_c00407{letter-spacing:0.640000pt;}
.ls1_c00407{letter-spacing:0.650667pt;}
.ls5_c00407{letter-spacing:496.266667pt;}
.ls6_c00407{letter-spacing:541.066667pt;}
.ls9_c00407{letter-spacing:583.306667pt;}
.lsa_c00407{letter-spacing:584.586667pt;}
.ls8_c00407{letter-spacing:644.746667pt;}
.ws5_c00407{word-spacing:-14.000000pt;}
.ws2_c00407{word-spacing:-13.588267pt;}
.ws0_c00407{word-spacing:-13.440000pt;}
.ws9_c00407{word-spacing:-13.429867pt;}
.wsc_c00407{word-spacing:-13.289067pt;}
.ws1_c00407{word-spacing:-13.225067pt;}
.wsb_c00407{word-spacing:-13.058667pt;}
.ws4_c00407{word-spacing:-12.966400pt;}
.ws7_c00407{word-spacing:-12.629333pt;}
.ws3_c00407{word-spacing:-12.624000pt;}
.ws8_c00407{word-spacing:-12.592000pt;}
.wsd_c00407{word-spacing:-12.181333pt;}
.wsa_c00407{word-spacing:-12.010667pt;}
.ws6_c00407{word-spacing:-11.200000pt;}
.wse_c00407{word-spacing:0.000000pt;}
._2_c00407{margin-left:-2.023255pt;}
._0_c00407{margin-left:-0.939093pt;}
._1_c00407{width:1.147307pt;}
._4_c00407{width:2.192647pt;}
._3_c00407{width:614.026247pt;}
.fs2_c00407{font-size:42.240000pt;}
.fs1_c00407{font-size:53.760000pt;}
.fs0_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y29_c00407{bottom:13.150667pt;}
.y28_c00407{bottom:38.750667pt;}
.y3_c00407{bottom:51.552000pt;}
.y27_c00407{bottom:61.790667pt;}
.y2_c00407{bottom:70.112000pt;}
.y26_c00407{bottom:84.830667pt;}
.y25_c00407{bottom:107.870667pt;}
.y2a_c00407{bottom:112.992000pt;}
.y4_c00407{bottom:128.036000pt;}
.y24_c00407{bottom:130.617333pt;}
.y23_c00407{bottom:153.657333pt;}
.y22_c00407{bottom:176.697333pt;}
.y21_c00407{bottom:199.737333pt;}
.y20_c00407{bottom:222.817333pt;}
.y1f_c00407{bottom:245.857333pt;}
.y1e_c00407{bottom:268.897333pt;}
.y1d_c00407{bottom:291.937333pt;}
.y1c_c00407{bottom:314.657333pt;}
.y1b_c00407{bottom:337.724000pt;}
.y1a_c00407{bottom:360.764000pt;}
.y19_c00407{bottom:383.804000pt;}
.y18_c00407{bottom:406.844000pt;}
.y17_c00407{bottom:429.884000pt;}
.y16_c00407{bottom:452.950667pt;}
.y15_c00407{bottom:475.670667pt;}
.y14_c00407{bottom:498.710667pt;}
.y12_c00407{bottom:519.190667pt;}
.y13_c00407{bottom:521.750667pt;}
.y11_c00407{bottom:544.790667pt;}
.y10_c00407{bottom:567.870667pt;}
.yf_c00407{bottom:590.910667pt;}
.ye_c00407{bottom:613.950667pt;}
.yd_c00407{bottom:636.990667pt;}
.yc_c00407{bottom:659.737333pt;}
.yb_c00407{bottom:682.777333pt;}
.ya_c00407{bottom:705.817333pt;}
.y9_c00407{bottom:728.857333pt;}
.y8_c00407{bottom:751.897333pt;}
.y7_c00407{bottom:774.977333pt;}
.y6_c00407{bottom:798.017333pt;}
.y5_c00407{bottom:821.057333pt;}
.y1_c00407{bottom:993.573333pt;}
.h3_c00407{height:52.762500pt;}
.h1_c00407{height:57.375000pt;}
.h4_c00407{height:62.812500pt;}
.h2_c00407{height:832.880000pt;}
.h0_c00407{height:1056.000000pt;}
.w1_c00407{width:280.440000pt;}
.w2_c00407{width:287.760000pt;}
.w0_c00407{width:816.000000pt;}
.x0_c00407{left:0.000000pt;}
.x3_c00407{left:7.028000pt;}
.x1_c00407{left:113.312000pt;}
.x4_c00407{left:394.720000pt;}
.x2_c00407{left:396.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_c00408 {
    display:none;
  }
  .loading-indicator_c00408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00408 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00408 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00408" -> "#page-container .classname_c00408")
 */
.pf_c00408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00408 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00408 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00408 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00408 {overflow:visible;}
  }
}
.c_c00408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00408 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00408:after { /* webkit #35443 */
  content: '';
}
.t_c00408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00408 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00408 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00408 { /* info for Javascript */
  display:none;
}
.l_c00408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00408:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00408;src:url('chunks/assets/font_07425fa0e5bcfe6acb91dda0.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_6bb70e7a7aab08c00f8daa6b.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_87eaafe412a972a4c43125df.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;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_c00408;src:url('chunks/assets/font_181b718c6626c57527b4004a.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00408;src:url('chunks/assets/font_7491d031c6dd1ee23c418377.woff2')format("woff");}.ff5_c00408{font-family:ff5_c00408;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls15_c00408{letter-spacing:-1.440000px;}
.ls9_c00408{letter-spacing:-1.422000px;}
.lsf_c00408{letter-spacing:-1.416000px;}
.ls13_c00408{letter-spacing:-0.912000px;}
.lsc_c00408{letter-spacing:-0.720000px;}
.ls14_c00408{letter-spacing:-0.532800px;}
.lsb_c00408{letter-spacing:-0.241800px;}
.ls7_c00408{letter-spacing:0.000000px;}
.ls3_c00408{letter-spacing:0.020160px;}
.lse_c00408{letter-spacing:0.022800px;}
.ls10_c00408{letter-spacing:0.060600px;}
.lsd_c00408{letter-spacing:0.166800px;}
.ls4_c00408{letter-spacing:0.302400px;}
.lsa_c00408{letter-spacing:0.466800px;}
.ls11_c00408{letter-spacing:0.507000px;}
.ls6_c00408{letter-spacing:0.524160px;}
.ls8_c00408{letter-spacing:0.529800px;}
.ls12_c00408{letter-spacing:0.630000px;}
.ls0_c00408{letter-spacing:0.720000px;}
.ls1_c00408{letter-spacing:0.732000px;}
.ls2_c00408{letter-spacing:499.260000px;}
.ls5_c00408{letter-spacing:617.340000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:-18.000000px;}
.ws4_c00408{word-spacing:-15.750000px;}
.ws3_c00408{word-spacing:-15.286800px;}
.ws1_c00408{word-spacing:-15.120000px;}
.ws6_c00408{word-spacing:-14.878200px;}
.ws8_c00408{word-spacing:-14.587200px;}
.ws7_c00408{word-spacing:-14.208000px;}
.ws2_c00408{word-spacing:-13.698000px;}
.ws5_c00408{word-spacing:-12.600000px;}
.ws9_c00408{word-spacing:0.000000px;}
._3_c00408{margin-left:-2.736000px;}
._0_c00408{margin-left:-1.644000px;}
._1_c00408{width:1.080000px;}
._2_c00408{width:2.184000px;}
._7_c00408{width:3.204000px;}
._6_c00408{width:4.320000px;}
._8_c00408{width:5.532000px;}
._5_c00408{width:7.896000px;}
._9_c00408{width:9.204000px;}
._d_c00408{width:12.335996px;}
._c_c00408{width:13.668601px;}
._a_c00408{width:17.962802px;}
._b_c00408{width:20.102997px;}
._4_c00408{width:227.784960px;}
.fc1_c00408{color:transparent;}
.fc0_c00408{color:rgb(0,0,0);}
.fs2_c00408{font-size:47.520000px;}
.fs1_c00408{font-size:60.480000px;}
.fs0_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y25_c00408{bottom:12.585000px;}
.y29_c00408{bottom:12.595500px;}
.y9_c00408{bottom:12.600000px;}
.y1a_c00408{bottom:15.150000px;}
.y28_c00408{bottom:38.554500px;}
.y19_c00408{bottom:43.590000px;}
.y3_c00408{bottom:57.996000px;}
.y27_c00408{bottom:64.474500px;}
.y18_c00408{bottom:69.510000px;}
.y2_c00408{bottom:78.876000px;}
.y17_c00408{bottom:95.430000px;}
.y16_c00408{bottom:121.350000px;}
.y26_c00408{bottom:125.320500px;}
.y15_c00408{bottom:147.300000px;}
.y1b_c00408{bottom:170.340000px;}
.y14_c00408{bottom:173.220000px;}
.y13_c00408{bottom:199.140000px;}
.y24_c00408{bottom:203.850000px;}
.y12_c00408{bottom:224.700000px;}
.y23_c00408{bottom:245.235000px;}
.y11_c00408{bottom:250.620000px;}
.y10_c00408{bottom:276.585000px;}
.yf_c00408{bottom:302.505000px;}
.y22_c00408{bottom:307.545000px;}
.ye_c00408{bottom:328.425000px;}
.y21_c00408{bottom:338.505000px;}
.yd_c00408{bottom:354.345000px;}
.y20_c00408{bottom:369.465000px;}
.yc_c00408{bottom:380.295000px;}
.y1f_c00408{bottom:400.470000px;}
.yb_c00408{bottom:406.215000px;}
.y1e_c00408{bottom:431.790000px;}
.y1d_c00408{bottom:462.750000px;}
.y1c_c00408{bottom:493.710000px;}
.ya_c00408{bottom:510.630000px;}
.y8_c00408{bottom:930.885000px;}
.y7_c00408{bottom:972.285000px;}
.y6_c00408{bottom:1003.245000px;}
.y5_c00408{bottom:1034.250000px;}
.y4_c00408{bottom:1065.570000px;}
.y1_c00408{bottom:1117.770000px;}
.h4_c00408{height:25.905000px;}
.h5_c00408{height:59.357813px;}
.h1_c00408{height:64.546875px;}
.h3_c00408{height:70.628906px;}
.h2_c00408{height:70.664062px;}
.h7_c00408{height:77.791500px;}
.h6_c00408{height:419.520000px;}
.h0_c00408{height:1188.000000px;}
.w1_c00408{width:301.770000px;}
.w3_c00408{width:323.415000px;}
.w4_c00408{width:323.730000px;}
.w2_c00408{width:334.920000px;}
.w0_c00408{width:918.000000px;}
.x0_c00408{left:0.000000px;}
.x4_c00408{left:7.906500px;}
.x7_c00408{left:119.929500px;}
.x1_c00408{left:127.476000px;}
.x3_c00408{left:169.995000px;}
.x6_c00408{left:178.635000px;}
.x5_c00408{left:430.350000px;}
.x8_c00408{left:444.060000px;}
.x2_c00408{left:445.500000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls15_c00408{letter-spacing:-1.280000pt;}
.ls9_c00408{letter-spacing:-1.264000pt;}
.lsf_c00408{letter-spacing:-1.258667pt;}
.ls13_c00408{letter-spacing:-0.810667pt;}
.lsc_c00408{letter-spacing:-0.640000pt;}
.ls14_c00408{letter-spacing:-0.473600pt;}
.lsb_c00408{letter-spacing:-0.214933pt;}
.ls7_c00408{letter-spacing:0.000000pt;}
.ls3_c00408{letter-spacing:0.017920pt;}
.lse_c00408{letter-spacing:0.020267pt;}
.ls10_c00408{letter-spacing:0.053867pt;}
.lsd_c00408{letter-spacing:0.148267pt;}
.ls4_c00408{letter-spacing:0.268800pt;}
.lsa_c00408{letter-spacing:0.414933pt;}
.ls11_c00408{letter-spacing:0.450667pt;}
.ls6_c00408{letter-spacing:0.465920pt;}
.ls8_c00408{letter-spacing:0.470933pt;}
.ls12_c00408{letter-spacing:0.560000pt;}
.ls0_c00408{letter-spacing:0.640000pt;}
.ls1_c00408{letter-spacing:0.650667pt;}
.ls2_c00408{letter-spacing:443.786667pt;}
.ls5_c00408{letter-spacing:548.746667pt;}
.ws0_c00408{word-spacing:-16.000000pt;}
.ws4_c00408{word-spacing:-14.000000pt;}
.ws3_c00408{word-spacing:-13.588267pt;}
.ws1_c00408{word-spacing:-13.440000pt;}
.ws6_c00408{word-spacing:-13.225067pt;}
.ws8_c00408{word-spacing:-12.966400pt;}
.ws7_c00408{word-spacing:-12.629333pt;}
.ws2_c00408{word-spacing:-12.176000pt;}
.ws5_c00408{word-spacing:-11.200000pt;}
.ws9_c00408{word-spacing:0.000000pt;}
._3_c00408{margin-left:-2.432000pt;}
._0_c00408{margin-left:-1.461333pt;}
._1_c00408{width:0.960000pt;}
._2_c00408{width:1.941333pt;}
._7_c00408{width:2.848000pt;}
._6_c00408{width:3.840000pt;}
._8_c00408{width:4.917333pt;}
._5_c00408{width:7.018667pt;}
._9_c00408{width:8.181333pt;}
._d_c00408{width:10.965330pt;}
._c_c00408{width:12.149868pt;}
._a_c00408{width:15.966935pt;}
._b_c00408{width:17.869331pt;}
._4_c00408{width:202.475520pt;}
.fs2_c00408{font-size:42.240000pt;}
.fs1_c00408{font-size:53.760000pt;}
.fs0_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y25_c00408{bottom:11.186667pt;}
.y29_c00408{bottom:11.196000pt;}
.y9_c00408{bottom:11.200000pt;}
.y1a_c00408{bottom:13.466667pt;}
.y28_c00408{bottom:34.270667pt;}
.y19_c00408{bottom:38.746667pt;}
.y3_c00408{bottom:51.552000pt;}
.y27_c00408{bottom:57.310667pt;}
.y18_c00408{bottom:61.786667pt;}
.y2_c00408{bottom:70.112000pt;}
.y17_c00408{bottom:84.826667pt;}
.y16_c00408{bottom:107.866667pt;}
.y26_c00408{bottom:111.396000pt;}
.y15_c00408{bottom:130.933333pt;}
.y1b_c00408{bottom:151.413333pt;}
.y14_c00408{bottom:153.973333pt;}
.y13_c00408{bottom:177.013333pt;}
.y24_c00408{bottom:181.200000pt;}
.y12_c00408{bottom:199.733333pt;}
.y23_c00408{bottom:217.986667pt;}
.y11_c00408{bottom:222.773333pt;}
.y10_c00408{bottom:245.853333pt;}
.yf_c00408{bottom:268.893333pt;}
.y22_c00408{bottom:273.373333pt;}
.ye_c00408{bottom:291.933333pt;}
.y21_c00408{bottom:300.893333pt;}
.yd_c00408{bottom:314.973333pt;}
.y20_c00408{bottom:328.413333pt;}
.yc_c00408{bottom:338.040000pt;}
.y1f_c00408{bottom:355.973333pt;}
.yb_c00408{bottom:361.080000pt;}
.y1e_c00408{bottom:383.813333pt;}
.y1d_c00408{bottom:411.333333pt;}
.y1c_c00408{bottom:438.853333pt;}
.ya_c00408{bottom:453.893333pt;}
.y8_c00408{bottom:827.453333pt;}
.y7_c00408{bottom:864.253333pt;}
.y6_c00408{bottom:891.773333pt;}
.y5_c00408{bottom:919.333333pt;}
.y4_c00408{bottom:947.173333pt;}
.y1_c00408{bottom:993.573333pt;}
.h4_c00408{height:23.026667pt;}
.h5_c00408{height:52.762500pt;}
.h1_c00408{height:57.375000pt;}
.h3_c00408{height:62.781250pt;}
.h2_c00408{height:62.812500pt;}
.h7_c00408{height:69.148000pt;}
.h6_c00408{height:372.906667pt;}
.h0_c00408{height:1056.000000pt;}
.w1_c00408{width:268.240000pt;}
.w3_c00408{width:287.480000pt;}
.w4_c00408{width:287.760000pt;}
.w2_c00408{width:297.706667pt;}
.w0_c00408{width:816.000000pt;}
.x0_c00408{left:0.000000pt;}
.x4_c00408{left:7.028000pt;}
.x7_c00408{left:106.604000pt;}
.x1_c00408{left:113.312000pt;}
.x3_c00408{left:151.106667pt;}
.x6_c00408{left:158.786667pt;}
.x5_c00408{left:382.533333pt;}
.x8_c00408{left:394.720000pt;}
.x2_c00408{left:396.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_c00409 {
    display:none;
  }
  .loading-indicator_c00409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00409 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00409 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00409" -> "#page-container .classname_c00409")
 */
.pf_c00409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00409 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00409 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00409 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00409 {overflow:visible;}
  }
}
.c_c00409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00409 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00409:after { /* webkit #35443 */
  content: '';
}
.t_c00409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00409 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00409 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00409 { /* info for Javascript */
  display:none;
}
.l_c00409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00409:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00409;src:url('chunks/assets/font_68d3675dc058c2cdf8ba1e18.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_6fb7183a93058366e5a7712d.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_82adecd9e8cbe1259e17308e.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_9c675b447c25810aa6de1a76.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;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_c00409;src:url('chunks/assets/font_f49e19618afbdac19a593702.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00409;src:url('chunks/assets/font_2c879761bd0739523da94453.woff2')format("woff");}.ff6_c00409{font-family:ff6_c00409;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls4_c00409{letter-spacing:-1.440000px;}
.ls3_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:0.020160px;}
.ls1_c00409{letter-spacing:0.720000px;}
.ls2_c00409{letter-spacing:7.920000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00409{word-spacing:-18.000000px;}
.ws0_c00409{word-spacing:-15.120000px;}
.ws2_c00409{word-spacing:0.000000px;}
._4_c00409{margin-left:-2.903403px;}
._0_c00409{margin-left:-1.028402px;}
._1_c00409{width:1.391403px;}
._d_c00409{width:2.399403px;}
._12_c00409{width:3.454209px;}
._9_c00409{width:4.838400px;}
._6_c00409{width:6.894599px;}
._14_c00409{width:7.946147px;}
._7_c00409{width:8.997721px;}
._10_c00409{width:10.916169px;}
._c_c00409{width:12.648597px;}
._a_c00409{width:14.132402px;}
._b_c00409{width:15.625791px;}
._5_c00409{width:17.962802px;}
._e_c00409{width:19.768804px;}
._f_c00409{width:21.008952px;}
._11_c00409{width:24.116999px;}
._13_c00409{width:25.148402px;}
._8_c00409{width:28.062599px;}
._3_c00409{width:54.492601px;}
._2_c00409{width:55.642205px;}
.fc0_c00409{color:rgb(0,0,0);}
.fs3_c00409{font-size:38.880000px;}
.fs2_c00409{font-size:47.520000px;}
.fs1_c00409{font-size:60.480000px;}
.fs0_c00409{font-size:72.000000px;}
.y0_c00409{bottom:0.000000px;}
.yb_c00409{bottom:12.600000px;}
.ya_c00409{bottom:38.520000px;}
.y3_c00409{bottom:57.996000px;}
.y9_c00409{bottom:64.440000px;}
.y2_c00409{bottom:78.876000px;}
.y8_c00409{bottom:90.360000px;}
.y7_c00409{bottom:116.325000px;}
.y2c_c00409{bottom:130.716000px;}
.y6_c00409{bottom:142.245000px;}
.y2b_c00409{bottom:147.996000px;}
.y2a_c00409{bottom:154.875000px;}
.y29_c00409{bottom:165.315000px;}
.y5_c00409{bottom:168.165000px;}
.y28_c00409{bottom:172.155000px;}
.y27_c00409{bottom:182.595000px;}
.y26_c00409{bottom:199.515000px;}
.y25_c00409{bottom:206.355000px;}
.y24_c00409{bottom:217.515000px;}
.y23_c00409{bottom:261.435000px;}
.y22_c00409{bottom:292.785000px;}
.y20_c00409{bottom:323.745000px;}
.y21_c00409{bottom:332.025000px;}
.y1f_c00409{bottom:354.705000px;}
.y1e_c00409{bottom:385.665000px;}
.y1d_c00409{bottom:417.030000px;}
.y1c_c00409{bottom:447.990000px;}
.y1b_c00409{bottom:478.950000px;}
.y1a_c00409{bottom:509.910000px;}
.y19_c00409{bottom:541.260000px;}
.y18_c00409{bottom:572.220000px;}
.y16_c00409{bottom:603.180000px;}
.y17_c00409{bottom:611.460000px;}
.y15_c00409{bottom:634.140000px;}
.y14_c00409{bottom:665.490000px;}
.y12_c00409{bottom:696.450000px;}
.y13_c00409{bottom:704.730000px;}
.y11_c00409{bottom:727.410000px;}
.y10_c00409{bottom:758.370000px;}
.yf_c00409{bottom:789.735000px;}
.ye_c00409{bottom:820.695000px;}
.yd_c00409{bottom:851.655000px;}
.yc_c00409{bottom:882.615000px;}
.y4_c00409{bottom:899.565000px;}
.y1_c00409{bottom:1117.770000px;}
.h8_c00409{height:34.855313px;}
.h7_c00409{height:46.615078px;}
.h6_c00409{height:46.638281px;}
.h9_c00409{height:54.219375px;}
.ha_c00409{height:54.514688px;}
.h3_c00409{height:59.357813px;}
.h1_c00409{height:64.546875px;}
.h4_c00409{height:70.664062px;}
.h2_c00409{height:181.470000px;}
.h5_c00409{height:1187.995500px;}
.h0_c00409{height:1188.000000px;}
.w1_c00409{width:323.415000px;}
.w2_c00409{width:323.730000px;}
.w3_c00409{width:917.997000px;}
.w0_c00409{width:918.000000px;}
.x0_c00409{left:0.000000px;}
.x4_c00409{left:7.546500px;}
.x3_c00409{left:119.929500px;}
.x1_c00409{left:127.476000px;}
.xe_c00409{left:142.596000px;}
.x6_c00409{left:169.995000px;}
.x7_c00409{left:203.472000px;}
.x8_c00409{left:221.835000px;}
.xd_c00409{left:343.590000px;}
.x5_c00409{left:444.060000px;}
.x2_c00409{left:445.500000px;}
.xb_c00409{left:570.447000px;}
.xc_c00409{left:588.810000px;}
.x9_c00409{left:613.647000px;}
.xa_c00409{left:632.055000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls4_c00409{letter-spacing:-1.280000pt;}
.ls3_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:0.017920pt;}
.ls1_c00409{letter-spacing:0.640000pt;}
.ls2_c00409{letter-spacing:7.040000pt;}
.ws1_c00409{word-spacing:-16.000000pt;}
.ws0_c00409{word-spacing:-13.440000pt;}
.ws2_c00409{word-spacing:0.000000pt;}
._4_c00409{margin-left:-2.580803pt;}
._0_c00409{margin-left:-0.914135pt;}
._1_c00409{width:1.236803pt;}
._d_c00409{width:2.132803pt;}
._12_c00409{width:3.070408pt;}
._9_c00409{width:4.300800pt;}
._6_c00409{width:6.128532pt;}
._14_c00409{width:7.063241pt;}
._7_c00409{width:7.997974pt;}
._10_c00409{width:9.703261pt;}
._c_c00409{width:11.243197pt;}
._a_c00409{width:12.562135pt;}
._b_c00409{width:13.889592pt;}
._5_c00409{width:15.966935pt;}
._e_c00409{width:17.572270pt;}
._f_c00409{width:18.674624pt;}
._11_c00409{width:21.437332pt;}
._13_c00409{width:22.354135pt;}
._8_c00409{width:24.944532pt;}
._3_c00409{width:48.437868pt;}
._2_c00409{width:49.459738pt;}
.fs3_c00409{font-size:34.560000pt;}
.fs2_c00409{font-size:42.240000pt;}
.fs1_c00409{font-size:53.760000pt;}
.fs0_c00409{font-size:64.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.yb_c00409{bottom:11.200000pt;}
.ya_c00409{bottom:34.240000pt;}
.y3_c00409{bottom:51.552000pt;}
.y9_c00409{bottom:57.280000pt;}
.y2_c00409{bottom:70.112000pt;}
.y8_c00409{bottom:80.320000pt;}
.y7_c00409{bottom:103.400000pt;}
.y2c_c00409{bottom:116.192000pt;}
.y6_c00409{bottom:126.440000pt;}
.y2b_c00409{bottom:131.552000pt;}
.y2a_c00409{bottom:137.666667pt;}
.y29_c00409{bottom:146.946667pt;}
.y5_c00409{bottom:149.480000pt;}
.y28_c00409{bottom:153.026667pt;}
.y27_c00409{bottom:162.306667pt;}
.y26_c00409{bottom:177.346667pt;}
.y25_c00409{bottom:183.426667pt;}
.y24_c00409{bottom:193.346667pt;}
.y23_c00409{bottom:232.386667pt;}
.y22_c00409{bottom:260.253333pt;}
.y20_c00409{bottom:287.773333pt;}
.y21_c00409{bottom:295.133333pt;}
.y1f_c00409{bottom:315.293333pt;}
.y1e_c00409{bottom:342.813333pt;}
.y1d_c00409{bottom:370.693333pt;}
.y1c_c00409{bottom:398.213333pt;}
.y1b_c00409{bottom:425.733333pt;}
.y1a_c00409{bottom:453.253333pt;}
.y19_c00409{bottom:481.120000pt;}
.y18_c00409{bottom:508.640000pt;}
.y16_c00409{bottom:536.160000pt;}
.y17_c00409{bottom:543.520000pt;}
.y15_c00409{bottom:563.680000pt;}
.y14_c00409{bottom:591.546667pt;}
.y12_c00409{bottom:619.066667pt;}
.y13_c00409{bottom:626.426667pt;}
.y11_c00409{bottom:646.586667pt;}
.y10_c00409{bottom:674.106667pt;}
.yf_c00409{bottom:701.986667pt;}
.ye_c00409{bottom:729.506667pt;}
.yd_c00409{bottom:757.026667pt;}
.yc_c00409{bottom:784.546667pt;}
.y4_c00409{bottom:799.613333pt;}
.y1_c00409{bottom:993.573333pt;}
.h8_c00409{height:30.982500pt;}
.h7_c00409{height:41.435625pt;}
.h6_c00409{height:41.456250pt;}
.h9_c00409{height:48.195000pt;}
.ha_c00409{height:48.457500pt;}
.h3_c00409{height:52.762500pt;}
.h1_c00409{height:57.375000pt;}
.h4_c00409{height:62.812500pt;}
.h2_c00409{height:161.306667pt;}
.h5_c00409{height:1055.996000pt;}
.h0_c00409{height:1056.000000pt;}
.w1_c00409{width:287.480000pt;}
.w2_c00409{width:287.760000pt;}
.w3_c00409{width:815.997333pt;}
.w0_c00409{width:816.000000pt;}
.x0_c00409{left:0.000000pt;}
.x4_c00409{left:6.708000pt;}
.x3_c00409{left:106.604000pt;}
.x1_c00409{left:113.312000pt;}
.xe_c00409{left:126.752000pt;}
.x6_c00409{left:151.106667pt;}
.x7_c00409{left:180.864000pt;}
.x8_c00409{left:197.186667pt;}
.xd_c00409{left:305.413333pt;}
.x5_c00409{left:394.720000pt;}
.x2_c00409{left:396.000000pt;}
.xb_c00409{left:507.064000pt;}
.xc_c00409{left:523.386667pt;}
.x9_c00409{left:545.464000pt;}
.xa_c00409{left:561.826667pt;}
}





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

.ir_c00410:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00410;src:url('chunks/assets/font_945d478cd5769d00f98aa59d.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_db685fcd971a747e66e362ff.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_f9466ffcb2f87eb14e954744.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;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_c00410;src:url('chunks/assets/font_a41f141247103b7b97cd9da4.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00410;src:url('chunks/assets/font_055dc17861aeecf625b1f32c.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00410;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.lsf_c00410{letter-spacing:-1.416000px;}
.lse_c00410{letter-spacing:-0.918000px;}
.ls10_c00410{letter-spacing:-0.912000px;}
.lsa_c00410{letter-spacing:-0.720000px;}
.ls7_c00410{letter-spacing:-0.532800px;}
.lsd_c00410{letter-spacing:-0.241800px;}
.ls6_c00410{letter-spacing:0.000000px;}
.ls8_c00410{letter-spacing:0.022800px;}
.lsb_c00410{letter-spacing:0.060600px;}
.lsc_c00410{letter-spacing:0.166800px;}
.ls9_c00410{letter-spacing:0.397200px;}
.ls11_c00410{letter-spacing:0.529800px;}
.ls1_c00410{letter-spacing:0.696960px;}
.ls4_c00410{letter-spacing:0.708384px;}
.ls0_c00410{letter-spacing:0.720000px;}
.ls5_c00410{letter-spacing:0.828345px;}
.ls3_c00410{letter-spacing:6.480000px;}
.ls2_c00410{letter-spacing:6.600000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:-18.000000px;}
.ws7_c00410{word-spacing:-15.649800px;}
.ws2_c00410{word-spacing:-15.517200px;}
.ws4_c00410{word-spacing:-15.286800px;}
.ws3_c00410{word-spacing:-15.180600px;}
.ws1_c00410{word-spacing:-15.120000px;}
.ws5_c00410{word-spacing:-14.878200px;}
.ws6_c00410{word-spacing:-14.202000px;}
.ws8_c00410{word-spacing:0.000000px;}
._4_c00410{margin-left:-3.240000px;}
._0_c00410{margin-left:-1.728000px;}
._3_c00410{width:1.368000px;}
._5_c00410{width:2.808000px;}
._a_c00410{width:4.248000px;}
._7_c00410{width:5.659200px;}
._e_c00410{width:7.156800px;}
._8_c00410{width:8.856000px;}
._9_c00410{width:10.488000px;}
._6_c00410{width:12.312000px;}
._2_c00410{width:13.752000px;}
._1_c00410{width:15.048000px;}
._b_c00410{width:16.944000px;}
._d_c00410{width:24.240024px;}
._c_c00410{width:25.704000px;}
.fc0_c00410{color:rgb(0,0,0);}
.fs1_c00410{font-size:60.480000px;}
.fs0_c00410{font-size:72.000000px;}
.y0_c00410{bottom:0.000000px;}
.y3_c00410{bottom:57.996000px;}
.y2_c00410{bottom:78.876000px;}
.y26_c00410{bottom:128.556000px;}
.y25_c00410{bottom:159.555000px;}
.y24_c00410{bottom:190.515000px;}
.y23_c00410{bottom:221.835000px;}
.y22_c00410{bottom:252.795000px;}
.y21_c00410{bottom:283.785000px;}
.y20_c00410{bottom:314.745000px;}
.y1f_c00410{bottom:346.065000px;}
.y1e_c00410{bottom:377.025000px;}
.y1d_c00410{bottom:408.030000px;}
.y1c_c00410{bottom:436.830000px;}
.y1b_c00410{bottom:462.750000px;}
.y1a_c00410{bottom:488.670000px;}
.y19_c00410{bottom:514.590000px;}
.y18_c00410{bottom:540.180000px;}
.y17_c00410{bottom:566.100000px;}
.y16_c00410{bottom:592.020000px;}
.y15_c00410{bottom:617.940000px;}
.y14_c00410{bottom:643.890000px;}
.y13_c00410{bottom:669.810000px;}
.y12_c00410{bottom:695.730000px;}
.y11_c00410{bottom:721.650000px;}
.y10_c00410{bottom:747.210000px;}
.yf_c00410{bottom:773.175000px;}
.ye_c00410{bottom:799.095000px;}
.yd_c00410{bottom:825.015000px;}
.yc_c00410{bottom:850.935000px;}
.yb_c00410{bottom:876.855000px;}
.ya_c00410{bottom:902.805000px;}
.y9_c00410{bottom:928.365000px;}
.y8_c00410{bottom:954.285000px;}
.y7_c00410{bottom:980.205000px;}
.y6_c00410{bottom:1006.125000px;}
.y5_c00410{bottom:1034.250000px;}
.y4_c00410{bottom:1065.570000px;}
.y1_c00410{bottom:1117.770000px;}
.h3_c00410{height:59.357813px;}
.h4_c00410{height:60.952500px;}
.h1_c00410{height:64.546875px;}
.h2_c00410{height:70.664062px;}
.h0_c00410{height:1188.000000px;}
.w0_c00410{width:918.000000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:127.476000px;}
.x3_c00410{left:169.995000px;}
.x2_c00410{left:445.500000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.lsf_c00410{letter-spacing:-1.258667pt;}
.lse_c00410{letter-spacing:-0.816000pt;}
.ls10_c00410{letter-spacing:-0.810667pt;}
.lsa_c00410{letter-spacing:-0.640000pt;}
.ls7_c00410{letter-spacing:-0.473600pt;}
.lsd_c00410{letter-spacing:-0.214933pt;}
.ls6_c00410{letter-spacing:0.000000pt;}
.ls8_c00410{letter-spacing:0.020267pt;}
.lsb_c00410{letter-spacing:0.053867pt;}
.lsc_c00410{letter-spacing:0.148267pt;}
.ls9_c00410{letter-spacing:0.353067pt;}
.ls11_c00410{letter-spacing:0.470933pt;}
.ls1_c00410{letter-spacing:0.619520pt;}
.ls4_c00410{letter-spacing:0.629675pt;}
.ls0_c00410{letter-spacing:0.640000pt;}
.ls5_c00410{letter-spacing:0.736306pt;}
.ls3_c00410{letter-spacing:5.760000pt;}
.ls2_c00410{letter-spacing:5.866667pt;}
.ws0_c00410{word-spacing:-16.000000pt;}
.ws7_c00410{word-spacing:-13.910933pt;}
.ws2_c00410{word-spacing:-13.793067pt;}
.ws4_c00410{word-spacing:-13.588267pt;}
.ws3_c00410{word-spacing:-13.493867pt;}
.ws1_c00410{word-spacing:-13.440000pt;}
.ws5_c00410{word-spacing:-13.225067pt;}
.ws6_c00410{word-spacing:-12.624000pt;}
.ws8_c00410{word-spacing:0.000000pt;}
._4_c00410{margin-left:-2.880000pt;}
._0_c00410{margin-left:-1.536000pt;}
._3_c00410{width:1.216000pt;}
._5_c00410{width:2.496000pt;}
._a_c00410{width:3.776000pt;}
._7_c00410{width:5.030400pt;}
._e_c00410{width:6.361600pt;}
._8_c00410{width:7.872000pt;}
._9_c00410{width:9.322667pt;}
._6_c00410{width:10.944000pt;}
._2_c00410{width:12.224000pt;}
._1_c00410{width:13.376000pt;}
._b_c00410{width:15.061333pt;}
._d_c00410{width:21.546688pt;}
._c_c00410{width:22.848000pt;}
.fs1_c00410{font-size:53.760000pt;}
.fs0_c00410{font-size:64.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y3_c00410{bottom:51.552000pt;}
.y2_c00410{bottom:70.112000pt;}
.y26_c00410{bottom:114.272000pt;}
.y25_c00410{bottom:141.826667pt;}
.y24_c00410{bottom:169.346667pt;}
.y23_c00410{bottom:197.186667pt;}
.y22_c00410{bottom:224.706667pt;}
.y21_c00410{bottom:252.253333pt;}
.y20_c00410{bottom:279.773333pt;}
.y1f_c00410{bottom:307.613333pt;}
.y1e_c00410{bottom:335.133333pt;}
.y1d_c00410{bottom:362.693333pt;}
.y1c_c00410{bottom:388.293333pt;}
.y1b_c00410{bottom:411.333333pt;}
.y1a_c00410{bottom:434.373333pt;}
.y19_c00410{bottom:457.413333pt;}
.y18_c00410{bottom:480.160000pt;}
.y17_c00410{bottom:503.200000pt;}
.y16_c00410{bottom:526.240000pt;}
.y15_c00410{bottom:549.280000pt;}
.y14_c00410{bottom:572.346667pt;}
.y13_c00410{bottom:595.386667pt;}
.y12_c00410{bottom:618.426667pt;}
.y11_c00410{bottom:641.466667pt;}
.y10_c00410{bottom:664.186667pt;}
.yf_c00410{bottom:687.266667pt;}
.ye_c00410{bottom:710.306667pt;}
.yd_c00410{bottom:733.346667pt;}
.yc_c00410{bottom:756.386667pt;}
.yb_c00410{bottom:779.426667pt;}
.ya_c00410{bottom:802.493333pt;}
.y9_c00410{bottom:825.213333pt;}
.y8_c00410{bottom:848.253333pt;}
.y7_c00410{bottom:871.293333pt;}
.y6_c00410{bottom:894.333333pt;}
.y5_c00410{bottom:919.333333pt;}
.y4_c00410{bottom:947.173333pt;}
.y1_c00410{bottom:993.573333pt;}
.h3_c00410{height:52.762500pt;}
.h4_c00410{height:54.180000pt;}
.h1_c00410{height:57.375000pt;}
.h2_c00410{height:62.812500pt;}
.h0_c00410{height:1056.000000pt;}
.w0_c00410{width:816.000000pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:113.312000pt;}
.x3_c00410{left:151.106667pt;}
.x2_c00410{left:396.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_c00411 {
    display:none;
  }
  .loading-indicator_c00411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00411 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00411 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00411" -> "#page-container .classname_c00411")
 */
.pf_c00411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00411 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00411 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00411 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00411 {overflow:visible;}
  }
}
.c_c00411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00411 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00411:after { /* webkit #35443 */
  content: '';
}
.t_c00411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00411 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00411 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00411 { /* info for Javascript */
  display:none;
}
.l_c00411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00411:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00411;src:url('chunks/assets/font_17558cc8a997d4ae3b6e0fd3.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_f35abfc2cc3ed01ba71f026b.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_d6f08dff7af4202c72c894fe.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;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_c00411;src:url('chunks/assets/font_2e50072848e8f2e9a724af83.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00411;src:url('chunks/assets/font_6c92ee509a4a424a7a4e8aee.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.lsf_c00411{letter-spacing:-1.680000px;}
.ls13_c00411{letter-spacing:-1.416000px;}
.lsb_c00411{letter-spacing:-0.720000px;}
.ls10_c00411{letter-spacing:-0.532800px;}
.ls9_c00411{letter-spacing:0.000000px;}
.ls12_c00411{letter-spacing:0.022800px;}
.ls7_c00411{letter-spacing:0.060600px;}
.lsd_c00411{letter-spacing:0.166800px;}
.ls0_c00411{letter-spacing:0.180000px;}
.ls2_c00411{letter-spacing:0.302400px;}
.lsa_c00411{letter-spacing:0.486600px;}
.ls3_c00411{letter-spacing:0.518400px;}
.lse_c00411{letter-spacing:0.521400px;}
.lsc_c00411{letter-spacing:0.529800px;}
.ls11_c00411{letter-spacing:0.702000px;}
.ls4_c00411{letter-spacing:0.708336px;}
.ls1_c00411{letter-spacing:0.720000px;}
.ls8_c00411{letter-spacing:0.740160px;}
.ls5_c00411{letter-spacing:0.740278px;}
.ls6_c00411{letter-spacing:0.742919px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00411{word-spacing:-18.000000px;}
.ws5_c00411{word-spacing:-15.641400px;}
.ws2_c00411{word-spacing:-15.606600px;}
.ws4_c00411{word-spacing:-15.286800px;}
.ws7_c00411{word-spacing:-15.180600px;}
.ws1_c00411{word-spacing:-15.120000px;}
.ws8_c00411{word-spacing:-13.704000px;}
.ws6_c00411{word-spacing:-13.440000px;}
.ws3_c00411{word-spacing:-12.600000px;}
.ws9_c00411{word-spacing:0.000000px;}
._13_c00411{margin-left:-3.827468px;}
._1_c00411{margin-left:-2.376000px;}
._5_c00411{margin-left:-1.296000px;}
._2_c00411{width:1.368000px;}
._6_c00411{width:3.024000px;}
._14_c00411{width:4.118377px;}
._9_c00411{width:5.256000px;}
._7_c00411{width:6.336000px;}
._a_c00411{width:7.344000px;}
._8_c00411{width:8.496000px;}
._12_c00411{width:9.936023px;}
._11_c00411{width:10.943977px;}
._3_c00411{width:12.024000px;}
._0_c00411{width:13.176000px;}
._4_c00411{width:14.184000px;}
._e_c00411{width:17.331808px;}
._d_c00411{width:69.840000px;}
._b_c00411{width:163.235222px;}
._f_c00411{width:188.039940px;}
._10_c00411{width:189.359977px;}
._c_c00411{width:309.720058px;}
.fc0_c00411{color:rgb(0,0,0);}
.fs3_c00411{font-size:38.880000px;}
.fs1_c00411{font-size:47.520000px;}
.fs2_c00411{font-size:60.480000px;}
.fs0_c00411{font-size:72.000000px;}
.y0_c00411{bottom:0.000000px;}
.y11_c00411{bottom:12.585000px;}
.y9_c00411{bottom:12.600000px;}
.y10_c00411{bottom:38.145000px;}
.y3_c00411{bottom:57.996000px;}
.yf_c00411{bottom:64.065000px;}
.y2_c00411{bottom:78.876000px;}
.ye_c00411{bottom:89.985000px;}
.yd_c00411{bottom:115.935000px;}
.y28_c00411{bottom:130.716000px;}
.yc_c00411{bottom:141.855000px;}
.y27_c00411{bottom:147.996000px;}
.y26_c00411{bottom:165.315000px;}
.yb_c00411{bottom:167.775000px;}
.y25_c00411{bottom:172.155000px;}
.y24_c00411{bottom:182.955000px;}
.y23_c00411{bottom:225.795000px;}
.y22_c00411{bottom:251.715000px;}
.y21_c00411{bottom:277.665000px;}
.y20_c00411{bottom:303.585000px;}
.y1f_c00411{bottom:329.145000px;}
.y1e_c00411{bottom:355.065000px;}
.y1d_c00411{bottom:380.985000px;}
.y1c_c00411{bottom:406.950000px;}
.y1b_c00411{bottom:432.870000px;}
.y1a_c00411{bottom:458.790000px;}
.y19_c00411{bottom:484.710000px;}
.y18_c00411{bottom:510.630000px;}
.y17_c00411{bottom:547.740000px;}
.y16_c00411{bottom:599.580000px;}
.y15_c00411{bottom:630.900000px;}
.y14_c00411{bottom:661.890000px;}
.y13_c00411{bottom:713.730000px;}
.y12_c00411{bottom:754.050000px;}
.ya_c00411{bottom:780.030000px;}
.y8_c00411{bottom:961.845000px;}
.y7_c00411{bottom:1003.245000px;}
.y5_c00411{bottom:1034.250000px;}
.y6_c00411{bottom:1042.530000px;}
.y4_c00411{bottom:1065.570000px;}
.y1_c00411{bottom:1117.770000px;}
.h6_c00411{height:25.905000px;}
.h9_c00411{height:34.855313px;}
.h4_c00411{height:46.638281px;}
.ha_c00411{height:54.219375px;}
.h7_c00411{height:59.357813px;}
.h1_c00411{height:64.546875px;}
.h5_c00411{height:70.628906px;}
.h2_c00411{height:70.664062px;}
.h8_c00411{height:181.080000px;}
.h3_c00411{height:1187.995500px;}
.h0_c00411{height:1188.000000px;}
.w2_c00411{width:215.325000px;}
.w3_c00411{width:215.385000px;}
.w4_c00411{width:215.685000px;}
.w1_c00411{width:917.997000px;}
.w0_c00411{width:918.000000px;}
.x0_c00411{left:0.000000px;}
.x7_c00411{left:7.546500px;}
.x6_c00411{left:119.929500px;}
.x1_c00411{left:127.476000px;}
.xc_c00411{left:142.596000px;}
.x3_c00411{left:169.995000px;}
.xa_c00411{left:180.795000px;}
.x4_c00411{left:192.312000px;}
.x5_c00411{left:210.675000px;}
.x8_c00411{left:335.985000px;}
.xb_c00411{left:343.590000px;}
.x2_c00411{left:445.500000px;}
.x9_c00411{left:552.105000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.lsf_c00411{letter-spacing:-1.493333pt;}
.ls13_c00411{letter-spacing:-1.258667pt;}
.lsb_c00411{letter-spacing:-0.640000pt;}
.ls10_c00411{letter-spacing:-0.473600pt;}
.ls9_c00411{letter-spacing:0.000000pt;}
.ls12_c00411{letter-spacing:0.020267pt;}
.ls7_c00411{letter-spacing:0.053867pt;}
.lsd_c00411{letter-spacing:0.148267pt;}
.ls0_c00411{letter-spacing:0.160000pt;}
.ls2_c00411{letter-spacing:0.268800pt;}
.lsa_c00411{letter-spacing:0.432533pt;}
.ls3_c00411{letter-spacing:0.460800pt;}
.lse_c00411{letter-spacing:0.463467pt;}
.lsc_c00411{letter-spacing:0.470933pt;}
.ls11_c00411{letter-spacing:0.624000pt;}
.ls4_c00411{letter-spacing:0.629632pt;}
.ls1_c00411{letter-spacing:0.640000pt;}
.ls8_c00411{letter-spacing:0.657920pt;}
.ls5_c00411{letter-spacing:0.658025pt;}
.ls6_c00411{letter-spacing:0.660372pt;}
.ws0_c00411{word-spacing:-16.000000pt;}
.ws5_c00411{word-spacing:-13.903467pt;}
.ws2_c00411{word-spacing:-13.872533pt;}
.ws4_c00411{word-spacing:-13.588267pt;}
.ws7_c00411{word-spacing:-13.493867pt;}
.ws1_c00411{word-spacing:-13.440000pt;}
.ws8_c00411{word-spacing:-12.181333pt;}
.ws6_c00411{word-spacing:-11.946667pt;}
.ws3_c00411{word-spacing:-11.200000pt;}
.ws9_c00411{word-spacing:0.000000pt;}
._13_c00411{margin-left:-3.402194pt;}
._1_c00411{margin-left:-2.112000pt;}
._5_c00411{margin-left:-1.152000pt;}
._2_c00411{width:1.216000pt;}
._6_c00411{width:2.688000pt;}
._14_c00411{width:3.660780pt;}
._9_c00411{width:4.672000pt;}
._7_c00411{width:5.632000pt;}
._a_c00411{width:6.528000pt;}
._8_c00411{width:7.552000pt;}
._12_c00411{width:8.832020pt;}
._11_c00411{width:9.727980pt;}
._3_c00411{width:10.688000pt;}
._0_c00411{width:11.712000pt;}
._4_c00411{width:12.608000pt;}
._e_c00411{width:15.406052pt;}
._d_c00411{width:62.080000pt;}
._b_c00411{width:145.097975pt;}
._f_c00411{width:167.146614pt;}
._10_c00411{width:168.319980pt;}
._c_c00411{width:275.306718pt;}
.fs3_c00411{font-size:34.560000pt;}
.fs1_c00411{font-size:42.240000pt;}
.fs2_c00411{font-size:53.760000pt;}
.fs0_c00411{font-size:64.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y11_c00411{bottom:11.186667pt;}
.y9_c00411{bottom:11.200000pt;}
.y10_c00411{bottom:33.906667pt;}
.y3_c00411{bottom:51.552000pt;}
.yf_c00411{bottom:56.946667pt;}
.y2_c00411{bottom:70.112000pt;}
.ye_c00411{bottom:79.986667pt;}
.yd_c00411{bottom:103.053333pt;}
.y28_c00411{bottom:116.192000pt;}
.yc_c00411{bottom:126.093333pt;}
.y27_c00411{bottom:131.552000pt;}
.y26_c00411{bottom:146.946667pt;}
.yb_c00411{bottom:149.133333pt;}
.y25_c00411{bottom:153.026667pt;}
.y24_c00411{bottom:162.626667pt;}
.y23_c00411{bottom:200.706667pt;}
.y22_c00411{bottom:223.746667pt;}
.y21_c00411{bottom:246.813333pt;}
.y20_c00411{bottom:269.853333pt;}
.y1f_c00411{bottom:292.573333pt;}
.y1e_c00411{bottom:315.613333pt;}
.y1d_c00411{bottom:338.653333pt;}
.y1c_c00411{bottom:361.733333pt;}
.y1b_c00411{bottom:384.773333pt;}
.y1a_c00411{bottom:407.813333pt;}
.y19_c00411{bottom:430.853333pt;}
.y18_c00411{bottom:453.893333pt;}
.y17_c00411{bottom:486.880000pt;}
.y16_c00411{bottom:532.960000pt;}
.y15_c00411{bottom:560.800000pt;}
.y14_c00411{bottom:588.346667pt;}
.y13_c00411{bottom:634.426667pt;}
.y12_c00411{bottom:670.266667pt;}
.ya_c00411{bottom:693.360000pt;}
.y8_c00411{bottom:854.973333pt;}
.y7_c00411{bottom:891.773333pt;}
.y5_c00411{bottom:919.333333pt;}
.y6_c00411{bottom:926.693333pt;}
.y4_c00411{bottom:947.173333pt;}
.y1_c00411{bottom:993.573333pt;}
.h6_c00411{height:23.026667pt;}
.h9_c00411{height:30.982500pt;}
.h4_c00411{height:41.456250pt;}
.ha_c00411{height:48.195000pt;}
.h7_c00411{height:52.762500pt;}
.h1_c00411{height:57.375000pt;}
.h5_c00411{height:62.781250pt;}
.h2_c00411{height:62.812500pt;}
.h8_c00411{height:160.960000pt;}
.h3_c00411{height:1055.996000pt;}
.h0_c00411{height:1056.000000pt;}
.w2_c00411{width:191.400000pt;}
.w3_c00411{width:191.453333pt;}
.w4_c00411{width:191.720000pt;}
.w1_c00411{width:815.997333pt;}
.w0_c00411{width:816.000000pt;}
.x0_c00411{left:0.000000pt;}
.x7_c00411{left:6.708000pt;}
.x6_c00411{left:106.604000pt;}
.x1_c00411{left:113.312000pt;}
.xc_c00411{left:126.752000pt;}
.x3_c00411{left:151.106667pt;}
.xa_c00411{left:160.706667pt;}
.x4_c00411{left:170.944000pt;}
.x5_c00411{left:187.266667pt;}
.x8_c00411{left:298.653333pt;}
.xb_c00411{left:305.413333pt;}
.x2_c00411{left:396.000000pt;}
.x9_c00411{left:490.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_c00412 {
    display:none;
  }
  .loading-indicator_c00412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00412 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00412 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00412" -> "#page-container .classname_c00412")
 */
.pf_c00412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00412 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00412 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00412 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00412 {overflow:visible;}
  }
}
.c_c00412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00412 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00412:after { /* webkit #35443 */
  content: '';
}
.t_c00412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00412 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00412 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00412 { /* info for Javascript */
  display:none;
}
.l_c00412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00412:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00412;src:url('chunks/assets/font_893fffa2dd3be52f6819d7a1.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_1111af69d6d28d96f1e24e0e.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_d8cb2c4102634f4e48c77aec.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_7a15fcce73cff80497c889b6.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00412;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls17_c00412{letter-spacing:-1.416000px;}
.ls21_c00412{letter-spacing:-1.128000px;}
.ls1d_c00412{letter-spacing:-0.972000px;}
.ls1b_c00412{letter-spacing:-0.924000px;}
.ls19_c00412{letter-spacing:-0.912000px;}
.ls1e_c00412{letter-spacing:-0.544200px;}
.ls18_c00412{letter-spacing:-0.302400px;}
.ls13_c00412{letter-spacing:-0.241800px;}
.ls1f_c00412{letter-spacing:-0.169800px;}
.ls12_c00412{letter-spacing:0.000000px;}
.ls16_c00412{letter-spacing:0.022800px;}
.ls6_c00412{letter-spacing:0.108480px;}
.lse_c00412{letter-spacing:0.140160px;}
.ls15_c00412{letter-spacing:0.166800px;}
.ls1a_c00412{letter-spacing:0.219000px;}
.lsb_c00412{letter-spacing:0.302400px;}
.ls22_c00412{letter-spacing:0.313800px;}
.ls14_c00412{letter-spacing:0.385800px;}
.lsc_c00412{letter-spacing:0.518400px;}
.lsd_c00412{letter-spacing:0.521400px;}
.ls1c_c00412{letter-spacing:0.529800px;}
.ls20_c00412{letter-spacing:0.702000px;}
.ls8_c00412{letter-spacing:0.704160px;}
.ls4_c00412{letter-spacing:0.708336px;}
.ls2_c00412{letter-spacing:0.708607px;}
.ls0_c00412{letter-spacing:0.720000px;}
.ls10_c00412{letter-spacing:0.728963px;}
.ls7_c00412{letter-spacing:0.739973px;}
.ls3_c00412{letter-spacing:0.740051px;}
.lsf_c00412{letter-spacing:0.740232px;}
.ls5_c00412{letter-spacing:0.740278px;}
.ls9_c00412{letter-spacing:0.740310px;}
.ls11_c00412{letter-spacing:0.740669px;}
.ls1_c00412{letter-spacing:0.840000px;}
.lsa_c00412{letter-spacing:0.860379px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00412{word-spacing:-15.822000px;}
.wse_c00412{word-spacing:-15.649800px;}
.wsf_c00412{word-spacing:-15.641400px;}
.wsb_c00412{word-spacing:-15.638400px;}
.ws2_c00412{word-spacing:-15.505800px;}
.ws12_c00412{word-spacing:-15.433800px;}
.ws8_c00412{word-spacing:-15.339000px;}
.ws3_c00412{word-spacing:-15.286800px;}
.ws5_c00412{word-spacing:-15.142800px;}
.ws1_c00412{word-spacing:-15.120000px;}
.wsc_c00412{word-spacing:-14.950200px;}
.ws0_c00412{word-spacing:-14.878200px;}
.ws7_c00412{word-spacing:-14.817600px;}
.wsa_c00412{word-spacing:-14.575800px;}
.ws10_c00412{word-spacing:-14.208000px;}
.ws9_c00412{word-spacing:-14.196000px;}
.ws11_c00412{word-spacing:-13.992000px;}
.ws6_c00412{word-spacing:-13.704000px;}
.ws4_c00412{word-spacing:-12.600000px;}
.ws13_c00412{word-spacing:0.000000px;}
._8_c00412{margin-left:-2.586669px;}
._1_c00412{margin-left:-1.440029px;}
._0_c00412{width:1.431622px;}
._9_c00412{width:2.466407px;}
._3_c00412{width:42.599995px;}
._6_c00412{width:63.868427px;}
._c_c00412{width:85.800012px;}
._b_c00412{width:137.360962px;}
._d_c00412{width:140.109686px;}
._2_c00412{width:156.746556px;}
._a_c00412{width:164.387618px;}
._5_c00412{width:180.900000px;}
._7_c00412{width:188.039940px;}
._4_c00412{width:189.360057px;}
.fc0_c00412{color:rgb(0,0,0);}
.fs2_c00412{font-size:47.520000px;}
.fs1_c00412{font-size:60.480000px;}
.fs0_c00412{font-size:72.000000px;}
.y0_c00412{bottom:0.000000px;}
.y3_c00412{bottom:57.996000px;}
.y2_c00412{bottom:78.876000px;}
.y27_c00412{bottom:159.555000px;}
.y26_c00412{bottom:188.355000px;}
.y25_c00412{bottom:214.275000px;}
.y24_c00412{bottom:240.195000px;}
.y23_c00412{bottom:266.115000px;}
.y22_c00412{bottom:292.065000px;}
.y21_c00412{bottom:317.625000px;}
.y20_c00412{bottom:343.545000px;}
.y1f_c00412{bottom:369.465000px;}
.y1e_c00412{bottom:395.430000px;}
.y1d_c00412{bottom:421.350000px;}
.y1c_c00412{bottom:447.270000px;}
.y1b_c00412{bottom:473.190000px;}
.y1a_c00412{bottom:498.750000px;}
.y19_c00412{bottom:524.700000px;}
.y18_c00412{bottom:550.620000px;}
.y17_c00412{bottom:576.540000px;}
.y16_c00412{bottom:602.460000px;}
.y15_c00412{bottom:628.380000px;}
.y14_c00412{bottom:654.330000px;}
.y13_c00412{bottom:680.250000px;}
.y12_c00412{bottom:705.810000px;}
.y11_c00412{bottom:731.730000px;}
.y10_c00412{bottom:757.650000px;}
.yf_c00412{bottom:783.615000px;}
.ye_c00412{bottom:809.535000px;}
.yd_c00412{bottom:835.455000px;}
.yc_c00412{bottom:861.375000px;}
.yb_c00412{bottom:887.325000px;}
.ya_c00412{bottom:912.885000px;}
.y9_c00412{bottom:938.805000px;}
.y8_c00412{bottom:964.725000px;}
.y7_c00412{bottom:990.645000px;}
.y6_c00412{bottom:1016.610000px;}
.y5_c00412{bottom:1042.530000px;}
.y4_c00412{bottom:1068.450000px;}
.y1_c00412{bottom:1117.770000px;}
.h2_c00412{height:59.357813px;}
.h3_c00412{height:60.952500px;}
.h1_c00412{height:64.546875px;}
.h4_c00412{height:70.664062px;}
.h0_c00412{height:1188.000000px;}
.w0_c00412{width:918.000000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:127.476000px;}
.x3_c00412{left:169.995000px;}
.x2_c00412{left:445.500000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls17_c00412{letter-spacing:-1.258667pt;}
.ls21_c00412{letter-spacing:-1.002667pt;}
.ls1d_c00412{letter-spacing:-0.864000pt;}
.ls1b_c00412{letter-spacing:-0.821333pt;}
.ls19_c00412{letter-spacing:-0.810667pt;}
.ls1e_c00412{letter-spacing:-0.483733pt;}
.ls18_c00412{letter-spacing:-0.268800pt;}
.ls13_c00412{letter-spacing:-0.214933pt;}
.ls1f_c00412{letter-spacing:-0.150933pt;}
.ls12_c00412{letter-spacing:0.000000pt;}
.ls16_c00412{letter-spacing:0.020267pt;}
.ls6_c00412{letter-spacing:0.096427pt;}
.lse_c00412{letter-spacing:0.124587pt;}
.ls15_c00412{letter-spacing:0.148267pt;}
.ls1a_c00412{letter-spacing:0.194667pt;}
.lsb_c00412{letter-spacing:0.268800pt;}
.ls22_c00412{letter-spacing:0.278933pt;}
.ls14_c00412{letter-spacing:0.342933pt;}
.lsc_c00412{letter-spacing:0.460800pt;}
.lsd_c00412{letter-spacing:0.463467pt;}
.ls1c_c00412{letter-spacing:0.470933pt;}
.ls20_c00412{letter-spacing:0.624000pt;}
.ls8_c00412{letter-spacing:0.625920pt;}
.ls4_c00412{letter-spacing:0.629632pt;}
.ls2_c00412{letter-spacing:0.629873pt;}
.ls0_c00412{letter-spacing:0.640000pt;}
.ls10_c00412{letter-spacing:0.647967pt;}
.ls7_c00412{letter-spacing:0.657754pt;}
.ls3_c00412{letter-spacing:0.657823pt;}
.lsf_c00412{letter-spacing:0.657984pt;}
.ls5_c00412{letter-spacing:0.658025pt;}
.ls9_c00412{letter-spacing:0.658053pt;}
.ls11_c00412{letter-spacing:0.658372pt;}
.ls1_c00412{letter-spacing:0.746667pt;}
.lsa_c00412{letter-spacing:0.764781pt;}
.wsd_c00412{word-spacing:-14.064000pt;}
.wse_c00412{word-spacing:-13.910933pt;}
.wsf_c00412{word-spacing:-13.903467pt;}
.wsb_c00412{word-spacing:-13.900800pt;}
.ws2_c00412{word-spacing:-13.782933pt;}
.ws12_c00412{word-spacing:-13.718933pt;}
.ws8_c00412{word-spacing:-13.634667pt;}
.ws3_c00412{word-spacing:-13.588267pt;}
.ws5_c00412{word-spacing:-13.460267pt;}
.ws1_c00412{word-spacing:-13.440000pt;}
.wsc_c00412{word-spacing:-13.289067pt;}
.ws0_c00412{word-spacing:-13.225067pt;}
.ws7_c00412{word-spacing:-13.171200pt;}
.wsa_c00412{word-spacing:-12.956267pt;}
.ws10_c00412{word-spacing:-12.629333pt;}
.ws9_c00412{word-spacing:-12.618667pt;}
.ws11_c00412{word-spacing:-12.437333pt;}
.ws6_c00412{word-spacing:-12.181333pt;}
.ws4_c00412{word-spacing:-11.200000pt;}
.ws13_c00412{word-spacing:0.000000pt;}
._8_c00412{margin-left:-2.299261pt;}
._1_c00412{margin-left:-1.280026pt;}
._0_c00412{width:1.272553pt;}
._9_c00412{width:2.192362pt;}
._3_c00412{width:37.866662pt;}
._6_c00412{width:56.771935pt;}
._c_c00412{width:76.266678pt;}
._b_c00412{width:122.098633pt;}
._d_c00412{width:124.541943pt;}
._2_c00412{width:139.330272pt;}
._a_c00412{width:146.122327pt;}
._5_c00412{width:160.800000pt;}
._7_c00412{width:167.146614pt;}
._4_c00412{width:168.320050pt;}
.fs2_c00412{font-size:42.240000pt;}
.fs1_c00412{font-size:53.760000pt;}
.fs0_c00412{font-size:64.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y3_c00412{bottom:51.552000pt;}
.y2_c00412{bottom:70.112000pt;}
.y27_c00412{bottom:141.826667pt;}
.y26_c00412{bottom:167.426667pt;}
.y25_c00412{bottom:190.466667pt;}
.y24_c00412{bottom:213.506667pt;}
.y23_c00412{bottom:236.546667pt;}
.y22_c00412{bottom:259.613333pt;}
.y21_c00412{bottom:282.333333pt;}
.y20_c00412{bottom:305.373333pt;}
.y1f_c00412{bottom:328.413333pt;}
.y1e_c00412{bottom:351.493333pt;}
.y1d_c00412{bottom:374.533333pt;}
.y1c_c00412{bottom:397.573333pt;}
.y1b_c00412{bottom:420.613333pt;}
.y1a_c00412{bottom:443.333333pt;}
.y19_c00412{bottom:466.400000pt;}
.y18_c00412{bottom:489.440000pt;}
.y17_c00412{bottom:512.480000pt;}
.y16_c00412{bottom:535.520000pt;}
.y15_c00412{bottom:558.560000pt;}
.y14_c00412{bottom:581.626667pt;}
.y13_c00412{bottom:604.666667pt;}
.y12_c00412{bottom:627.386667pt;}
.y11_c00412{bottom:650.426667pt;}
.y10_c00412{bottom:673.466667pt;}
.yf_c00412{bottom:696.546667pt;}
.ye_c00412{bottom:719.586667pt;}
.yd_c00412{bottom:742.626667pt;}
.yc_c00412{bottom:765.666667pt;}
.yb_c00412{bottom:788.733333pt;}
.ya_c00412{bottom:811.453333pt;}
.y9_c00412{bottom:834.493333pt;}
.y8_c00412{bottom:857.533333pt;}
.y7_c00412{bottom:880.573333pt;}
.y6_c00412{bottom:903.653333pt;}
.y5_c00412{bottom:926.693333pt;}
.y4_c00412{bottom:949.733333pt;}
.y1_c00412{bottom:993.573333pt;}
.h2_c00412{height:52.762500pt;}
.h3_c00412{height:54.180000pt;}
.h1_c00412{height:57.375000pt;}
.h4_c00412{height:62.812500pt;}
.h0_c00412{height:1056.000000pt;}
.w0_c00412{width:816.000000pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:113.312000pt;}
.x3_c00412{left:151.106667pt;}
.x2_c00412{left:396.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_c00413 {
    display:none;
  }
  .loading-indicator_c00413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00413 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00413 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00413" -> "#page-container .classname_c00413")
 */
.pf_c00413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00413 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00413 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00413 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00413 {overflow:visible;}
  }
}
.c_c00413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00413 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00413:after { /* webkit #35443 */
  content: '';
}
.t_c00413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00413 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00413 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00413 { /* info for Javascript */
  display:none;
}
.l_c00413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00413:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00413;src:url('chunks/assets/font_c868381e3d1cb76ea2a1ccc2.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_f40a4537d15cd738ae5a7d18.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_d7e055989881f3168e9e63a5.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;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_c00413;src:url('chunks/assets/font_2a5f9ca3d54ec26c9d1f3c31.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00413;src:url('chunks/assets/font_82f76c868ddd3c1042949fdf.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00413;src:url('chunks/assets/font_018e16e791c29b2df871c97e.woff2')format("woff");}.ff6_c00413{font-family:ff6_c00413;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls6_c00413{letter-spacing:-0.486600px;}
.ls5_c00413{letter-spacing:-0.288000px;}
.ls4_c00413{letter-spacing:0.000000px;}
.ls3_c00413{letter-spacing:0.506880px;}
.ls2_c00413{letter-spacing:0.720000px;}
.ls1_c00413{letter-spacing:2.160000px;}
.ls0_c00413{letter-spacing:7.920000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00413{word-spacing:-60.480000px;}
.ws0_c00413{word-spacing:-18.000000px;}
.ws1_c00413{word-spacing:-17.712000px;}
.ws2_c00413{word-spacing:-15.120000px;}
.ws4_c00413{word-spacing:-14.633400px;}
.ws5_c00413{word-spacing:0.000000px;}
._5_c00413{margin-left:-2.952000px;}
._1_c00413{margin-left:-1.080000px;}
._3_c00413{width:1.080000px;}
._4_c00413{width:2.088000px;}
._2_c00413{width:3.528000px;}
._6_c00413{width:4.968000px;}
._11_c00413{width:6.433779px;}
._8_c00413{width:7.560000px;}
._7_c00413{width:8.784000px;}
._9_c00413{width:9.960000px;}
._10_c00413{width:11.060402px;}
._f_c00413{width:13.248000px;}
._a_c00413{width:14.688000px;}
._b_c00413{width:15.768000px;}
._c_c00413{width:28.584000px;}
._d_c00413{width:29.664000px;}
._e_c00413{width:31.224024px;}
._0_c00413{width:152.076024px;}
.fc0_c00413{color:rgb(0,0,0);}
.fs2_c00413{font-size:38.880000px;}
.fs1_c00413{font-size:47.520000px;}
.fs3_c00413{font-size:60.480000px;}
.fs0_c00413{font-size:72.000000px;}
.y0_c00413{bottom:0.000000px;}
.y3_c00413{bottom:57.996000px;}
.y2_c00413{bottom:78.876000px;}
.y1f_c00413{bottom:130.716000px;}
.y1e_c00413{bottom:147.996000px;}
.y1d_c00413{bottom:154.875000px;}
.y1c_c00413{bottom:165.315000px;}
.y1b_c00413{bottom:182.595000px;}
.y1a_c00413{bottom:199.515000px;}
.y19_c00413{bottom:206.355000px;}
.y18_c00413{bottom:217.515000px;}
.y17_c00413{bottom:244.155000px;}
.y15_c00413{bottom:275.505000px;}
.y16_c00413{bottom:283.785000px;}
.y14_c00413{bottom:306.465000px;}
.y13_c00413{bottom:337.425000px;}
.y12_c00413{bottom:368.385000px;}
.y11_c00413{bottom:399.750000px;}
.y10_c00413{bottom:430.710000px;}
.yf_c00413{bottom:457.350000px;}
.ye_c00413{bottom:785.775000px;}
.yd_c00413{bottom:817.095000px;}
.yc_c00413{bottom:848.055000px;}
.ya_c00413{bottom:879.015000px;}
.yb_c00413{bottom:887.325000px;}
.y9_c00413{bottom:910.005000px;}
.y8_c00413{bottom:941.325000px;}
.y7_c00413{bottom:972.285000px;}
.y6_c00413{bottom:1003.245000px;}
.y5_c00413{bottom:1034.250000px;}
.y4_c00413{bottom:1065.570000px;}
.y1_c00413{bottom:1117.770000px;}
.h6_c00413{height:34.855313px;}
.h4_c00413{height:46.638281px;}
.h7_c00413{height:54.219375px;}
.h8_c00413{height:54.514688px;}
.h1_c00413{height:64.546875px;}
.h5_c00413{height:70.628906px;}
.h2_c00413{height:70.664062px;}
.h3_c00413{height:1187.995500px;}
.h0_c00413{height:1188.000000px;}
.w1_c00413{width:917.997000px;}
.w0_c00413{width:918.000000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:127.476000px;}
.xa_c00413{left:142.596000px;}
.x6_c00413{left:178.635000px;}
.x9_c00413{left:343.590000px;}
.x2_c00413{left:445.500000px;}
.x7_c00413{left:485.817000px;}
.x8_c00413{left:504.180000px;}
.x3_c00413{left:529.737000px;}
.x4_c00413{left:548.130000px;}
.x5_c00413{left:756.285000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls6_c00413{letter-spacing:-0.432533pt;}
.ls5_c00413{letter-spacing:-0.256000pt;}
.ls4_c00413{letter-spacing:0.000000pt;}
.ls3_c00413{letter-spacing:0.450560pt;}
.ls2_c00413{letter-spacing:0.640000pt;}
.ls1_c00413{letter-spacing:1.920000pt;}
.ls0_c00413{letter-spacing:7.040000pt;}
.ws3_c00413{word-spacing:-53.760000pt;}
.ws0_c00413{word-spacing:-16.000000pt;}
.ws1_c00413{word-spacing:-15.744000pt;}
.ws2_c00413{word-spacing:-13.440000pt;}
.ws4_c00413{word-spacing:-13.007467pt;}
.ws5_c00413{word-spacing:0.000000pt;}
._5_c00413{margin-left:-2.624000pt;}
._1_c00413{margin-left:-0.960000pt;}
._3_c00413{width:0.960000pt;}
._4_c00413{width:1.856000pt;}
._2_c00413{width:3.136000pt;}
._6_c00413{width:4.416000pt;}
._11_c00413{width:5.718915pt;}
._8_c00413{width:6.720000pt;}
._7_c00413{width:7.808000pt;}
._9_c00413{width:8.853333pt;}
._10_c00413{width:9.831468pt;}
._f_c00413{width:11.776000pt;}
._a_c00413{width:13.056000pt;}
._b_c00413{width:14.016000pt;}
._c_c00413{width:25.408000pt;}
._d_c00413{width:26.368000pt;}
._e_c00413{width:27.754688pt;}
._0_c00413{width:135.178688pt;}
.fs2_c00413{font-size:34.560000pt;}
.fs1_c00413{font-size:42.240000pt;}
.fs3_c00413{font-size:53.760000pt;}
.fs0_c00413{font-size:64.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y3_c00413{bottom:51.552000pt;}
.y2_c00413{bottom:70.112000pt;}
.y1f_c00413{bottom:116.192000pt;}
.y1e_c00413{bottom:131.552000pt;}
.y1d_c00413{bottom:137.666667pt;}
.y1c_c00413{bottom:146.946667pt;}
.y1b_c00413{bottom:162.306667pt;}
.y1a_c00413{bottom:177.346667pt;}
.y19_c00413{bottom:183.426667pt;}
.y18_c00413{bottom:193.346667pt;}
.y17_c00413{bottom:217.026667pt;}
.y15_c00413{bottom:244.893333pt;}
.y16_c00413{bottom:252.253333pt;}
.y14_c00413{bottom:272.413333pt;}
.y13_c00413{bottom:299.933333pt;}
.y12_c00413{bottom:327.453333pt;}
.y11_c00413{bottom:355.333333pt;}
.y10_c00413{bottom:382.853333pt;}
.yf_c00413{bottom:406.533333pt;}
.ye_c00413{bottom:698.466667pt;}
.yd_c00413{bottom:726.306667pt;}
.yc_c00413{bottom:753.826667pt;}
.ya_c00413{bottom:781.346667pt;}
.yb_c00413{bottom:788.733333pt;}
.y9_c00413{bottom:808.893333pt;}
.y8_c00413{bottom:836.733333pt;}
.y7_c00413{bottom:864.253333pt;}
.y6_c00413{bottom:891.773333pt;}
.y5_c00413{bottom:919.333333pt;}
.y4_c00413{bottom:947.173333pt;}
.y1_c00413{bottom:993.573333pt;}
.h6_c00413{height:30.982500pt;}
.h4_c00413{height:41.456250pt;}
.h7_c00413{height:48.195000pt;}
.h8_c00413{height:48.457500pt;}
.h1_c00413{height:57.375000pt;}
.h5_c00413{height:62.781250pt;}
.h2_c00413{height:62.812500pt;}
.h3_c00413{height:1055.996000pt;}
.h0_c00413{height:1056.000000pt;}
.w1_c00413{width:815.997333pt;}
.w0_c00413{width:816.000000pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:113.312000pt;}
.xa_c00413{left:126.752000pt;}
.x6_c00413{left:158.786667pt;}
.x9_c00413{left:305.413333pt;}
.x2_c00413{left:396.000000pt;}
.x7_c00413{left:431.837333pt;}
.x8_c00413{left:448.160000pt;}
.x3_c00413{left:470.877333pt;}
.x4_c00413{left:487.226667pt;}
.x5_c00413{left:672.253333pt;}
}





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

.ir_c00414:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00414;src:url('chunks/assets/font_2b006306ebbb22110d9a1943.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_77908d520d4dd41fc51f8685.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_9dd4e10cd33b2cb98370ac03.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_dabbd608212c1afd433fc91e.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;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_c00414;src:url('chunks/assets/font_2d2395f9c9f3e027a4a93189.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00414;src:url('chunks/assets/font_018e16e791c29b2df871c97e.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls1e_c00414{letter-spacing:-1.692000px;}
.ls20_c00414{letter-spacing:-1.512000px;}
.ls1d_c00414{letter-spacing:-0.618000px;}
.ls26_c00414{letter-spacing:-0.529800px;}
.ls29_c00414{letter-spacing:-0.486600px;}
.ls22_c00414{letter-spacing:-0.397200px;}
.ls28_c00414{letter-spacing:-0.345600px;}
.ls1b_c00414{letter-spacing:-0.273600px;}
.ls1c_c00414{letter-spacing:-0.253200px;}
.ls23_c00414{letter-spacing:-0.219000px;}
.ls21_c00414{letter-spacing:-0.069000px;}
.ls1a_c00414{letter-spacing:0.000000px;}
.ls1f_c00414{letter-spacing:0.054600px;}
.ls25_c00414{letter-spacing:0.126600px;}
.ls3_c00414{letter-spacing:0.126720px;}
.ls24_c00414{letter-spacing:0.147000px;}
.ls27_c00414{letter-spacing:0.184200px;}
.ls15_c00414{letter-spacing:0.273600px;}
.ls19_c00414{letter-spacing:0.626880px;}
.ls17_c00414{letter-spacing:0.720000px;}
.ls10_c00414{letter-spacing:3.600000px;}
.ls7_c00414{letter-spacing:5.040000px;}
.ls6_c00414{letter-spacing:7.920000px;}
.lsd_c00414{letter-spacing:9.360000px;}
.ls4_c00414{letter-spacing:10.800000px;}
.lse_c00414{letter-spacing:15.120000px;}
.ls13_c00414{letter-spacing:16.560000px;}
.ls11_c00414{letter-spacing:16.572000px;}
.ls12_c00414{letter-spacing:16.740000px;}
.lsf_c00414{letter-spacing:18.000000px;}
.ls14_c00414{letter-spacing:20.880000px;}
.lsb_c00414{letter-spacing:22.320000px;}
.lsa_c00414{letter-spacing:22.440000px;}
.ls0_c00414{letter-spacing:26.640000px;}
.ls2_c00414{letter-spacing:28.080000px;}
.ls1_c00414{letter-spacing:29.520000px;}
.lsc_c00414{letter-spacing:33.840000px;}
.ls18_c00414{letter-spacing:35.280000px;}
.ls16_c00414{letter-spacing:38.160000px;}
.ls8_c00414{letter-spacing:43.920000px;}
.ls9_c00414{letter-spacing:44.040000px;}
.ls5_c00414{letter-spacing:65.640000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00414{word-spacing:-60.480000px;}
.ws0_c00414{word-spacing:-18.000000px;}
.wsa_c00414{word-spacing:-15.120000px;}
.wsc_c00414{word-spacing:-14.633400px;}
.ws6_c00414{word-spacing:-13.827000px;}
.ws7_c00414{word-spacing:-13.806600px;}
.ws1_c00414{word-spacing:-13.680000px;}
.ws5_c00414{word-spacing:-13.461000px;}
.ws2_c00414{word-spacing:-13.406400px;}
.ws9_c00414{word-spacing:-13.334400px;}
.ws4_c00414{word-spacing:-13.282800px;}
.ws8_c00414{word-spacing:-13.150200px;}
.ws3_c00414{word-spacing:-13.062000px;}
.wsd_c00414{word-spacing:0.000000px;}
._d_c00414{margin-left:-3.647952px;}
._3_c00414{margin-left:-2.520000px;}
._0_c00414{margin-left:-1.296000px;}
._1_c00414{width:1.080000px;}
._2_c00414{width:2.088000px;}
._5_c00414{width:3.359952px;}
._13_c00414{width:4.486766px;}
._1f_c00414{width:5.941027px;}
._12_c00414{width:6.947259px;}
._8_c00414{width:8.424000px;}
._7_c00414{width:9.648000px;}
._f_c00414{width:11.192269px;}
._1b_c00414{width:15.047280px;}
._1a_c00414{width:16.056240px;}
._1d_c00414{width:17.167145px;}
._1c_c00414{width:18.460800px;}
._c_c00414{width:20.016000px;}
._e_c00414{width:21.096000px;}
._16_c00414{width:23.094720px;}
._a_c00414{width:25.632000px;}
._9_c00414{width:27.372000px;}
._b_c00414{width:28.392000px;}
._6_c00414{width:29.520000px;}
._4_c00414{width:30.828024px;}
._19_c00414{width:33.082092px;}
._18_c00414{width:34.369811px;}
._20_c00414{width:35.601840px;}
._1e_c00414{width:37.892379px;}
._14_c00414{width:44.107364px;}
._15_c00414{width:45.489752px;}
._17_c00414{width:57.577221px;}
._11_c00414{width:65.297869px;}
._10_c00414{width:66.450720px;}
.fc0_c00414{color:rgb(0,0,0);}
.fs3_c00414{font-size:38.880000px;}
.fs1_c00414{font-size:47.520000px;}
.fs2_c00414{font-size:54.720000px;}
.fs4_c00414{font-size:60.480000px;}
.fs0_c00414{font-size:72.000000px;}
.y0_c00414{bottom:0.000000px;}
.yf_c00414{bottom:11.505000px;}
.y27_c00414{bottom:11.520000px;}
.y26_c00414{bottom:34.560000px;}
.y25_c00414{bottom:57.960000px;}
.y3_c00414{bottom:57.996000px;}
.y2_c00414{bottom:78.876000px;}
.y24_c00414{bottom:81.360000px;}
.y23_c00414{bottom:104.760000px;}
.y22_c00414{bottom:127.845000px;}
.y32_c00414{bottom:130.716000px;}
.y31_c00414{bottom:137.556000px;}
.y30_c00414{bottom:147.996000px;}
.y21_c00414{bottom:151.245000px;}
.y29_c00414{bottom:162.405000px;}
.y2f_c00414{bottom:165.315000px;}
.y20_c00414{bottom:174.645000px;}
.y2e_c00414{bottom:182.595000px;}
.y28_c00414{bottom:193.365000px;}
.y1f_c00414{bottom:197.685000px;}
.y2d_c00414{bottom:199.515000px;}
.y2c_c00414{bottom:216.795000px;}
.y1e_c00414{bottom:221.085000px;}
.y2b_c00414{bottom:223.635000px;}
.y2a_c00414{bottom:234.795000px;}
.y1d_c00414{bottom:244.515000px;}
.y1c_c00414{bottom:267.555000px;}
.y10_c00414{bottom:272.625000px;}
.y1b_c00414{bottom:290.955000px;}
.y1a_c00414{bottom:314.355000px;}
.y19_c00414{bottom:337.395000px;}
.y18_c00414{bottom:360.795000px;}
.y17_c00414{bottom:384.225000px;}
.y16_c00414{bottom:407.265000px;}
.y15_c00414{bottom:430.665000px;}
.y14_c00414{bottom:454.065000px;}
.y13_c00414{bottom:477.105000px;}
.y12_c00414{bottom:500.550000px;}
.y11_c00414{bottom:523.950000px;}
.ye_c00414{bottom:809.190000px;}
.yd_c00414{bottom:848.055000px;}
.yc_c00414{bottom:879.015000px;}
.ya_c00414{bottom:910.005000px;}
.yb_c00414{bottom:918.285000px;}
.y8_c00414{bottom:941.325000px;}
.y9_c00414{bottom:949.605000px;}
.y7_c00414{bottom:972.285000px;}
.y6_c00414{bottom:1003.245000px;}
.y5_c00414{bottom:1034.250000px;}
.y4_c00414{bottom:1065.570000px;}
.y1_c00414{bottom:1117.770000px;}
.h6_c00414{height:23.385000px;}
.ha_c00414{height:34.855313px;}
.h4_c00414{height:46.638281px;}
.h9_c00414{height:49.055625px;}
.h7_c00414{height:53.704687px;}
.hb_c00414{height:54.219375px;}
.hc_c00414{height:54.514688px;}
.h1_c00414{height:64.546875px;}
.h5_c00414{height:70.628906px;}
.h2_c00414{height:70.664062px;}
.h8_c00414{height:535.830000px;}
.h3_c00414{height:1187.995500px;}
.h0_c00414{height:1188.000000px;}
.w2_c00414{width:323.415000px;}
.w3_c00414{width:323.730000px;}
.w1_c00414{width:917.997000px;}
.w0_c00414{width:918.000000px;}
.x0_c00414{left:0.000000px;}
.x9_c00414{left:7.546500px;}
.x8_c00414{left:119.929500px;}
.x1_c00414{left:127.476000px;}
.xc_c00414{left:142.596000px;}
.x7_c00414{left:178.635000px;}
.x3_c00414{left:185.472000px;}
.x4_c00414{left:203.835000px;}
.xb_c00414{left:343.590000px;}
.xa_c00414{left:444.060000px;}
.x2_c00414{left:445.500000px;}
.x5_c00414{left:562.887000px;}
.x6_c00414{left:581.250000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls1e_c00414{letter-spacing:-1.504000pt;}
.ls20_c00414{letter-spacing:-1.344000pt;}
.ls1d_c00414{letter-spacing:-0.549333pt;}
.ls26_c00414{letter-spacing:-0.470933pt;}
.ls29_c00414{letter-spacing:-0.432533pt;}
.ls22_c00414{letter-spacing:-0.353067pt;}
.ls28_c00414{letter-spacing:-0.307200pt;}
.ls1b_c00414{letter-spacing:-0.243200pt;}
.ls1c_c00414{letter-spacing:-0.225067pt;}
.ls23_c00414{letter-spacing:-0.194667pt;}
.ls21_c00414{letter-spacing:-0.061333pt;}
.ls1a_c00414{letter-spacing:0.000000pt;}
.ls1f_c00414{letter-spacing:0.048533pt;}
.ls25_c00414{letter-spacing:0.112533pt;}
.ls3_c00414{letter-spacing:0.112640pt;}
.ls24_c00414{letter-spacing:0.130667pt;}
.ls27_c00414{letter-spacing:0.163733pt;}
.ls15_c00414{letter-spacing:0.243200pt;}
.ls19_c00414{letter-spacing:0.557227pt;}
.ls17_c00414{letter-spacing:0.640000pt;}
.ls10_c00414{letter-spacing:3.200000pt;}
.ls7_c00414{letter-spacing:4.480000pt;}
.ls6_c00414{letter-spacing:7.040000pt;}
.lsd_c00414{letter-spacing:8.320000pt;}
.ls4_c00414{letter-spacing:9.600000pt;}
.lse_c00414{letter-spacing:13.440000pt;}
.ls13_c00414{letter-spacing:14.720000pt;}
.ls11_c00414{letter-spacing:14.730667pt;}
.ls12_c00414{letter-spacing:14.880000pt;}
.lsf_c00414{letter-spacing:16.000000pt;}
.ls14_c00414{letter-spacing:18.560000pt;}
.lsb_c00414{letter-spacing:19.840000pt;}
.lsa_c00414{letter-spacing:19.946667pt;}
.ls0_c00414{letter-spacing:23.680000pt;}
.ls2_c00414{letter-spacing:24.960000pt;}
.ls1_c00414{letter-spacing:26.240000pt;}
.lsc_c00414{letter-spacing:30.080000pt;}
.ls18_c00414{letter-spacing:31.360000pt;}
.ls16_c00414{letter-spacing:33.920000pt;}
.ls8_c00414{letter-spacing:39.040000pt;}
.ls9_c00414{letter-spacing:39.146667pt;}
.ls5_c00414{letter-spacing:58.346667pt;}
.wsb_c00414{word-spacing:-53.760000pt;}
.ws0_c00414{word-spacing:-16.000000pt;}
.wsa_c00414{word-spacing:-13.440000pt;}
.wsc_c00414{word-spacing:-13.007467pt;}
.ws6_c00414{word-spacing:-12.290667pt;}
.ws7_c00414{word-spacing:-12.272533pt;}
.ws1_c00414{word-spacing:-12.160000pt;}
.ws5_c00414{word-spacing:-11.965333pt;}
.ws2_c00414{word-spacing:-11.916800pt;}
.ws9_c00414{word-spacing:-11.852800pt;}
.ws4_c00414{word-spacing:-11.806933pt;}
.ws8_c00414{word-spacing:-11.689067pt;}
.ws3_c00414{word-spacing:-11.610667pt;}
.wsd_c00414{word-spacing:0.000000pt;}
._d_c00414{margin-left:-3.242624pt;}
._3_c00414{margin-left:-2.240000pt;}
._0_c00414{margin-left:-1.152000pt;}
._1_c00414{width:0.960000pt;}
._2_c00414{width:1.856000pt;}
._5_c00414{width:2.986624pt;}
._13_c00414{width:3.988237pt;}
._1f_c00414{width:5.280913pt;}
._12_c00414{width:6.175341pt;}
._8_c00414{width:7.488000pt;}
._7_c00414{width:8.576000pt;}
._f_c00414{width:9.948684pt;}
._1b_c00414{width:13.375360pt;}
._1a_c00414{width:14.272213pt;}
._1d_c00414{width:15.259685pt;}
._1c_c00414{width:16.409600pt;}
._c_c00414{width:17.792000pt;}
._e_c00414{width:18.752000pt;}
._16_c00414{width:20.528640pt;}
._a_c00414{width:22.784000pt;}
._9_c00414{width:24.330667pt;}
._b_c00414{width:25.237333pt;}
._6_c00414{width:26.240000pt;}
._4_c00414{width:27.402688pt;}
._19_c00414{width:29.406304pt;}
._18_c00414{width:30.550943pt;}
._20_c00414{width:31.646080pt;}
._1e_c00414{width:33.682115pt;}
._14_c00414{width:39.206546pt;}
._15_c00414{width:40.435335pt;}
._17_c00414{width:51.179752pt;}
._11_c00414{width:58.042551pt;}
._10_c00414{width:59.067307pt;}
.fs3_c00414{font-size:34.560000pt;}
.fs1_c00414{font-size:42.240000pt;}
.fs2_c00414{font-size:48.640000pt;}
.fs4_c00414{font-size:53.760000pt;}
.fs0_c00414{font-size:64.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.yf_c00414{bottom:10.226667pt;}
.y27_c00414{bottom:10.240000pt;}
.y26_c00414{bottom:30.720000pt;}
.y25_c00414{bottom:51.520000pt;}
.y3_c00414{bottom:51.552000pt;}
.y2_c00414{bottom:70.112000pt;}
.y24_c00414{bottom:72.320000pt;}
.y23_c00414{bottom:93.120000pt;}
.y22_c00414{bottom:113.640000pt;}
.y32_c00414{bottom:116.192000pt;}
.y31_c00414{bottom:122.272000pt;}
.y30_c00414{bottom:131.552000pt;}
.y21_c00414{bottom:134.440000pt;}
.y29_c00414{bottom:144.360000pt;}
.y2f_c00414{bottom:146.946667pt;}
.y20_c00414{bottom:155.240000pt;}
.y2e_c00414{bottom:162.306667pt;}
.y28_c00414{bottom:171.880000pt;}
.y1f_c00414{bottom:175.720000pt;}
.y2d_c00414{bottom:177.346667pt;}
.y2c_c00414{bottom:192.706667pt;}
.y1e_c00414{bottom:196.520000pt;}
.y2b_c00414{bottom:198.786667pt;}
.y2a_c00414{bottom:208.706667pt;}
.y1d_c00414{bottom:217.346667pt;}
.y1c_c00414{bottom:237.826667pt;}
.y10_c00414{bottom:242.333333pt;}
.y1b_c00414{bottom:258.626667pt;}
.y1a_c00414{bottom:279.426667pt;}
.y19_c00414{bottom:299.906667pt;}
.y18_c00414{bottom:320.706667pt;}
.y17_c00414{bottom:341.533333pt;}
.y16_c00414{bottom:362.013333pt;}
.y15_c00414{bottom:382.813333pt;}
.y14_c00414{bottom:403.613333pt;}
.y13_c00414{bottom:424.093333pt;}
.y12_c00414{bottom:444.933333pt;}
.y11_c00414{bottom:465.733333pt;}
.ye_c00414{bottom:719.280000pt;}
.yd_c00414{bottom:753.826667pt;}
.yc_c00414{bottom:781.346667pt;}
.ya_c00414{bottom:808.893333pt;}
.yb_c00414{bottom:816.253333pt;}
.y8_c00414{bottom:836.733333pt;}
.y9_c00414{bottom:844.093333pt;}
.y7_c00414{bottom:864.253333pt;}
.y6_c00414{bottom:891.773333pt;}
.y5_c00414{bottom:919.333333pt;}
.y4_c00414{bottom:947.173333pt;}
.y1_c00414{bottom:993.573333pt;}
.h6_c00414{height:20.786667pt;}
.ha_c00414{height:30.982500pt;}
.h4_c00414{height:41.456250pt;}
.h9_c00414{height:43.605000pt;}
.h7_c00414{height:47.737500pt;}
.hb_c00414{height:48.195000pt;}
.hc_c00414{height:48.457500pt;}
.h1_c00414{height:57.375000pt;}
.h5_c00414{height:62.781250pt;}
.h2_c00414{height:62.812500pt;}
.h8_c00414{height:476.293333pt;}
.h3_c00414{height:1055.996000pt;}
.h0_c00414{height:1056.000000pt;}
.w2_c00414{width:287.480000pt;}
.w3_c00414{width:287.760000pt;}
.w1_c00414{width:815.997333pt;}
.w0_c00414{width:816.000000pt;}
.x0_c00414{left:0.000000pt;}
.x9_c00414{left:6.708000pt;}
.x8_c00414{left:106.604000pt;}
.x1_c00414{left:113.312000pt;}
.xc_c00414{left:126.752000pt;}
.x7_c00414{left:158.786667pt;}
.x3_c00414{left:164.864000pt;}
.x4_c00414{left:181.186667pt;}
.xb_c00414{left:305.413333pt;}
.xa_c00414{left:394.720000pt;}
.x2_c00414{left:396.000000pt;}
.x5_c00414{left:500.344000pt;}
.x6_c00414{left:516.666667pt;}
}





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

.ir_c00415:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00415;src:url('chunks/assets/font_7d1c360ad5d56b0999143878.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_14652fe2625d0421ae327c16.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_fa965a9db7a2ef1eaf100bdc.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_76348fe26e0235af2b2c8499.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;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_c00415;src:url('chunks/assets/font_9e08be3a990e2b5d88a15894.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00415;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00415{font-family:ff6_c00415;line-height:1.311035;font-style:normal;font-weight: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_c00415;src:url('chunks/assets/font_05cddcc9e33995414708e3bc.woff2')format("woff");}.ff7_c00415{font-family:ff7_c00415;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.lsb_c00415{letter-spacing:-1.416000px;}
.ls7_c00415{letter-spacing:-1.380000px;}
.ls9_c00415{letter-spacing:-0.912000px;}
.lsa_c00415{letter-spacing:-0.720000px;}
.lse_c00415{letter-spacing:-0.532800px;}
.ls5_c00415{letter-spacing:0.000000px;}
.ls8_c00415{letter-spacing:0.022800px;}
.lsc_c00415{letter-spacing:0.507000px;}
.ls2_c00415{letter-spacing:0.518400px;}
.lsd_c00415{letter-spacing:0.529800px;}
.ls6_c00415{letter-spacing:0.648000px;}
.ls1_c00415{letter-spacing:0.720000px;}
.ls3_c00415{letter-spacing:0.721687px;}
.ls4_c00415{letter-spacing:0.728640px;}
.ls0_c00415{letter-spacing:2.160000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00415{word-spacing:-72.000000px;}
.ws5_c00415{word-spacing:-60.480000px;}
.ws3_c00415{word-spacing:-18.648000px;}
.ws1_c00415{word-spacing:-18.000000px;}
.ws8_c00415{word-spacing:-15.627000px;}
.ws6_c00415{word-spacing:-15.142800px;}
.ws4_c00415{word-spacing:-15.120000px;}
.ws7_c00415{word-spacing:-13.704000px;}
.ws0_c00415{word-spacing:-13.680000px;}
.ws9_c00415{word-spacing:0.000000px;}
._4_c00415{margin-left:-2.443116px;}
._0_c00415{margin-left:-1.258779px;}
._2_c00415{width:1.224000px;}
._5_c00415{width:2.477894px;}
._a_c00415{width:4.007578px;}
._b_c00415{width:5.010106px;}
._7_c00415{width:6.554255px;}
._8_c00415{width:8.395255px;}
._6_c00415{width:16.292125px;}
._9_c00415{width:20.078231px;}
._1_c00415{width:38.808000px;}
._3_c00415{width:40.280337px;}
.fc0_c00415{color:rgb(0,0,0);}
.fs1_c00415{font-size:54.720000px;}
.fs2_c00415{font-size:60.480000px;}
.fs0_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y5_c00415{bottom:11.520000px;}
.y3_c00415{bottom:57.996000px;}
.y2_c00415{bottom:78.876000px;}
.y23_c00415{bottom:213.915000px;}
.y22_c00415{bottom:242.715000px;}
.y21_c00415{bottom:268.275000px;}
.y20_c00415{bottom:294.225000px;}
.y1f_c00415{bottom:320.145000px;}
.y1e_c00415{bottom:346.065000px;}
.y1d_c00415{bottom:371.985000px;}
.y1c_c00415{bottom:397.950000px;}
.y1b_c00415{bottom:423.870000px;}
.y1a_c00415{bottom:449.430000px;}
.y19_c00415{bottom:475.350000px;}
.y18_c00415{bottom:501.270000px;}
.y17_c00415{bottom:527.220000px;}
.y16_c00415{bottom:553.140000px;}
.y15_c00415{bottom:579.060000px;}
.y14_c00415{bottom:604.980000px;}
.y13_c00415{bottom:630.900000px;}
.y12_c00415{bottom:659.010000px;}
.y11_c00415{bottom:689.970000px;}
.y10_c00415{bottom:720.930000px;}
.yf_c00415{bottom:752.250000px;}
.ye_c00415{bottom:783.255000px;}
.yd_c00415{bottom:814.215000px;}
.yc_c00415{bottom:854.175000px;}
.yb_c00415{bottom:885.525000px;}
.ya_c00415{bottom:916.485000px;}
.y9_c00415{bottom:947.445000px;}
.y8_c00415{bottom:978.405000px;}
.y7_c00415{bottom:1009.410000px;}
.y6_c00415{bottom:1040.730000px;}
.y4_c00415{bottom:1057.650000px;}
.y1_c00415{bottom:1117.770000px;}
.h2_c00415{height:23.385000px;}
.h3_c00415{height:53.704687px;}
.h6_c00415{height:59.357813px;}
.h7_c00415{height:60.952500px;}
.h1_c00415{height:64.546875px;}
.h4_c00415{height:70.628906px;}
.h5_c00415{height:70.664062px;}
.h0_c00415{height:1188.000000px;}
.w1_c00415{width:323.415000px;}
.w0_c00415{width:918.000000px;}
.x0_c00415{left:0.000000px;}
.x4_c00415{left:7.546500px;}
.x3_c00415{left:119.929500px;}
.x1_c00415{left:127.476000px;}
.x6_c00415{left:169.995000px;}
.x5_c00415{left:178.635000px;}
.x2_c00415{left:445.500000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.lsb_c00415{letter-spacing:-1.258667pt;}
.ls7_c00415{letter-spacing:-1.226667pt;}
.ls9_c00415{letter-spacing:-0.810667pt;}
.lsa_c00415{letter-spacing:-0.640000pt;}
.lse_c00415{letter-spacing:-0.473600pt;}
.ls5_c00415{letter-spacing:0.000000pt;}
.ls8_c00415{letter-spacing:0.020267pt;}
.lsc_c00415{letter-spacing:0.450667pt;}
.ls2_c00415{letter-spacing:0.460800pt;}
.lsd_c00415{letter-spacing:0.470933pt;}
.ls6_c00415{letter-spacing:0.576000pt;}
.ls1_c00415{letter-spacing:0.640000pt;}
.ls3_c00415{letter-spacing:0.641499pt;}
.ls4_c00415{letter-spacing:0.647680pt;}
.ls0_c00415{letter-spacing:1.920000pt;}
.ws2_c00415{word-spacing:-64.000000pt;}
.ws5_c00415{word-spacing:-53.760000pt;}
.ws3_c00415{word-spacing:-16.576000pt;}
.ws1_c00415{word-spacing:-16.000000pt;}
.ws8_c00415{word-spacing:-13.890667pt;}
.ws6_c00415{word-spacing:-13.460267pt;}
.ws4_c00415{word-spacing:-13.440000pt;}
.ws7_c00415{word-spacing:-12.181333pt;}
.ws0_c00415{word-spacing:-12.160000pt;}
.ws9_c00415{word-spacing:0.000000pt;}
._4_c00415{margin-left:-2.171658pt;}
._0_c00415{margin-left:-1.118915pt;}
._2_c00415{width:1.088000pt;}
._5_c00415{width:2.202573pt;}
._a_c00415{width:3.562291pt;}
._b_c00415{width:4.453427pt;}
._7_c00415{width:5.826004pt;}
._8_c00415{width:7.462449pt;}
._6_c00415{width:14.481889pt;}
._9_c00415{width:17.847316pt;}
._1_c00415{width:34.496000pt;}
._3_c00415{width:35.804744pt;}
.fs1_c00415{font-size:48.640000pt;}
.fs2_c00415{font-size:53.760000pt;}
.fs0_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y5_c00415{bottom:10.240000pt;}
.y3_c00415{bottom:51.552000pt;}
.y2_c00415{bottom:70.112000pt;}
.y23_c00415{bottom:190.146667pt;}
.y22_c00415{bottom:215.746667pt;}
.y21_c00415{bottom:238.466667pt;}
.y20_c00415{bottom:261.533333pt;}
.y1f_c00415{bottom:284.573333pt;}
.y1e_c00415{bottom:307.613333pt;}
.y1d_c00415{bottom:330.653333pt;}
.y1c_c00415{bottom:353.733333pt;}
.y1b_c00415{bottom:376.773333pt;}
.y1a_c00415{bottom:399.493333pt;}
.y19_c00415{bottom:422.533333pt;}
.y18_c00415{bottom:445.573333pt;}
.y17_c00415{bottom:468.640000pt;}
.y16_c00415{bottom:491.680000pt;}
.y15_c00415{bottom:514.720000pt;}
.y14_c00415{bottom:537.760000pt;}
.y13_c00415{bottom:560.800000pt;}
.y12_c00415{bottom:585.786667pt;}
.y11_c00415{bottom:613.306667pt;}
.y10_c00415{bottom:640.826667pt;}
.yf_c00415{bottom:668.666667pt;}
.ye_c00415{bottom:696.226667pt;}
.yd_c00415{bottom:723.746667pt;}
.yc_c00415{bottom:759.266667pt;}
.yb_c00415{bottom:787.133333pt;}
.ya_c00415{bottom:814.653333pt;}
.y9_c00415{bottom:842.173333pt;}
.y8_c00415{bottom:869.693333pt;}
.y7_c00415{bottom:897.253333pt;}
.y6_c00415{bottom:925.093333pt;}
.y4_c00415{bottom:940.133333pt;}
.y1_c00415{bottom:993.573333pt;}
.h2_c00415{height:20.786667pt;}
.h3_c00415{height:47.737500pt;}
.h6_c00415{height:52.762500pt;}
.h7_c00415{height:54.180000pt;}
.h1_c00415{height:57.375000pt;}
.h4_c00415{height:62.781250pt;}
.h5_c00415{height:62.812500pt;}
.h0_c00415{height:1056.000000pt;}
.w1_c00415{width:287.480000pt;}
.w0_c00415{width:816.000000pt;}
.x0_c00415{left:0.000000pt;}
.x4_c00415{left:6.708000pt;}
.x3_c00415{left:106.604000pt;}
.x1_c00415{left:113.312000pt;}
.x6_c00415{left:151.106667pt;}
.x5_c00415{left:158.786667pt;}
.x2_c00415{left:396.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_c00416 {
    display:none;
  }
  .loading-indicator_c00416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00416 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00416 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00416" -> "#page-container .classname_c00416")
 */
.pf_c00416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00416 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00416 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00416 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00416 {overflow:visible;}
  }
}
.c_c00416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00416 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00416:after { /* webkit #35443 */
  content: '';
}
.t_c00416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00416 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00416 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00416 { /* info for Javascript */
  display:none;
}
.l_c00416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00416:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00416;src:url('chunks/assets/font_5a48a0e0f934e231b12e3285.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_c233656078122547fb7b99d1.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_c2857b7fcc39c533de3d1498.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;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_c00416;src:url('chunks/assets/font_9e08be3a990e2b5d88a15894.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00416;src:url('chunks/assets/font_3b8f0b0f539b4442b3de9764.woff2')format("woff");}.ff5_c00416{font-family:ff5_c00416;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00416;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00416{font-family:ff6_c00416;line-height:1.311035;font-style:normal;font-weight: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_c00416;src:url('chunks/assets/font_07b481c243c1f9968df15e52.woff2')format("woff");}.ff7_c00416{font-family:ff7_c00416;line-height:1.104004;font-style:normal;font-weight: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_c00416;src:url('chunks/assets/font_6356ba131132fcadf23f795b.woff2')format("woff");}.ff8_c00416{font-family:ff8_c00416;line-height:1.117188;font-style:normal;font-weight: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_c00416;src:url('chunks/assets/font_e733ab1b79775d90f4542fae.woff2')format("woff");}.ff9_c00416{font-family:ff9_c00416;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls12_c00416{letter-spacing:-2.250000px;}
.lsb_c00416{letter-spacing:-1.752000px;}
.ls13_c00416{letter-spacing:-1.692000px;}
.ls10_c00416{letter-spacing:-1.422000px;}
.ls17_c00416{letter-spacing:-1.416000px;}
.lse_c00416{letter-spacing:-1.254000px;}
.ls15_c00416{letter-spacing:-0.972000px;}
.lsf_c00416{letter-spacing:-0.720000px;}
.lsc_c00416{letter-spacing:-0.618000px;}
.lsd_c00416{letter-spacing:-0.253200px;}
.ls16_c00416{letter-spacing:-0.241800px;}
.ls11_c00416{letter-spacing:-0.069000px;}
.lsa_c00416{letter-spacing:0.000000px;}
.ls3_c00416{letter-spacing:0.057600px;}
.ls0_c00416{letter-spacing:0.126720px;}
.ls7_c00416{letter-spacing:0.167040px;}
.ls6_c00416{letter-spacing:0.302400px;}
.ls4_c00416{letter-spacing:0.498240px;}
.ls1_c00416{letter-spacing:0.510240px;}
.ls8_c00416{letter-spacing:0.518400px;}
.ls9_c00416{letter-spacing:0.524160px;}
.ls14_c00416{letter-spacing:0.529800px;}
.ls2_c00416{letter-spacing:0.720000px;}
.ls5_c00416{letter-spacing:0.864000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00416{word-spacing:-72.000000px;}
.ws0_c00416{word-spacing:-18.000000px;}
.ws9_c00416{word-spacing:-15.120000px;}
.wsa_c00416{word-spacing:-14.878200px;}
.wsb_c00416{word-spacing:-13.704000px;}
.ws3_c00416{word-spacing:-13.680000px;}
.ws7_c00416{word-spacing:-13.611000px;}
.ws6_c00416{word-spacing:-13.426800px;}
.ws4_c00416{word-spacing:-13.062000px;}
.ws5_c00416{word-spacing:-12.426000px;}
.ws8_c00416{word-spacing:-11.988000px;}
.ws2_c00416{word-spacing:-11.928000px;}
.wsc_c00416{word-spacing:0.000000px;}
._10_c00416{margin-left:-3.312000px;}
._3_c00416{margin-left:-2.304000px;}
._0_c00416{margin-left:-1.152000px;}
._1_c00416{width:1.512000px;}
._9_c00416{width:3.240000px;}
._6_c00416{width:4.752000px;}
._7_c00416{width:5.832000px;}
._8_c00416{width:7.200000px;}
._4_c00416{width:9.216000px;}
._2_c00416{width:10.728000px;}
._5_c00416{width:12.371976px;}
._b_c00416{width:14.076000px;}
._a_c00416{width:15.120000px;}
._f_c00416{width:16.907976px;}
._c_c00416{width:19.224000px;}
._d_c00416{width:34.272000px;}
._e_c00416{width:35.784000px;}
.fc0_c00416{color:rgb(0,0,0);}
.fs3_c00416{font-size:38.880000px;}
.fs1_c00416{font-size:47.520000px;}
.fs2_c00416{font-size:54.720000px;}
.fs4_c00416{font-size:60.480000px;}
.fs0_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y14_c00416{bottom:11.145000px;}
.y1b_c00416{bottom:11.550000px;}
.y1a_c00416{bottom:34.950000px;}
.y3_c00416{bottom:57.996000px;}
.y19_c00416{bottom:58.350000px;}
.y2_c00416{bottom:78.876000px;}
.y18_c00416{bottom:81.390000px;}
.y17_c00416{bottom:104.790000px;}
.y16_c00416{bottom:128.220000px;}
.y2e_c00416{bottom:130.716000px;}
.y2d_c00416{bottom:137.556000px;}
.y2c_c00416{bottom:147.996000px;}
.y2b_c00416{bottom:165.315000px;}
.y2a_c00416{bottom:182.595000px;}
.y29_c00416{bottom:199.515000px;}
.y28_c00416{bottom:216.795000px;}
.y27_c00416{bottom:234.075000px;}
.y26_c00416{bottom:251.355000px;}
.y25_c00416{bottom:268.635000px;}
.y24_c00416{bottom:285.945000px;}
.y23_c00416{bottom:303.225000px;}
.y22_c00416{bottom:310.065000px;}
.y21_c00416{bottom:320.865000px;}
.y20_c00416{bottom:371.985000px;}
.y1f_c00416{bottom:403.350000px;}
.y1e_c00416{bottom:434.310000px;}
.y1d_c00416{bottom:465.270000px;}
.y1c_c00416{bottom:496.230000px;}
.y15_c00416{bottom:513.150000px;}
.y13_c00416{bottom:653.985000px;}
.y12_c00416{bottom:692.850000px;}
.y11_c00416{bottom:723.810000px;}
.y10_c00416{bottom:754.770000px;}
.yf_c00416{bottom:785.775000px;}
.ye_c00416{bottom:817.095000px;}
.yd_c00416{bottom:848.055000px;}
.yc_c00416{bottom:879.015000px;}
.yb_c00416{bottom:910.005000px;}
.ya_c00416{bottom:941.325000px;}
.y9_c00416{bottom:972.285000px;}
.y7_c00416{bottom:1003.245000px;}
.y8_c00416{bottom:1011.570000px;}
.y6_c00416{bottom:1034.250000px;}
.y4_c00416{bottom:1065.570000px;}
.y5_c00416{bottom:1073.850000px;}
.y1_c00416{bottom:1117.770000px;}
.h7_c00416{height:23.025000px;}
.hb_c00416{height:34.855313px;}
.h5_c00416{height:46.615078px;}
.h4_c00416{height:46.638281px;}
.h8_c00416{height:53.704687px;}
.hd_c00416{height:54.219375px;}
.hc_c00416{height:54.514688px;}
.ha_c00416{height:55.147500px;}
.h1_c00416{height:64.546875px;}
.h6_c00416{height:70.628906px;}
.h2_c00416{height:70.664062px;}
.h9_c00416{height:140.112000px;}
.h3_c00416{height:1187.995500px;}
.h0_c00416{height:1188.000000px;}
.w2_c00416{width:323.415000px;}
.w3_c00416{width:323.730000px;}
.w1_c00416{width:917.997000px;}
.w0_c00416{width:918.000000px;}
.x0_c00416{left:0.000000px;}
.x9_c00416{left:7.546500px;}
.x8_c00416{left:119.929500px;}
.x1_c00416{left:127.476000px;}
.xd_c00416{left:142.596000px;}
.x3_c00416{left:169.995000px;}
.xb_c00416{left:178.635000px;}
.xc_c00416{left:343.590000px;}
.x6_c00416{left:389.307000px;}
.x7_c00416{left:407.670000px;}
.xa_c00416{left:444.060000px;}
.x2_c00416{left:445.500000px;}
.x4_c00416{left:525.777000px;}
.x5_c00416{left:544.170000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls12_c00416{letter-spacing:-2.000000pt;}
.lsb_c00416{letter-spacing:-1.557333pt;}
.ls13_c00416{letter-spacing:-1.504000pt;}
.ls10_c00416{letter-spacing:-1.264000pt;}
.ls17_c00416{letter-spacing:-1.258667pt;}
.lse_c00416{letter-spacing:-1.114667pt;}
.ls15_c00416{letter-spacing:-0.864000pt;}
.lsf_c00416{letter-spacing:-0.640000pt;}
.lsc_c00416{letter-spacing:-0.549333pt;}
.lsd_c00416{letter-spacing:-0.225067pt;}
.ls16_c00416{letter-spacing:-0.214933pt;}
.ls11_c00416{letter-spacing:-0.061333pt;}
.lsa_c00416{letter-spacing:0.000000pt;}
.ls3_c00416{letter-spacing:0.051200pt;}
.ls0_c00416{letter-spacing:0.112640pt;}
.ls7_c00416{letter-spacing:0.148480pt;}
.ls6_c00416{letter-spacing:0.268800pt;}
.ls4_c00416{letter-spacing:0.442880pt;}
.ls1_c00416{letter-spacing:0.453547pt;}
.ls8_c00416{letter-spacing:0.460800pt;}
.ls9_c00416{letter-spacing:0.465920pt;}
.ls14_c00416{letter-spacing:0.470933pt;}
.ls2_c00416{letter-spacing:0.640000pt;}
.ls5_c00416{letter-spacing:0.768000pt;}
.ws1_c00416{word-spacing:-64.000000pt;}
.ws0_c00416{word-spacing:-16.000000pt;}
.ws9_c00416{word-spacing:-13.440000pt;}
.wsa_c00416{word-spacing:-13.225067pt;}
.wsb_c00416{word-spacing:-12.181333pt;}
.ws3_c00416{word-spacing:-12.160000pt;}
.ws7_c00416{word-spacing:-12.098667pt;}
.ws6_c00416{word-spacing:-11.934933pt;}
.ws4_c00416{word-spacing:-11.610667pt;}
.ws5_c00416{word-spacing:-11.045333pt;}
.ws8_c00416{word-spacing:-10.656000pt;}
.ws2_c00416{word-spacing:-10.602667pt;}
.wsc_c00416{word-spacing:0.000000pt;}
._10_c00416{margin-left:-2.944000pt;}
._3_c00416{margin-left:-2.048000pt;}
._0_c00416{margin-left:-1.024000pt;}
._1_c00416{width:1.344000pt;}
._9_c00416{width:2.880000pt;}
._6_c00416{width:4.224000pt;}
._7_c00416{width:5.184000pt;}
._8_c00416{width:6.400000pt;}
._4_c00416{width:8.192000pt;}
._2_c00416{width:9.536000pt;}
._5_c00416{width:10.997312pt;}
._b_c00416{width:12.512000pt;}
._a_c00416{width:13.440000pt;}
._f_c00416{width:15.029312pt;}
._c_c00416{width:17.088000pt;}
._d_c00416{width:30.464000pt;}
._e_c00416{width:31.808000pt;}
.fs3_c00416{font-size:34.560000pt;}
.fs1_c00416{font-size:42.240000pt;}
.fs2_c00416{font-size:48.640000pt;}
.fs4_c00416{font-size:53.760000pt;}
.fs0_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y14_c00416{bottom:9.906667pt;}
.y1b_c00416{bottom:10.266667pt;}
.y1a_c00416{bottom:31.066667pt;}
.y3_c00416{bottom:51.552000pt;}
.y19_c00416{bottom:51.866667pt;}
.y2_c00416{bottom:70.112000pt;}
.y18_c00416{bottom:72.346667pt;}
.y17_c00416{bottom:93.146667pt;}
.y16_c00416{bottom:113.973333pt;}
.y2e_c00416{bottom:116.192000pt;}
.y2d_c00416{bottom:122.272000pt;}
.y2c_c00416{bottom:131.552000pt;}
.y2b_c00416{bottom:146.946667pt;}
.y2a_c00416{bottom:162.306667pt;}
.y29_c00416{bottom:177.346667pt;}
.y28_c00416{bottom:192.706667pt;}
.y27_c00416{bottom:208.066667pt;}
.y26_c00416{bottom:223.426667pt;}
.y25_c00416{bottom:238.786667pt;}
.y24_c00416{bottom:254.173333pt;}
.y23_c00416{bottom:269.533333pt;}
.y22_c00416{bottom:275.613333pt;}
.y21_c00416{bottom:285.213333pt;}
.y20_c00416{bottom:330.653333pt;}
.y1f_c00416{bottom:358.533333pt;}
.y1e_c00416{bottom:386.053333pt;}
.y1d_c00416{bottom:413.573333pt;}
.y1c_c00416{bottom:441.093333pt;}
.y15_c00416{bottom:456.133333pt;}
.y13_c00416{bottom:581.320000pt;}
.y12_c00416{bottom:615.866667pt;}
.y11_c00416{bottom:643.386667pt;}
.y10_c00416{bottom:670.906667pt;}
.yf_c00416{bottom:698.466667pt;}
.ye_c00416{bottom:726.306667pt;}
.yd_c00416{bottom:753.826667pt;}
.yc_c00416{bottom:781.346667pt;}
.yb_c00416{bottom:808.893333pt;}
.ya_c00416{bottom:836.733333pt;}
.y9_c00416{bottom:864.253333pt;}
.y7_c00416{bottom:891.773333pt;}
.y8_c00416{bottom:899.173333pt;}
.y6_c00416{bottom:919.333333pt;}
.y4_c00416{bottom:947.173333pt;}
.y5_c00416{bottom:954.533333pt;}
.y1_c00416{bottom:993.573333pt;}
.h7_c00416{height:20.466667pt;}
.hb_c00416{height:30.982500pt;}
.h5_c00416{height:41.435625pt;}
.h4_c00416{height:41.456250pt;}
.h8_c00416{height:47.737500pt;}
.hd_c00416{height:48.195000pt;}
.hc_c00416{height:48.457500pt;}
.ha_c00416{height:49.020000pt;}
.h1_c00416{height:57.375000pt;}
.h6_c00416{height:62.781250pt;}
.h2_c00416{height:62.812500pt;}
.h9_c00416{height:124.544000pt;}
.h3_c00416{height:1055.996000pt;}
.h0_c00416{height:1056.000000pt;}
.w2_c00416{width:287.480000pt;}
.w3_c00416{width:287.760000pt;}
.w1_c00416{width:815.997333pt;}
.w0_c00416{width:816.000000pt;}
.x0_c00416{left:0.000000pt;}
.x9_c00416{left:6.708000pt;}
.x8_c00416{left:106.604000pt;}
.x1_c00416{left:113.312000pt;}
.xd_c00416{left:126.752000pt;}
.x3_c00416{left:151.106667pt;}
.xb_c00416{left:158.786667pt;}
.xc_c00416{left:305.413333pt;}
.x6_c00416{left:346.050667pt;}
.x7_c00416{left:362.373333pt;}
.xa_c00416{left:394.720000pt;}
.x2_c00416{left:396.000000pt;}
.x4_c00416{left:467.357333pt;}
.x5_c00416{left:483.706667pt;}
}





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

.ir_c00417:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00417;src:url('chunks/assets/font_e8dcdb8dacc7368442e92b2a.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_253343324627dc1841bcf1cf.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls0_c00417{letter-spacing:0.000000px;}
.ls1_c00417{letter-spacing:1.152000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00417{word-spacing:0.000000px;}
._3_c00417{margin-left:-2.736000px;}
._0_c00417{margin-left:-1.224000px;}
._2_c00417{width:1.224000px;}
._1_c00417{width:2.232000px;}
._4_c00417{width:3.456000px;}
._7_c00417{width:7.632000px;}
._8_c00417{width:8.784000px;}
._5_c00417{width:13.320000px;}
._6_c00417{width:14.904000px;}
.fc0_c00417{color:rgb(0,0,0);}
.fs0_c00417{font-size:72.000000px;}
.y0_c00417{bottom:0.000000px;}
.y3_c00417{bottom:57.996000px;}
.y2_c00417{bottom:78.876000px;}
.y22_c00417{bottom:133.596000px;}
.y21_c00417{bottom:164.955000px;}
.y20_c00417{bottom:195.915000px;}
.y1f_c00417{bottom:226.875000px;}
.y1e_c00417{bottom:257.835000px;}
.y1d_c00417{bottom:289.185000px;}
.y1c_c00417{bottom:320.145000px;}
.y1b_c00417{bottom:351.105000px;}
.y1a_c00417{bottom:382.065000px;}
.y19_c00417{bottom:413.070000px;}
.y18_c00417{bottom:444.390000px;}
.y17_c00417{bottom:475.350000px;}
.y16_c00417{bottom:506.310000px;}
.y15_c00417{bottom:537.300000px;}
.y14_c00417{bottom:568.620000px;}
.y13_c00417{bottom:599.580000px;}
.y12_c00417{bottom:630.540000px;}
.y11_c00417{bottom:661.530000px;}
.y10_c00417{bottom:692.850000px;}
.yf_c00417{bottom:723.810000px;}
.ye_c00417{bottom:754.770000px;}
.yd_c00417{bottom:785.775000px;}
.yc_c00417{bottom:817.095000px;}
.yb_c00417{bottom:848.055000px;}
.ya_c00417{bottom:879.015000px;}
.y9_c00417{bottom:910.005000px;}
.y8_c00417{bottom:941.325000px;}
.y7_c00417{bottom:972.285000px;}
.y6_c00417{bottom:1003.245000px;}
.y5_c00417{bottom:1034.250000px;}
.y4_c00417{bottom:1065.570000px;}
.y1_c00417{bottom:1117.770000px;}
.h1_c00417{height:64.546875px;}
.h2_c00417{height:70.664062px;}
.h0_c00417{height:1188.000000px;}
.w0_c00417{width:918.000000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:127.476000px;}
.x2_c00417{left:445.500000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ls1_c00417{letter-spacing:1.024000pt;}
.ws0_c00417{word-spacing:0.000000pt;}
._3_c00417{margin-left:-2.432000pt;}
._0_c00417{margin-left:-1.088000pt;}
._2_c00417{width:1.088000pt;}
._1_c00417{width:1.984000pt;}
._4_c00417{width:3.072000pt;}
._7_c00417{width:6.784000pt;}
._8_c00417{width:7.808000pt;}
._5_c00417{width:11.840000pt;}
._6_c00417{width:13.248000pt;}
.fs0_c00417{font-size:64.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y3_c00417{bottom:51.552000pt;}
.y2_c00417{bottom:70.112000pt;}
.y22_c00417{bottom:118.752000pt;}
.y21_c00417{bottom:146.626667pt;}
.y20_c00417{bottom:174.146667pt;}
.y1f_c00417{bottom:201.666667pt;}
.y1e_c00417{bottom:229.186667pt;}
.y1d_c00417{bottom:257.053333pt;}
.y1c_c00417{bottom:284.573333pt;}
.y1b_c00417{bottom:312.093333pt;}
.y1a_c00417{bottom:339.613333pt;}
.y19_c00417{bottom:367.173333pt;}
.y18_c00417{bottom:395.013333pt;}
.y17_c00417{bottom:422.533333pt;}
.y16_c00417{bottom:450.053333pt;}
.y15_c00417{bottom:477.600000pt;}
.y14_c00417{bottom:505.440000pt;}
.y13_c00417{bottom:532.960000pt;}
.y12_c00417{bottom:560.480000pt;}
.y11_c00417{bottom:588.026667pt;}
.y10_c00417{bottom:615.866667pt;}
.yf_c00417{bottom:643.386667pt;}
.ye_c00417{bottom:670.906667pt;}
.yd_c00417{bottom:698.466667pt;}
.yc_c00417{bottom:726.306667pt;}
.yb_c00417{bottom:753.826667pt;}
.ya_c00417{bottom:781.346667pt;}
.y9_c00417{bottom:808.893333pt;}
.y8_c00417{bottom:836.733333pt;}
.y7_c00417{bottom:864.253333pt;}
.y6_c00417{bottom:891.773333pt;}
.y5_c00417{bottom:919.333333pt;}
.y4_c00417{bottom:947.173333pt;}
.y1_c00417{bottom:993.573333pt;}
.h1_c00417{height:57.375000pt;}
.h2_c00417{height:62.812500pt;}
.h0_c00417{height:1056.000000pt;}
.w0_c00417{width:816.000000pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:113.312000pt;}
.x2_c00417{left:396.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_c00418 {
    display:none;
  }
  .loading-indicator_c00418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00418 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00418 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00418" -> "#page-container .classname_c00418")
 */
.pf_c00418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00418 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00418 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00418 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00418 {overflow:visible;}
  }
}
.c_c00418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00418 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00418:after { /* webkit #35443 */
  content: '';
}
.t_c00418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00418 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00418 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00418 { /* info for Javascript */
  display:none;
}
.l_c00418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00418:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00418;src:url('chunks/assets/font_bac79b473b2339b1eaa8fa55.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_47ed91b0d56c5979f9d131d9.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;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_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls0_c00418{letter-spacing:0.000000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:0.000000px;}
._0_c00418{margin-left:-2.122656px;}
._1_c00418{width:1.061473px;}
.fc0_c00418{color:rgb(0,0,0);}
.fs0_c00418{font-size:72.000000px;}
.fs1_c00418{font-size:96.480000px;}
.y0_c00418{bottom:0.000000px;}
.y3_c00418{bottom:57.996000px;}
.y2_c00418{bottom:78.876000px;}
.y1a_c00418{bottom:371.625000px;}
.y19_c00418{bottom:402.990000px;}
.y18_c00418{bottom:433.950000px;}
.y17_c00418{bottom:464.910000px;}
.y16_c00418{bottom:495.870000px;}
.y15_c00418{bottom:527.220000px;}
.y14_c00418{bottom:558.180000px;}
.y13_c00418{bottom:589.140000px;}
.y12_c00418{bottom:620.100000px;}
.y11_c00418{bottom:655.410000px;}
.y10_c00418{bottom:692.850000px;}
.yf_c00418{bottom:723.810000px;}
.ye_c00418{bottom:754.770000px;}
.yd_c00418{bottom:785.775000px;}
.yc_c00418{bottom:817.095000px;}
.yb_c00418{bottom:848.055000px;}
.ya_c00418{bottom:879.015000px;}
.y9_c00418{bottom:910.005000px;}
.y8_c00418{bottom:941.325000px;}
.y7_c00418{bottom:972.285000px;}
.y6_c00418{bottom:1003.245000px;}
.y5_c00418{bottom:1034.250000px;}
.y4_c00418{bottom:1065.570000px;}
.y1_c00418{bottom:1117.770000px;}
.h1_c00418{height:64.546875px;}
.h2_c00418{height:70.664062px;}
.h3_c00418{height:94.642734px;}
.h0_c00418{height:1188.000000px;}
.w0_c00418{width:918.000000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:127.476000px;}
.x3_c00418{left:335.625000px;}
.x2_c00418{left:445.500000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:0.000000pt;}
._0_c00418{margin-left:-1.886806pt;}
._1_c00418{width:0.943532pt;}
.fs0_c00418{font-size:64.000000pt;}
.fs1_c00418{font-size:85.760000pt;}
.y0_c00418{bottom:0.000000pt;}
.y3_c00418{bottom:51.552000pt;}
.y2_c00418{bottom:70.112000pt;}
.y1a_c00418{bottom:330.333333pt;}
.y19_c00418{bottom:358.213333pt;}
.y18_c00418{bottom:385.733333pt;}
.y17_c00418{bottom:413.253333pt;}
.y16_c00418{bottom:440.773333pt;}
.y15_c00418{bottom:468.640000pt;}
.y14_c00418{bottom:496.160000pt;}
.y13_c00418{bottom:523.680000pt;}
.y12_c00418{bottom:551.200000pt;}
.y11_c00418{bottom:582.586667pt;}
.y10_c00418{bottom:615.866667pt;}
.yf_c00418{bottom:643.386667pt;}
.ye_c00418{bottom:670.906667pt;}
.yd_c00418{bottom:698.466667pt;}
.yc_c00418{bottom:726.306667pt;}
.yb_c00418{bottom:753.826667pt;}
.ya_c00418{bottom:781.346667pt;}
.y9_c00418{bottom:808.893333pt;}
.y8_c00418{bottom:836.733333pt;}
.y7_c00418{bottom:864.253333pt;}
.y6_c00418{bottom:891.773333pt;}
.y5_c00418{bottom:919.333333pt;}
.y4_c00418{bottom:947.173333pt;}
.y1_c00418{bottom:993.573333pt;}
.h1_c00418{height:57.375000pt;}
.h2_c00418{height:62.812500pt;}
.h3_c00418{height:84.126875pt;}
.h0_c00418{height:1056.000000pt;}
.w0_c00418{width:816.000000pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:113.312000pt;}
.x3_c00418{left:298.333333pt;}
.x2_c00418{left:396.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_c00419 {
    display:none;
  }
  .loading-indicator_c00419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00419 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00419 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00419" -> "#page-container .classname_c00419")
 */
.pf_c00419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00419 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00419 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00419 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00419 {overflow:visible;}
  }
}
.c_c00419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00419 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00419:after { /* webkit #35443 */
  content: '';
}
.t_c00419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00419 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00419 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00419 { /* info for Javascript */
  display:none;
}
.l_c00419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00419:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00419;src:url('chunks/assets/font_292e1be0c03fc817d0352a28.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_39360859d39bed0b7a03991c.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_064bea8906a84e4274617ae6.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_36236656f4b62c3dffb3cbfc.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;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_c00419;src:url('chunks/assets/font_e2a324f748135332850c4b36.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00419;src:url('chunks/assets/font_8c1f73f53d43a246f2ef044a.woff2')format("woff");}.ff6_c00419{font-family:ff6_c00419;line-height:1.112305;font-style:normal;font-weight: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_c00419;src:url('chunks/assets/font_292dd3868322b5d99778ea99.woff2')format("woff");}.ff7_c00419{font-family:ff7_c00419;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.lse_c00419{letter-spacing:-1.740000px;}
.lsd_c00419{letter-spacing:-1.422000px;}
.ls17_c00419{letter-spacing:-1.416000px;}
.ls15_c00419{letter-spacing:-1.044000px;}
.lsf_c00419{letter-spacing:-0.912000px;}
.ls16_c00419{letter-spacing:-0.720000px;}
.ls10_c00419{letter-spacing:-0.532800px;}
.lsb_c00419{letter-spacing:-0.302400px;}
.lsa_c00419{letter-spacing:0.000000px;}
.ls13_c00419{letter-spacing:0.020400px;}
.ls11_c00419{letter-spacing:0.022800px;}
.ls14_c00419{letter-spacing:0.060600px;}
.ls12_c00419{letter-spacing:0.291000px;}
.ls0_c00419{letter-spacing:0.302400px;}
.ls8_c00419{letter-spacing:0.518400px;}
.ls4_c00419{letter-spacing:0.524160px;}
.lsc_c00419{letter-spacing:0.529800px;}
.ls2_c00419{letter-spacing:0.720000px;}
.ls9_c00419{letter-spacing:0.900000px;}
.ls7_c00419{letter-spacing:2.160000px;}
.ls6_c00419{letter-spacing:3.600000px;}
.ls5_c00419{letter-spacing:22.320000px;}
.ls1_c00419{letter-spacing:25.200000px;}
.ls3_c00419{letter-spacing:84.360000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:-18.000000px;}
.ws7_c00419{word-spacing:-15.411000px;}
.ws6_c00419{word-spacing:-15.142800px;}
.ws8_c00419{word-spacing:-15.140400px;}
.ws2_c00419{word-spacing:-15.120000px;}
.ws1_c00419{word-spacing:-14.817600px;}
.ws5_c00419{word-spacing:-14.587200px;}
.ws9_c00419{word-spacing:-14.076000px;}
.ws3_c00419{word-spacing:-13.698000px;}
.ws4_c00419{word-spacing:-13.380000px;}
.wsa_c00419{word-spacing:0.000000px;}
._3_c00419{margin-left:-2.952000px;}
._1_c00419{margin-left:-1.440000px;}
._0_c00419{width:1.296000px;}
._2_c00419{width:3.240000px;}
._5_c00419{width:6.984000px;}
._6_c00419{width:7.992000px;}
._4_c00419{width:9.216000px;}
._7_c00419{width:13.836024px;}
._b_c00419{width:21.790320px;}
._9_c00419{width:23.788923px;}
._8_c00419{width:26.039879px;}
._a_c00419{width:84.660601px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs1_c00419{font-size:60.480000px;}
.fs0_c00419{font-size:72.000000px;}
.y0_c00419{bottom:0.000000px;}
.y1a_c00419{bottom:12.226500px;}
.y10_c00419{bottom:12.240000px;}
.y1b_c00419{bottom:37.789500px;}
.y19_c00419{bottom:38.149500px;}
.y3_c00419{bottom:57.996000px;}
.y18_c00419{bottom:64.099500px;}
.y2_c00419{bottom:78.876000px;}
.y17_c00419{bottom:90.019500px;}
.y16_c00419{bottom:115.939500px;}
.y11_c00419{bottom:130.045500px;}
.y15_c00419{bottom:141.859500px;}
.y14_c00419{bottom:167.824500px;}
.y13_c00419{bottom:193.744500px;}
.y12_c00419{bottom:219.304500px;}
.yf_c00419{bottom:363.750000px;}
.ye_c00419{bottom:405.180000px;}
.yd_c00419{bottom:445.140000px;}
.yc_c00419{bottom:485.130000px;}
.yb_c00419{bottom:516.090000px;}
.ya_c00419{bottom:547.410000px;}
.y9_c00419{bottom:578.370000px;}
.y8_c00419{bottom:618.375000px;}
.y7_c00419{bottom:658.335000px;}
.y6_c00419{bottom:694.005000px;}
.y5_c00419{bottom:742.965000px;}
.y4_c00419{bottom:774.285000px;}
.y1_c00419{bottom:847.770000px;}
.h5_c00419{height:25.590000px;}
.h6_c00419{height:59.357813px;}
.h8_c00419{height:60.952500px;}
.h1_c00419{height:64.546875px;}
.h4_c00419{height:70.628906px;}
.h2_c00419{height:70.664062px;}
.h3_c00419{height:72.562500px;}
.h7_c00419{height:232.605000px;}
.h0_c00419{height:918.000000px;}
.w2_c00419{width:328.035000px;}
.w3_c00419{width:329.850000px;}
.w1_c00419{width:331.290000px;}
.w0_c00419{width:1188.000000px;}
.x0_c00419{left:0.000000px;}
.x7_c00419{left:7.546500px;}
.x6_c00419{left:98.689500px;}
.x1_c00419{left:106.236000px;}
.x5_c00419{left:157.350000px;}
.x4_c00419{left:159.510000px;}
.x8_c00419{left:430.710000px;}
.x3_c00419{left:490.830000px;}
.x2_c00419{left:580.500000px;}
.x9_c00419{left:759.825000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.lse_c00419{letter-spacing:-1.546667pt;}
.lsd_c00419{letter-spacing:-1.264000pt;}
.ls17_c00419{letter-spacing:-1.258667pt;}
.ls15_c00419{letter-spacing:-0.928000pt;}
.lsf_c00419{letter-spacing:-0.810667pt;}
.ls16_c00419{letter-spacing:-0.640000pt;}
.ls10_c00419{letter-spacing:-0.473600pt;}
.lsb_c00419{letter-spacing:-0.268800pt;}
.lsa_c00419{letter-spacing:0.000000pt;}
.ls13_c00419{letter-spacing:0.018133pt;}
.ls11_c00419{letter-spacing:0.020267pt;}
.ls14_c00419{letter-spacing:0.053867pt;}
.ls12_c00419{letter-spacing:0.258667pt;}
.ls0_c00419{letter-spacing:0.268800pt;}
.ls8_c00419{letter-spacing:0.460800pt;}
.ls4_c00419{letter-spacing:0.465920pt;}
.lsc_c00419{letter-spacing:0.470933pt;}
.ls2_c00419{letter-spacing:0.640000pt;}
.ls9_c00419{letter-spacing:0.800000pt;}
.ls7_c00419{letter-spacing:1.920000pt;}
.ls6_c00419{letter-spacing:3.200000pt;}
.ls5_c00419{letter-spacing:19.840000pt;}
.ls1_c00419{letter-spacing:22.400000pt;}
.ls3_c00419{letter-spacing:74.986667pt;}
.ws0_c00419{word-spacing:-16.000000pt;}
.ws7_c00419{word-spacing:-13.698667pt;}
.ws6_c00419{word-spacing:-13.460267pt;}
.ws8_c00419{word-spacing:-13.458133pt;}
.ws2_c00419{word-spacing:-13.440000pt;}
.ws1_c00419{word-spacing:-13.171200pt;}
.ws5_c00419{word-spacing:-12.966400pt;}
.ws9_c00419{word-spacing:-12.512000pt;}
.ws3_c00419{word-spacing:-12.176000pt;}
.ws4_c00419{word-spacing:-11.893333pt;}
.wsa_c00419{word-spacing:0.000000pt;}
._3_c00419{margin-left:-2.624000pt;}
._1_c00419{margin-left:-1.280000pt;}
._0_c00419{width:1.152000pt;}
._2_c00419{width:2.880000pt;}
._5_c00419{width:6.208000pt;}
._6_c00419{width:7.104000pt;}
._4_c00419{width:8.192000pt;}
._7_c00419{width:12.298688pt;}
._b_c00419{width:19.369173pt;}
._9_c00419{width:21.145709pt;}
._8_c00419{width:23.146559pt;}
._a_c00419{width:75.253868pt;}
.fs1_c00419{font-size:53.760000pt;}
.fs0_c00419{font-size:64.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y1a_c00419{bottom:10.868000pt;}
.y10_c00419{bottom:10.880000pt;}
.y1b_c00419{bottom:33.590667pt;}
.y19_c00419{bottom:33.910667pt;}
.y3_c00419{bottom:51.552000pt;}
.y18_c00419{bottom:56.977333pt;}
.y2_c00419{bottom:70.112000pt;}
.y17_c00419{bottom:80.017333pt;}
.y16_c00419{bottom:103.057333pt;}
.y11_c00419{bottom:115.596000pt;}
.y15_c00419{bottom:126.097333pt;}
.y14_c00419{bottom:149.177333pt;}
.y13_c00419{bottom:172.217333pt;}
.y12_c00419{bottom:194.937333pt;}
.yf_c00419{bottom:323.333333pt;}
.ye_c00419{bottom:360.160000pt;}
.yd_c00419{bottom:395.680000pt;}
.yc_c00419{bottom:431.226667pt;}
.yb_c00419{bottom:458.746667pt;}
.ya_c00419{bottom:486.586667pt;}
.y9_c00419{bottom:514.106667pt;}
.y8_c00419{bottom:549.666667pt;}
.y7_c00419{bottom:585.186667pt;}
.y6_c00419{bottom:616.893333pt;}
.y5_c00419{bottom:660.413333pt;}
.y4_c00419{bottom:688.253333pt;}
.y1_c00419{bottom:753.573333pt;}
.h5_c00419{height:22.746667pt;}
.h6_c00419{height:52.762500pt;}
.h8_c00419{height:54.180000pt;}
.h1_c00419{height:57.375000pt;}
.h4_c00419{height:62.781250pt;}
.h2_c00419{height:62.812500pt;}
.h3_c00419{height:64.500000pt;}
.h7_c00419{height:206.760000pt;}
.h0_c00419{height:816.000000pt;}
.w2_c00419{width:291.586667pt;}
.w3_c00419{width:293.200000pt;}
.w1_c00419{width:294.480000pt;}
.w0_c00419{width:1056.000000pt;}
.x0_c00419{left:0.000000pt;}
.x7_c00419{left:6.708000pt;}
.x6_c00419{left:87.724000pt;}
.x1_c00419{left:94.432000pt;}
.x5_c00419{left:139.866667pt;}
.x4_c00419{left:141.786667pt;}
.x8_c00419{left:382.853333pt;}
.x3_c00419{left:436.293333pt;}
.x2_c00419{left:516.000000pt;}
.x9_c00419{left:675.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_c00420 {
    display:none;
  }
  .loading-indicator_c00420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00420 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00420 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00420" -> "#page-container .classname_c00420")
 */
.pf_c00420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00420 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00420 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00420 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00420 {overflow:visible;}
  }
}
.c_c00420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00420 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00420:after { /* webkit #35443 */
  content: '';
}
.t_c00420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00420 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00420 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00420 { /* info for Javascript */
  display:none;
}
.l_c00420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00420:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00420;src:url('chunks/assets/font_5fe0de63d4e1707d9bf23786.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_2ccc5a2372b81e71037f048a.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_0cc6bd6eac669b55d4c09827.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_e3a3d64fb46be19185b0ca19.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;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_c00420;src:url('chunks/assets/font_6e88ada75ab44c9e98f3ec9a.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00420;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00420{font-family:ff6_c00420;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.lsf_c00420{letter-spacing:-1.680000px;}
.ls23_c00420{letter-spacing:-1.440000px;}
.ls13_c00420{letter-spacing:-1.422000px;}
.ls17_c00420{letter-spacing:-1.416000px;}
.ls1e_c00420{letter-spacing:-1.380000px;}
.ls24_c00420{letter-spacing:-1.044000px;}
.ls25_c00420{letter-spacing:-0.990000px;}
.ls22_c00420{letter-spacing:-0.918000px;}
.ls12_c00420{letter-spacing:-0.912000px;}
.ls16_c00420{letter-spacing:-0.804000px;}
.ls18_c00420{letter-spacing:-0.720000px;}
.ls19_c00420{letter-spacing:-0.544200px;}
.ls14_c00420{letter-spacing:-0.532800px;}
.ls21_c00420{letter-spacing:-0.302400px;}
.ls1f_c00420{letter-spacing:-0.241800px;}
.lsd_c00420{letter-spacing:0.000000px;}
.ls5_c00420{letter-spacing:0.020160px;}
.lse_c00420{letter-spacing:0.020400px;}
.ls1a_c00420{letter-spacing:0.022800px;}
.ls2_c00420{letter-spacing:0.048960px;}
.ls11_c00420{letter-spacing:0.060600px;}
.ls10_c00420{letter-spacing:0.166800px;}
.lsc_c00420{letter-spacing:0.168960px;}
.lsa_c00420{letter-spacing:0.290880px;}
.ls15_c00420{letter-spacing:0.291000px;}
.ls6_c00420{letter-spacing:0.302400px;}
.ls1b_c00420{letter-spacing:0.313800px;}
.ls20_c00420{letter-spacing:0.507000px;}
.ls9_c00420{letter-spacing:0.518400px;}
.ls1d_c00420{letter-spacing:0.521400px;}
.ls8_c00420{letter-spacing:0.529800px;}
.ls1c_c00420{letter-spacing:0.702000px;}
.ls0_c00420{letter-spacing:0.720000px;}
.ls4_c00420{letter-spacing:0.840000px;}
.lsb_c00420{letter-spacing:0.900000px;}
.ls3_c00420{letter-spacing:12.240000px;}
.ls1_c00420{letter-spacing:13.680000px;}
.ls7_c00420{letter-spacing:65.520000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00420{word-spacing:-15.822000px;}
.wsd_c00420{word-spacing:-15.641400px;}
.ws10_c00420{word-spacing:-15.627000px;}
.wsb_c00420{word-spacing:-15.433800px;}
.ws8_c00420{word-spacing:-15.411000px;}
.ws3_c00420{word-spacing:-15.286800px;}
.ws4_c00420{word-spacing:-15.180600px;}
.ws1_c00420{word-spacing:-15.140400px;}
.ws0_c00420{word-spacing:-15.120000px;}
.wsf_c00420{word-spacing:-14.878200px;}
.ws12_c00420{word-spacing:-14.817600px;}
.ws7_c00420{word-spacing:-14.587200px;}
.wsa_c00420{word-spacing:-14.575800px;}
.ws9_c00420{word-spacing:-14.316000px;}
.ws5_c00420{word-spacing:-14.208000px;}
.ws13_c00420{word-spacing:-14.202000px;}
.ws15_c00420{word-spacing:-14.130000px;}
.wse_c00420{word-spacing:-13.740000px;}
.ws11_c00420{word-spacing:-13.704000px;}
.ws6_c00420{word-spacing:-13.698000px;}
.ws14_c00420{word-spacing:-13.680000px;}
.ws2_c00420{word-spacing:-13.440000px;}
.ws16_c00420{word-spacing:0.000000px;}
._4_c00420{margin-left:-2.398076px;}
._0_c00420{margin-left:-1.330802px;}
._1_c00420{width:1.189561px;}
._5_c00420{width:2.261401px;}
._2_c00420{width:12.903247px;}
._3_c00420{width:14.117877px;}
._6_c00420{width:66.700927px;}
.fc0_c00420{color:rgb(0,0,0);}
.fs1_c00420{font-size:60.480000px;}
.fs0_c00420{font-size:72.000000px;}
.y0_c00420{bottom:0.000000px;}
.y1d_c00420{bottom:12.589500px;}
.y1c_c00420{bottom:38.509500px;}
.y3_c00420{bottom:57.996000px;}
.y1b_c00420{bottom:64.099500px;}
.y2_c00420{bottom:78.876000px;}
.y1a_c00420{bottom:90.019500px;}
.y19_c00420{bottom:115.939500px;}
.y18_c00420{bottom:141.859500px;}
.y4_c00420{bottom:142.645500px;}
.y17_c00420{bottom:167.824500px;}
.y16_c00420{bottom:193.744500px;}
.y15_c00420{bottom:219.664500px;}
.y14_c00420{bottom:245.614500px;}
.y13_c00420{bottom:271.174500px;}
.y12_c00420{bottom:297.094500px;}
.y11_c00420{bottom:323.014500px;}
.y10_c00420{bottom:348.964500px;}
.yf_c00420{bottom:374.884500px;}
.ye_c00420{bottom:400.804500px;}
.yd_c00420{bottom:426.724500px;}
.yc_c00420{bottom:452.329500px;}
.yb_c00420{bottom:478.249500px;}
.ya_c00420{bottom:504.169500px;}
.y9_c00420{bottom:530.089500px;}
.y8_c00420{bottom:556.039500px;}
.y7_c00420{bottom:581.959500px;}
.y6_c00420{bottom:607.879500px;}
.y5_c00420{bottom:633.844500px;}
.y1_c00420{bottom:847.770000px;}
.h3_c00420{height:59.357813px;}
.h4_c00420{height:60.952500px;}
.h1_c00420{height:64.546875px;}
.h2_c00420{height:647.145000px;}
.h0_c00420{height:918.000000px;}
.w2_c00420{width:328.035000px;}
.w3_c00420{width:329.850000px;}
.w1_c00420{width:331.290000px;}
.w0_c00420{width:1188.000000px;}
.x0_c00420{left:0.000000px;}
.x4_c00420{left:7.546500px;}
.x3_c00420{left:98.689500px;}
.x1_c00420{left:106.236000px;}
.x5_c00420{left:430.710000px;}
.x2_c00420{left:580.500000px;}
.x6_c00420{left:759.825000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.lsf_c00420{letter-spacing:-1.493333pt;}
.ls23_c00420{letter-spacing:-1.280000pt;}
.ls13_c00420{letter-spacing:-1.264000pt;}
.ls17_c00420{letter-spacing:-1.258667pt;}
.ls1e_c00420{letter-spacing:-1.226667pt;}
.ls24_c00420{letter-spacing:-0.928000pt;}
.ls25_c00420{letter-spacing:-0.880000pt;}
.ls22_c00420{letter-spacing:-0.816000pt;}
.ls12_c00420{letter-spacing:-0.810667pt;}
.ls16_c00420{letter-spacing:-0.714667pt;}
.ls18_c00420{letter-spacing:-0.640000pt;}
.ls19_c00420{letter-spacing:-0.483733pt;}
.ls14_c00420{letter-spacing:-0.473600pt;}
.ls21_c00420{letter-spacing:-0.268800pt;}
.ls1f_c00420{letter-spacing:-0.214933pt;}
.lsd_c00420{letter-spacing:0.000000pt;}
.ls5_c00420{letter-spacing:0.017920pt;}
.lse_c00420{letter-spacing:0.018133pt;}
.ls1a_c00420{letter-spacing:0.020267pt;}
.ls2_c00420{letter-spacing:0.043520pt;}
.ls11_c00420{letter-spacing:0.053867pt;}
.ls10_c00420{letter-spacing:0.148267pt;}
.lsc_c00420{letter-spacing:0.150187pt;}
.lsa_c00420{letter-spacing:0.258560pt;}
.ls15_c00420{letter-spacing:0.258667pt;}
.ls6_c00420{letter-spacing:0.268800pt;}
.ls1b_c00420{letter-spacing:0.278933pt;}
.ls20_c00420{letter-spacing:0.450667pt;}
.ls9_c00420{letter-spacing:0.460800pt;}
.ls1d_c00420{letter-spacing:0.463467pt;}
.ls8_c00420{letter-spacing:0.470933pt;}
.ls1c_c00420{letter-spacing:0.624000pt;}
.ls0_c00420{letter-spacing:0.640000pt;}
.ls4_c00420{letter-spacing:0.746667pt;}
.lsb_c00420{letter-spacing:0.800000pt;}
.ls3_c00420{letter-spacing:10.880000pt;}
.ls1_c00420{letter-spacing:12.160000pt;}
.ls7_c00420{letter-spacing:58.240000pt;}
.wsc_c00420{word-spacing:-14.064000pt;}
.wsd_c00420{word-spacing:-13.903467pt;}
.ws10_c00420{word-spacing:-13.890667pt;}
.wsb_c00420{word-spacing:-13.718933pt;}
.ws8_c00420{word-spacing:-13.698667pt;}
.ws3_c00420{word-spacing:-13.588267pt;}
.ws4_c00420{word-spacing:-13.493867pt;}
.ws1_c00420{word-spacing:-13.458133pt;}
.ws0_c00420{word-spacing:-13.440000pt;}
.wsf_c00420{word-spacing:-13.225067pt;}
.ws12_c00420{word-spacing:-13.171200pt;}
.ws7_c00420{word-spacing:-12.966400pt;}
.wsa_c00420{word-spacing:-12.956267pt;}
.ws9_c00420{word-spacing:-12.725333pt;}
.ws5_c00420{word-spacing:-12.629333pt;}
.ws13_c00420{word-spacing:-12.624000pt;}
.ws15_c00420{word-spacing:-12.560000pt;}
.wse_c00420{word-spacing:-12.213333pt;}
.ws11_c00420{word-spacing:-12.181333pt;}
.ws6_c00420{word-spacing:-12.176000pt;}
.ws14_c00420{word-spacing:-12.160000pt;}
.ws2_c00420{word-spacing:-11.946667pt;}
.ws16_c00420{word-spacing:0.000000pt;}
._4_c00420{margin-left:-2.131623pt;}
._0_c00420{margin-left:-1.182935pt;}
._1_c00420{width:1.057388pt;}
._5_c00420{width:2.010134pt;}
._2_c00420{width:11.469553pt;}
._3_c00420{width:12.549224pt;}
._6_c00420{width:59.289713pt;}
.fs1_c00420{font-size:53.760000pt;}
.fs0_c00420{font-size:64.000000pt;}
.y0_c00420{bottom:0.000000pt;}
.y1d_c00420{bottom:11.190667pt;}
.y1c_c00420{bottom:34.230667pt;}
.y3_c00420{bottom:51.552000pt;}
.y1b_c00420{bottom:56.977333pt;}
.y2_c00420{bottom:70.112000pt;}
.y1a_c00420{bottom:80.017333pt;}
.y19_c00420{bottom:103.057333pt;}
.y18_c00420{bottom:126.097333pt;}
.y4_c00420{bottom:126.796000pt;}
.y17_c00420{bottom:149.177333pt;}
.y16_c00420{bottom:172.217333pt;}
.y15_c00420{bottom:195.257333pt;}
.y14_c00420{bottom:218.324000pt;}
.y13_c00420{bottom:241.044000pt;}
.y12_c00420{bottom:264.084000pt;}
.y11_c00420{bottom:287.124000pt;}
.y10_c00420{bottom:310.190667pt;}
.yf_c00420{bottom:333.230667pt;}
.ye_c00420{bottom:356.270667pt;}
.yd_c00420{bottom:379.310667pt;}
.yc_c00420{bottom:402.070667pt;}
.yb_c00420{bottom:425.110667pt;}
.ya_c00420{bottom:448.150667pt;}
.y9_c00420{bottom:471.190667pt;}
.y8_c00420{bottom:494.257333pt;}
.y7_c00420{bottom:517.297333pt;}
.y6_c00420{bottom:540.337333pt;}
.y5_c00420{bottom:563.417333pt;}
.y1_c00420{bottom:753.573333pt;}
.h3_c00420{height:52.762500pt;}
.h4_c00420{height:54.180000pt;}
.h1_c00420{height:57.375000pt;}
.h2_c00420{height:575.240000pt;}
.h0_c00420{height:816.000000pt;}
.w2_c00420{width:291.586667pt;}
.w3_c00420{width:293.200000pt;}
.w1_c00420{width:294.480000pt;}
.w0_c00420{width:1056.000000pt;}
.x0_c00420{left:0.000000pt;}
.x4_c00420{left:6.708000pt;}
.x3_c00420{left:87.724000pt;}
.x1_c00420{left:94.432000pt;}
.x5_c00420{left:382.853333pt;}
.x2_c00420{left:516.000000pt;}
.x6_c00420{left:675.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_c00421 {
    display:none;
  }
  .loading-indicator_c00421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00421 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00421 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00421" -> "#page-container .classname_c00421")
 */
.pf_c00421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00421 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00421 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00421 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00421 {overflow:visible;}
  }
}
.c_c00421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00421 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00421:after { /* webkit #35443 */
  content: '';
}
.t_c00421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00421 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00421 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00421 { /* info for Javascript */
  display:none;
}
.l_c00421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00421:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00421;src:url('chunks/assets/font_893fffa2dd3be52f6819d7a1.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_8d29eeb99a0b6ad2f98c38de.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_188bba6ac37977ceff1d18a3.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_1b5ec8cbf7fe13ebbb6c1ef4.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00421;src:url('chunks/assets/font_31ff7ea3b4d30f393872e7d7.woff2')format("woff");}.ff5_c00421{font-family:ff5_c00421;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_c00421;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00421{font-family:ff6_c00421;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.lsb_c00421{letter-spacing:-1.422000px;}
.lsa_c00421{letter-spacing:-1.416000px;}
.ls17_c00421{letter-spacing:-1.044000px;}
.ls12_c00421{letter-spacing:-0.912000px;}
.lsc_c00421{letter-spacing:-0.720000px;}
.ls16_c00421{letter-spacing:-0.532800px;}
.lsd_c00421{letter-spacing:-0.241800px;}
.ls11_c00421{letter-spacing:-0.169800px;}
.ls8_c00421{letter-spacing:0.000000px;}
.ls3_c00421{letter-spacing:0.020160px;}
.lsf_c00421{letter-spacing:0.022800px;}
.ls4_c00421{letter-spacing:0.048960px;}
.ls10_c00421{letter-spacing:0.060600px;}
.lse_c00421{letter-spacing:0.166800px;}
.ls5_c00421{letter-spacing:0.290880px;}
.ls13_c00421{letter-spacing:0.291000px;}
.ls0_c00421{letter-spacing:0.518400px;}
.ls2_c00421{letter-spacing:0.524160px;}
.ls15_c00421{letter-spacing:0.524400px;}
.ls14_c00421{letter-spacing:0.529800px;}
.ls9_c00421{letter-spacing:0.702000px;}
.ls1_c00421{letter-spacing:0.720000px;}
.ls6_c00421{letter-spacing:5.040000px;}
.ls7_c00421{letter-spacing:6.480000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00421{word-spacing:-15.822000px;}
.ws9_c00421{word-spacing:-15.644400px;}
.ws8_c00421{word-spacing:-15.411000px;}
.ws5_c00421{word-spacing:-15.286800px;}
.ws6_c00421{word-spacing:-15.180600px;}
.ws1_c00421{word-spacing:-15.120000px;}
.ws7_c00421{word-spacing:-14.950200px;}
.ws4_c00421{word-spacing:-14.878200px;}
.wsa_c00421{word-spacing:-14.587200px;}
.ws2_c00421{word-spacing:-13.704000px;}
.ws3_c00421{word-spacing:-13.698000px;}
.wsb_c00421{word-spacing:0.000000px;}
._0_c00421{margin-left:-2.141280px;}
._2_c00421{margin-left:-1.074474px;}
._1_c00421{width:1.046759px;}
._3_c00421{width:2.167922px;}
._5_c00421{width:4.366802px;}
._4_c00421{width:5.523719px;}
.fc0_c00421{color:rgb(0,0,0);}
.fs1_c00421{font-size:60.480000px;}
.fs0_c00421{font-size:72.000000px;}
.y0_c00421{bottom:0.000000px;}
.ya_c00421{bottom:12.585000px;}
.y1f_c00421{bottom:12.586500px;}
.y6_c00421{bottom:12.600000px;}
.y1e_c00421{bottom:38.509500px;}
.y5_c00421{bottom:38.565000px;}
.y3_c00421{bottom:57.996000px;}
.y1d_c00421{bottom:64.099500px;}
.y2_c00421{bottom:78.876000px;}
.y1c_c00421{bottom:90.019500px;}
.y1b_c00421{bottom:115.939500px;}
.yb_c00421{bottom:130.045500px;}
.y1a_c00421{bottom:141.859500px;}
.y19_c00421{bottom:167.824500px;}
.y18_c00421{bottom:193.744500px;}
.y17_c00421{bottom:219.664500px;}
.y16_c00421{bottom:245.584500px;}
.y15_c00421{bottom:271.174500px;}
.y14_c00421{bottom:297.094500px;}
.y13_c00421{bottom:323.014500px;}
.y12_c00421{bottom:348.934500px;}
.y11_c00421{bottom:374.884500px;}
.y10_c00421{bottom:400.804500px;}
.yf_c00421{bottom:426.724500px;}
.ye_c00421{bottom:452.329500px;}
.yd_c00421{bottom:478.249500px;}
.yc_c00421{bottom:504.169500px;}
.y9_c00421{bottom:648.270000px;}
.y8_c00421{bottom:689.685000px;}
.y7_c00421{bottom:721.005000px;}
.y4_c00421{bottom:737.925000px;}
.y1_c00421{bottom:847.770000px;}
.h6_c00421{height:25.905000px;}
.h2_c00421{height:51.870000px;}
.h3_c00421{height:59.357813px;}
.h8_c00421{height:60.952500px;}
.h1_c00421{height:64.546875px;}
.h5_c00421{height:70.628906px;}
.h4_c00421{height:70.664062px;}
.h7_c00421{height:517.486500px;}
.h0_c00421{height:918.000000px;}
.w4_c00421{width:328.050000px;}
.w2_c00421{width:330.210000px;}
.w3_c00421{width:331.275000px;}
.w1_c00421{width:331.290000px;}
.w0_c00421{width:1188.000000px;}
.x0_c00421{left:0.000000px;}
.x4_c00421{left:7.546500px;}
.x3_c00421{left:98.689500px;}
.x1_c00421{left:106.236000px;}
.x5_c00421{left:157.350000px;}
.x6_c00421{left:429.630000px;}
.x2_c00421{left:580.500000px;}
.x7_c00421{left:761.625000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.lsb_c00421{letter-spacing:-1.264000pt;}
.lsa_c00421{letter-spacing:-1.258667pt;}
.ls17_c00421{letter-spacing:-0.928000pt;}
.ls12_c00421{letter-spacing:-0.810667pt;}
.lsc_c00421{letter-spacing:-0.640000pt;}
.ls16_c00421{letter-spacing:-0.473600pt;}
.lsd_c00421{letter-spacing:-0.214933pt;}
.ls11_c00421{letter-spacing:-0.150933pt;}
.ls8_c00421{letter-spacing:0.000000pt;}
.ls3_c00421{letter-spacing:0.017920pt;}
.lsf_c00421{letter-spacing:0.020267pt;}
.ls4_c00421{letter-spacing:0.043520pt;}
.ls10_c00421{letter-spacing:0.053867pt;}
.lse_c00421{letter-spacing:0.148267pt;}
.ls5_c00421{letter-spacing:0.258560pt;}
.ls13_c00421{letter-spacing:0.258667pt;}
.ls0_c00421{letter-spacing:0.460800pt;}
.ls2_c00421{letter-spacing:0.465920pt;}
.ls15_c00421{letter-spacing:0.466133pt;}
.ls14_c00421{letter-spacing:0.470933pt;}
.ls9_c00421{letter-spacing:0.624000pt;}
.ls1_c00421{letter-spacing:0.640000pt;}
.ls6_c00421{letter-spacing:4.480000pt;}
.ls7_c00421{letter-spacing:5.760000pt;}
.ws0_c00421{word-spacing:-14.064000pt;}
.ws9_c00421{word-spacing:-13.906133pt;}
.ws8_c00421{word-spacing:-13.698667pt;}
.ws5_c00421{word-spacing:-13.588267pt;}
.ws6_c00421{word-spacing:-13.493867pt;}
.ws1_c00421{word-spacing:-13.440000pt;}
.ws7_c00421{word-spacing:-13.289067pt;}
.ws4_c00421{word-spacing:-13.225067pt;}
.wsa_c00421{word-spacing:-12.966400pt;}
.ws2_c00421{word-spacing:-12.181333pt;}
.ws3_c00421{word-spacing:-12.176000pt;}
.wsb_c00421{word-spacing:0.000000pt;}
._0_c00421{margin-left:-1.903360pt;}
._2_c00421{margin-left:-0.955088pt;}
._1_c00421{width:0.930452pt;}
._3_c00421{width:1.927042pt;}
._5_c00421{width:3.881602pt;}
._4_c00421{width:4.909972pt;}
.fs1_c00421{font-size:53.760000pt;}
.fs0_c00421{font-size:64.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.ya_c00421{bottom:11.186667pt;}
.y1f_c00421{bottom:11.188000pt;}
.y6_c00421{bottom:11.200000pt;}
.y1e_c00421{bottom:34.230667pt;}
.y5_c00421{bottom:34.280000pt;}
.y3_c00421{bottom:51.552000pt;}
.y1d_c00421{bottom:56.977333pt;}
.y2_c00421{bottom:70.112000pt;}
.y1c_c00421{bottom:80.017333pt;}
.y1b_c00421{bottom:103.057333pt;}
.yb_c00421{bottom:115.596000pt;}
.y1a_c00421{bottom:126.097333pt;}
.y19_c00421{bottom:149.177333pt;}
.y18_c00421{bottom:172.217333pt;}
.y17_c00421{bottom:195.257333pt;}
.y16_c00421{bottom:218.297333pt;}
.y15_c00421{bottom:241.044000pt;}
.y14_c00421{bottom:264.084000pt;}
.y13_c00421{bottom:287.124000pt;}
.y12_c00421{bottom:310.164000pt;}
.y11_c00421{bottom:333.230667pt;}
.y10_c00421{bottom:356.270667pt;}
.yf_c00421{bottom:379.310667pt;}
.ye_c00421{bottom:402.070667pt;}
.yd_c00421{bottom:425.110667pt;}
.yc_c00421{bottom:448.150667pt;}
.y9_c00421{bottom:576.240000pt;}
.y8_c00421{bottom:613.053333pt;}
.y7_c00421{bottom:640.893333pt;}
.y4_c00421{bottom:655.933333pt;}
.y1_c00421{bottom:753.573333pt;}
.h6_c00421{height:23.026667pt;}
.h2_c00421{height:46.106667pt;}
.h3_c00421{height:52.762500pt;}
.h8_c00421{height:54.180000pt;}
.h1_c00421{height:57.375000pt;}
.h5_c00421{height:62.781250pt;}
.h4_c00421{height:62.812500pt;}
.h7_c00421{height:459.988000pt;}
.h0_c00421{height:816.000000pt;}
.w4_c00421{width:291.600000pt;}
.w2_c00421{width:293.520000pt;}
.w3_c00421{width:294.466667pt;}
.w1_c00421{width:294.480000pt;}
.w0_c00421{width:1056.000000pt;}
.x0_c00421{left:0.000000pt;}
.x4_c00421{left:6.708000pt;}
.x3_c00421{left:87.724000pt;}
.x1_c00421{left:94.432000pt;}
.x5_c00421{left:139.866667pt;}
.x6_c00421{left:381.893333pt;}
.x2_c00421{left:516.000000pt;}
.x7_c00421{left:677.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_c00422 {
    display:none;
  }
  .loading-indicator_c00422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00422 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00422 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00422" -> "#page-container .classname_c00422")
 */
.pf_c00422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00422 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00422 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00422 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00422 {overflow:visible;}
  }
}
.c_c00422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00422 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00422:after { /* webkit #35443 */
  content: '';
}
.t_c00422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00422 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00422 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00422 { /* info for Javascript */
  display:none;
}
.l_c00422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00422:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00422;src:url('chunks/assets/font_452efd2a39e32aad6711cf10.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_53ae8b7f38ca0fc59f53ad0a.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_e3a3d64fb46be19185b0ca19.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;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_c00422;src:url('chunks/assets/font_cf4d9f18435e8e00efbedc00.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00422;src:url('chunks/assets/font_d6e098823245182f1c29bf9c.woff2')format("woff");}.ff5_c00422{font-family:ff5_c00422;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00422;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00422{font-family:ff6_c00422;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls11_c00422{letter-spacing:-1.680000px;}
.ls6_c00422{letter-spacing:-1.422000px;}
.lsf_c00422{letter-spacing:-1.416000px;}
.ls8_c00422{letter-spacing:-1.380000px;}
.ls10_c00422{letter-spacing:-0.912000px;}
.ls12_c00422{letter-spacing:-0.720000px;}
.lsc_c00422{letter-spacing:-0.532800px;}
.ls13_c00422{letter-spacing:-0.302400px;}
.ls7_c00422{letter-spacing:-0.241800px;}
.ls5_c00422{letter-spacing:0.000000px;}
.lsa_c00422{letter-spacing:0.022800px;}
.ls9_c00422{letter-spacing:0.060600px;}
.lsd_c00422{letter-spacing:0.166800px;}
.ls3_c00422{letter-spacing:0.302400px;}
.ls4_c00422{letter-spacing:0.518400px;}
.ls0_c00422{letter-spacing:0.524160px;}
.lse_c00422{letter-spacing:0.529800px;}
.ls2_c00422{letter-spacing:0.696000px;}
.lsb_c00422{letter-spacing:0.702000px;}
.ls1_c00422{letter-spacing:0.720000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00422{word-spacing:-15.822000px;}
.ws5_c00422{word-spacing:-15.286800px;}
.ws9_c00422{word-spacing:-15.142800px;}
.ws1_c00422{word-spacing:-15.120000px;}
.ws4_c00422{word-spacing:-14.878200px;}
.ws7_c00422{word-spacing:-14.817600px;}
.ws3_c00422{word-spacing:-14.587200px;}
.ws8_c00422{word-spacing:-13.740000px;}
.wsa_c00422{word-spacing:-13.704000px;}
.ws0_c00422{word-spacing:-13.698000px;}
.ws6_c00422{word-spacing:-13.440000px;}
.wsb_c00422{word-spacing:0.000000px;}
._2_c00422{margin-left:-2.448954px;}
._0_c00422{margin-left:-1.270201px;}
._1_c00422{width:1.479481px;}
._3_c00422{width:3.179873px;}
.fc0_c00422{color:rgb(0,0,0);}
.fs1_c00422{font-size:60.480000px;}
.fs0_c00422{font-size:72.000000px;}
.y0_c00422{bottom:0.000000px;}
.y1d_c00422{bottom:12.589500px;}
.y1c_c00422{bottom:38.509500px;}
.y3_c00422{bottom:57.996000px;}
.y1b_c00422{bottom:64.099500px;}
.y2_c00422{bottom:78.876000px;}
.y1a_c00422{bottom:90.019500px;}
.y19_c00422{bottom:115.939500px;}
.y18_c00422{bottom:141.859500px;}
.y4_c00422{bottom:142.645500px;}
.y17_c00422{bottom:167.824500px;}
.y16_c00422{bottom:193.744500px;}
.y15_c00422{bottom:219.664500px;}
.y14_c00422{bottom:245.614500px;}
.y13_c00422{bottom:271.174500px;}
.y12_c00422{bottom:297.094500px;}
.y11_c00422{bottom:323.014500px;}
.y10_c00422{bottom:348.964500px;}
.yf_c00422{bottom:374.884500px;}
.ye_c00422{bottom:400.804500px;}
.yd_c00422{bottom:426.724500px;}
.yc_c00422{bottom:452.329500px;}
.yb_c00422{bottom:478.249500px;}
.ya_c00422{bottom:504.169500px;}
.y9_c00422{bottom:530.089500px;}
.y8_c00422{bottom:556.039500px;}
.y7_c00422{bottom:581.959500px;}
.y6_c00422{bottom:607.879500px;}
.y5_c00422{bottom:633.844500px;}
.y1_c00422{bottom:847.770000px;}
.h3_c00422{height:59.357813px;}
.h4_c00422{height:60.952500px;}
.h1_c00422{height:64.546875px;}
.h2_c00422{height:647.145000px;}
.h0_c00422{height:918.000000px;}
.w1_c00422{width:330.210000px;}
.w2_c00422{width:331.275000px;}
.w0_c00422{width:1188.000000px;}
.x0_c00422{left:0.000000px;}
.x4_c00422{left:7.546500px;}
.x3_c00422{left:98.689500px;}
.x1_c00422{left:106.236000px;}
.x5_c00422{left:429.630000px;}
.x2_c00422{left:580.500000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls11_c00422{letter-spacing:-1.493333pt;}
.ls6_c00422{letter-spacing:-1.264000pt;}
.lsf_c00422{letter-spacing:-1.258667pt;}
.ls8_c00422{letter-spacing:-1.226667pt;}
.ls10_c00422{letter-spacing:-0.810667pt;}
.ls12_c00422{letter-spacing:-0.640000pt;}
.lsc_c00422{letter-spacing:-0.473600pt;}
.ls13_c00422{letter-spacing:-0.268800pt;}
.ls7_c00422{letter-spacing:-0.214933pt;}
.ls5_c00422{letter-spacing:0.000000pt;}
.lsa_c00422{letter-spacing:0.020267pt;}
.ls9_c00422{letter-spacing:0.053867pt;}
.lsd_c00422{letter-spacing:0.148267pt;}
.ls3_c00422{letter-spacing:0.268800pt;}
.ls4_c00422{letter-spacing:0.460800pt;}
.ls0_c00422{letter-spacing:0.465920pt;}
.lse_c00422{letter-spacing:0.470933pt;}
.ls2_c00422{letter-spacing:0.618667pt;}
.lsb_c00422{letter-spacing:0.624000pt;}
.ls1_c00422{letter-spacing:0.640000pt;}
.ws2_c00422{word-spacing:-14.064000pt;}
.ws5_c00422{word-spacing:-13.588267pt;}
.ws9_c00422{word-spacing:-13.460267pt;}
.ws1_c00422{word-spacing:-13.440000pt;}
.ws4_c00422{word-spacing:-13.225067pt;}
.ws7_c00422{word-spacing:-13.171200pt;}
.ws3_c00422{word-spacing:-12.966400pt;}
.ws8_c00422{word-spacing:-12.213333pt;}
.wsa_c00422{word-spacing:-12.181333pt;}
.ws0_c00422{word-spacing:-12.176000pt;}
.ws6_c00422{word-spacing:-11.946667pt;}
.wsb_c00422{word-spacing:0.000000pt;}
._2_c00422{margin-left:-2.176848pt;}
._0_c00422{margin-left:-1.129068pt;}
._1_c00422{width:1.315094pt;}
._3_c00422{width:2.826554pt;}
.fs1_c00422{font-size:53.760000pt;}
.fs0_c00422{font-size:64.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y1d_c00422{bottom:11.190667pt;}
.y1c_c00422{bottom:34.230667pt;}
.y3_c00422{bottom:51.552000pt;}
.y1b_c00422{bottom:56.977333pt;}
.y2_c00422{bottom:70.112000pt;}
.y1a_c00422{bottom:80.017333pt;}
.y19_c00422{bottom:103.057333pt;}
.y18_c00422{bottom:126.097333pt;}
.y4_c00422{bottom:126.796000pt;}
.y17_c00422{bottom:149.177333pt;}
.y16_c00422{bottom:172.217333pt;}
.y15_c00422{bottom:195.257333pt;}
.y14_c00422{bottom:218.324000pt;}
.y13_c00422{bottom:241.044000pt;}
.y12_c00422{bottom:264.084000pt;}
.y11_c00422{bottom:287.124000pt;}
.y10_c00422{bottom:310.190667pt;}
.yf_c00422{bottom:333.230667pt;}
.ye_c00422{bottom:356.270667pt;}
.yd_c00422{bottom:379.310667pt;}
.yc_c00422{bottom:402.070667pt;}
.yb_c00422{bottom:425.110667pt;}
.ya_c00422{bottom:448.150667pt;}
.y9_c00422{bottom:471.190667pt;}
.y8_c00422{bottom:494.257333pt;}
.y7_c00422{bottom:517.297333pt;}
.y6_c00422{bottom:540.337333pt;}
.y5_c00422{bottom:563.417333pt;}
.y1_c00422{bottom:753.573333pt;}
.h3_c00422{height:52.762500pt;}
.h4_c00422{height:54.180000pt;}
.h1_c00422{height:57.375000pt;}
.h2_c00422{height:575.240000pt;}
.h0_c00422{height:816.000000pt;}
.w1_c00422{width:293.520000pt;}
.w2_c00422{width:294.466667pt;}
.w0_c00422{width:1056.000000pt;}
.x0_c00422{left:0.000000pt;}
.x4_c00422{left:6.708000pt;}
.x3_c00422{left:87.724000pt;}
.x1_c00422{left:94.432000pt;}
.x5_c00422{left:381.893333pt;}
.x2_c00422{left:516.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_c00423 {
    display:none;
  }
  .loading-indicator_c00423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00423 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00423 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00423" -> "#page-container .classname_c00423")
 */
.pf_c00423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00423 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00423 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00423 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00423 {overflow:visible;}
  }
}
.c_c00423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00423 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00423:after { /* webkit #35443 */
  content: '';
}
.t_c00423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00423 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00423 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00423 { /* info for Javascript */
  display:none;
}
.l_c00423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00423:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00423{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00423;src:url('chunks/assets/font_f3ddb91be14d2891e2b92c0a.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_541b911e3bab12abe491d5a7.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_b36a4407c8a2afbf2ee19219.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_38ebd1bba8d4e4a016329150.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00423;src:url('chunks/assets/font_9b773e4500673311c335a3a5.woff2')format("woff");}.ff5_c00423{font-family:ff5_c00423;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_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls7_c00423{letter-spacing:-1.422000px;}
.ls6_c00423{letter-spacing:-1.416000px;}
.ls8_c00423{letter-spacing:-0.532800px;}
.ls4_c00423{letter-spacing:0.000000px;}
.ls3_c00423{letter-spacing:0.020160px;}
.ls9_c00423{letter-spacing:0.020400px;}
.ls5_c00423{letter-spacing:0.521400px;}
.ls1_c00423{letter-spacing:0.524160px;}
.ls0_c00423{letter-spacing:0.720000px;}
.ls2_c00423{letter-spacing:0.840000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:-15.641400px;}
.ws4_c00423{word-spacing:-15.140400px;}
.ws1_c00423{word-spacing:-15.120000px;}
.ws3_c00423{word-spacing:-14.587200px;}
.ws2_c00423{word-spacing:-13.698000px;}
.ws5_c00423{word-spacing:0.000000px;}
._1_c00423{margin-left:-2.150997px;}
._0_c00423{margin-left:-1.054201px;}
._2_c00423{width:1.047239px;}
._3_c00423{width:2.176679px;}
.fc0_c00423{color:rgb(0,0,0);}
.fs1_c00423{font-size:60.480000px;}
.fs0_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y9_c00423{bottom:12.600000px;}
.y12_c00423{bottom:12.630000px;}
.y5_c00423{bottom:12.645000px;}
.y11_c00423{bottom:38.550000px;}
.y3_c00423{bottom:57.996000px;}
.y10_c00423{bottom:64.110000px;}
.y2_c00423{bottom:78.876000px;}
.yf_c00423{bottom:90.030000px;}
.ye_c00423{bottom:115.995000px;}
.yd_c00423{bottom:141.915000px;}
.yc_c00423{bottom:167.835000px;}
.yb_c00423{bottom:193.755000px;}
.y14_c00423{bottom:428.940000px;}
.y13_c00423{bottom:459.900000px;}
.ya_c00423{bottom:476.820000px;}
.y8_c00423{bottom:684.645000px;}
.y7_c00423{bottom:723.885000px;}
.y6_c00423{bottom:749.805000px;}
.y4_c00423{bottom:763.845000px;}
.y1_c00423{bottom:847.770000px;}
.h4_c00423{height:25.905000px;}
.h2_c00423{height:25.950000px;}
.h3_c00423{height:59.357813px;}
.h1_c00423{height:64.546875px;}
.h6_c00423{height:70.664062px;}
.h5_c00423{height:207.090000px;}
.h0_c00423{height:918.000000px;}
.w3_c00423{width:327.675000px;}
.w4_c00423{width:328.050000px;}
.w1_c00423{width:331.275000px;}
.w2_c00423{width:333.810000px;}
.w0_c00423{width:1188.000000px;}
.x0_c00423{left:0.000000px;}
.x4_c00423{left:7.560000px;}
.x5_c00423{left:98.689500px;}
.x1_c00423{left:106.236000px;}
.x3_c00423{left:429.630000px;}
.x6_c00423{left:433.230000px;}
.x2_c00423{left:580.500000px;}
.x7_c00423{left:761.625000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls7_c00423{letter-spacing:-1.264000pt;}
.ls6_c00423{letter-spacing:-1.258667pt;}
.ls8_c00423{letter-spacing:-0.473600pt;}
.ls4_c00423{letter-spacing:0.000000pt;}
.ls3_c00423{letter-spacing:0.017920pt;}
.ls9_c00423{letter-spacing:0.018133pt;}
.ls5_c00423{letter-spacing:0.463467pt;}
.ls1_c00423{letter-spacing:0.465920pt;}
.ls0_c00423{letter-spacing:0.640000pt;}
.ls2_c00423{letter-spacing:0.746667pt;}
.ws0_c00423{word-spacing:-13.903467pt;}
.ws4_c00423{word-spacing:-13.458133pt;}
.ws1_c00423{word-spacing:-13.440000pt;}
.ws3_c00423{word-spacing:-12.966400pt;}
.ws2_c00423{word-spacing:-12.176000pt;}
.ws5_c00423{word-spacing:0.000000pt;}
._1_c00423{margin-left:-1.911997pt;}
._0_c00423{margin-left:-0.937068pt;}
._2_c00423{width:0.930879pt;}
._3_c00423{width:1.934826pt;}
.fs1_c00423{font-size:53.760000pt;}
.fs0_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y9_c00423{bottom:11.200000pt;}
.y12_c00423{bottom:11.226667pt;}
.y5_c00423{bottom:11.240000pt;}
.y11_c00423{bottom:34.266667pt;}
.y3_c00423{bottom:51.552000pt;}
.y10_c00423{bottom:56.986667pt;}
.y2_c00423{bottom:70.112000pt;}
.yf_c00423{bottom:80.026667pt;}
.ye_c00423{bottom:103.106667pt;}
.yd_c00423{bottom:126.146667pt;}
.yc_c00423{bottom:149.186667pt;}
.yb_c00423{bottom:172.226667pt;}
.y14_c00423{bottom:381.280000pt;}
.y13_c00423{bottom:408.800000pt;}
.ya_c00423{bottom:423.840000pt;}
.y8_c00423{bottom:608.573333pt;}
.y7_c00423{bottom:643.453333pt;}
.y6_c00423{bottom:666.493333pt;}
.y4_c00423{bottom:678.973333pt;}
.y1_c00423{bottom:753.573333pt;}
.h4_c00423{height:23.026667pt;}
.h2_c00423{height:23.066667pt;}
.h3_c00423{height:52.762500pt;}
.h1_c00423{height:57.375000pt;}
.h6_c00423{height:62.812500pt;}
.h5_c00423{height:184.080000pt;}
.h0_c00423{height:816.000000pt;}
.w3_c00423{width:291.266667pt;}
.w4_c00423{width:291.600000pt;}
.w1_c00423{width:294.466667pt;}
.w2_c00423{width:296.720000pt;}
.w0_c00423{width:1056.000000pt;}
.x0_c00423{left:0.000000pt;}
.x4_c00423{left:6.720000pt;}
.x5_c00423{left:87.724000pt;}
.x1_c00423{left:94.432000pt;}
.x3_c00423{left:381.893333pt;}
.x6_c00423{left:385.093333pt;}
.x2_c00423{left:516.000000pt;}
.x7_c00423{left:677.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_c00424 {
    display:none;
  }
  .loading-indicator_c00424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00424 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00424 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00424" -> "#page-container .classname_c00424")
 */
.pf_c00424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00424 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00424 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00424 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00424 {overflow:visible;}
  }
}
.c_c00424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00424 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00424:after { /* webkit #35443 */
  content: '';
}
.t_c00424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00424 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00424 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00424 { /* info for Javascript */
  display:none;
}
.l_c00424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00424:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00424;src:url('chunks/assets/font_452efd2a39e32aad6711cf10.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_afb2c661d7976f4e60a15eeb.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_97bcc05ab9697e2762f7412a.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;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_c00424;src:url('chunks/assets/font_8e66ef595d7ed8fa6480432b.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00424;src:url('chunks/assets/font_74fe12b7e49ede84c67145f4.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00424;src:url('chunks/assets/font_8271ea582d4808bca7ebd88b.woff2')format("woff");}.ff6_c00424{font-family:ff6_c00424;line-height:1.104004;font-style:normal;font-weight: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_c00424;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7_c00424{font-family:ff7_c00424;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_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls10_c00424{letter-spacing:-1.740000px;}
.lsd_c00424{letter-spacing:-0.912000px;}
.lsf_c00424{letter-spacing:-0.792000px;}
.ls16_c00424{letter-spacing:-0.720000px;}
.ls11_c00424{letter-spacing:-0.532800px;}
.ls15_c00424{letter-spacing:-0.360000px;}
.lsc_c00424{letter-spacing:-0.302400px;}
.lsa_c00424{letter-spacing:0.000000px;}
.lsb_c00424{letter-spacing:0.020400px;}
.ls12_c00424{letter-spacing:0.022800px;}
.lse_c00424{letter-spacing:0.072000px;}
.ls0_c00424{letter-spacing:0.120000px;}
.ls4_c00424{letter-spacing:0.144000px;}
.ls3_c00424{letter-spacing:0.180000px;}
.ls14_c00424{letter-spacing:0.291000px;}
.ls1_c00424{letter-spacing:0.302400px;}
.ls6_c00424{letter-spacing:0.360000px;}
.ls8_c00424{letter-spacing:0.524160px;}
.ls13_c00424{letter-spacing:0.529800px;}
.ls7_c00424{letter-spacing:0.697213px;}
.ls2_c00424{letter-spacing:0.720000px;}
.ls9_c00424{letter-spacing:2.160000px;}
.ls5_c00424{letter-spacing:15.120000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00424{word-spacing:-18.072000px;}
.ws0_c00424{word-spacing:-18.000000px;}
.ws9_c00424{word-spacing:-17.640000px;}
.ws5_c00424{word-spacing:-17.208000px;}
.ws8_c00424{word-spacing:-15.411000px;}
.ws7_c00424{word-spacing:-15.142800px;}
.ws1_c00424{word-spacing:-15.140400px;}
.ws3_c00424{word-spacing:-15.120000px;}
.ws2_c00424{word-spacing:-14.817600px;}
.ws6_c00424{word-spacing:-13.380000px;}
.wsa_c00424{word-spacing:0.000000px;}
._3_c00424{margin-left:-2.484000px;}
._1_c00424{margin-left:-1.440000px;}
._0_c00424{width:1.296000px;}
._2_c00424{width:2.736000px;}
._9_c00424{width:4.188000px;}
._a_c00424{width:5.256000px;}
._b_c00424{width:6.875976px;}
._7_c00424{width:8.004024px;}
._8_c00424{width:9.383976px;}
._12_c00424{width:11.785665px;}
._d_c00424{width:12.960024px;}
._c_c00424{width:15.444000px;}
._11_c00424{width:19.884000px;}
._e_c00424{width:21.528000px;}
._f_c00424{width:23.520000px;}
._10_c00424{width:24.576000px;}
._6_c00424{width:25.716024px;}
._4_c00424{width:26.892000px;}
._5_c00424{width:28.068000px;}
.fc0_c00424{color:rgb(0,0,0);}
.fs3_c00424{font-size:38.880000px;}
.fs2_c00424{font-size:47.520000px;}
.fs1_c00424{font-size:60.480000px;}
.fs0_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.y3_c00424{bottom:57.996000px;}
.y2_c00424{bottom:78.876000px;}
.y24_c00424{bottom:130.716000px;}
.y23_c00424{bottom:147.996000px;}
.y22_c00424{bottom:154.875000px;}
.y21_c00424{bottom:165.675000px;}
.y20_c00424{bottom:211.755000px;}
.y1f_c00424{bottom:242.715000px;}
.y1e_c00424{bottom:274.065000px;}
.y1d_c00424{bottom:305.025000px;}
.y1c_c00424{bottom:342.825000px;}
.y1b_c00424{bottom:368.745000px;}
.y1a_c00424{bottom:394.350000px;}
.y19_c00424{bottom:429.270000px;}
.y18_c00424{bottom:455.190000px;}
.y17_c00424{bottom:481.110000px;}
.y16_c00424{bottom:507.030000px;}
.y15_c00424{bottom:535.140000px;}
.y14_c00424{bottom:565.740000px;}
.y13_c00424{bottom:606.420000px;}
.y12_c00424{bottom:637.380000px;}
.y11_c00424{bottom:668.370000px;}
.y10_c00424{bottom:699.330000px;}
.ye_c00424{bottom:730.650000px;}
.yf_c00424{bottom:738.930000px;}
.yd_c00424{bottom:761.610000px;}
.yc_c00424{bottom:792.615000px;}
.yb_c00424{bottom:830.415000px;}
.ya_c00424{bottom:865.335000px;}
.y9_c00424{bottom:900.285000px;}
.y8_c00424{bottom:926.205000px;}
.y7_c00424{bottom:954.285000px;}
.y6_c00424{bottom:994.245000px;}
.y5_c00424{bottom:1034.250000px;}
.y4_c00424{bottom:1065.570000px;}
.y1_c00424{bottom:1117.770000px;}
.h8_c00424{height:38.158594px;}
.h7_c00424{height:46.638281px;}
.h5_c00424{height:59.328281px;}
.h4_c00424{height:59.357813px;}
.h1_c00424{height:64.546875px;}
.h3_c00424{height:70.628906px;}
.h2_c00424{height:70.664062px;}
.h6_c00424{height:1187.995500px;}
.h0_c00424{height:1188.000000px;}
.w1_c00424{width:917.997000px;}
.w0_c00424{width:918.000000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:127.476000px;}
.x8_c00424{left:142.596000px;}
.x4_c00424{left:169.995000px;}
.x3_c00424{left:180.795000px;}
.x7_c00424{left:343.590000px;}
.x2_c00424{left:445.500000px;}
.x5_c00424{left:701.172000px;}
.x6_c00424{left:719.535000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls10_c00424{letter-spacing:-1.546667pt;}
.lsd_c00424{letter-spacing:-0.810667pt;}
.lsf_c00424{letter-spacing:-0.704000pt;}
.ls16_c00424{letter-spacing:-0.640000pt;}
.ls11_c00424{letter-spacing:-0.473600pt;}
.ls15_c00424{letter-spacing:-0.320000pt;}
.lsc_c00424{letter-spacing:-0.268800pt;}
.lsa_c00424{letter-spacing:0.000000pt;}
.lsb_c00424{letter-spacing:0.018133pt;}
.ls12_c00424{letter-spacing:0.020267pt;}
.lse_c00424{letter-spacing:0.064000pt;}
.ls0_c00424{letter-spacing:0.106667pt;}
.ls4_c00424{letter-spacing:0.128000pt;}
.ls3_c00424{letter-spacing:0.160000pt;}
.ls14_c00424{letter-spacing:0.258667pt;}
.ls1_c00424{letter-spacing:0.268800pt;}
.ls6_c00424{letter-spacing:0.320000pt;}
.ls8_c00424{letter-spacing:0.465920pt;}
.ls13_c00424{letter-spacing:0.470933pt;}
.ls7_c00424{letter-spacing:0.619745pt;}
.ls2_c00424{letter-spacing:0.640000pt;}
.ls9_c00424{letter-spacing:1.920000pt;}
.ls5_c00424{letter-spacing:13.440000pt;}
.ws4_c00424{word-spacing:-16.064000pt;}
.ws0_c00424{word-spacing:-16.000000pt;}
.ws9_c00424{word-spacing:-15.680000pt;}
.ws5_c00424{word-spacing:-15.296000pt;}
.ws8_c00424{word-spacing:-13.698667pt;}
.ws7_c00424{word-spacing:-13.460267pt;}
.ws1_c00424{word-spacing:-13.458133pt;}
.ws3_c00424{word-spacing:-13.440000pt;}
.ws2_c00424{word-spacing:-13.171200pt;}
.ws6_c00424{word-spacing:-11.893333pt;}
.wsa_c00424{word-spacing:0.000000pt;}
._3_c00424{margin-left:-2.208000pt;}
._1_c00424{margin-left:-1.280000pt;}
._0_c00424{width:1.152000pt;}
._2_c00424{width:2.432000pt;}
._9_c00424{width:3.722667pt;}
._a_c00424{width:4.672000pt;}
._b_c00424{width:6.111979pt;}
._7_c00424{width:7.114688pt;}
._8_c00424{width:8.341312pt;}
._12_c00424{width:10.476146pt;}
._d_c00424{width:11.520021pt;}
._c_c00424{width:13.728000pt;}
._11_c00424{width:17.674667pt;}
._e_c00424{width:19.136000pt;}
._f_c00424{width:20.906667pt;}
._10_c00424{width:21.845333pt;}
._6_c00424{width:22.858688pt;}
._4_c00424{width:23.904000pt;}
._5_c00424{width:24.949333pt;}
.fs3_c00424{font-size:34.560000pt;}
.fs2_c00424{font-size:42.240000pt;}
.fs1_c00424{font-size:53.760000pt;}
.fs0_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y3_c00424{bottom:51.552000pt;}
.y2_c00424{bottom:70.112000pt;}
.y24_c00424{bottom:116.192000pt;}
.y23_c00424{bottom:131.552000pt;}
.y22_c00424{bottom:137.666667pt;}
.y21_c00424{bottom:147.266667pt;}
.y20_c00424{bottom:188.226667pt;}
.y1f_c00424{bottom:215.746667pt;}
.y1e_c00424{bottom:243.613333pt;}
.y1d_c00424{bottom:271.133333pt;}
.y1c_c00424{bottom:304.733333pt;}
.y1b_c00424{bottom:327.773333pt;}
.y1a_c00424{bottom:350.533333pt;}
.y19_c00424{bottom:381.573333pt;}
.y18_c00424{bottom:404.613333pt;}
.y17_c00424{bottom:427.653333pt;}
.y16_c00424{bottom:450.693333pt;}
.y15_c00424{bottom:475.680000pt;}
.y14_c00424{bottom:502.880000pt;}
.y13_c00424{bottom:539.040000pt;}
.y12_c00424{bottom:566.560000pt;}
.y11_c00424{bottom:594.106667pt;}
.y10_c00424{bottom:621.626667pt;}
.ye_c00424{bottom:649.466667pt;}
.yf_c00424{bottom:656.826667pt;}
.yd_c00424{bottom:676.986667pt;}
.yc_c00424{bottom:704.546667pt;}
.yb_c00424{bottom:738.146667pt;}
.ya_c00424{bottom:769.186667pt;}
.y9_c00424{bottom:800.253333pt;}
.y8_c00424{bottom:823.293333pt;}
.y7_c00424{bottom:848.253333pt;}
.y6_c00424{bottom:883.773333pt;}
.y5_c00424{bottom:919.333333pt;}
.y4_c00424{bottom:947.173333pt;}
.y1_c00424{bottom:993.573333pt;}
.h8_c00424{height:33.918750pt;}
.h7_c00424{height:41.456250pt;}
.h5_c00424{height:52.736250pt;}
.h4_c00424{height:52.762500pt;}
.h1_c00424{height:57.375000pt;}
.h3_c00424{height:62.781250pt;}
.h2_c00424{height:62.812500pt;}
.h6_c00424{height:1055.996000pt;}
.h0_c00424{height:1056.000000pt;}
.w1_c00424{width:815.997333pt;}
.w0_c00424{width:816.000000pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:113.312000pt;}
.x8_c00424{left:126.752000pt;}
.x4_c00424{left:151.106667pt;}
.x3_c00424{left:160.706667pt;}
.x7_c00424{left:305.413333pt;}
.x2_c00424{left:396.000000pt;}
.x5_c00424{left:623.264000pt;}
.x6_c00424{left:639.586667pt;}
}





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

.ir_c00425:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00425;src:url('chunks/assets/font_77517771c04db062351c66a7.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_053b38309912ead50e0a4f7c.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_fbb0586c6dc1b1f50acc651f.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_742ea873a27c311a94322cf8.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00425;src:url('chunks/assets/font_9d45e3a850574300b8021765.woff2')format("woff");}.ff5_c00425{font-family:ff5_c00425;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_c00425;src:url('chunks/assets/font_141de180fa79c9c6c6f43e5f.woff2')format("woff");}.ff6_c00425{font-family:ff6_c00425;line-height:1.104004;font-style:normal;font-weight: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_c00425;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00425{font-family:ff7_c00425;line-height:1.311035;font-style:normal;font-weight: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_c00425;src:url('chunks/assets/font_f28ccbf84ebd70da223b6692.woff2')format("woff");}.ff8_c00425{font-family:ff8_c00425;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.lse_c00425{letter-spacing:-1.680000px;}
.ls17_c00425{letter-spacing:-1.440000px;}
.lsf_c00425{letter-spacing:-1.422000px;}
.lsb_c00425{letter-spacing:-0.720000px;}
.ls11_c00425{letter-spacing:-0.532800px;}
.ls19_c00425{letter-spacing:-0.466800px;}
.ls16_c00425{letter-spacing:-0.337200px;}
.ls13_c00425{letter-spacing:-0.302400px;}
.ls14_c00425{letter-spacing:-0.241800px;}
.ls10_c00425{letter-spacing:-0.169800px;}
.lsa_c00425{letter-spacing:0.000000px;}
.lsd_c00425{letter-spacing:0.020400px;}
.ls5_c00425{letter-spacing:0.022800px;}
.ls2_c00425{letter-spacing:0.048960px;}
.ls12_c00425{letter-spacing:0.166800px;}
.ls18_c00425{letter-spacing:0.486600px;}
.lsc_c00425{letter-spacing:0.504000px;}
.ls15_c00425{letter-spacing:0.529800px;}
.ls1_c00425{letter-spacing:0.691229px;}
.ls3_c00425{letter-spacing:0.720000px;}
.ls9_c00425{letter-spacing:0.864000px;}
.ls4_c00425{letter-spacing:0.900000px;}
.ls6_c00425{letter-spacing:5.040000px;}
.ls8_c00425{letter-spacing:6.480000px;}
.ls7_c00425{letter-spacing:6.500257px;}
.ls0_c00425{letter-spacing:12.240000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00425{word-spacing:-60.480000px;}
.ws0_c00425{word-spacing:-18.000000px;}
.wsb_c00425{word-spacing:-15.606600px;}
.ws8_c00425{word-spacing:-15.286800px;}
.ws7_c00425{word-spacing:-15.142800px;}
.ws1_c00425{word-spacing:-15.140400px;}
.ws3_c00425{word-spacing:-15.120000px;}
.ws5_c00425{word-spacing:-14.950200px;}
.ws9_c00425{word-spacing:-14.817600px;}
.wsa_c00425{word-spacing:-14.782800px;}
.ws6_c00425{word-spacing:-14.587200px;}
.ws4_c00425{word-spacing:-13.440000px;}
.wsc_c00425{word-spacing:0.000000px;}
._4_c00425{margin-left:-2.880000px;}
._1_c00425{margin-left:-1.512000px;}
._2_c00425{width:1.368000px;}
._7_c00425{width:2.448000px;}
._0_c00425{width:3.456000px;}
._3_c00425{width:5.616000px;}
._6_c00425{width:6.624000px;}
._5_c00425{width:7.776000px;}
._c_c00425{width:8.795399px;}
._f_c00425{width:9.948004px;}
._10_c00425{width:11.062783px;}
._8_c00425{width:12.168000px;}
._9_c00425{width:14.112000px;}
._a_c00425{width:15.456000px;}
._b_c00425{width:16.632000px;}
._d_c00425{width:20.526002px;}
._e_c00425{width:21.725994px;}
.fc0_c00425{color:rgb(0,0,0);}
.fs3_c00425{font-size:38.880000px;}
.fs1_c00425{font-size:47.520000px;}
.fs2_c00425{font-size:60.480000px;}
.fs0_c00425{font-size:72.000000px;}
.y0_c00425{bottom:0.000000px;}
.y3_c00425{bottom:57.996000px;}
.y2_c00425{bottom:78.876000px;}
.y31_c00425{bottom:110.556000px;}
.y30_c00425{bottom:130.716000px;}
.y2f_c00425{bottom:147.996000px;}
.y2e_c00425{bottom:165.315000px;}
.y2d_c00425{bottom:182.595000px;}
.y2c_c00425{bottom:199.515000px;}
.y2b_c00425{bottom:206.355000px;}
.y2a_c00425{bottom:216.795000px;}
.y29_c00425{bottom:234.075000px;}
.y28_c00425{bottom:240.915000px;}
.y27_c00425{bottom:251.355000px;}
.y26_c00425{bottom:268.635000px;}
.y25_c00425{bottom:285.945000px;}
.y24_c00425{bottom:303.225000px;}
.y23_c00425{bottom:320.505000px;}
.y22_c00425{bottom:337.785000px;}
.y21_c00425{bottom:355.065000px;}
.y20_c00425{bottom:372.345000px;}
.y1f_c00425{bottom:379.185000px;}
.y1e_c00425{bottom:389.985000px;}
.y1c_c00425{bottom:426.390000px;}
.y1d_c00425{bottom:434.670000px;}
.y1b_c00425{bottom:457.350000px;}
.y1a_c00425{bottom:488.310000px;}
.y19_c00425{bottom:526.140000px;}
.y18_c00425{bottom:552.060000px;}
.y17_c00425{bottom:577.980000px;}
.y16_c00425{bottom:603.900000px;}
.y15_c00425{bottom:629.820000px;}
.y14_c00425{bottom:664.410000px;}
.y13_c00425{bottom:690.330000px;}
.y12_c00425{bottom:716.250000px;}
.y11_c00425{bottom:742.170000px;}
.y10_c00425{bottom:768.135000px;}
.yf_c00425{bottom:794.055000px;}
.ye_c00425{bottom:819.975000px;}
.yd_c00425{bottom:848.055000px;}
.yc_c00425{bottom:879.015000px;}
.yb_c00425{bottom:910.005000px;}
.ya_c00425{bottom:941.325000px;}
.y8_c00425{bottom:972.285000px;}
.y9_c00425{bottom:980.565000px;}
.y7_c00425{bottom:1003.245000px;}
.y5_c00425{bottom:1034.250000px;}
.y6_c00425{bottom:1042.530000px;}
.y4_c00425{bottom:1065.570000px;}
.y1_c00425{bottom:1117.770000px;}
.h9_c00425{height:34.855313px;}
.h5_c00425{height:46.615078px;}
.h4_c00425{height:46.638281px;}
.h8_c00425{height:59.328281px;}
.h6_c00425{height:59.357813px;}
.h7_c00425{height:60.952500px;}
.h1_c00425{height:64.546875px;}
.h2_c00425{height:70.664062px;}
.h3_c00425{height:1187.995500px;}
.h0_c00425{height:1188.000000px;}
.w1_c00425{width:917.997000px;}
.w0_c00425{width:918.000000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:127.476000px;}
.xd_c00425{left:142.596000px;}
.x7_c00425{left:169.995000px;}
.x8_c00425{left:242.742000px;}
.x9_c00425{left:261.105000px;}
.x3_c00425{left:339.267000px;}
.xc_c00425{left:343.590000px;}
.xa_c00425{left:348.267000px;}
.x4_c00425{left:357.630000px;}
.xb_c00425{left:366.630000px;}
.x2_c00425{left:445.500000px;}
.x5_c00425{left:482.937000px;}
.x6_c00425{left:501.300000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.lse_c00425{letter-spacing:-1.493333pt;}
.ls17_c00425{letter-spacing:-1.280000pt;}
.lsf_c00425{letter-spacing:-1.264000pt;}
.lsb_c00425{letter-spacing:-0.640000pt;}
.ls11_c00425{letter-spacing:-0.473600pt;}
.ls19_c00425{letter-spacing:-0.414933pt;}
.ls16_c00425{letter-spacing:-0.299733pt;}
.ls13_c00425{letter-spacing:-0.268800pt;}
.ls14_c00425{letter-spacing:-0.214933pt;}
.ls10_c00425{letter-spacing:-0.150933pt;}
.lsa_c00425{letter-spacing:0.000000pt;}
.lsd_c00425{letter-spacing:0.018133pt;}
.ls5_c00425{letter-spacing:0.020267pt;}
.ls2_c00425{letter-spacing:0.043520pt;}
.ls12_c00425{letter-spacing:0.148267pt;}
.ls18_c00425{letter-spacing:0.432533pt;}
.lsc_c00425{letter-spacing:0.448000pt;}
.ls15_c00425{letter-spacing:0.470933pt;}
.ls1_c00425{letter-spacing:0.614426pt;}
.ls3_c00425{letter-spacing:0.640000pt;}
.ls9_c00425{letter-spacing:0.768000pt;}
.ls4_c00425{letter-spacing:0.800000pt;}
.ls6_c00425{letter-spacing:4.480000pt;}
.ls8_c00425{letter-spacing:5.760000pt;}
.ls7_c00425{letter-spacing:5.778006pt;}
.ls0_c00425{letter-spacing:10.880000pt;}
.ws2_c00425{word-spacing:-53.760000pt;}
.ws0_c00425{word-spacing:-16.000000pt;}
.wsb_c00425{word-spacing:-13.872533pt;}
.ws8_c00425{word-spacing:-13.588267pt;}
.ws7_c00425{word-spacing:-13.460267pt;}
.ws1_c00425{word-spacing:-13.458133pt;}
.ws3_c00425{word-spacing:-13.440000pt;}
.ws5_c00425{word-spacing:-13.289067pt;}
.ws9_c00425{word-spacing:-13.171200pt;}
.wsa_c00425{word-spacing:-13.140267pt;}
.ws6_c00425{word-spacing:-12.966400pt;}
.ws4_c00425{word-spacing:-11.946667pt;}
.wsc_c00425{word-spacing:0.000000pt;}
._4_c00425{margin-left:-2.560000pt;}
._1_c00425{margin-left:-1.344000pt;}
._2_c00425{width:1.216000pt;}
._7_c00425{width:2.176000pt;}
._0_c00425{width:3.072000pt;}
._3_c00425{width:4.992000pt;}
._6_c00425{width:5.888000pt;}
._5_c00425{width:6.912000pt;}
._c_c00425{width:7.818132pt;}
._f_c00425{width:8.842670pt;}
._10_c00425{width:9.833585pt;}
._8_c00425{width:10.816000pt;}
._9_c00425{width:12.544000pt;}
._a_c00425{width:13.738667pt;}
._b_c00425{width:14.784000pt;}
._d_c00425{width:18.245335pt;}
._e_c00425{width:19.311995pt;}
.fs3_c00425{font-size:34.560000pt;}
.fs1_c00425{font-size:42.240000pt;}
.fs2_c00425{font-size:53.760000pt;}
.fs0_c00425{font-size:64.000000pt;}
.y0_c00425{bottom:0.000000pt;}
.y3_c00425{bottom:51.552000pt;}
.y2_c00425{bottom:70.112000pt;}
.y31_c00425{bottom:98.272000pt;}
.y30_c00425{bottom:116.192000pt;}
.y2f_c00425{bottom:131.552000pt;}
.y2e_c00425{bottom:146.946667pt;}
.y2d_c00425{bottom:162.306667pt;}
.y2c_c00425{bottom:177.346667pt;}
.y2b_c00425{bottom:183.426667pt;}
.y2a_c00425{bottom:192.706667pt;}
.y29_c00425{bottom:208.066667pt;}
.y28_c00425{bottom:214.146667pt;}
.y27_c00425{bottom:223.426667pt;}
.y26_c00425{bottom:238.786667pt;}
.y25_c00425{bottom:254.173333pt;}
.y24_c00425{bottom:269.533333pt;}
.y23_c00425{bottom:284.893333pt;}
.y22_c00425{bottom:300.253333pt;}
.y21_c00425{bottom:315.613333pt;}
.y20_c00425{bottom:330.973333pt;}
.y1f_c00425{bottom:337.053333pt;}
.y1e_c00425{bottom:346.653333pt;}
.y1c_c00425{bottom:379.013333pt;}
.y1d_c00425{bottom:386.373333pt;}
.y1b_c00425{bottom:406.533333pt;}
.y1a_c00425{bottom:434.053333pt;}
.y19_c00425{bottom:467.680000pt;}
.y18_c00425{bottom:490.720000pt;}
.y17_c00425{bottom:513.760000pt;}
.y16_c00425{bottom:536.800000pt;}
.y15_c00425{bottom:559.840000pt;}
.y14_c00425{bottom:590.586667pt;}
.y13_c00425{bottom:613.626667pt;}
.y12_c00425{bottom:636.666667pt;}
.y11_c00425{bottom:659.706667pt;}
.y10_c00425{bottom:682.786667pt;}
.yf_c00425{bottom:705.826667pt;}
.ye_c00425{bottom:728.866667pt;}
.yd_c00425{bottom:753.826667pt;}
.yc_c00425{bottom:781.346667pt;}
.yb_c00425{bottom:808.893333pt;}
.ya_c00425{bottom:836.733333pt;}
.y8_c00425{bottom:864.253333pt;}
.y9_c00425{bottom:871.613333pt;}
.y7_c00425{bottom:891.773333pt;}
.y5_c00425{bottom:919.333333pt;}
.y6_c00425{bottom:926.693333pt;}
.y4_c00425{bottom:947.173333pt;}
.y1_c00425{bottom:993.573333pt;}
.h9_c00425{height:30.982500pt;}
.h5_c00425{height:41.435625pt;}
.h4_c00425{height:41.456250pt;}
.h8_c00425{height:52.736250pt;}
.h6_c00425{height:52.762500pt;}
.h7_c00425{height:54.180000pt;}
.h1_c00425{height:57.375000pt;}
.h2_c00425{height:62.812500pt;}
.h3_c00425{height:1055.996000pt;}
.h0_c00425{height:1056.000000pt;}
.w1_c00425{width:815.997333pt;}
.w0_c00425{width:816.000000pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:113.312000pt;}
.xd_c00425{left:126.752000pt;}
.x7_c00425{left:151.106667pt;}
.x8_c00425{left:215.770667pt;}
.x9_c00425{left:232.093333pt;}
.x3_c00425{left:301.570667pt;}
.xc_c00425{left:305.413333pt;}
.xa_c00425{left:309.570667pt;}
.x4_c00425{left:317.893333pt;}
.xb_c00425{left:325.893333pt;}
.x2_c00425{left:396.000000pt;}
.x5_c00425{left:429.277333pt;}
.x6_c00425{left:445.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_c00426 {
    display:none;
  }
  .loading-indicator_c00426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00426 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00426 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00426" -> "#page-container .classname_c00426")
 */
.pf_c00426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00426 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00426 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00426 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00426 {overflow:visible;}
  }
}
.c_c00426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00426 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00426:after { /* webkit #35443 */
  content: '';
}
.t_c00426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00426 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00426 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00426 { /* info for Javascript */
  display:none;
}
.l_c00426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00426:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00426;src:url('chunks/assets/font_59818dc14d892b50eca92578.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_8eb3eabc6a041a42f7ed3e67.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_5e17b0b26345e0f88a8ebaef.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_a5f5fe9ebb0bdb1c2b775605.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;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_c00426;src:url('chunks/assets/font_35f221fc59fd46841e424dbc.woff2')format("woff");}.ff5_c00426{font-family:ff5_c00426;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00426;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6_c00426{font-family:ff6_c00426;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_c00426;src:url('chunks/assets/font_d458b7577b7e12dd7913fdbd.woff2')format("woff");}.ff7_c00426{font-family:ff7_c00426;line-height:1.104004;font-style:normal;font-weight: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_c00426;src:url('chunks/assets/font_95a5892d5c1c425768f3739d.woff2')format("woff");}.ff8_c00426{font-family:ff8_c00426;line-height:1.117188;font-style:normal;font-weight: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_c00426;src:url('chunks/assets/font_e06d8e3ee8772fbb9cd37004.woff2')format("woff");}.ff9_c00426{font-family:ff9_c00426;line-height:0.928711;font-style:normal;font-weight: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_c00426;src:url('chunks/assets/font_520819d8c177194cf6ab5d91.woff2')format("woff");}.ffa_c00426{font-family:ffa_c00426;line-height:0.954102;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.lsc_c00426{letter-spacing:-1.680000px;}
.ls14_c00426{letter-spacing:-1.458000px;}
.lse_c00426{letter-spacing:-1.116000px;}
.ls12_c00426{letter-spacing:-0.954000px;}
.lsf_c00426{letter-spacing:-0.912000px;}
.ls18_c00426{letter-spacing:-0.720000px;}
.ls10_c00426{letter-spacing:-0.532800px;}
.ls13_c00426{letter-spacing:-0.507000px;}
.ls9_c00426{letter-spacing:0.000000px;}
.lsa_c00426{letter-spacing:0.020400px;}
.ls16_c00426{letter-spacing:0.022800px;}
.lsd_c00426{letter-spacing:0.060600px;}
.lsb_c00426{letter-spacing:0.166800px;}
.ls11_c00426{letter-spacing:0.466800px;}
.ls15_c00426{letter-spacing:0.486600px;}
.ls1_c00426{letter-spacing:0.504000px;}
.ls6_c00426{letter-spacing:0.518400px;}
.ls8_c00426{letter-spacing:0.524160px;}
.ls17_c00426{letter-spacing:0.702000px;}
.ls2_c00426{letter-spacing:0.720000px;}
.ls3_c00426{letter-spacing:0.728640px;}
.ls7_c00426{letter-spacing:0.740310px;}
.ls5_c00426{letter-spacing:2.160000px;}
.ls4_c00426{letter-spacing:2.704320px;}
.ls0_c00426{letter-spacing:10.800000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:-18.000000px;}
.wsc_c00426{word-spacing:-15.822000px;}
.wsb_c00426{word-spacing:-15.606600px;}
.ws7_c00426{word-spacing:-15.586800px;}
.ws2_c00426{word-spacing:-15.286800px;}
.ws5_c00426{word-spacing:-15.180600px;}
.ws1_c00426{word-spacing:-15.140400px;}
.ws3_c00426{word-spacing:-15.120000px;}
.ws9_c00426{word-spacing:-14.613000px;}
.ws6_c00426{word-spacing:-14.208000px;}
.ws8_c00426{word-spacing:-14.166000px;}
.wsa_c00426{word-spacing:-13.662000px;}
.ws4_c00426{word-spacing:-13.440000px;}
.wsd_c00426{word-spacing:0.000000px;}
._3_c00426{margin-left:-2.736000px;}
._0_c00426{margin-left:-1.152000px;}
._1_c00426{width:1.080000px;}
._5_c00426{width:2.736000px;}
._4_c00426{width:4.320000px;}
._2_c00426{width:5.616000px;}
._6_c00426{width:6.696000px;}
._7_c00426{width:8.424000px;}
._e_c00426{width:10.008000px;}
._d_c00426{width:11.448000px;}
._10_c00426{width:12.504000px;}
._f_c00426{width:13.884000px;}
._8_c00426{width:19.296000px;}
._9_c00426{width:20.808000px;}
._a_c00426{width:24.624000px;}
._b_c00426{width:25.992000px;}
._c_c00426{width:27.360000px;}
.fc0_c00426{color:rgb(0,0,0);}
.fs3_c00426{font-size:38.880000px;}
.fs1_c00426{font-size:47.520000px;}
.fs2_c00426{font-size:60.480000px;}
.fs0_c00426{font-size:72.000000px;}
.y0_c00426{bottom:0.000000px;}
.y3_c00426{bottom:57.996000px;}
.y2_c00426{bottom:78.876000px;}
.y2a_c00426{bottom:130.716000px;}
.y29_c00426{bottom:147.996000px;}
.y28_c00426{bottom:165.315000px;}
.y27_c00426{bottom:182.595000px;}
.y26_c00426{bottom:199.515000px;}
.y25_c00426{bottom:216.795000px;}
.y24_c00426{bottom:234.075000px;}
.y23_c00426{bottom:240.915000px;}
.y22_c00426{bottom:251.355000px;}
.y21_c00426{bottom:268.995000px;}
.y20_c00426{bottom:275.865000px;}
.y1f_c00426{bottom:288.825000px;}
.y1e_c00426{bottom:306.105000px;}
.y1d_c00426{bottom:323.385000px;}
.y1c_c00426{bottom:341.385000px;}
.y1b_c00426{bottom:394.350000px;}
.y1a_c00426{bottom:420.270000px;}
.y19_c00426{bottom:448.350000px;}
.y18_c00426{bottom:479.310000px;}
.y17_c00426{bottom:510.270000px;}
.y16_c00426{bottom:541.620000px;}
.y15_c00426{bottom:572.580000px;}
.y14_c00426{bottom:603.540000px;}
.y13_c00426{bottom:634.500000px;}
.y12_c00426{bottom:672.330000px;}
.y11_c00426{bottom:707.250000px;}
.y10_c00426{bottom:733.170000px;}
.yf_c00426{bottom:768.135000px;}
.ye_c00426{bottom:794.055000px;}
.yd_c00426{bottom:819.975000px;}
.yc_c00426{bottom:848.055000px;}
.yb_c00426{bottom:878.655000px;}
.ya_c00426{bottom:910.005000px;}
.y9_c00426{bottom:941.325000px;}
.y8_c00426{bottom:972.285000px;}
.y7_c00426{bottom:1003.245000px;}
.y6_c00426{bottom:1034.250000px;}
.y4_c00426{bottom:1065.570000px;}
.y5_c00426{bottom:1073.850000px;}
.y1_c00426{bottom:1117.770000px;}
.h9_c00426{height:34.855313px;}
.h3_c00426{height:46.638281px;}
.h8_c00426{height:54.219375px;}
.h7_c00426{height:59.328281px;}
.h6_c00426{height:59.357813px;}
.h1_c00426{height:64.546875px;}
.h5_c00426{height:70.628906px;}
.h4_c00426{height:70.664062px;}
.h2_c00426{height:1187.995500px;}
.h0_c00426{height:1188.000000px;}
.w1_c00426{width:917.997000px;}
.w0_c00426{width:918.000000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:127.476000px;}
.x7_c00426{left:142.596000px;}
.x5_c00426{left:169.995000px;}
.x3_c00426{left:217.512000px;}
.x4_c00426{left:235.875000px;}
.x2_c00426{left:445.500000px;}
.x6_c00426{left:790.485000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.lsc_c00426{letter-spacing:-1.493333pt;}
.ls14_c00426{letter-spacing:-1.296000pt;}
.lse_c00426{letter-spacing:-0.992000pt;}
.ls12_c00426{letter-spacing:-0.848000pt;}
.lsf_c00426{letter-spacing:-0.810667pt;}
.ls18_c00426{letter-spacing:-0.640000pt;}
.ls10_c00426{letter-spacing:-0.473600pt;}
.ls13_c00426{letter-spacing:-0.450667pt;}
.ls9_c00426{letter-spacing:0.000000pt;}
.lsa_c00426{letter-spacing:0.018133pt;}
.ls16_c00426{letter-spacing:0.020267pt;}
.lsd_c00426{letter-spacing:0.053867pt;}
.lsb_c00426{letter-spacing:0.148267pt;}
.ls11_c00426{letter-spacing:0.414933pt;}
.ls15_c00426{letter-spacing:0.432533pt;}
.ls1_c00426{letter-spacing:0.448000pt;}
.ls6_c00426{letter-spacing:0.460800pt;}
.ls8_c00426{letter-spacing:0.465920pt;}
.ls17_c00426{letter-spacing:0.624000pt;}
.ls2_c00426{letter-spacing:0.640000pt;}
.ls3_c00426{letter-spacing:0.647680pt;}
.ls7_c00426{letter-spacing:0.658053pt;}
.ls5_c00426{letter-spacing:1.920000pt;}
.ls4_c00426{letter-spacing:2.403840pt;}
.ls0_c00426{letter-spacing:9.600000pt;}
.ws0_c00426{word-spacing:-16.000000pt;}
.wsc_c00426{word-spacing:-14.064000pt;}
.wsb_c00426{word-spacing:-13.872533pt;}
.ws7_c00426{word-spacing:-13.854933pt;}
.ws2_c00426{word-spacing:-13.588267pt;}
.ws5_c00426{word-spacing:-13.493867pt;}
.ws1_c00426{word-spacing:-13.458133pt;}
.ws3_c00426{word-spacing:-13.440000pt;}
.ws9_c00426{word-spacing:-12.989333pt;}
.ws6_c00426{word-spacing:-12.629333pt;}
.ws8_c00426{word-spacing:-12.592000pt;}
.wsa_c00426{word-spacing:-12.144000pt;}
.ws4_c00426{word-spacing:-11.946667pt;}
.wsd_c00426{word-spacing:0.000000pt;}
._3_c00426{margin-left:-2.432000pt;}
._0_c00426{margin-left:-1.024000pt;}
._1_c00426{width:0.960000pt;}
._5_c00426{width:2.432000pt;}
._4_c00426{width:3.840000pt;}
._2_c00426{width:4.992000pt;}
._6_c00426{width:5.952000pt;}
._7_c00426{width:7.488000pt;}
._e_c00426{width:8.896000pt;}
._d_c00426{width:10.176000pt;}
._10_c00426{width:11.114667pt;}
._f_c00426{width:12.341333pt;}
._8_c00426{width:17.152000pt;}
._9_c00426{width:18.496000pt;}
._a_c00426{width:21.888000pt;}
._b_c00426{width:23.104000pt;}
._c_c00426{width:24.320000pt;}
.fs3_c00426{font-size:34.560000pt;}
.fs1_c00426{font-size:42.240000pt;}
.fs2_c00426{font-size:53.760000pt;}
.fs0_c00426{font-size:64.000000pt;}
.y0_c00426{bottom:0.000000pt;}
.y3_c00426{bottom:51.552000pt;}
.y2_c00426{bottom:70.112000pt;}
.y2a_c00426{bottom:116.192000pt;}
.y29_c00426{bottom:131.552000pt;}
.y28_c00426{bottom:146.946667pt;}
.y27_c00426{bottom:162.306667pt;}
.y26_c00426{bottom:177.346667pt;}
.y25_c00426{bottom:192.706667pt;}
.y24_c00426{bottom:208.066667pt;}
.y23_c00426{bottom:214.146667pt;}
.y22_c00426{bottom:223.426667pt;}
.y21_c00426{bottom:239.106667pt;}
.y20_c00426{bottom:245.213333pt;}
.y1f_c00426{bottom:256.733333pt;}
.y1e_c00426{bottom:272.093333pt;}
.y1d_c00426{bottom:287.453333pt;}
.y1c_c00426{bottom:303.453333pt;}
.y1b_c00426{bottom:350.533333pt;}
.y1a_c00426{bottom:373.573333pt;}
.y19_c00426{bottom:398.533333pt;}
.y18_c00426{bottom:426.053333pt;}
.y17_c00426{bottom:453.573333pt;}
.y16_c00426{bottom:481.440000pt;}
.y15_c00426{bottom:508.960000pt;}
.y14_c00426{bottom:536.480000pt;}
.y13_c00426{bottom:564.000000pt;}
.y12_c00426{bottom:597.626667pt;}
.y11_c00426{bottom:628.666667pt;}
.y10_c00426{bottom:651.706667pt;}
.yf_c00426{bottom:682.786667pt;}
.ye_c00426{bottom:705.826667pt;}
.yd_c00426{bottom:728.866667pt;}
.yc_c00426{bottom:753.826667pt;}
.yb_c00426{bottom:781.026667pt;}
.ya_c00426{bottom:808.893333pt;}
.y9_c00426{bottom:836.733333pt;}
.y8_c00426{bottom:864.253333pt;}
.y7_c00426{bottom:891.773333pt;}
.y6_c00426{bottom:919.333333pt;}
.y4_c00426{bottom:947.173333pt;}
.y5_c00426{bottom:954.533333pt;}
.y1_c00426{bottom:993.573333pt;}
.h9_c00426{height:30.982500pt;}
.h3_c00426{height:41.456250pt;}
.h8_c00426{height:48.195000pt;}
.h7_c00426{height:52.736250pt;}
.h6_c00426{height:52.762500pt;}
.h1_c00426{height:57.375000pt;}
.h5_c00426{height:62.781250pt;}
.h4_c00426{height:62.812500pt;}
.h2_c00426{height:1055.996000pt;}
.h0_c00426{height:1056.000000pt;}
.w1_c00426{width:815.997333pt;}
.w0_c00426{width:816.000000pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:113.312000pt;}
.x7_c00426{left:126.752000pt;}
.x5_c00426{left:151.106667pt;}
.x3_c00426{left:193.344000pt;}
.x4_c00426{left:209.666667pt;}
.x2_c00426{left:396.000000pt;}
.x6_c00426{left:702.653333pt;}
}





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

.ir_c00427:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00427;src:url('chunks/assets/font_48090ae7ac2cb8316627706b.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_207ba8f69521b5d1ce04e939.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_eb1d75dc7963f631712b0150.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_f14263dfac3693c69b55f970.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_22d0c312f3bc8d5b012a5ab0.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.311035;font-style:normal;font-weight: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_c00427;src:url('chunks/assets/font_80ca614baf24a1204616739f.woff2')format("woff");}.ff7_c00427{font-family:ff7_c00427;line-height:1.104004;font-style:normal;font-weight: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_c00427;src:url('chunks/assets/font_5243e130369d8b863aad603d.woff2')format("woff");}.ff8_c00427{font-family:ff8_c00427;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.lsf_c00427{letter-spacing:-0.302400px;}
.ls12_c00427{letter-spacing:-0.241800px;}
.lsc_c00427{letter-spacing:0.000000px;}
.ls5_c00427{letter-spacing:0.020400px;}
.ls10_c00427{letter-spacing:0.022800px;}
.lse_c00427{letter-spacing:0.060600px;}
.ls1_c00427{letter-spacing:0.120000px;}
.lsd_c00427{letter-spacing:0.291000px;}
.ls14_c00427{letter-spacing:0.302400px;}
.ls11_c00427{letter-spacing:0.385800px;}
.ls2_c00427{letter-spacing:0.486720px;}
.ls13_c00427{letter-spacing:0.529800px;}
.lsb_c00427{letter-spacing:0.665401px;}
.ls3_c00427{letter-spacing:0.720000px;}
.ls9_c00427{letter-spacing:1.010880px;}
.ls7_c00427{letter-spacing:6.468247px;}
.ls8_c00427{letter-spacing:6.468483px;}
.ls6_c00427{letter-spacing:6.480000px;}
.lsa_c00427{letter-spacing:6.660000px;}
.ls0_c00427{letter-spacing:10.800000px;}
.ls4_c00427{letter-spacing:10.944000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00427{word-spacing:-60.771000px;}
.ws2_c00427{word-spacing:-60.480000px;}
.ws0_c00427{word-spacing:-18.000000px;}
.ws6_c00427{word-spacing:-15.505800px;}
.ws8_c00427{word-spacing:-15.422400px;}
.ws4_c00427{word-spacing:-15.140400px;}
.ws1_c00427{word-spacing:-15.120000px;}
.ws7_c00427{word-spacing:-14.878200px;}
.ws5_c00427{word-spacing:-14.817600px;}
.ws9_c00427{word-spacing:0.000000px;}
._3_c00427{margin-left:-3.252004px;}
._0_c00427{margin-left:-1.814400px;}
._1_c00427{width:1.028402px;}
._2_c00427{width:2.801998px;}
._b_c00427{width:4.095602px;}
._c_c00427{width:5.961600px;}
._11_c00427{width:7.162802px;}
._6_c00427{width:8.539208px;}
._4_c00427{width:9.999598px;}
._5_c00427{width:11.100004px;}
._13_c00427{width:12.470307px;}
._7_c00427{width:14.760000px;}
._8_c00427{width:15.940800px;}
._12_c00427{width:16.999196px;}
._d_c00427{width:19.080000px;}
._e_c00427{width:20.250006px;}
._10_c00427{width:21.399610px;}
._f_c00427{width:22.489194px;}
._9_c00427{width:25.776000px;}
._a_c00427{width:27.105592px;}
.fc2_c00427{color:rgb(255,0,0);}
.fc1_c00427{color:rgb(0,109,109);}
.fc0_c00427{color:rgb(0,0,0);}
.fs3_c00427{font-size:38.880000px;}
.fs2_c00427{font-size:47.520000px;}
.fs1_c00427{font-size:60.480000px;}
.fs0_c00427{font-size:72.000000px;}
.y0_c00427{bottom:0.000000px;}
.y3_c00427{bottom:57.996000px;}
.y2_c00427{bottom:78.876000px;}
.y28_c00427{bottom:130.716000px;}
.y27_c00427{bottom:147.996000px;}
.y26_c00427{bottom:154.875000px;}
.y25_c00427{bottom:165.315000px;}
.y24_c00427{bottom:182.595000px;}
.y23_c00427{bottom:199.515000px;}
.y22_c00427{bottom:216.795000px;}
.y21_c00427{bottom:223.635000px;}
.y20_c00427{bottom:234.795000px;}
.y1f_c00427{bottom:298.185000px;}
.y1e_c00427{bottom:329.145000px;}
.y1d_c00427{bottom:360.465000px;}
.y1c_c00427{bottom:397.950000px;}
.y1b_c00427{bottom:423.870000px;}
.y1a_c00427{bottom:458.790000px;}
.y19_c00427{bottom:484.710000px;}
.y18_c00427{bottom:510.630000px;}
.y17_c00427{bottom:536.580000px;}
.y16_c00427{bottom:564.660000px;}
.y15_c00427{bottom:595.620000px;}
.y14_c00427{bottom:626.940000px;}
.y13_c00427{bottom:657.930000px;}
.y12_c00427{bottom:688.890000px;}
.y11_c00427{bottom:719.850000px;}
.y10_c00427{bottom:751.170000px;}
.ye_c00427{bottom:782.175000px;}
.yf_c00427{bottom:790.455000px;}
.yd_c00427{bottom:813.135000px;}
.yc_c00427{bottom:844.095000px;}
.yb_c00427{bottom:875.415000px;}
.y9_c00427{bottom:906.405000px;}
.ya_c00427{bottom:914.685000px;}
.y8_c00427{bottom:937.365000px;}
.y7_c00427{bottom:968.325000px;}
.y6_c00427{bottom:999.285000px;}
.y5_c00427{bottom:1030.650000px;}
.y4_c00427{bottom:1068.450000px;}
.y1_c00427{bottom:1117.770000px;}
.h9_c00427{height:34.855313px;}
.h5_c00427{height:46.615078px;}
.h6_c00427{height:46.638281px;}
.h2_c00427{height:59.328281px;}
.h8_c00427{height:59.357813px;}
.h1_c00427{height:64.546875px;}
.h3_c00427{height:70.664062px;}
.h7_c00427{height:72.562500px;}
.h4_c00427{height:1187.995500px;}
.h0_c00427{height:1188.000000px;}
.w1_c00427{width:917.997000px;}
.w0_c00427{width:918.000000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:127.476000px;}
.x9_c00427{left:142.596000px;}
.x3_c00427{left:169.995000px;}
.x6_c00427{left:201.672000px;}
.x4_c00427{left:204.552000px;}
.x7_c00427{left:220.035000px;}
.x5_c00427{left:222.915000px;}
.x8_c00427{left:343.590000px;}
.x2_c00427{left:445.500000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.lsf_c00427{letter-spacing:-0.268800pt;}
.ls12_c00427{letter-spacing:-0.214933pt;}
.lsc_c00427{letter-spacing:0.000000pt;}
.ls5_c00427{letter-spacing:0.018133pt;}
.ls10_c00427{letter-spacing:0.020267pt;}
.lse_c00427{letter-spacing:0.053867pt;}
.ls1_c00427{letter-spacing:0.106667pt;}
.lsd_c00427{letter-spacing:0.258667pt;}
.ls14_c00427{letter-spacing:0.268800pt;}
.ls11_c00427{letter-spacing:0.342933pt;}
.ls2_c00427{letter-spacing:0.432640pt;}
.ls13_c00427{letter-spacing:0.470933pt;}
.lsb_c00427{letter-spacing:0.591468pt;}
.ls3_c00427{letter-spacing:0.640000pt;}
.ls9_c00427{letter-spacing:0.898560pt;}
.ls7_c00427{letter-spacing:5.749553pt;}
.ls8_c00427{letter-spacing:5.749763pt;}
.ls6_c00427{letter-spacing:5.760000pt;}
.lsa_c00427{letter-spacing:5.920000pt;}
.ls0_c00427{letter-spacing:9.600000pt;}
.ls4_c00427{letter-spacing:9.728000pt;}
.ws3_c00427{word-spacing:-54.018667pt;}
.ws2_c00427{word-spacing:-53.760000pt;}
.ws0_c00427{word-spacing:-16.000000pt;}
.ws6_c00427{word-spacing:-13.782933pt;}
.ws8_c00427{word-spacing:-13.708800pt;}
.ws4_c00427{word-spacing:-13.458133pt;}
.ws1_c00427{word-spacing:-13.440000pt;}
.ws7_c00427{word-spacing:-13.225067pt;}
.ws5_c00427{word-spacing:-13.171200pt;}
.ws9_c00427{word-spacing:0.000000pt;}
._3_c00427{margin-left:-2.890670pt;}
._0_c00427{margin-left:-1.612800pt;}
._1_c00427{width:0.914135pt;}
._2_c00427{width:2.490665pt;}
._b_c00427{width:3.640535pt;}
._c_c00427{width:5.299200pt;}
._11_c00427{width:6.366935pt;}
._6_c00427{width:7.590407pt;}
._4_c00427{width:8.888532pt;}
._5_c00427{width:9.866670pt;}
._13_c00427{width:11.084717pt;}
._7_c00427{width:13.120000pt;}
._8_c00427{width:14.169600pt;}
._12_c00427{width:15.110397pt;}
._d_c00427{width:16.960000pt;}
._e_c00427{width:18.000005pt;}
._10_c00427{width:19.021875pt;}
._f_c00427{width:19.990395pt;}
._9_c00427{width:22.912000pt;}
._a_c00427{width:24.093860pt;}
.fs3_c00427{font-size:34.560000pt;}
.fs2_c00427{font-size:42.240000pt;}
.fs1_c00427{font-size:53.760000pt;}
.fs0_c00427{font-size:64.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y3_c00427{bottom:51.552000pt;}
.y2_c00427{bottom:70.112000pt;}
.y28_c00427{bottom:116.192000pt;}
.y27_c00427{bottom:131.552000pt;}
.y26_c00427{bottom:137.666667pt;}
.y25_c00427{bottom:146.946667pt;}
.y24_c00427{bottom:162.306667pt;}
.y23_c00427{bottom:177.346667pt;}
.y22_c00427{bottom:192.706667pt;}
.y21_c00427{bottom:198.786667pt;}
.y20_c00427{bottom:208.706667pt;}
.y1f_c00427{bottom:265.053333pt;}
.y1e_c00427{bottom:292.573333pt;}
.y1d_c00427{bottom:320.413333pt;}
.y1c_c00427{bottom:353.733333pt;}
.y1b_c00427{bottom:376.773333pt;}
.y1a_c00427{bottom:407.813333pt;}
.y19_c00427{bottom:430.853333pt;}
.y18_c00427{bottom:453.893333pt;}
.y17_c00427{bottom:476.960000pt;}
.y16_c00427{bottom:501.920000pt;}
.y15_c00427{bottom:529.440000pt;}
.y14_c00427{bottom:557.280000pt;}
.y13_c00427{bottom:584.826667pt;}
.y12_c00427{bottom:612.346667pt;}
.y11_c00427{bottom:639.866667pt;}
.y10_c00427{bottom:667.706667pt;}
.ye_c00427{bottom:695.266667pt;}
.yf_c00427{bottom:702.626667pt;}
.yd_c00427{bottom:722.786667pt;}
.yc_c00427{bottom:750.306667pt;}
.yb_c00427{bottom:778.146667pt;}
.y9_c00427{bottom:805.693333pt;}
.ya_c00427{bottom:813.053333pt;}
.y8_c00427{bottom:833.213333pt;}
.y7_c00427{bottom:860.733333pt;}
.y6_c00427{bottom:888.253333pt;}
.y5_c00427{bottom:916.133333pt;}
.y4_c00427{bottom:949.733333pt;}
.y1_c00427{bottom:993.573333pt;}
.h9_c00427{height:30.982500pt;}
.h5_c00427{height:41.435625pt;}
.h6_c00427{height:41.456250pt;}
.h2_c00427{height:52.736250pt;}
.h8_c00427{height:52.762500pt;}
.h1_c00427{height:57.375000pt;}
.h3_c00427{height:62.812500pt;}
.h7_c00427{height:64.500000pt;}
.h4_c00427{height:1055.996000pt;}
.h0_c00427{height:1056.000000pt;}
.w1_c00427{width:815.997333pt;}
.w0_c00427{width:816.000000pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:113.312000pt;}
.x9_c00427{left:126.752000pt;}
.x3_c00427{left:151.106667pt;}
.x6_c00427{left:179.264000pt;}
.x4_c00427{left:181.824000pt;}
.x7_c00427{left:195.586667pt;}
.x5_c00427{left:198.146667pt;}
.x8_c00427{left:305.413333pt;}
.x2_c00427{left:396.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_c00428 {
    display:none;
  }
  .loading-indicator_c00428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00428 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00428 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00428" -> "#page-container .classname_c00428")
 */
.pf_c00428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00428 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00428 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00428 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00428 {overflow:visible;}
  }
}
.c_c00428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00428 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00428:after { /* webkit #35443 */
  content: '';
}
.t_c00428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00428 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00428 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00428 { /* info for Javascript */
  display:none;
}
.l_c00428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00428:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00428;src:url('chunks/assets/font_15a04670ac3ef18d5db53963.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_91e66815d736e601b4ae982f.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_a91dd2ca4a98877e27cf0a39.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;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_c00428;src:url('chunks/assets/font_ba2509f9151348e82db76697.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_c925b02d92c2fae063378375.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00428;src:url('chunks/assets/font_29f328e54cf1715397d79be8.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;line-height:1.104004;font-style:normal;font-weight: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_c00428;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7_c00428{font-family:ff7_c00428;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_c00428;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8_c00428{font-family:ff8_c00428;line-height:1.311035;font-style:normal;font-weight: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_c00428;src:url('chunks/assets/font_c52fd7b66817dce75fdf52af.woff2')format("woff");}.ff9_c00428{font-family:ff9_c00428;line-height:1.117188;font-style:normal;font-weight: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_c00428;src:url('chunks/assets/font_6c3db85354da4cd0fa277294.woff2')format("woff");}.ffa_c00428{font-family:ffa_c00428;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls15_c00428{letter-spacing:-2.880000px;}
.ls19_c00428{letter-spacing:-1.422000px;}
.ls22_c00428{letter-spacing:-1.416000px;}
.ls17_c00428{letter-spacing:-0.936000px;}
.ls1a_c00428{letter-spacing:-0.720000px;}
.ls26_c00428{letter-spacing:-0.532800px;}
.ls1c_c00428{letter-spacing:-0.507000px;}
.ls23_c00428{letter-spacing:-0.466800px;}
.ls24_c00428{letter-spacing:-0.337200px;}
.ls1f_c00428{letter-spacing:-0.241800px;}
.ls12_c00428{letter-spacing:0.000000px;}
.ls18_c00428{letter-spacing:0.020400px;}
.ls27_c00428{letter-spacing:0.022800px;}
.ls14_c00428{letter-spacing:0.072000px;}
.ls20_c00428{letter-spacing:0.166800px;}
.ls13_c00428{letter-spacing:0.288000px;}
.ls8_c00428{letter-spacing:0.302400px;}
.ls1d_c00428{letter-spacing:0.313800px;}
.ls25_c00428{letter-spacing:0.466800px;}
.ls1b_c00428{letter-spacing:0.486600px;}
.ls1_c00428{letter-spacing:0.504000px;}
.lsa_c00428{letter-spacing:0.518400px;}
.ls1e_c00428{letter-spacing:0.521400px;}
.ls16_c00428{letter-spacing:0.576000px;}
.ls21_c00428{letter-spacing:0.630000px;}
.ls4_c00428{letter-spacing:0.720000px;}
.ls0_c00428{letter-spacing:1.440000px;}
.ls6_c00428{letter-spacing:2.304000px;}
.ls9_c00428{letter-spacing:5.063252px;}
.ls7_c00428{letter-spacing:6.480000px;}
.lsd_c00428{letter-spacing:6.500160px;}
.lsc_c00428{letter-spacing:6.503244px;}
.lsf_c00428{letter-spacing:7.920000px;}
.lsb_c00428{letter-spacing:7.940202px;}
.ls10_c00428{letter-spacing:7.943293px;}
.ls11_c00428{letter-spacing:7.943328px;}
.lse_c00428{letter-spacing:8.100000px;}
.ls5_c00428{letter-spacing:9.540000px;}
.ls3_c00428{letter-spacing:10.800000px;}
.ls2_c00428{letter-spacing:12.240000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00428{word-spacing:-72.072000px;}
.ws1_c00428{word-spacing:-72.000000px;}
.ws8_c00428{word-spacing:-60.480000px;}
.ws3_c00428{word-spacing:-18.504000px;}
.ws0_c00428{word-spacing:-18.000000px;}
.ws4_c00428{word-spacing:-17.064000px;}
.wse_c00428{word-spacing:-15.750000px;}
.wsb_c00428{word-spacing:-15.641400px;}
.ws9_c00428{word-spacing:-15.606600px;}
.wsa_c00428{word-spacing:-15.433800px;}
.wsd_c00428{word-spacing:-15.286800px;}
.ws12_c00428{word-spacing:-15.142800px;}
.ws5_c00428{word-spacing:-15.140400px;}
.ws6_c00428{word-spacing:-15.120000px;}
.wsc_c00428{word-spacing:-14.878200px;}
.ws10_c00428{word-spacing:-14.782800px;}
.ws11_c00428{word-spacing:-14.587200px;}
.wsf_c00428{word-spacing:-13.704000px;}
.ws7_c00428{word-spacing:-13.698000px;}
.ws13_c00428{word-spacing:0.000000px;}
._7_c00428{margin-left:-3.312000px;}
._3_c00428{margin-left:-2.232000px;}
._0_c00428{margin-left:-1.152000px;}
._2_c00428{width:1.080000px;}
._1_c00428{width:2.592000px;}
._5_c00428{width:4.248000px;}
._4_c00428{width:5.616000px;}
._6_c00428{width:6.768000px;}
._c_c00428{width:7.885630px;}
._b_c00428{width:9.371952px;}
._a_c00428{width:10.404000px;}
._8_c00428{width:11.676024px;}
._9_c00428{width:13.151928px;}
.fc0_c00428{color:rgb(0,0,0);}
.fs3_c00428{font-size:38.880000px;}
.fs1_c00428{font-size:47.520000px;}
.fs2_c00428{font-size:60.480000px;}
.fs0_c00428{font-size:72.000000px;}
.fs4_c00428{font-size:96.480000px;}
.y0_c00428{bottom:0.000000px;}
.y3_c00428{bottom:57.996000px;}
.y2_c00428{bottom:78.876000px;}
.y2c_c00428{bottom:130.716000px;}
.y2b_c00428{bottom:147.996000px;}
.y2a_c00428{bottom:165.315000px;}
.y29_c00428{bottom:172.155000px;}
.y28_c00428{bottom:182.595000px;}
.y27_c00428{bottom:199.515000px;}
.y26_c00428{bottom:216.795000px;}
.y25_c00428{bottom:234.075000px;}
.y24_c00428{bottom:240.915000px;}
.y23_c00428{bottom:251.355000px;}
.y22_c00428{bottom:268.635000px;}
.y21_c00428{bottom:285.945000px;}
.y20_c00428{bottom:303.225000px;}
.y1f_c00428{bottom:310.065000px;}
.y1e_c00428{bottom:320.865000px;}
.y1d_c00428{bottom:370.545000px;}
.y1c_c00428{bottom:401.910000px;}
.y1a_c00428{bottom:441.870000px;}
.y1b_c00428{bottom:450.150000px;}
.y19_c00428{bottom:472.830000px;}
.y18_c00428{bottom:503.790000px;}
.y17_c00428{bottom:535.140000px;}
.y16_c00428{bottom:566.100000px;}
.y15_c00428{bottom:597.060000px;}
.y14_c00428{bottom:628.020000px;}
.y13_c00428{bottom:659.370000px;}
.y12_c00428{bottom:696.810000px;}
.y11_c00428{bottom:731.730000px;}
.y10_c00428{bottom:757.650000px;}
.yf_c00428{bottom:785.775000px;}
.ye_c00428{bottom:816.735000px;}
.yd_c00428{bottom:848.055000px;}
.yc_c00428{bottom:879.015000px;}
.yb_c00428{bottom:910.005000px;}
.ya_c00428{bottom:941.325000px;}
.y9_c00428{bottom:972.285000px;}
.y7_c00428{bottom:1003.245000px;}
.y8_c00428{bottom:1011.570000px;}
.y6_c00428{bottom:1034.250000px;}
.y4_c00428{bottom:1065.570000px;}
.y5_c00428{bottom:1073.850000px;}
.y1_c00428{bottom:1117.770000px;}
.h9_c00428{height:34.855313px;}
.ha_c00428{height:38.158594px;}
.h4_c00428{height:46.638281px;}
.hb_c00428{height:54.514688px;}
.h8_c00428{height:59.328281px;}
.h7_c00428{height:59.357813px;}
.h1_c00428{height:64.546875px;}
.h5_c00428{height:70.628906px;}
.h2_c00428{height:70.664062px;}
.h6_c00428{height:72.562500px;}
.hc_c00428{height:99.166237px;}
.h3_c00428{height:1187.995500px;}
.h0_c00428{height:1188.000000px;}
.w1_c00428{width:917.997000px;}
.w0_c00428{width:918.000000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:127.476000px;}
.xb_c00428{left:142.596000px;}
.x7_c00428{left:169.995000px;}
.xa_c00428{left:343.590000px;}
.x2_c00428{left:445.500000px;}
.x3_c00428{left:453.417000px;}
.x4_c00428{left:471.780000px;}
.x8_c00428{left:491.217000px;}
.x9_c00428{left:509.580000px;}
.x5_c00428{left:715.572000px;}
.x6_c00428{left:733.965000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls15_c00428{letter-spacing:-2.560000pt;}
.ls19_c00428{letter-spacing:-1.264000pt;}
.ls22_c00428{letter-spacing:-1.258667pt;}
.ls17_c00428{letter-spacing:-0.832000pt;}
.ls1a_c00428{letter-spacing:-0.640000pt;}
.ls26_c00428{letter-spacing:-0.473600pt;}
.ls1c_c00428{letter-spacing:-0.450667pt;}
.ls23_c00428{letter-spacing:-0.414933pt;}
.ls24_c00428{letter-spacing:-0.299733pt;}
.ls1f_c00428{letter-spacing:-0.214933pt;}
.ls12_c00428{letter-spacing:0.000000pt;}
.ls18_c00428{letter-spacing:0.018133pt;}
.ls27_c00428{letter-spacing:0.020267pt;}
.ls14_c00428{letter-spacing:0.064000pt;}
.ls20_c00428{letter-spacing:0.148267pt;}
.ls13_c00428{letter-spacing:0.256000pt;}
.ls8_c00428{letter-spacing:0.268800pt;}
.ls1d_c00428{letter-spacing:0.278933pt;}
.ls25_c00428{letter-spacing:0.414933pt;}
.ls1b_c00428{letter-spacing:0.432533pt;}
.ls1_c00428{letter-spacing:0.448000pt;}
.lsa_c00428{letter-spacing:0.460800pt;}
.ls1e_c00428{letter-spacing:0.463467pt;}
.ls16_c00428{letter-spacing:0.512000pt;}
.ls21_c00428{letter-spacing:0.560000pt;}
.ls4_c00428{letter-spacing:0.640000pt;}
.ls0_c00428{letter-spacing:1.280000pt;}
.ls6_c00428{letter-spacing:2.048000pt;}
.ls9_c00428{letter-spacing:4.500669pt;}
.ls7_c00428{letter-spacing:5.760000pt;}
.lsd_c00428{letter-spacing:5.777920pt;}
.lsc_c00428{letter-spacing:5.780662pt;}
.lsf_c00428{letter-spacing:7.040000pt;}
.lsb_c00428{letter-spacing:7.057958pt;}
.ls10_c00428{letter-spacing:7.060705pt;}
.ls11_c00428{letter-spacing:7.060736pt;}
.lse_c00428{letter-spacing:7.200000pt;}
.ls5_c00428{letter-spacing:8.480000pt;}
.ls3_c00428{letter-spacing:9.600000pt;}
.ls2_c00428{letter-spacing:10.880000pt;}
.ws2_c00428{word-spacing:-64.064000pt;}
.ws1_c00428{word-spacing:-64.000000pt;}
.ws8_c00428{word-spacing:-53.760000pt;}
.ws3_c00428{word-spacing:-16.448000pt;}
.ws0_c00428{word-spacing:-16.000000pt;}
.ws4_c00428{word-spacing:-15.168000pt;}
.wse_c00428{word-spacing:-14.000000pt;}
.wsb_c00428{word-spacing:-13.903467pt;}
.ws9_c00428{word-spacing:-13.872533pt;}
.wsa_c00428{word-spacing:-13.718933pt;}
.wsd_c00428{word-spacing:-13.588267pt;}
.ws12_c00428{word-spacing:-13.460267pt;}
.ws5_c00428{word-spacing:-13.458133pt;}
.ws6_c00428{word-spacing:-13.440000pt;}
.wsc_c00428{word-spacing:-13.225067pt;}
.ws10_c00428{word-spacing:-13.140267pt;}
.ws11_c00428{word-spacing:-12.966400pt;}
.wsf_c00428{word-spacing:-12.181333pt;}
.ws7_c00428{word-spacing:-12.176000pt;}
.ws13_c00428{word-spacing:0.000000pt;}
._7_c00428{margin-left:-2.944000pt;}
._3_c00428{margin-left:-1.984000pt;}
._0_c00428{margin-left:-1.024000pt;}
._2_c00428{width:0.960000pt;}
._1_c00428{width:2.304000pt;}
._5_c00428{width:3.776000pt;}
._4_c00428{width:4.992000pt;}
._6_c00428{width:6.016000pt;}
._c_c00428{width:7.009449pt;}
._b_c00428{width:8.330624pt;}
._a_c00428{width:9.248000pt;}
._8_c00428{width:10.378688pt;}
._9_c00428{width:11.690603pt;}
.fs3_c00428{font-size:34.560000pt;}
.fs1_c00428{font-size:42.240000pt;}
.fs2_c00428{font-size:53.760000pt;}
.fs0_c00428{font-size:64.000000pt;}
.fs4_c00428{font-size:85.760000pt;}
.y0_c00428{bottom:0.000000pt;}
.y3_c00428{bottom:51.552000pt;}
.y2_c00428{bottom:70.112000pt;}
.y2c_c00428{bottom:116.192000pt;}
.y2b_c00428{bottom:131.552000pt;}
.y2a_c00428{bottom:146.946667pt;}
.y29_c00428{bottom:153.026667pt;}
.y28_c00428{bottom:162.306667pt;}
.y27_c00428{bottom:177.346667pt;}
.y26_c00428{bottom:192.706667pt;}
.y25_c00428{bottom:208.066667pt;}
.y24_c00428{bottom:214.146667pt;}
.y23_c00428{bottom:223.426667pt;}
.y22_c00428{bottom:238.786667pt;}
.y21_c00428{bottom:254.173333pt;}
.y20_c00428{bottom:269.533333pt;}
.y1f_c00428{bottom:275.613333pt;}
.y1e_c00428{bottom:285.213333pt;}
.y1d_c00428{bottom:329.373333pt;}
.y1c_c00428{bottom:357.253333pt;}
.y1a_c00428{bottom:392.773333pt;}
.y1b_c00428{bottom:400.133333pt;}
.y19_c00428{bottom:420.293333pt;}
.y18_c00428{bottom:447.813333pt;}
.y17_c00428{bottom:475.680000pt;}
.y16_c00428{bottom:503.200000pt;}
.y15_c00428{bottom:530.720000pt;}
.y14_c00428{bottom:558.240000pt;}
.y13_c00428{bottom:586.106667pt;}
.y12_c00428{bottom:619.386667pt;}
.y11_c00428{bottom:650.426667pt;}
.y10_c00428{bottom:673.466667pt;}
.yf_c00428{bottom:698.466667pt;}
.ye_c00428{bottom:725.986667pt;}
.yd_c00428{bottom:753.826667pt;}
.yc_c00428{bottom:781.346667pt;}
.yb_c00428{bottom:808.893333pt;}
.ya_c00428{bottom:836.733333pt;}
.y9_c00428{bottom:864.253333pt;}
.y7_c00428{bottom:891.773333pt;}
.y8_c00428{bottom:899.173333pt;}
.y6_c00428{bottom:919.333333pt;}
.y4_c00428{bottom:947.173333pt;}
.y5_c00428{bottom:954.533333pt;}
.y1_c00428{bottom:993.573333pt;}
.h9_c00428{height:30.982500pt;}
.ha_c00428{height:33.918750pt;}
.h4_c00428{height:41.456250pt;}
.hb_c00428{height:48.457500pt;}
.h8_c00428{height:52.736250pt;}
.h7_c00428{height:52.762500pt;}
.h1_c00428{height:57.375000pt;}
.h5_c00428{height:62.781250pt;}
.h2_c00428{height:62.812500pt;}
.h6_c00428{height:64.500000pt;}
.hc_c00428{height:88.147766pt;}
.h3_c00428{height:1055.996000pt;}
.h0_c00428{height:1056.000000pt;}
.w1_c00428{width:815.997333pt;}
.w0_c00428{width:816.000000pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:113.312000pt;}
.xb_c00428{left:126.752000pt;}
.x7_c00428{left:151.106667pt;}
.xa_c00428{left:305.413333pt;}
.x2_c00428{left:396.000000pt;}
.x3_c00428{left:403.037333pt;}
.x4_c00428{left:419.360000pt;}
.x8_c00428{left:436.637333pt;}
.x9_c00428{left:452.960000pt;}
.x5_c00428{left:636.064000pt;}
.x6_c00428{left:652.413333pt;}
}





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

.ir_c00429:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00429;src:url('chunks/assets/font_4116fadecb73039e0128f2af.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_76ed6f21105cd1916911ccf4.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_c639102141a3029ba057592d.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_730601b658e3494c25518841.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;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_c00429;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff5_c00429{font-family:ff5_c00429;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls5_c00429{letter-spacing:-2.880000px;}
.ls6_c00429{letter-spacing:-1.440000px;}
.ls4_c00429{letter-spacing:0.000000px;}
.ls1_c00429{letter-spacing:1.440000px;}
.ls3_c00429{letter-spacing:3.600000px;}
.ls2_c00429{letter-spacing:12.240000px;}
.ls0_c00429{letter-spacing:18.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00429{word-spacing:-72.000000px;}
.ws0_c00429{word-spacing:-18.000000px;}
.ws2_c00429{word-spacing:0.000000px;}
._14_c00429{margin-left:-3.624000px;}
._4_c00429{margin-left:-2.592000px;}
._2_c00429{margin-left:-1.584000px;}
._0_c00429{width:1.368000px;}
._3_c00429{width:2.808000px;}
._1_c00429{width:3.816000px;}
._10_c00429{width:5.760000px;}
._11_c00429{width:6.768000px;}
._15_c00429{width:8.340000px;}
._b_c00429{width:9.864000px;}
._a_c00429{width:11.160000px;}
._c_c00429{width:12.600000px;}
._d_c00429{width:13.740000px;}
._5_c00429{width:15.048000px;}
._6_c00429{width:16.200000px;}
._9_c00429{width:18.732000px;}
._7_c00429{width:20.388000px;}
._8_c00429{width:22.392000px;}
._13_c00429{width:25.368000px;}
._12_c00429{width:26.568000px;}
._e_c00429{width:29.592000px;}
._f_c00429{width:30.744000px;}
.fc0_c00429{color:rgb(0,0,0);}
.fs0_c00429{font-size:72.000000px;}
.y0_c00429{bottom:0.000000px;}
.y3_c00429{bottom:57.996000px;}
.y2_c00429{bottom:78.876000px;}
.y21_c00429{bottom:128.916000px;}
.y20_c00429{bottom:168.915000px;}
.y1f_c00429{bottom:208.875000px;}
.y1e_c00429{bottom:239.835000px;}
.y1d_c00429{bottom:271.155000px;}
.y1c_c00429{bottom:302.145000px;}
.y1b_c00429{bottom:333.105000px;}
.y1a_c00429{bottom:364.065000px;}
.y19_c00429{bottom:395.070000px;}
.y18_c00429{bottom:426.390000px;}
.y17_c00429{bottom:457.350000px;}
.y16_c00429{bottom:488.310000px;}
.y15_c00429{bottom:519.300000px;}
.y14_c00429{bottom:550.620000px;}
.y13_c00429{bottom:581.580000px;}
.y12_c00429{bottom:612.540000px;}
.y11_c00429{bottom:652.530000px;}
.y10_c00429{bottom:692.850000px;}
.yf_c00429{bottom:723.810000px;}
.ye_c00429{bottom:754.770000px;}
.yd_c00429{bottom:785.775000px;}
.yc_c00429{bottom:817.095000px;}
.yb_c00429{bottom:848.055000px;}
.ya_c00429{bottom:879.015000px;}
.y9_c00429{bottom:910.005000px;}
.y8_c00429{bottom:941.325000px;}
.y7_c00429{bottom:972.285000px;}
.y6_c00429{bottom:1003.245000px;}
.y5_c00429{bottom:1034.250000px;}
.y4_c00429{bottom:1065.570000px;}
.y1_c00429{bottom:1117.770000px;}
.h1_c00429{height:64.546875px;}
.h3_c00429{height:70.628906px;}
.h2_c00429{height:70.664062px;}
.h0_c00429{height:1188.000000px;}
.w0_c00429{width:918.000000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:127.476000px;}
.x3_c00429{left:178.635000px;}
.x4_c00429{left:180.795000px;}
.x2_c00429{left:445.500000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls5_c00429{letter-spacing:-2.560000pt;}
.ls6_c00429{letter-spacing:-1.280000pt;}
.ls4_c00429{letter-spacing:0.000000pt;}
.ls1_c00429{letter-spacing:1.280000pt;}
.ls3_c00429{letter-spacing:3.200000pt;}
.ls2_c00429{letter-spacing:10.880000pt;}
.ls0_c00429{letter-spacing:16.000000pt;}
.ws1_c00429{word-spacing:-64.000000pt;}
.ws0_c00429{word-spacing:-16.000000pt;}
.ws2_c00429{word-spacing:0.000000pt;}
._14_c00429{margin-left:-3.221333pt;}
._4_c00429{margin-left:-2.304000pt;}
._2_c00429{margin-left:-1.408000pt;}
._0_c00429{width:1.216000pt;}
._3_c00429{width:2.496000pt;}
._1_c00429{width:3.392000pt;}
._10_c00429{width:5.120000pt;}
._11_c00429{width:6.016000pt;}
._15_c00429{width:7.413333pt;}
._b_c00429{width:8.768000pt;}
._a_c00429{width:9.920000pt;}
._c_c00429{width:11.200000pt;}
._d_c00429{width:12.213333pt;}
._5_c00429{width:13.376000pt;}
._6_c00429{width:14.400000pt;}
._9_c00429{width:16.650667pt;}
._7_c00429{width:18.122667pt;}
._8_c00429{width:19.904000pt;}
._13_c00429{width:22.549333pt;}
._12_c00429{width:23.616000pt;}
._e_c00429{width:26.304000pt;}
._f_c00429{width:27.328000pt;}
.fs0_c00429{font-size:64.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y3_c00429{bottom:51.552000pt;}
.y2_c00429{bottom:70.112000pt;}
.y21_c00429{bottom:114.592000pt;}
.y20_c00429{bottom:150.146667pt;}
.y1f_c00429{bottom:185.666667pt;}
.y1e_c00429{bottom:213.186667pt;}
.y1d_c00429{bottom:241.026667pt;}
.y1c_c00429{bottom:268.573333pt;}
.y1b_c00429{bottom:296.093333pt;}
.y1a_c00429{bottom:323.613333pt;}
.y19_c00429{bottom:351.173333pt;}
.y18_c00429{bottom:379.013333pt;}
.y17_c00429{bottom:406.533333pt;}
.y16_c00429{bottom:434.053333pt;}
.y15_c00429{bottom:461.600000pt;}
.y14_c00429{bottom:489.440000pt;}
.y13_c00429{bottom:516.960000pt;}
.y12_c00429{bottom:544.480000pt;}
.y11_c00429{bottom:580.026667pt;}
.y10_c00429{bottom:615.866667pt;}
.yf_c00429{bottom:643.386667pt;}
.ye_c00429{bottom:670.906667pt;}
.yd_c00429{bottom:698.466667pt;}
.yc_c00429{bottom:726.306667pt;}
.yb_c00429{bottom:753.826667pt;}
.ya_c00429{bottom:781.346667pt;}
.y9_c00429{bottom:808.893333pt;}
.y8_c00429{bottom:836.733333pt;}
.y7_c00429{bottom:864.253333pt;}
.y6_c00429{bottom:891.773333pt;}
.y5_c00429{bottom:919.333333pt;}
.y4_c00429{bottom:947.173333pt;}
.y1_c00429{bottom:993.573333pt;}
.h1_c00429{height:57.375000pt;}
.h3_c00429{height:62.781250pt;}
.h2_c00429{height:62.812500pt;}
.h0_c00429{height:1056.000000pt;}
.w0_c00429{width:816.000000pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:113.312000pt;}
.x3_c00429{left:158.786667pt;}
.x4_c00429{left:160.706667pt;}
.x2_c00429{left:396.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_c00430 {
    display:none;
  }
  .loading-indicator_c00430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00430 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00430 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00430" -> "#page-container .classname_c00430")
 */
.pf_c00430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00430 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00430 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00430 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00430 {overflow:visible;}
  }
}
.c_c00430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00430 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00430:after { /* webkit #35443 */
  content: '';
}
.t_c00430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00430 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00430 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00430 { /* info for Javascript */
  display:none;
}
.l_c00430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00430:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00430;src:url('chunks/assets/font_2e59e2b8b1689a7d88f57315.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_f297dfc90b05b7d784e87b13.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_93be55add922ae74cf93b3ce.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_f68f69ba3a42d0467b22289a.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00430;src:url('chunks/assets/font_69f220a65787a14fc23d2b5b.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;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_c00430;src:url('chunks/assets/font_05d13e79dadd28b526b5cdfd.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:1.104004;font-style:normal;font-weight: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_c00430;src:url('chunks/assets/font_23c30a4ebaae605a6402fec7.woff2')format("woff");}.ff7_c00430{font-family:ff7_c00430;line-height:1.117188;font-style:normal;font-weight: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_c00430;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8_c00430{font-family:ff8_c00430;line-height:1.311035;font-style:normal;font-weight: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_c00430;src:url('chunks/assets/font_8b7caaa4d0cad65a2358cba1.woff2')format("woff");}.ff9_c00430{font-family:ff9_c00430;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls17_c00430{letter-spacing:-1.740000px;}
.ls18_c00430{letter-spacing:-1.416000px;}
.ls11_c00430{letter-spacing:-1.380000px;}
.ls19_c00430{letter-spacing:-0.954000px;}
.ls15_c00430{letter-spacing:-0.720000px;}
.ls14_c00430{letter-spacing:-0.432000px;}
.ls13_c00430{letter-spacing:-0.288000px;}
.ls1f_c00430{letter-spacing:-0.241800px;}
.ls1d_c00430{letter-spacing:-0.075000px;}
.lsf_c00430{letter-spacing:0.000000px;}
.ls10_c00430{letter-spacing:0.020400px;}
.ls1e_c00430{letter-spacing:0.022800px;}
.ls4_c00430{letter-spacing:0.072000px;}
.ls5_c00430{letter-spacing:0.120000px;}
.ls16_c00430{letter-spacing:0.144000px;}
.ls12_c00430{letter-spacing:0.397200px;}
.ls20_c00430{letter-spacing:0.466800px;}
.ls21_c00430{letter-spacing:0.486600px;}
.ls1c_c00430{letter-spacing:0.507000px;}
.ls6_c00430{letter-spacing:0.518400px;}
.ls1b_c00430{letter-spacing:0.521400px;}
.ls1a_c00430{letter-spacing:0.630000px;}
.ls7_c00430{letter-spacing:0.665401px;}
.ls0_c00430{letter-spacing:0.720000px;}
.ls9_c00430{letter-spacing:0.740160px;}
.ls1_c00430{letter-spacing:0.740278px;}
.ls8_c00430{letter-spacing:2.160000px;}
.lse_c00430{letter-spacing:3.600000px;}
.lsd_c00430{letter-spacing:3.619898px;}
.ls3_c00430{letter-spacing:5.040000px;}
.ls2_c00430{letter-spacing:6.480000px;}
.lsb_c00430{letter-spacing:12.240000px;}
.lsc_c00430{letter-spacing:12.259920px;}
.lsa_c00430{letter-spacing:13.680000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00430{word-spacing:-60.877200px;}
.ws3_c00430{word-spacing:-60.480000px;}
.ws0_c00430{word-spacing:-18.000000px;}
.ws5_c00430{word-spacing:-17.712000px;}
.wsd_c00430{word-spacing:-15.840000px;}
.ws8_c00430{word-spacing:-15.750000px;}
.ws9_c00430{word-spacing:-15.627000px;}
.wsc_c00430{word-spacing:-15.606600px;}
.wsb_c00430{word-spacing:-15.586800px;}
.ws1_c00430{word-spacing:-15.140400px;}
.ws2_c00430{word-spacing:-15.120000px;}
.wsa_c00430{word-spacing:-14.878200px;}
.ws7_c00430{word-spacing:-14.166000px;}
.ws6_c00430{word-spacing:-13.380000px;}
.wse_c00430{word-spacing:0.000000px;}
._a_c00430{margin-left:-3.384000px;}
._4_c00430{margin-left:-2.376000px;}
._1_c00430{margin-left:-1.296000px;}
._0_c00430{width:1.056000px;}
._6_c00430{width:2.544000px;}
._c_c00430{width:4.464000px;}
._9_c00430{width:5.496000px;}
._b_c00430{width:6.696000px;}
._3_c00430{width:8.472000px;}
._2_c00430{width:10.008000px;}
._5_c00430{width:11.304000px;}
._14_c00430{width:13.100976px;}
._12_c00430{width:14.256000px;}
._13_c00430{width:15.264000px;}
._f_c00430{width:24.456000px;}
._e_c00430{width:25.488000px;}
._d_c00430{width:26.976000px;}
._11_c00430{width:28.344000px;}
._10_c00430{width:29.520000px;}
._7_c00430{width:36.408000px;}
._8_c00430{width:37.824000px;}
.fc1_c00430{color:rgb(32,31,26);}
.fc2_c00430{color:rgb(38,38,38);}
.fc0_c00430{color:rgb(0,0,0);}
.fs3_c00430{font-size:38.880000px;}
.fs2_c00430{font-size:47.520000px;}
.fs1_c00430{font-size:60.480000px;}
.fs0_c00430{font-size:72.000000px;}
.fs4_c00430{font-size:83.520000px;}
.y0_c00430{bottom:0.000000px;}
.y3_c00430{bottom:57.996000px;}
.y2_c00430{bottom:78.876000px;}
.y33_c00430{bottom:130.716000px;}
.y32_c00430{bottom:147.996000px;}
.y31_c00430{bottom:154.875000px;}
.y30_c00430{bottom:165.315000px;}
.y2f_c00430{bottom:182.595000px;}
.y2e_c00430{bottom:199.515000px;}
.y2d_c00430{bottom:206.355000px;}
.y2c_c00430{bottom:216.795000px;}
.y2b_c00430{bottom:234.075000px;}
.y2a_c00430{bottom:251.355000px;}
.y29_c00430{bottom:268.635000px;}
.y28_c00430{bottom:275.505000px;}
.y27_c00430{bottom:285.945000px;}
.y26_c00430{bottom:303.225000px;}
.y25_c00430{bottom:320.505000px;}
.y24_c00430{bottom:327.345000px;}
.y23_c00430{bottom:337.785000px;}
.y22_c00430{bottom:355.065000px;}
.y21_c00430{bottom:372.345000px;}
.y20_c00430{bottom:379.185000px;}
.y1f_c00430{bottom:389.985000px;}
.y1e_c00430{bottom:418.830000px;}
.y1d_c00430{bottom:444.750000px;}
.y1c_c00430{bottom:472.830000px;}
.y1b_c00430{bottom:503.790000px;}
.y1a_c00430{bottom:535.140000px;}
.y18_c00430{bottom:566.100000px;}
.y19_c00430{bottom:574.380000px;}
.y17_c00430{bottom:597.060000px;}
.y15_c00430{bottom:628.020000px;}
.y16_c00430{bottom:636.300000px;}
.y14_c00430{bottom:659.370000px;}
.y12_c00430{bottom:690.330000px;}
.y13_c00430{bottom:698.610000px;}
.y10_c00430{bottom:721.290000px;}
.y11_c00430{bottom:729.570000px;}
.yf_c00430{bottom:752.250000px;}
.ye_c00430{bottom:783.615000px;}
.yc_c00430{bottom:814.575000px;}
.yd_c00430{bottom:822.855000px;}
.yb_c00430{bottom:845.535000px;}
.ya_c00430{bottom:876.495000px;}
.y9_c00430{bottom:907.485000px;}
.y8_c00430{bottom:938.805000px;}
.y7_c00430{bottom:976.605000px;}
.y6_c00430{bottom:1011.210000px;}
.y5_c00430{bottom:1037.130000px;}
.y4_c00430{bottom:1065.570000px;}
.y1_c00430{bottom:1117.770000px;}
.h7_c00430{height:34.855313px;}
.h6_c00430{height:46.638281px;}
.ha_c00430{height:54.219375px;}
.hb_c00430{height:54.514688px;}
.h4_c00430{height:59.328281px;}
.h3_c00430{height:59.357813px;}
.h8_c00430{height:60.952500px;}
.h1_c00430{height:64.546875px;}
.h2_c00430{height:70.664062px;}
.h9_c00430{height:81.970312px;}
.h5_c00430{height:1187.995500px;}
.h0_c00430{height:1188.000000px;}
.w1_c00430{width:917.997000px;}
.w0_c00430{width:918.000000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:127.476000px;}
.xf_c00430{left:142.596000px;}
.x3_c00430{left:169.995000px;}
.x6_c00430{left:191.592000px;}
.x8_c00430{left:206.352000px;}
.x7_c00430{left:209.955000px;}
.x9_c00430{left:224.715000px;}
.xa_c00430{left:305.382000px;}
.xb_c00430{left:323.745000px;}
.xe_c00430{left:343.590000px;}
.x2_c00430{left:445.500000px;}
.x4_c00430{left:570.087000px;}
.x5_c00430{left:588.450000px;}
.xc_c00430{left:767.802000px;}
.xd_c00430{left:786.165000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls17_c00430{letter-spacing:-1.546667pt;}
.ls18_c00430{letter-spacing:-1.258667pt;}
.ls11_c00430{letter-spacing:-1.226667pt;}
.ls19_c00430{letter-spacing:-0.848000pt;}
.ls15_c00430{letter-spacing:-0.640000pt;}
.ls14_c00430{letter-spacing:-0.384000pt;}
.ls13_c00430{letter-spacing:-0.256000pt;}
.ls1f_c00430{letter-spacing:-0.214933pt;}
.ls1d_c00430{letter-spacing:-0.066667pt;}
.lsf_c00430{letter-spacing:0.000000pt;}
.ls10_c00430{letter-spacing:0.018133pt;}
.ls1e_c00430{letter-spacing:0.020267pt;}
.ls4_c00430{letter-spacing:0.064000pt;}
.ls5_c00430{letter-spacing:0.106667pt;}
.ls16_c00430{letter-spacing:0.128000pt;}
.ls12_c00430{letter-spacing:0.353067pt;}
.ls20_c00430{letter-spacing:0.414933pt;}
.ls21_c00430{letter-spacing:0.432533pt;}
.ls1c_c00430{letter-spacing:0.450667pt;}
.ls6_c00430{letter-spacing:0.460800pt;}
.ls1b_c00430{letter-spacing:0.463467pt;}
.ls1a_c00430{letter-spacing:0.560000pt;}
.ls7_c00430{letter-spacing:0.591468pt;}
.ls0_c00430{letter-spacing:0.640000pt;}
.ls9_c00430{letter-spacing:0.657920pt;}
.ls1_c00430{letter-spacing:0.658025pt;}
.ls8_c00430{letter-spacing:1.920000pt;}
.lse_c00430{letter-spacing:3.200000pt;}
.lsd_c00430{letter-spacing:3.217687pt;}
.ls3_c00430{letter-spacing:4.480000pt;}
.ls2_c00430{letter-spacing:5.760000pt;}
.lsb_c00430{letter-spacing:10.880000pt;}
.lsc_c00430{letter-spacing:10.897707pt;}
.lsa_c00430{letter-spacing:12.160000pt;}
.ws4_c00430{word-spacing:-54.113067pt;}
.ws3_c00430{word-spacing:-53.760000pt;}
.ws0_c00430{word-spacing:-16.000000pt;}
.ws5_c00430{word-spacing:-15.744000pt;}
.wsd_c00430{word-spacing:-14.080000pt;}
.ws8_c00430{word-spacing:-14.000000pt;}
.ws9_c00430{word-spacing:-13.890667pt;}
.wsc_c00430{word-spacing:-13.872533pt;}
.wsb_c00430{word-spacing:-13.854933pt;}
.ws1_c00430{word-spacing:-13.458133pt;}
.ws2_c00430{word-spacing:-13.440000pt;}
.wsa_c00430{word-spacing:-13.225067pt;}
.ws7_c00430{word-spacing:-12.592000pt;}
.ws6_c00430{word-spacing:-11.893333pt;}
.wse_c00430{word-spacing:0.000000pt;}
._a_c00430{margin-left:-3.008000pt;}
._4_c00430{margin-left:-2.112000pt;}
._1_c00430{margin-left:-1.152000pt;}
._0_c00430{width:0.938667pt;}
._6_c00430{width:2.261333pt;}
._c_c00430{width:3.968000pt;}
._9_c00430{width:4.885333pt;}
._b_c00430{width:5.952000pt;}
._3_c00430{width:7.530667pt;}
._2_c00430{width:8.896000pt;}
._5_c00430{width:10.048000pt;}
._14_c00430{width:11.645312pt;}
._12_c00430{width:12.672000pt;}
._13_c00430{width:13.568000pt;}
._f_c00430{width:21.738667pt;}
._e_c00430{width:22.656000pt;}
._d_c00430{width:23.978667pt;}
._11_c00430{width:25.194667pt;}
._10_c00430{width:26.240000pt;}
._7_c00430{width:32.362667pt;}
._8_c00430{width:33.621333pt;}
.fs3_c00430{font-size:34.560000pt;}
.fs2_c00430{font-size:42.240000pt;}
.fs1_c00430{font-size:53.760000pt;}
.fs0_c00430{font-size:64.000000pt;}
.fs4_c00430{font-size:74.240000pt;}
.y0_c00430{bottom:0.000000pt;}
.y3_c00430{bottom:51.552000pt;}
.y2_c00430{bottom:70.112000pt;}
.y33_c00430{bottom:116.192000pt;}
.y32_c00430{bottom:131.552000pt;}
.y31_c00430{bottom:137.666667pt;}
.y30_c00430{bottom:146.946667pt;}
.y2f_c00430{bottom:162.306667pt;}
.y2e_c00430{bottom:177.346667pt;}
.y2d_c00430{bottom:183.426667pt;}
.y2c_c00430{bottom:192.706667pt;}
.y2b_c00430{bottom:208.066667pt;}
.y2a_c00430{bottom:223.426667pt;}
.y29_c00430{bottom:238.786667pt;}
.y28_c00430{bottom:244.893333pt;}
.y27_c00430{bottom:254.173333pt;}
.y26_c00430{bottom:269.533333pt;}
.y25_c00430{bottom:284.893333pt;}
.y24_c00430{bottom:290.973333pt;}
.y23_c00430{bottom:300.253333pt;}
.y22_c00430{bottom:315.613333pt;}
.y21_c00430{bottom:330.973333pt;}
.y20_c00430{bottom:337.053333pt;}
.y1f_c00430{bottom:346.653333pt;}
.y1e_c00430{bottom:372.293333pt;}
.y1d_c00430{bottom:395.333333pt;}
.y1c_c00430{bottom:420.293333pt;}
.y1b_c00430{bottom:447.813333pt;}
.y1a_c00430{bottom:475.680000pt;}
.y18_c00430{bottom:503.200000pt;}
.y19_c00430{bottom:510.560000pt;}
.y17_c00430{bottom:530.720000pt;}
.y15_c00430{bottom:558.240000pt;}
.y16_c00430{bottom:565.600000pt;}
.y14_c00430{bottom:586.106667pt;}
.y12_c00430{bottom:613.626667pt;}
.y13_c00430{bottom:620.986667pt;}
.y10_c00430{bottom:641.146667pt;}
.y11_c00430{bottom:648.506667pt;}
.yf_c00430{bottom:668.666667pt;}
.ye_c00430{bottom:696.546667pt;}
.yc_c00430{bottom:724.066667pt;}
.yd_c00430{bottom:731.426667pt;}
.yb_c00430{bottom:751.586667pt;}
.ya_c00430{bottom:779.106667pt;}
.y9_c00430{bottom:806.653333pt;}
.y8_c00430{bottom:834.493333pt;}
.y7_c00430{bottom:868.093333pt;}
.y6_c00430{bottom:898.853333pt;}
.y5_c00430{bottom:921.893333pt;}
.y4_c00430{bottom:947.173333pt;}
.y1_c00430{bottom:993.573333pt;}
.h7_c00430{height:30.982500pt;}
.h6_c00430{height:41.456250pt;}
.ha_c00430{height:48.195000pt;}
.hb_c00430{height:48.457500pt;}
.h4_c00430{height:52.736250pt;}
.h3_c00430{height:52.762500pt;}
.h8_c00430{height:54.180000pt;}
.h1_c00430{height:57.375000pt;}
.h2_c00430{height:62.812500pt;}
.h9_c00430{height:72.862500pt;}
.h5_c00430{height:1055.996000pt;}
.h0_c00430{height:1056.000000pt;}
.w1_c00430{width:815.997333pt;}
.w0_c00430{width:816.000000pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:113.312000pt;}
.xf_c00430{left:126.752000pt;}
.x3_c00430{left:151.106667pt;}
.x6_c00430{left:170.304000pt;}
.x8_c00430{left:183.424000pt;}
.x7_c00430{left:186.626667pt;}
.x9_c00430{left:199.746667pt;}
.xa_c00430{left:271.450667pt;}
.xb_c00430{left:287.773333pt;}
.xe_c00430{left:305.413333pt;}
.x2_c00430{left:396.000000pt;}
.x4_c00430{left:506.744000pt;}
.x5_c00430{left:523.066667pt;}
.xc_c00430{left:682.490667pt;}
.xd_c00430{left:698.813333pt;}
}





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

.ir_c00431:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00431;src:url('chunks/assets/font_dc39f37a3a059faa5218c5f9.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_887a843379bb707851a69eb2.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_37543574a7673f1fdbe997cc.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_0be7e563dfe18c131fef4bf3.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00431;src:url('chunks/assets/font_a65fd0b3b0ebf124d782713b.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00431;src:url('chunks/assets/font_d6022264b4f9f95dd98b16c1.woff2')format("woff");}.ff6_c00431{font-family:ff6_c00431;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_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.lsd_c00431{letter-spacing:-1.512000px;}
.ls11_c00431{letter-spacing:-1.416000px;}
.ls18_c00431{letter-spacing:-1.380000px;}
.ls10_c00431{letter-spacing:-0.912000px;}
.ls15_c00431{letter-spacing:-0.720000px;}
.ls13_c00431{letter-spacing:-0.648000px;}
.ls1a_c00431{letter-spacing:-0.532800px;}
.ls19_c00431{letter-spacing:-0.230400px;}
.lsb_c00431{letter-spacing:0.000000px;}
.ls14_c00431{letter-spacing:0.020400px;}
.lsc_c00431{letter-spacing:0.022800px;}
.ls7_c00431{letter-spacing:0.048960px;}
.lse_c00431{letter-spacing:0.121200px;}
.lsf_c00431{letter-spacing:0.166800px;}
.ls4_c00431{letter-spacing:0.302400px;}
.ls12_c00431{letter-spacing:0.313800px;}
.ls9_c00431{letter-spacing:0.466560px;}
.ls8_c00431{letter-spacing:0.518400px;}
.ls17_c00431{letter-spacing:0.521400px;}
.ls16_c00431{letter-spacing:0.702000px;}
.ls0_c00431{letter-spacing:0.720000px;}
.lsa_c00431{letter-spacing:0.728640px;}
.ls1_c00431{letter-spacing:0.740068px;}
.ls6_c00431{letter-spacing:0.740396px;}
.ls5_c00431{letter-spacing:0.743305px;}
.ls2_c00431{letter-spacing:0.900000px;}
.ls3_c00431{letter-spacing:5.040000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00431{word-spacing:-60.480000px;}
.ws5_c00431{word-spacing:-18.000000px;}
.ws6_c00431{word-spacing:-17.352000px;}
.ws8_c00431{word-spacing:-15.822000px;}
.ws9_c00431{word-spacing:-15.641400px;}
.ws4_c00431{word-spacing:-15.433800px;}
.ws3_c00431{word-spacing:-15.286800px;}
.ws2_c00431{word-spacing:-15.241200px;}
.ws7_c00431{word-spacing:-15.140400px;}
.ws0_c00431{word-spacing:-15.120000px;}
.wsb_c00431{word-spacing:-14.889600px;}
.wsa_c00431{word-spacing:-13.740000px;}
.wsc_c00431{word-spacing:0.000000px;}
._2_c00431{margin-left:-2.461552px;}
._0_c00431{margin-left:-1.192182px;}
._1_c00431{width:1.067542px;}
._3_c00431{width:2.764783px;}
._4_c00431{width:3.991801px;}
._b_c00431{width:5.358944px;}
._c_c00431{width:7.117789px;}
._a_c00431{width:11.304000px;}
._8_c00431{width:12.469552px;}
._9_c00431{width:13.478468px;}
._7_c00431{width:17.709347px;}
._5_c00431{width:18.809401px;}
._6_c00431{width:20.352380px;}
.fc0_c00431{color:rgb(0,0,0);}
.fs3_c00431{font-size:38.880000px;}
.fs2_c00431{font-size:47.520000px;}
.fs1_c00431{font-size:60.480000px;}
.fs0_c00431{font-size:72.000000px;}
.y0_c00431{bottom:0.000000px;}
.y3_c00431{bottom:57.996000px;}
.y2_c00431{bottom:78.876000px;}
.y25_c00431{bottom:130.716000px;}
.y24_c00431{bottom:137.556000px;}
.y23_c00431{bottom:148.356000px;}
.y22_c00431{bottom:216.795000px;}
.y21_c00431{bottom:245.595000px;}
.y20_c00431{bottom:271.515000px;}
.y1f_c00431{bottom:297.465000px;}
.y1e_c00431{bottom:332.025000px;}
.y1d_c00431{bottom:357.945000px;}
.y1c_c00431{bottom:383.865000px;}
.y1b_c00431{bottom:409.830000px;}
.y1a_c00431{bottom:444.750000px;}
.y19_c00431{bottom:472.830000px;}
.y18_c00431{bottom:503.790000px;}
.y16_c00431{bottom:535.140000px;}
.y17_c00431{bottom:543.420000px;}
.y15_c00431{bottom:566.100000px;}
.y14_c00431{bottom:597.060000px;}
.y13_c00431{bottom:628.020000px;}
.y12_c00431{bottom:659.370000px;}
.y11_c00431{bottom:690.330000px;}
.y10_c00431{bottom:721.290000px;}
.yf_c00431{bottom:752.250000px;}
.ye_c00431{bottom:783.615000px;}
.yd_c00431{bottom:814.575000px;}
.yc_c00431{bottom:852.375000px;}
.yb_c00431{bottom:878.295000px;}
.ya_c00431{bottom:903.885000px;}
.y9_c00431{bottom:929.805000px;}
.y8_c00431{bottom:955.725000px;}
.y7_c00431{bottom:990.645000px;}
.y6_c00431{bottom:1016.610000px;}
.y5_c00431{bottom:1042.530000px;}
.y4_c00431{bottom:1068.450000px;}
.y1_c00431{bottom:1117.770000px;}
.h7_c00431{height:38.158594px;}
.h6_c00431{height:46.638281px;}
.h3_c00431{height:59.328281px;}
.h2_c00431{height:59.357813px;}
.h1_c00431{height:64.546875px;}
.h4_c00431{height:70.664062px;}
.h5_c00431{height:1187.995500px;}
.h0_c00431{height:1188.000000px;}
.w1_c00431{width:917.997000px;}
.w0_c00431{width:918.000000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:127.476000px;}
.x7_c00431{left:142.596000px;}
.x3_c00431{left:169.995000px;}
.x6_c00431{left:343.590000px;}
.x2_c00431{left:445.500000px;}
.x4_c00431{left:678.492000px;}
.x5_c00431{left:696.855000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.lsd_c00431{letter-spacing:-1.344000pt;}
.ls11_c00431{letter-spacing:-1.258667pt;}
.ls18_c00431{letter-spacing:-1.226667pt;}
.ls10_c00431{letter-spacing:-0.810667pt;}
.ls15_c00431{letter-spacing:-0.640000pt;}
.ls13_c00431{letter-spacing:-0.576000pt;}
.ls1a_c00431{letter-spacing:-0.473600pt;}
.ls19_c00431{letter-spacing:-0.204800pt;}
.lsb_c00431{letter-spacing:0.000000pt;}
.ls14_c00431{letter-spacing:0.018133pt;}
.lsc_c00431{letter-spacing:0.020267pt;}
.ls7_c00431{letter-spacing:0.043520pt;}
.lse_c00431{letter-spacing:0.107733pt;}
.lsf_c00431{letter-spacing:0.148267pt;}
.ls4_c00431{letter-spacing:0.268800pt;}
.ls12_c00431{letter-spacing:0.278933pt;}
.ls9_c00431{letter-spacing:0.414720pt;}
.ls8_c00431{letter-spacing:0.460800pt;}
.ls17_c00431{letter-spacing:0.463467pt;}
.ls16_c00431{letter-spacing:0.624000pt;}
.ls0_c00431{letter-spacing:0.640000pt;}
.lsa_c00431{letter-spacing:0.647680pt;}
.ls1_c00431{letter-spacing:0.657838pt;}
.ls6_c00431{letter-spacing:0.658130pt;}
.ls5_c00431{letter-spacing:0.660716pt;}
.ls2_c00431{letter-spacing:0.800000pt;}
.ls3_c00431{letter-spacing:4.480000pt;}
.ws1_c00431{word-spacing:-53.760000pt;}
.ws5_c00431{word-spacing:-16.000000pt;}
.ws6_c00431{word-spacing:-15.424000pt;}
.ws8_c00431{word-spacing:-14.064000pt;}
.ws9_c00431{word-spacing:-13.903467pt;}
.ws4_c00431{word-spacing:-13.718933pt;}
.ws3_c00431{word-spacing:-13.588267pt;}
.ws2_c00431{word-spacing:-13.547733pt;}
.ws7_c00431{word-spacing:-13.458133pt;}
.ws0_c00431{word-spacing:-13.440000pt;}
.wsb_c00431{word-spacing:-13.235200pt;}
.wsa_c00431{word-spacing:-12.213333pt;}
.wsc_c00431{word-spacing:0.000000pt;}
._2_c00431{margin-left:-2.188047pt;}
._0_c00431{margin-left:-1.059717pt;}
._1_c00431{width:0.948926pt;}
._3_c00431{width:2.457585pt;}
._4_c00431{width:3.548268pt;}
._b_c00431{width:4.763505pt;}
._c_c00431{width:6.326924pt;}
._a_c00431{width:10.048000pt;}
._8_c00431{width:11.084047pt;}
._9_c00431{width:11.980861pt;}
._7_c00431{width:15.741641pt;}
._5_c00431{width:16.719468pt;}
._6_c00431{width:18.091005pt;}
.fs3_c00431{font-size:34.560000pt;}
.fs2_c00431{font-size:42.240000pt;}
.fs1_c00431{font-size:53.760000pt;}
.fs0_c00431{font-size:64.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y3_c00431{bottom:51.552000pt;}
.y2_c00431{bottom:70.112000pt;}
.y25_c00431{bottom:116.192000pt;}
.y24_c00431{bottom:122.272000pt;}
.y23_c00431{bottom:131.872000pt;}
.y22_c00431{bottom:192.706667pt;}
.y21_c00431{bottom:218.306667pt;}
.y20_c00431{bottom:241.346667pt;}
.y1f_c00431{bottom:264.413333pt;}
.y1e_c00431{bottom:295.133333pt;}
.y1d_c00431{bottom:318.173333pt;}
.y1c_c00431{bottom:341.213333pt;}
.y1b_c00431{bottom:364.293333pt;}
.y1a_c00431{bottom:395.333333pt;}
.y19_c00431{bottom:420.293333pt;}
.y18_c00431{bottom:447.813333pt;}
.y16_c00431{bottom:475.680000pt;}
.y17_c00431{bottom:483.040000pt;}
.y15_c00431{bottom:503.200000pt;}
.y14_c00431{bottom:530.720000pt;}
.y13_c00431{bottom:558.240000pt;}
.y12_c00431{bottom:586.106667pt;}
.y11_c00431{bottom:613.626667pt;}
.y10_c00431{bottom:641.146667pt;}
.yf_c00431{bottom:668.666667pt;}
.ye_c00431{bottom:696.546667pt;}
.yd_c00431{bottom:724.066667pt;}
.yc_c00431{bottom:757.666667pt;}
.yb_c00431{bottom:780.706667pt;}
.ya_c00431{bottom:803.453333pt;}
.y9_c00431{bottom:826.493333pt;}
.y8_c00431{bottom:849.533333pt;}
.y7_c00431{bottom:880.573333pt;}
.y6_c00431{bottom:903.653333pt;}
.y5_c00431{bottom:926.693333pt;}
.y4_c00431{bottom:949.733333pt;}
.y1_c00431{bottom:993.573333pt;}
.h7_c00431{height:33.918750pt;}
.h6_c00431{height:41.456250pt;}
.h3_c00431{height:52.736250pt;}
.h2_c00431{height:52.762500pt;}
.h1_c00431{height:57.375000pt;}
.h4_c00431{height:62.812500pt;}
.h5_c00431{height:1055.996000pt;}
.h0_c00431{height:1056.000000pt;}
.w1_c00431{width:815.997333pt;}
.w0_c00431{width:816.000000pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:113.312000pt;}
.x7_c00431{left:126.752000pt;}
.x3_c00431{left:151.106667pt;}
.x6_c00431{left:305.413333pt;}
.x2_c00431{left:396.000000pt;}
.x4_c00431{left:603.104000pt;}
.x5_c00431{left:619.426667pt;}
}





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

.ir_c00432:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00432;src:url('chunks/assets/font_ec66d990dc6c66d05ec4a5d8.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_2e2e0f99e7f37c51baea62dd.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_b0e4e4c1564b15e5bc0253cf.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_55513cb52f36d65a5393edff.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_401bc530cfaacc29f8245717.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00432;src:url('chunks/assets/font_26e80b451f891fddb3b4ebc6.woff2')format("woff");}.ff6_c00432{font-family:ff6_c00432;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_c00432;src:url('chunks/assets/font_0637be85ee80954aa0bb152b.woff2')format("woff");}.ff7_c00432{font-family:ff7_c00432;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.lsc_c00432{letter-spacing:-1.440000px;}
.ls12_c00432{letter-spacing:-1.416000px;}
.ls13_c00432{letter-spacing:-0.918000px;}
.lsd_c00432{letter-spacing:-0.720000px;}
.lsf_c00432{letter-spacing:-0.532800px;}
.ls18_c00432{letter-spacing:-0.466800px;}
.ls17_c00432{letter-spacing:-0.241800px;}
.lsa_c00432{letter-spacing:0.000000px;}
.lse_c00432{letter-spacing:0.020400px;}
.ls11_c00432{letter-spacing:0.022800px;}
.ls8_c00432{letter-spacing:0.048960px;}
.lsb_c00432{letter-spacing:0.072000px;}
.ls3_c00432{letter-spacing:0.120000px;}
.ls15_c00432{letter-spacing:0.313800px;}
.ls5_c00432{letter-spacing:0.486720px;}
.ls0_c00432{letter-spacing:0.504000px;}
.ls10_c00432{letter-spacing:0.507000px;}
.ls7_c00432{letter-spacing:0.518400px;}
.ls16_c00432{letter-spacing:0.521400px;}
.ls14_c00432{letter-spacing:0.576000px;}
.ls1_c00432{letter-spacing:0.720000px;}
.ls6_c00432{letter-spacing:0.728640px;}
.ls9_c00432{letter-spacing:0.840000px;}
.ls2_c00432{letter-spacing:3.600000px;}
.ls4_c00432{letter-spacing:5.040000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00432{word-spacing:-60.480000px;}
.ws1_c00432{word-spacing:-18.072000px;}
.ws0_c00432{word-spacing:-18.000000px;}
.ws9_c00432{word-spacing:-15.641400px;}
.ws4_c00432{word-spacing:-15.627000px;}
.ws8_c00432{word-spacing:-15.433800px;}
.ws2_c00432{word-spacing:-15.140400px;}
.ws3_c00432{word-spacing:-15.120000px;}
.wsa_c00432{word-spacing:-14.878200px;}
.wsb_c00432{word-spacing:-14.653200px;}
.ws7_c00432{word-spacing:-14.202000px;}
.ws5_c00432{word-spacing:-13.704000px;}
.wsc_c00432{word-spacing:0.000000px;}
._5_c00432{margin-left:-3.048000px;}
._1_c00432{margin-left:-1.440000px;}
._2_c00432{width:1.512000px;}
._4_c00432{width:2.544000px;}
._a_c00432{width:3.960000px;}
._9_c00432{width:4.980000px;}
._b_c00432{width:6.000000px;}
._c_c00432{width:7.032000px;}
._6_c00432{width:8.496000px;}
._8_c00432{width:9.504000px;}
._7_c00432{width:10.752000px;}
._e_c00432{width:11.964000px;}
._d_c00432{width:13.452000px;}
._f_c00432{width:15.072000px;}
._10_c00432{width:16.200000px;}
._12_c00432{width:18.723001px;}
._11_c00432{width:19.824000px;}
._3_c00432{width:21.792000px;}
._0_c00432{width:22.968000px;}
.fc0_c00432{color:rgb(0,0,0);}
.fs3_c00432{font-size:38.880000px;}
.fs1_c00432{font-size:47.520000px;}
.fs2_c00432{font-size:60.480000px;}
.fs0_c00432{font-size:72.000000px;}
.y0_c00432{bottom:0.000000px;}
.y3_c00432{bottom:57.996000px;}
.y2_c00432{bottom:78.876000px;}
.y2a_c00432{bottom:130.716000px;}
.y29_c00432{bottom:147.996000px;}
.y28_c00432{bottom:165.315000px;}
.y27_c00432{bottom:182.595000px;}
.y26_c00432{bottom:199.515000px;}
.y25_c00432{bottom:206.355000px;}
.y24_c00432{bottom:216.795000px;}
.y23_c00432{bottom:234.075000px;}
.y22_c00432{bottom:240.915000px;}
.y21_c00432{bottom:252.075000px;}
.y20_c00432{bottom:286.665000px;}
.y1f_c00432{bottom:317.625000px;}
.y1e_c00432{bottom:348.585000px;}
.y1c_c00432{bottom:379.545000px;}
.y1d_c00432{bottom:387.825000px;}
.y1b_c00432{bottom:410.910000px;}
.y1a_c00432{bottom:441.870000px;}
.y19_c00432{bottom:470.670000px;}
.y18_c00432{bottom:505.590000px;}
.y17_c00432{bottom:531.180000px;}
.y16_c00432{bottom:557.100000px;}
.y15_c00432{bottom:592.020000px;}
.y14_c00432{bottom:617.940000px;}
.y13_c00432{bottom:643.890000px;}
.y12_c00432{bottom:669.810000px;}
.y11_c00432{bottom:695.730000px;}
.y10_c00432{bottom:723.810000px;}
.yf_c00432{bottom:754.770000px;}
.ye_c00432{bottom:785.775000px;}
.yd_c00432{bottom:817.095000px;}
.yc_c00432{bottom:848.055000px;}
.ya_c00432{bottom:879.015000px;}
.yb_c00432{bottom:887.325000px;}
.y9_c00432{bottom:910.005000px;}
.y8_c00432{bottom:941.325000px;}
.y7_c00432{bottom:972.285000px;}
.y6_c00432{bottom:1003.245000px;}
.y5_c00432{bottom:1034.250000px;}
.y4_c00432{bottom:1065.570000px;}
.y1_c00432{bottom:1117.770000px;}
.h9_c00432{height:34.855313px;}
.h8_c00432{height:38.158594px;}
.h5_c00432{height:46.638281px;}
.ha_c00432{height:54.219375px;}
.h7_c00432{height:59.328281px;}
.h6_c00432{height:59.357813px;}
.h1_c00432{height:64.546875px;}
.h2_c00432{height:70.664062px;}
.h3_c00432{height:72.562500px;}
.h4_c00432{height:1187.995500px;}
.h0_c00432{height:1188.000000px;}
.w1_c00432{width:917.997000px;}
.w0_c00432{width:918.000000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:127.476000px;}
.x9_c00432{left:142.596000px;}
.x3_c00432{left:169.995000px;}
.x4_c00432{left:238.752000px;}
.x5_c00432{left:257.145000px;}
.x8_c00432{left:343.590000px;}
.x2_c00432{left:445.500000px;}
.x6_c00432{left:601.767000px;}
.x7_c00432{left:620.130000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.lsc_c00432{letter-spacing:-1.280000pt;}
.ls12_c00432{letter-spacing:-1.258667pt;}
.ls13_c00432{letter-spacing:-0.816000pt;}
.lsd_c00432{letter-spacing:-0.640000pt;}
.lsf_c00432{letter-spacing:-0.473600pt;}
.ls18_c00432{letter-spacing:-0.414933pt;}
.ls17_c00432{letter-spacing:-0.214933pt;}
.lsa_c00432{letter-spacing:0.000000pt;}
.lse_c00432{letter-spacing:0.018133pt;}
.ls11_c00432{letter-spacing:0.020267pt;}
.ls8_c00432{letter-spacing:0.043520pt;}
.lsb_c00432{letter-spacing:0.064000pt;}
.ls3_c00432{letter-spacing:0.106667pt;}
.ls15_c00432{letter-spacing:0.278933pt;}
.ls5_c00432{letter-spacing:0.432640pt;}
.ls0_c00432{letter-spacing:0.448000pt;}
.ls10_c00432{letter-spacing:0.450667pt;}
.ls7_c00432{letter-spacing:0.460800pt;}
.ls16_c00432{letter-spacing:0.463467pt;}
.ls14_c00432{letter-spacing:0.512000pt;}
.ls1_c00432{letter-spacing:0.640000pt;}
.ls6_c00432{letter-spacing:0.647680pt;}
.ls9_c00432{letter-spacing:0.746667pt;}
.ls2_c00432{letter-spacing:3.200000pt;}
.ls4_c00432{letter-spacing:4.480000pt;}
.ws6_c00432{word-spacing:-53.760000pt;}
.ws1_c00432{word-spacing:-16.064000pt;}
.ws0_c00432{word-spacing:-16.000000pt;}
.ws9_c00432{word-spacing:-13.903467pt;}
.ws4_c00432{word-spacing:-13.890667pt;}
.ws8_c00432{word-spacing:-13.718933pt;}
.ws2_c00432{word-spacing:-13.458133pt;}
.ws3_c00432{word-spacing:-13.440000pt;}
.wsa_c00432{word-spacing:-13.225067pt;}
.wsb_c00432{word-spacing:-13.025067pt;}
.ws7_c00432{word-spacing:-12.624000pt;}
.ws5_c00432{word-spacing:-12.181333pt;}
.wsc_c00432{word-spacing:0.000000pt;}
._5_c00432{margin-left:-2.709333pt;}
._1_c00432{margin-left:-1.280000pt;}
._2_c00432{width:1.344000pt;}
._4_c00432{width:2.261333pt;}
._a_c00432{width:3.520000pt;}
._9_c00432{width:4.426667pt;}
._b_c00432{width:5.333333pt;}
._c_c00432{width:6.250667pt;}
._6_c00432{width:7.552000pt;}
._8_c00432{width:8.448000pt;}
._7_c00432{width:9.557333pt;}
._e_c00432{width:10.634667pt;}
._d_c00432{width:11.957333pt;}
._f_c00432{width:13.397333pt;}
._10_c00432{width:14.400000pt;}
._12_c00432{width:16.642668pt;}
._11_c00432{width:17.621333pt;}
._3_c00432{width:19.370667pt;}
._0_c00432{width:20.416000pt;}
.fs3_c00432{font-size:34.560000pt;}
.fs1_c00432{font-size:42.240000pt;}
.fs2_c00432{font-size:53.760000pt;}
.fs0_c00432{font-size:64.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.y3_c00432{bottom:51.552000pt;}
.y2_c00432{bottom:70.112000pt;}
.y2a_c00432{bottom:116.192000pt;}
.y29_c00432{bottom:131.552000pt;}
.y28_c00432{bottom:146.946667pt;}
.y27_c00432{bottom:162.306667pt;}
.y26_c00432{bottom:177.346667pt;}
.y25_c00432{bottom:183.426667pt;}
.y24_c00432{bottom:192.706667pt;}
.y23_c00432{bottom:208.066667pt;}
.y22_c00432{bottom:214.146667pt;}
.y21_c00432{bottom:224.066667pt;}
.y20_c00432{bottom:254.813333pt;}
.y1f_c00432{bottom:282.333333pt;}
.y1e_c00432{bottom:309.853333pt;}
.y1c_c00432{bottom:337.373333pt;}
.y1d_c00432{bottom:344.733333pt;}
.y1b_c00432{bottom:365.253333pt;}
.y1a_c00432{bottom:392.773333pt;}
.y19_c00432{bottom:418.373333pt;}
.y18_c00432{bottom:449.413333pt;}
.y17_c00432{bottom:472.160000pt;}
.y16_c00432{bottom:495.200000pt;}
.y15_c00432{bottom:526.240000pt;}
.y14_c00432{bottom:549.280000pt;}
.y13_c00432{bottom:572.346667pt;}
.y12_c00432{bottom:595.386667pt;}
.y11_c00432{bottom:618.426667pt;}
.y10_c00432{bottom:643.386667pt;}
.yf_c00432{bottom:670.906667pt;}
.ye_c00432{bottom:698.466667pt;}
.yd_c00432{bottom:726.306667pt;}
.yc_c00432{bottom:753.826667pt;}
.ya_c00432{bottom:781.346667pt;}
.yb_c00432{bottom:788.733333pt;}
.y9_c00432{bottom:808.893333pt;}
.y8_c00432{bottom:836.733333pt;}
.y7_c00432{bottom:864.253333pt;}
.y6_c00432{bottom:891.773333pt;}
.y5_c00432{bottom:919.333333pt;}
.y4_c00432{bottom:947.173333pt;}
.y1_c00432{bottom:993.573333pt;}
.h9_c00432{height:30.982500pt;}
.h8_c00432{height:33.918750pt;}
.h5_c00432{height:41.456250pt;}
.ha_c00432{height:48.195000pt;}
.h7_c00432{height:52.736250pt;}
.h6_c00432{height:52.762500pt;}
.h1_c00432{height:57.375000pt;}
.h2_c00432{height:62.812500pt;}
.h3_c00432{height:64.500000pt;}
.h4_c00432{height:1055.996000pt;}
.h0_c00432{height:1056.000000pt;}
.w1_c00432{width:815.997333pt;}
.w0_c00432{width:816.000000pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:113.312000pt;}
.x9_c00432{left:126.752000pt;}
.x3_c00432{left:151.106667pt;}
.x4_c00432{left:212.224000pt;}
.x5_c00432{left:228.573333pt;}
.x8_c00432{left:305.413333pt;}
.x2_c00432{left:396.000000pt;}
.x6_c00432{left:534.904000pt;}
.x7_c00432{left:551.226667pt;}
}





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

.ir_c00433:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00433;src:url('chunks/assets/font_00dd189aad7f431b417a5dc6.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_379c18c703bb11e976654dcc.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_7e6ee6a3f85c4e38d77dc66f.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_58b0ae69a79c87965dc80e2a.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;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_c00433;src:url('chunks/assets/font_57b48f7a9b2518c166ebbde7.woff2')format("woff");}.ff5_c00433{font-family:ff5_c00433;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00433;src:url('chunks/assets/font_8401f1dacd03a4fadb713387.woff2')format("woff");}.ff6_c00433{font-family:ff6_c00433;line-height:1.117188;font-style:normal;font-weight: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_c00433;src:url('chunks/assets/font_000f4e149501b81f6e98d1ef.woff2')format("woff");}.ff7_c00433{font-family:ff7_c00433;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.lsf_c00433{letter-spacing:-0.936000px;}
.ls8_c00433{letter-spacing:-0.360000px;}
.lsa_c00433{letter-spacing:-0.288000px;}
.lsb_c00433{letter-spacing:-0.144000px;}
.ls7_c00433{letter-spacing:0.000000px;}
.lse_c00433{letter-spacing:0.072000px;}
.lsc_c00433{letter-spacing:0.288000px;}
.ls6_c00433{letter-spacing:0.504000px;}
.lsd_c00433{letter-spacing:0.576000px;}
.ls9_c00433{letter-spacing:0.648000px;}
.ls2_c00433{letter-spacing:0.720000px;}
.ls4_c00433{letter-spacing:2.160000px;}
.ls5_c00433{letter-spacing:3.600000px;}
.ls1_c00433{letter-spacing:13.680000px;}
.ls0_c00433{letter-spacing:13.692000px;}
.ls3_c00433{letter-spacing:16.560000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00433{word-spacing:-18.648000px;}
.ws5_c00433{word-spacing:-18.072000px;}
.ws0_c00433{word-spacing:-18.000000px;}
.ws4_c00433{word-spacing:-17.856000px;}
.ws3_c00433{word-spacing:-17.712000px;}
.ws1_c00433{word-spacing:-17.640000px;}
.ws6_c00433{word-spacing:-15.120000px;}
.ws7_c00433{word-spacing:0.000000px;}
._4_c00433{margin-left:-2.748000px;}
._1_c00433{margin-left:-1.584000px;}
._0_c00433{width:1.440000px;}
._5_c00433{width:2.484024px;}
._6_c00433{width:3.504000px;}
._7_c00433{width:4.824000px;}
._8_c00433{width:6.552000px;}
._3_c00433{width:12.024000px;}
._2_c00433{width:13.968000px;}
._a_c00433{width:15.000000px;}
._9_c00433{width:16.056000px;}
._c_c00433{width:22.752000px;}
._b_c00433{width:24.336000px;}
._d_c00433{width:25.776000px;}
._10_c00433{width:30.096120px;}
._f_c00433{width:31.223976px;}
._e_c00433{width:32.375976px;}
.fc0_c00433{color:rgb(0,0,0);}
.fs2_c00433{font-size:38.880000px;}
.fs1_c00433{font-size:47.520000px;}
.fs3_c00433{font-size:60.480000px;}
.fs0_c00433{font-size:72.000000px;}
.y0_c00433{bottom:0.000000px;}
.y3_c00433{bottom:57.996000px;}
.y2_c00433{bottom:78.876000px;}
.y28_c00433{bottom:130.716000px;}
.y27_c00433{bottom:147.996000px;}
.y26_c00433{bottom:165.315000px;}
.y25_c00433{bottom:182.595000px;}
.y24_c00433{bottom:189.435000px;}
.y23_c00433{bottom:199.515000px;}
.y22_c00433{bottom:216.795000px;}
.y21_c00433{bottom:234.075000px;}
.y20_c00433{bottom:240.915000px;}
.y1f_c00433{bottom:252.075000px;}
.y1e_c00433{bottom:284.145000px;}
.y1d_c00433{bottom:315.105000px;}
.y1c_c00433{bottom:355.065000px;}
.y1b_c00433{bottom:395.070000px;}
.y1a_c00433{bottom:426.390000px;}
.y19_c00433{bottom:457.350000px;}
.y18_c00433{bottom:488.310000px;}
.y17_c00433{bottom:519.300000px;}
.y16_c00433{bottom:550.620000px;}
.y15_c00433{bottom:581.580000px;}
.y14_c00433{bottom:612.540000px;}
.y13_c00433{bottom:643.530000px;}
.y12_c00433{bottom:674.850000px;}
.y11_c00433{bottom:705.810000px;}
.yf_c00433{bottom:736.770000px;}
.y10_c00433{bottom:745.050000px;}
.ye_c00433{bottom:767.775000px;}
.yd_c00433{bottom:808.095000px;}
.yc_c00433{bottom:839.055000px;}
.ya_c00433{bottom:879.015000px;}
.yb_c00433{bottom:887.325000px;}
.y9_c00433{bottom:910.005000px;}
.y8_c00433{bottom:941.325000px;}
.y7_c00433{bottom:972.285000px;}
.y6_c00433{bottom:1003.245000px;}
.y5_c00433{bottom:1034.250000px;}
.y4_c00433{bottom:1065.570000px;}
.y1_c00433{bottom:1117.770000px;}
.h6_c00433{height:34.855313px;}
.h4_c00433{height:46.638281px;}
.h8_c00433{height:54.219375px;}
.h7_c00433{height:59.357813px;}
.h1_c00433{height:64.546875px;}
.h5_c00433{height:70.628906px;}
.h2_c00433{height:70.664062px;}
.h3_c00433{height:1187.995500px;}
.h0_c00433{height:1188.000000px;}
.w1_c00433{width:917.997000px;}
.w0_c00433{width:918.000000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:127.476000px;}
.x9_c00433{left:142.596000px;}
.x6_c00433{left:176.472000px;}
.x5_c00433{left:178.635000px;}
.x7_c00433{left:194.835000px;}
.x3_c00433{left:229.392000px;}
.x4_c00433{left:247.785000px;}
.x8_c00433{left:343.590000px;}
.x2_c00433{left:445.500000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.lsf_c00433{letter-spacing:-0.832000pt;}
.ls8_c00433{letter-spacing:-0.320000pt;}
.lsa_c00433{letter-spacing:-0.256000pt;}
.lsb_c00433{letter-spacing:-0.128000pt;}
.ls7_c00433{letter-spacing:0.000000pt;}
.lse_c00433{letter-spacing:0.064000pt;}
.lsc_c00433{letter-spacing:0.256000pt;}
.ls6_c00433{letter-spacing:0.448000pt;}
.lsd_c00433{letter-spacing:0.512000pt;}
.ls9_c00433{letter-spacing:0.576000pt;}
.ls2_c00433{letter-spacing:0.640000pt;}
.ls4_c00433{letter-spacing:1.920000pt;}
.ls5_c00433{letter-spacing:3.200000pt;}
.ls1_c00433{letter-spacing:12.160000pt;}
.ls0_c00433{letter-spacing:12.170667pt;}
.ls3_c00433{letter-spacing:14.720000pt;}
.ws2_c00433{word-spacing:-16.576000pt;}
.ws5_c00433{word-spacing:-16.064000pt;}
.ws0_c00433{word-spacing:-16.000000pt;}
.ws4_c00433{word-spacing:-15.872000pt;}
.ws3_c00433{word-spacing:-15.744000pt;}
.ws1_c00433{word-spacing:-15.680000pt;}
.ws6_c00433{word-spacing:-13.440000pt;}
.ws7_c00433{word-spacing:0.000000pt;}
._4_c00433{margin-left:-2.442667pt;}
._1_c00433{margin-left:-1.408000pt;}
._0_c00433{width:1.280000pt;}
._5_c00433{width:2.208021pt;}
._6_c00433{width:3.114667pt;}
._7_c00433{width:4.288000pt;}
._8_c00433{width:5.824000pt;}
._3_c00433{width:10.688000pt;}
._2_c00433{width:12.416000pt;}
._a_c00433{width:13.333333pt;}
._9_c00433{width:14.272000pt;}
._c_c00433{width:20.224000pt;}
._b_c00433{width:21.632000pt;}
._d_c00433{width:22.912000pt;}
._10_c00433{width:26.752107pt;}
._f_c00433{width:27.754645pt;}
._e_c00433{width:28.778645pt;}
.fs2_c00433{font-size:34.560000pt;}
.fs1_c00433{font-size:42.240000pt;}
.fs3_c00433{font-size:53.760000pt;}
.fs0_c00433{font-size:64.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y3_c00433{bottom:51.552000pt;}
.y2_c00433{bottom:70.112000pt;}
.y28_c00433{bottom:116.192000pt;}
.y27_c00433{bottom:131.552000pt;}
.y26_c00433{bottom:146.946667pt;}
.y25_c00433{bottom:162.306667pt;}
.y24_c00433{bottom:168.386667pt;}
.y23_c00433{bottom:177.346667pt;}
.y22_c00433{bottom:192.706667pt;}
.y21_c00433{bottom:208.066667pt;}
.y20_c00433{bottom:214.146667pt;}
.y1f_c00433{bottom:224.066667pt;}
.y1e_c00433{bottom:252.573333pt;}
.y1d_c00433{bottom:280.093333pt;}
.y1c_c00433{bottom:315.613333pt;}
.y1b_c00433{bottom:351.173333pt;}
.y1a_c00433{bottom:379.013333pt;}
.y19_c00433{bottom:406.533333pt;}
.y18_c00433{bottom:434.053333pt;}
.y17_c00433{bottom:461.600000pt;}
.y16_c00433{bottom:489.440000pt;}
.y15_c00433{bottom:516.960000pt;}
.y14_c00433{bottom:544.480000pt;}
.y13_c00433{bottom:572.026667pt;}
.y12_c00433{bottom:599.866667pt;}
.y11_c00433{bottom:627.386667pt;}
.yf_c00433{bottom:654.906667pt;}
.y10_c00433{bottom:662.266667pt;}
.ye_c00433{bottom:682.466667pt;}
.yd_c00433{bottom:718.306667pt;}
.yc_c00433{bottom:745.826667pt;}
.ya_c00433{bottom:781.346667pt;}
.yb_c00433{bottom:788.733333pt;}
.y9_c00433{bottom:808.893333pt;}
.y8_c00433{bottom:836.733333pt;}
.y7_c00433{bottom:864.253333pt;}
.y6_c00433{bottom:891.773333pt;}
.y5_c00433{bottom:919.333333pt;}
.y4_c00433{bottom:947.173333pt;}
.y1_c00433{bottom:993.573333pt;}
.h6_c00433{height:30.982500pt;}
.h4_c00433{height:41.456250pt;}
.h8_c00433{height:48.195000pt;}
.h7_c00433{height:52.762500pt;}
.h1_c00433{height:57.375000pt;}
.h5_c00433{height:62.781250pt;}
.h2_c00433{height:62.812500pt;}
.h3_c00433{height:1055.996000pt;}
.h0_c00433{height:1056.000000pt;}
.w1_c00433{width:815.997333pt;}
.w0_c00433{width:816.000000pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:113.312000pt;}
.x9_c00433{left:126.752000pt;}
.x6_c00433{left:156.864000pt;}
.x5_c00433{left:158.786667pt;}
.x7_c00433{left:173.186667pt;}
.x3_c00433{left:203.904000pt;}
.x4_c00433{left:220.253333pt;}
.x8_c00433{left:305.413333pt;}
.x2_c00433{left:396.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_c00434 {
    display:none;
  }
  .loading-indicator_c00434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00434 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00434 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00434" -> "#page-container .classname_c00434")
 */
.pf_c00434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00434 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00434 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00434 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00434 {overflow:visible;}
  }
}
.c_c00434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00434 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00434:after { /* webkit #35443 */
  content: '';
}
.t_c00434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00434 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00434 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00434 { /* info for Javascript */
  display:none;
}
.l_c00434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00434:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_fb256ec6a696c6426ad527ff.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_3576151fc1d5503435171d8b.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_d59ffa110125b2e06dbf62ab.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_8e77f1e947c79871ae334808.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;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_c00434;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff5_c00434{font-family:ff5_c00434;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00434;src:url('chunks/assets/font_a3176f9fe69db60b1273d448.woff2')format("woff");}.ff6_c00434{font-family:ff6_c00434;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls6_c00434{letter-spacing:-0.648000px;}
.ls8_c00434{letter-spacing:-0.360000px;}
.ls9_c00434{letter-spacing:-0.288000px;}
.ls5_c00434{letter-spacing:0.000000px;}
.ls7_c00434{letter-spacing:0.072000px;}
.ls3_c00434{letter-spacing:0.504000px;}
.ls1_c00434{letter-spacing:0.576000px;}
.ls2_c00434{letter-spacing:0.720000px;}
.ls4_c00434{letter-spacing:1.152000px;}
.ls0_c00434{letter-spacing:6.480000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00434{word-spacing:-72.000000px;}
.ws2_c00434{word-spacing:-18.072000px;}
.ws0_c00434{word-spacing:-18.000000px;}
.ws4_c00434{word-spacing:-17.712000px;}
.ws3_c00434{word-spacing:-17.640000px;}
.ws5_c00434{word-spacing:0.000000px;}
._8_c00434{margin-left:-3.408048px;}
._0_c00434{margin-left:-1.800000px;}
._1_c00434{width:1.080000px;}
._5_c00434{width:2.952000px;}
._6_c00434{width:3.960000px;}
._7_c00434{width:4.992048px;}
._b_c00434{width:6.335856px;}
._9_c00434{width:7.344000px;}
._a_c00434{width:8.807976px;}
._3_c00434{width:9.864000px;}
._2_c00434{width:11.376000px;}
._4_c00434{width:12.384000px;}
._c_c00434{width:14.184000px;}
._d_c00434{width:15.312096px;}
._f_c00434{width:20.148120px;}
._e_c00434{width:21.168000px;}
._10_c00434{width:22.979736px;}
._12_c00434{width:25.920000px;}
._11_c00434{width:27.144000px;}
._13_c00434{width:28.740024px;}
.fc0_c00434{color:rgb(0,0,0);}
.fs2_c00434{font-size:38.880000px;}
.fs1_c00434{font-size:47.520000px;}
.fs3_c00434{font-size:60.480000px;}
.fs0_c00434{font-size:72.000000px;}
.y0_c00434{bottom:0.000000px;}
.y3_c00434{bottom:57.996000px;}
.y2_c00434{bottom:78.876000px;}
.y23_c00434{bottom:130.716000px;}
.y22_c00434{bottom:147.996000px;}
.y21_c00434{bottom:165.315000px;}
.y20_c00434{bottom:182.595000px;}
.y1f_c00434{bottom:199.515000px;}
.y1e_c00434{bottom:206.355000px;}
.y1d_c00434{bottom:217.515000px;}
.y1c_c00434{bottom:333.105000px;}
.y1b_c00434{bottom:364.065000px;}
.y1a_c00434{bottom:395.070000px;}
.y19_c00434{bottom:426.390000px;}
.y18_c00434{bottom:457.350000px;}
.y17_c00434{bottom:488.310000px;}
.y16_c00434{bottom:519.300000px;}
.y15_c00434{bottom:559.620000px;}
.y14_c00434{bottom:590.580000px;}
.y13_c00434{bottom:621.540000px;}
.y12_c00434{bottom:652.530000px;}
.y11_c00434{bottom:683.850000px;}
.y10_c00434{bottom:714.810000px;}
.yf_c00434{bottom:745.770000px;}
.ye_c00434{bottom:776.775000px;}
.yd_c00434{bottom:808.095000px;}
.yc_c00434{bottom:848.055000px;}
.yb_c00434{bottom:879.015000px;}
.ya_c00434{bottom:910.005000px;}
.y9_c00434{bottom:941.325000px;}
.y8_c00434{bottom:972.285000px;}
.y7_c00434{bottom:1003.245000px;}
.y6_c00434{bottom:1034.250000px;}
.y4_c00434{bottom:1065.570000px;}
.y5_c00434{bottom:1073.850000px;}
.y1_c00434{bottom:1117.770000px;}
.h5_c00434{height:34.855313px;}
.h4_c00434{height:46.638281px;}
.h6_c00434{height:54.219375px;}
.h1_c00434{height:64.546875px;}
.h2_c00434{height:70.664062px;}
.h3_c00434{height:1187.995500px;}
.h0_c00434{height:1188.000000px;}
.w1_c00434{width:917.997000px;}
.w0_c00434{width:918.000000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:127.476000px;}
.x6_c00434{left:142.596000px;}
.x3_c00434{left:178.632000px;}
.x4_c00434{left:196.995000px;}
.x5_c00434{left:343.590000px;}
.x2_c00434{left:445.500000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls6_c00434{letter-spacing:-0.576000pt;}
.ls8_c00434{letter-spacing:-0.320000pt;}
.ls9_c00434{letter-spacing:-0.256000pt;}
.ls5_c00434{letter-spacing:0.000000pt;}
.ls7_c00434{letter-spacing:0.064000pt;}
.ls3_c00434{letter-spacing:0.448000pt;}
.ls1_c00434{letter-spacing:0.512000pt;}
.ls2_c00434{letter-spacing:0.640000pt;}
.ls4_c00434{letter-spacing:1.024000pt;}
.ls0_c00434{letter-spacing:5.760000pt;}
.ws1_c00434{word-spacing:-64.000000pt;}
.ws2_c00434{word-spacing:-16.064000pt;}
.ws0_c00434{word-spacing:-16.000000pt;}
.ws4_c00434{word-spacing:-15.744000pt;}
.ws3_c00434{word-spacing:-15.680000pt;}
.ws5_c00434{word-spacing:0.000000pt;}
._8_c00434{margin-left:-3.029376pt;}
._0_c00434{margin-left:-1.600000pt;}
._1_c00434{width:0.960000pt;}
._5_c00434{width:2.624000pt;}
._6_c00434{width:3.520000pt;}
._7_c00434{width:4.437376pt;}
._b_c00434{width:5.631872pt;}
._9_c00434{width:6.528000pt;}
._a_c00434{width:7.829312pt;}
._3_c00434{width:8.768000pt;}
._2_c00434{width:10.112000pt;}
._4_c00434{width:11.008000pt;}
._c_c00434{width:12.608000pt;}
._d_c00434{width:13.610752pt;}
._f_c00434{width:17.909440pt;}
._e_c00434{width:18.816000pt;}
._10_c00434{width:20.426432pt;}
._12_c00434{width:23.040000pt;}
._11_c00434{width:24.128000pt;}
._13_c00434{width:25.546688pt;}
.fs2_c00434{font-size:34.560000pt;}
.fs1_c00434{font-size:42.240000pt;}
.fs3_c00434{font-size:53.760000pt;}
.fs0_c00434{font-size:64.000000pt;}
.y0_c00434{bottom:0.000000pt;}
.y3_c00434{bottom:51.552000pt;}
.y2_c00434{bottom:70.112000pt;}
.y23_c00434{bottom:116.192000pt;}
.y22_c00434{bottom:131.552000pt;}
.y21_c00434{bottom:146.946667pt;}
.y20_c00434{bottom:162.306667pt;}
.y1f_c00434{bottom:177.346667pt;}
.y1e_c00434{bottom:183.426667pt;}
.y1d_c00434{bottom:193.346667pt;}
.y1c_c00434{bottom:296.093333pt;}
.y1b_c00434{bottom:323.613333pt;}
.y1a_c00434{bottom:351.173333pt;}
.y19_c00434{bottom:379.013333pt;}
.y18_c00434{bottom:406.533333pt;}
.y17_c00434{bottom:434.053333pt;}
.y16_c00434{bottom:461.600000pt;}
.y15_c00434{bottom:497.440000pt;}
.y14_c00434{bottom:524.960000pt;}
.y13_c00434{bottom:552.480000pt;}
.y12_c00434{bottom:580.026667pt;}
.y11_c00434{bottom:607.866667pt;}
.y10_c00434{bottom:635.386667pt;}
.yf_c00434{bottom:662.906667pt;}
.ye_c00434{bottom:690.466667pt;}
.yd_c00434{bottom:718.306667pt;}
.yc_c00434{bottom:753.826667pt;}
.yb_c00434{bottom:781.346667pt;}
.ya_c00434{bottom:808.893333pt;}
.y9_c00434{bottom:836.733333pt;}
.y8_c00434{bottom:864.253333pt;}
.y7_c00434{bottom:891.773333pt;}
.y6_c00434{bottom:919.333333pt;}
.y4_c00434{bottom:947.173333pt;}
.y5_c00434{bottom:954.533333pt;}
.y1_c00434{bottom:993.573333pt;}
.h5_c00434{height:30.982500pt;}
.h4_c00434{height:41.456250pt;}
.h6_c00434{height:48.195000pt;}
.h1_c00434{height:57.375000pt;}
.h2_c00434{height:62.812500pt;}
.h3_c00434{height:1055.996000pt;}
.h0_c00434{height:1056.000000pt;}
.w1_c00434{width:815.997333pt;}
.w0_c00434{width:816.000000pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:113.312000pt;}
.x6_c00434{left:126.752000pt;}
.x3_c00434{left:158.784000pt;}
.x4_c00434{left:175.106667pt;}
.x5_c00434{left:305.413333pt;}
.x2_c00434{left:396.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_c00435 {
    display:none;
  }
  .loading-indicator_c00435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00435 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00435 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00435" -> "#page-container .classname_c00435")
 */
.pf_c00435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00435 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00435 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00435 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00435 {overflow:visible;}
  }
}
.c_c00435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00435 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00435:after { /* webkit #35443 */
  content: '';
}
.t_c00435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00435 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00435 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00435 { /* info for Javascript */
  display:none;
}
.l_c00435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00435:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_0cba77a1f5526f0a7aaa9d63.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00435;src:url('chunks/assets/font_b477c94c32eda4cf45f42725.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_5bbff5c78183b704026796a4.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;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_c00435;src:url('chunks/assets/font_5a995e84ecc16afcc3719053.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00435;src:url('chunks/assets/font_2a625d11eccbf6ae6b6bb943.woff2')format("woff");}.ff5_c00435{font-family:ff5_c00435;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00435;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00435{font-family:ff6_c00435;line-height:1.311035;font-style:normal;font-weight: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_c00435;src:url('chunks/assets/font_93d894d7120a62661e826072.woff2')format("woff");}.ff7_c00435{font-family:ff7_c00435;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.lsa_c00435{letter-spacing:-1.416000px;}
.lse_c00435{letter-spacing:-0.912000px;}
.lsb_c00435{letter-spacing:-0.720000px;}
.lsd_c00435{letter-spacing:-0.241800px;}
.ls6_c00435{letter-spacing:0.000000px;}
.ls9_c00435{letter-spacing:0.020400px;}
.ls8_c00435{letter-spacing:0.486600px;}
.ls7_c00435{letter-spacing:0.504000px;}
.ls3_c00435{letter-spacing:0.524160px;}
.lsc_c00435{letter-spacing:0.529800px;}
.ls0_c00435{letter-spacing:0.720000px;}
.ls2_c00435{letter-spacing:0.739938px;}
.ls4_c00435{letter-spacing:0.740160px;}
.ls1_c00435{letter-spacing:0.740416px;}
.ls5_c00435{letter-spacing:2.304000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:-18.504000px;}
.ws1_c00435{word-spacing:-18.000000px;}
.ws6_c00435{word-spacing:-15.649800px;}
.ws2_c00435{word-spacing:-15.606600px;}
.ws3_c00435{word-spacing:-15.140400px;}
.ws4_c00435{word-spacing:-15.120000px;}
.ws7_c00435{word-spacing:-14.878200px;}
.ws5_c00435{word-spacing:-12.600000px;}
.ws8_c00435{word-spacing:0.000000px;}
._5_c00435{margin-left:-11.443174px;}
._2_c00435{margin-left:-2.736000px;}
._3_c00435{margin-left:-1.008000px;}
._0_c00435{width:1.800000px;}
._1_c00435{width:2.808000px;}
._4_c00435{width:4.104000px;}
._f_c00435{width:5.892000px;}
._e_c00435{width:6.984000px;}
._a_c00435{width:9.010794px;}
._9_c00435{width:10.302002px;}
._b_c00435{width:11.570993px;}
._d_c00435{width:12.919801px;}
._c_c00435{width:14.071801px;}
._8_c00435{width:21.328320px;}
._6_c00435{width:188.099937px;}
._7_c00435{width:189.359977px;}
.fc0_c00435{color:rgb(0,0,0);}
.fs3_c00435{font-size:38.880000px;}
.fs1_c00435{font-size:47.520000px;}
.fs2_c00435{font-size:60.480000px;}
.fs0_c00435{font-size:72.000000px;}
.y0_c00435{bottom:0.000000px;}
.y3_c00435{bottom:57.996000px;}
.y2_c00435{bottom:78.876000px;}
.y28_c00435{bottom:130.716000px;}
.y27_c00435{bottom:147.996000px;}
.y26_c00435{bottom:165.315000px;}
.y25_c00435{bottom:172.155000px;}
.y24_c00435{bottom:182.955000px;}
.y23_c00435{bottom:211.755000px;}
.y22_c00435{bottom:242.715000px;}
.y21_c00435{bottom:273.705000px;}
.y20_c00435{bottom:311.505000px;}
.y1f_c00435{bottom:337.425000px;}
.y1e_c00435{bottom:363.345000px;}
.y1d_c00435{bottom:388.905000px;}
.y1c_c00435{bottom:414.870000px;}
.y1b_c00435{bottom:440.790000px;}
.y1a_c00435{bottom:475.710000px;}
.y19_c00435{bottom:501.630000px;}
.y18_c00435{bottom:527.580000px;}
.y17_c00435{bottom:553.500000px;}
.y16_c00435{bottom:579.420000px;}
.y15_c00435{bottom:604.980000px;}
.y14_c00435{bottom:630.900000px;}
.y13_c00435{bottom:656.850000px;}
.y12_c00435{bottom:682.770000px;}
.y11_c00435{bottom:708.690000px;}
.y10_c00435{bottom:734.610000px;}
.yf_c00435{bottom:760.530000px;}
.ye_c00435{bottom:786.495000px;}
.yd_c00435{bottom:812.055000px;}
.yc_c00435{bottom:837.975000px;}
.yb_c00435{bottom:863.895000px;}
.ya_c00435{bottom:892.005000px;}
.y9_c00435{bottom:923.325000px;}
.y8_c00435{bottom:963.285000px;}
.y7_c00435{bottom:1003.245000px;}
.y5_c00435{bottom:1034.250000px;}
.y6_c00435{bottom:1042.530000px;}
.y4_c00435{bottom:1065.570000px;}
.y1_c00435{bottom:1117.770000px;}
.h9_c00435{height:34.855313px;}
.h4_c00435{height:46.638281px;}
.h8_c00435{height:59.328281px;}
.h6_c00435{height:59.357813px;}
.h7_c00435{height:60.952500px;}
.h1_c00435{height:64.546875px;}
.h5_c00435{height:70.628906px;}
.h2_c00435{height:70.664062px;}
.h3_c00435{height:1187.995500px;}
.h0_c00435{height:1188.000000px;}
.w1_c00435{width:917.997000px;}
.w0_c00435{width:918.000000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:127.476000px;}
.x8_c00435{left:142.596000px;}
.x6_c00435{left:169.995000px;}
.x5_c00435{left:180.795000px;}
.x7_c00435{left:343.590000px;}
.x2_c00435{left:445.500000px;}
.x3_c00435{left:680.652000px;}
.x4_c00435{left:699.015000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.lsa_c00435{letter-spacing:-1.258667pt;}
.lse_c00435{letter-spacing:-0.810667pt;}
.lsb_c00435{letter-spacing:-0.640000pt;}
.lsd_c00435{letter-spacing:-0.214933pt;}
.ls6_c00435{letter-spacing:0.000000pt;}
.ls9_c00435{letter-spacing:0.018133pt;}
.ls8_c00435{letter-spacing:0.432533pt;}
.ls7_c00435{letter-spacing:0.448000pt;}
.ls3_c00435{letter-spacing:0.465920pt;}
.lsc_c00435{letter-spacing:0.470933pt;}
.ls0_c00435{letter-spacing:0.640000pt;}
.ls2_c00435{letter-spacing:0.657723pt;}
.ls4_c00435{letter-spacing:0.657920pt;}
.ls1_c00435{letter-spacing:0.658148pt;}
.ls5_c00435{letter-spacing:2.048000pt;}
.ws0_c00435{word-spacing:-16.448000pt;}
.ws1_c00435{word-spacing:-16.000000pt;}
.ws6_c00435{word-spacing:-13.910933pt;}
.ws2_c00435{word-spacing:-13.872533pt;}
.ws3_c00435{word-spacing:-13.458133pt;}
.ws4_c00435{word-spacing:-13.440000pt;}
.ws7_c00435{word-spacing:-13.225067pt;}
.ws5_c00435{word-spacing:-11.200000pt;}
.ws8_c00435{word-spacing:0.000000pt;}
._5_c00435{margin-left:-10.171710pt;}
._2_c00435{margin-left:-2.432000pt;}
._3_c00435{margin-left:-0.896000pt;}
._0_c00435{width:1.600000pt;}
._1_c00435{width:2.496000pt;}
._4_c00435{width:3.648000pt;}
._f_c00435{width:5.237333pt;}
._e_c00435{width:6.208000pt;}
._a_c00435{width:8.009595pt;}
._9_c00435{width:9.157335pt;}
._b_c00435{width:10.285327pt;}
._d_c00435{width:11.484268pt;}
._c_c00435{width:12.508268pt;}
._8_c00435{width:18.958507pt;}
._6_c00435{width:167.199944pt;}
._7_c00435{width:168.319980pt;}
.fs3_c00435{font-size:34.560000pt;}
.fs1_c00435{font-size:42.240000pt;}
.fs2_c00435{font-size:53.760000pt;}
.fs0_c00435{font-size:64.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.y3_c00435{bottom:51.552000pt;}
.y2_c00435{bottom:70.112000pt;}
.y28_c00435{bottom:116.192000pt;}
.y27_c00435{bottom:131.552000pt;}
.y26_c00435{bottom:146.946667pt;}
.y25_c00435{bottom:153.026667pt;}
.y24_c00435{bottom:162.626667pt;}
.y23_c00435{bottom:188.226667pt;}
.y22_c00435{bottom:215.746667pt;}
.y21_c00435{bottom:243.293333pt;}
.y20_c00435{bottom:276.893333pt;}
.y1f_c00435{bottom:299.933333pt;}
.y1e_c00435{bottom:322.973333pt;}
.y1d_c00435{bottom:345.693333pt;}
.y1c_c00435{bottom:368.773333pt;}
.y1b_c00435{bottom:391.813333pt;}
.y1a_c00435{bottom:422.853333pt;}
.y19_c00435{bottom:445.893333pt;}
.y18_c00435{bottom:468.960000pt;}
.y17_c00435{bottom:492.000000pt;}
.y16_c00435{bottom:515.040000pt;}
.y15_c00435{bottom:537.760000pt;}
.y14_c00435{bottom:560.800000pt;}
.y13_c00435{bottom:583.866667pt;}
.y12_c00435{bottom:606.906667pt;}
.y11_c00435{bottom:629.946667pt;}
.y10_c00435{bottom:652.986667pt;}
.yf_c00435{bottom:676.026667pt;}
.ye_c00435{bottom:699.106667pt;}
.yd_c00435{bottom:721.826667pt;}
.yc_c00435{bottom:744.866667pt;}
.yb_c00435{bottom:767.906667pt;}
.ya_c00435{bottom:792.893333pt;}
.y9_c00435{bottom:820.733333pt;}
.y8_c00435{bottom:856.253333pt;}
.y7_c00435{bottom:891.773333pt;}
.y5_c00435{bottom:919.333333pt;}
.y6_c00435{bottom:926.693333pt;}
.y4_c00435{bottom:947.173333pt;}
.y1_c00435{bottom:993.573333pt;}
.h9_c00435{height:30.982500pt;}
.h4_c00435{height:41.456250pt;}
.h8_c00435{height:52.736250pt;}
.h6_c00435{height:52.762500pt;}
.h7_c00435{height:54.180000pt;}
.h1_c00435{height:57.375000pt;}
.h5_c00435{height:62.781250pt;}
.h2_c00435{height:62.812500pt;}
.h3_c00435{height:1055.996000pt;}
.h0_c00435{height:1056.000000pt;}
.w1_c00435{width:815.997333pt;}
.w0_c00435{width:816.000000pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:113.312000pt;}
.x8_c00435{left:126.752000pt;}
.x6_c00435{left:151.106667pt;}
.x5_c00435{left:160.706667pt;}
.x7_c00435{left:305.413333pt;}
.x2_c00435{left:396.000000pt;}
.x3_c00435{left:605.024000pt;}
.x4_c00435{left:621.346667pt;}
}





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

.ir_c00436:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00436;src:url('chunks/assets/font_a35ce97a45edc5f1aca76b4a.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_427e124dff98a18ec1aa070c.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_0f3049e88b54086dc6079930.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;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_c00436;src:url('chunks/assets/font_07901bc47205e73ce3a6755b.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00436;src:url('chunks/assets/font_05d244b521497e89f68c1ad2.woff2')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00436;src:url('chunks/assets/font_fa349004992b683e7317cc43.woff2')format("woff");}.ff6_c00436{font-family:ff6_c00436;line-height:1.104004;font-style:normal;font-weight: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_c00436;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00436{font-family:ff7_c00436;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls8_c00436{letter-spacing:-1.416000px;}
.ls7_c00436{letter-spacing:-0.720000px;}
.ls5_c00436{letter-spacing:0.000000px;}
.ls9_c00436{letter-spacing:0.022800px;}
.ls6_c00436{letter-spacing:0.291000px;}
.ls1_c00436{letter-spacing:0.486720px;}
.ls4_c00436{letter-spacing:0.719749px;}
.ls2_c00436{letter-spacing:0.720000px;}
.ls0_c00436{letter-spacing:6.480000px;}
.ls3_c00436{letter-spacing:170.820000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:-18.000000px;}
.ws2_c00436{word-spacing:-15.411000px;}
.ws1_c00436{word-spacing:-15.120000px;}
.ws4_c00436{word-spacing:-13.704000px;}
.ws3_c00436{word-spacing:-12.600000px;}
.ws5_c00436{word-spacing:0.000000px;}
._9_c00436{margin-left:-3.480000px;}
._1_c00436{margin-left:-2.376000px;}
._3_c00436{margin-left:-1.080000px;}
._0_c00436{width:1.008000px;}
._2_c00436{width:2.232000px;}
._13_c00436{width:3.240000px;}
._8_c00436{width:4.260000px;}
._6_c00436{width:5.904000px;}
._7_c00436{width:7.128000px;}
._5_c00436{width:8.352000px;}
._4_c00436{width:9.504000px;}
._f_c00436{width:10.696199px;}
._10_c00436{width:11.701803px;}
._12_c00436{width:13.824000px;}
._14_c00436{width:15.984000px;}
._d_c00436{width:65.028480px;}
._11_c00436{width:168.636024px;}
._a_c00436{width:180.868800px;}
._e_c00436{width:189.360000px;}
._c_c00436{width:191.280000px;}
._b_c00436{width:192.720000px;}
.fc0_c00436{color:rgb(0,0,0);}
.fs3_c00436{font-size:38.880000px;}
.fs1_c00436{font-size:47.520000px;}
.fs2_c00436{font-size:60.480000px;}
.fs0_c00436{font-size:72.000000px;}
.y0_c00436{bottom:0.000000px;}
.y3_c00436{bottom:57.996000px;}
.y2_c00436{bottom:78.876000px;}
.y26_c00436{bottom:130.716000px;}
.y25_c00436{bottom:137.556000px;}
.y24_c00436{bottom:148.356000px;}
.y23_c00436{bottom:212.835000px;}
.y22_c00436{bottom:243.795000px;}
.y21_c00436{bottom:274.785000px;}
.y20_c00436{bottom:305.745000px;}
.y1f_c00436{bottom:337.065000px;}
.y1e_c00436{bottom:365.505000px;}
.y1d_c00436{bottom:391.425000px;}
.y1c_c00436{bottom:417.390000px;}
.y1b_c00436{bottom:443.310000px;}
.y1a_c00436{bottom:469.230000px;}
.y19_c00436{bottom:495.150000px;}
.y18_c00436{bottom:530.100000px;}
.y17_c00436{bottom:556.020000px;}
.y16_c00436{bottom:581.580000px;}
.y15_c00436{bottom:607.500000px;}
.y14_c00436{bottom:633.420000px;}
.y13_c00436{bottom:659.370000px;}
.y12_c00436{bottom:685.290000px;}
.y11_c00436{bottom:711.210000px;}
.y10_c00436{bottom:737.130000px;}
.yf_c00436{bottom:763.095000px;}
.ye_c00436{bottom:788.655000px;}
.yd_c00436{bottom:817.095000px;}
.yc_c00436{bottom:848.055000px;}
.ya_c00436{bottom:879.015000px;}
.yb_c00436{bottom:887.325000px;}
.y9_c00436{bottom:910.005000px;}
.y8_c00436{bottom:941.325000px;}
.y7_c00436{bottom:972.285000px;}
.y6_c00436{bottom:1003.245000px;}
.y5_c00436{bottom:1034.250000px;}
.y4_c00436{bottom:1065.570000px;}
.y1_c00436{bottom:1117.770000px;}
.h8_c00436{height:34.855313px;}
.h4_c00436{height:46.638281px;}
.h9_c00436{height:54.219375px;}
.h7_c00436{height:59.328281px;}
.h5_c00436{height:59.357813px;}
.h6_c00436{height:60.952500px;}
.h1_c00436{height:64.546875px;}
.h2_c00436{height:70.664062px;}
.h3_c00436{height:1187.995500px;}
.h0_c00436{height:1188.000000px;}
.w1_c00436{width:917.997000px;}
.w0_c00436{width:918.000000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:127.476000px;}
.x7_c00436{left:142.596000px;}
.x5_c00436{left:169.995000px;}
.x3_c00436{left:323.022000px;}
.x4_c00436{left:341.430000px;}
.x6_c00436{left:343.590000px;}
.x2_c00436{left:445.500000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls8_c00436{letter-spacing:-1.258667pt;}
.ls7_c00436{letter-spacing:-0.640000pt;}
.ls5_c00436{letter-spacing:0.000000pt;}
.ls9_c00436{letter-spacing:0.020267pt;}
.ls6_c00436{letter-spacing:0.258667pt;}
.ls1_c00436{letter-spacing:0.432640pt;}
.ls4_c00436{letter-spacing:0.639777pt;}
.ls2_c00436{letter-spacing:0.640000pt;}
.ls0_c00436{letter-spacing:5.760000pt;}
.ls3_c00436{letter-spacing:151.840000pt;}
.ws0_c00436{word-spacing:-16.000000pt;}
.ws2_c00436{word-spacing:-13.698667pt;}
.ws1_c00436{word-spacing:-13.440000pt;}
.ws4_c00436{word-spacing:-12.181333pt;}
.ws3_c00436{word-spacing:-11.200000pt;}
.ws5_c00436{word-spacing:0.000000pt;}
._9_c00436{margin-left:-3.093333pt;}
._1_c00436{margin-left:-2.112000pt;}
._3_c00436{margin-left:-0.960000pt;}
._0_c00436{width:0.896000pt;}
._2_c00436{width:1.984000pt;}
._13_c00436{width:2.880000pt;}
._8_c00436{width:3.786667pt;}
._6_c00436{width:5.248000pt;}
._7_c00436{width:6.336000pt;}
._5_c00436{width:7.424000pt;}
._4_c00436{width:8.448000pt;}
._f_c00436{width:9.507732pt;}
._10_c00436{width:10.401603pt;}
._12_c00436{width:12.288000pt;}
._14_c00436{width:14.208000pt;}
._d_c00436{width:57.803093pt;}
._11_c00436{width:149.898688pt;}
._a_c00436{width:160.772267pt;}
._e_c00436{width:168.320000pt;}
._c_c00436{width:170.026667pt;}
._b_c00436{width:171.306667pt;}
.fs3_c00436{font-size:34.560000pt;}
.fs1_c00436{font-size:42.240000pt;}
.fs2_c00436{font-size:53.760000pt;}
.fs0_c00436{font-size:64.000000pt;}
.y0_c00436{bottom:0.000000pt;}
.y3_c00436{bottom:51.552000pt;}
.y2_c00436{bottom:70.112000pt;}
.y26_c00436{bottom:116.192000pt;}
.y25_c00436{bottom:122.272000pt;}
.y24_c00436{bottom:131.872000pt;}
.y23_c00436{bottom:189.186667pt;}
.y22_c00436{bottom:216.706667pt;}
.y21_c00436{bottom:244.253333pt;}
.y20_c00436{bottom:271.773333pt;}
.y1f_c00436{bottom:299.613333pt;}
.y1e_c00436{bottom:324.893333pt;}
.y1d_c00436{bottom:347.933333pt;}
.y1c_c00436{bottom:371.013333pt;}
.y1b_c00436{bottom:394.053333pt;}
.y1a_c00436{bottom:417.093333pt;}
.y19_c00436{bottom:440.133333pt;}
.y18_c00436{bottom:471.200000pt;}
.y17_c00436{bottom:494.240000pt;}
.y16_c00436{bottom:516.960000pt;}
.y15_c00436{bottom:540.000000pt;}
.y14_c00436{bottom:563.040000pt;}
.y13_c00436{bottom:586.106667pt;}
.y12_c00436{bottom:609.146667pt;}
.y11_c00436{bottom:632.186667pt;}
.y10_c00436{bottom:655.226667pt;}
.yf_c00436{bottom:678.306667pt;}
.ye_c00436{bottom:701.026667pt;}
.yd_c00436{bottom:726.306667pt;}
.yc_c00436{bottom:753.826667pt;}
.ya_c00436{bottom:781.346667pt;}
.yb_c00436{bottom:788.733333pt;}
.y9_c00436{bottom:808.893333pt;}
.y8_c00436{bottom:836.733333pt;}
.y7_c00436{bottom:864.253333pt;}
.y6_c00436{bottom:891.773333pt;}
.y5_c00436{bottom:919.333333pt;}
.y4_c00436{bottom:947.173333pt;}
.y1_c00436{bottom:993.573333pt;}
.h8_c00436{height:30.982500pt;}
.h4_c00436{height:41.456250pt;}
.h9_c00436{height:48.195000pt;}
.h7_c00436{height:52.736250pt;}
.h5_c00436{height:52.762500pt;}
.h6_c00436{height:54.180000pt;}
.h1_c00436{height:57.375000pt;}
.h2_c00436{height:62.812500pt;}
.h3_c00436{height:1055.996000pt;}
.h0_c00436{height:1056.000000pt;}
.w1_c00436{width:815.997333pt;}
.w0_c00436{width:816.000000pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:113.312000pt;}
.x7_c00436{left:126.752000pt;}
.x5_c00436{left:151.106667pt;}
.x3_c00436{left:287.130667pt;}
.x4_c00436{left:303.493333pt;}
.x6_c00436{left:305.413333pt;}
.x2_c00436{left:396.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_c00437 {
    display:none;
  }
  .loading-indicator_c00437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00437 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00437 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00437" -> "#page-container .classname_c00437")
 */
.pf_c00437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00437 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00437 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00437 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00437 {overflow:visible;}
  }
}
.c_c00437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00437 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00437:after { /* webkit #35443 */
  content: '';
}
.t_c00437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00437 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00437 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00437 { /* info for Javascript */
  display:none;
}
.l_c00437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00437:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00437;src:url('chunks/assets/font_7ad44e9778bc429ac258f460.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_ebaae9bc80c36f8db97e3e61.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_b2543882bae2fad11a1be946.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_6ec11c76752a5276b1aaed31.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;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_c00437;src:url('chunks/assets/font_45269a2ff4da3c8719baf757.woff2')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls13_c00437{letter-spacing:-1.728000px;}
.ls11_c00437{letter-spacing:-1.440000px;}
.ls16_c00437{letter-spacing:-0.954000px;}
.ls18_c00437{letter-spacing:-0.912000px;}
.lsf_c00437{letter-spacing:0.000000px;}
.ls14_c00437{letter-spacing:0.072000px;}
.ls15_c00437{letter-spacing:0.288000px;}
.ls17_c00437{letter-spacing:0.466800px;}
.ls19_c00437{letter-spacing:0.518400px;}
.ls10_c00437{letter-spacing:0.648000px;}
.ls8_c00437{letter-spacing:0.720000px;}
.ls2_c00437{letter-spacing:0.792000px;}
.ls9_c00437{letter-spacing:1.440000px;}
.ls12_c00437{letter-spacing:1.584000px;}
.ls1_c00437{letter-spacing:3.600000px;}
.lse_c00437{letter-spacing:3.744000px;}
.ls0_c00437{letter-spacing:5.040000px;}
.lsb_c00437{letter-spacing:5.184000px;}
.lsa_c00437{letter-spacing:7.920000px;}
.ls7_c00437{letter-spacing:10.812000px;}
.lsc_c00437{letter-spacing:12.240000px;}
.lsd_c00437{letter-spacing:12.249169px;}
.ls4_c00437{letter-spacing:15.120000px;}
.ls3_c00437{letter-spacing:16.560000px;}
.ls6_c00437{letter-spacing:26.640000px;}
.ls5_c00437{letter-spacing:28.080000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00437{word-spacing:-72.000000px;}
.ws1_c00437{word-spacing:-18.648000px;}
.ws4_c00437{word-spacing:-18.072000px;}
.ws0_c00437{word-spacing:-18.000000px;}
.ws3_c00437{word-spacing:-16.272000px;}
.ws7_c00437{word-spacing:-15.638400px;}
.ws6_c00437{word-spacing:-15.120000px;}
.ws5_c00437{word-spacing:-14.166000px;}
.ws8_c00437{word-spacing:0.000000px;}
._b_c00437{margin-left:-3.672000px;}
._4_c00437{margin-left:-2.304000px;}
._0_c00437{margin-left:-1.296000px;}
._1_c00437{width:1.080000px;}
._2_c00437{width:2.808000px;}
._6_c00437{width:4.608000px;}
._3_c00437{width:6.264000px;}
._5_c00437{width:7.704000px;}
._10_c00437{width:8.772000px;}
._a_c00437{width:11.016000px;}
._9_c00437{width:12.744000px;}
._8_c00437{width:14.328000px;}
._7_c00437{width:15.624000px;}
._f_c00437{width:20.448000px;}
._d_c00437{width:21.960000px;}
._c_c00437{width:23.040000px;}
._11_c00437{width:24.348000px;}
._e_c00437{width:28.236000px;}
.fc0_c00437{color:rgb(0,0,0);}
.fs2_c00437{font-size:38.880000px;}
.fs1_c00437{font-size:47.520000px;}
.fs3_c00437{font-size:60.480000px;}
.fs0_c00437{font-size:72.000000px;}
.y0_c00437{bottom:0.000000px;}
.y3_c00437{bottom:57.996000px;}
.y2_c00437{bottom:78.876000px;}
.y26_c00437{bottom:130.716000px;}
.y25_c00437{bottom:147.996000px;}
.y24_c00437{bottom:165.315000px;}
.y23_c00437{bottom:182.595000px;}
.y22_c00437{bottom:189.435000px;}
.y21_c00437{bottom:199.515000px;}
.y20_c00437{bottom:216.795000px;}
.y1f_c00437{bottom:234.075000px;}
.y1e_c00437{bottom:240.915000px;}
.y1d_c00437{bottom:252.075000px;}
.y1c_c00437{bottom:373.065000px;}
.y1b_c00437{bottom:404.070000px;}
.y1a_c00437{bottom:435.390000px;}
.y19_c00437{bottom:466.350000px;}
.y18_c00437{bottom:497.310000px;}
.y17_c00437{bottom:528.300000px;}
.y16_c00437{bottom:559.620000px;}
.y15_c00437{bottom:590.580000px;}
.y14_c00437{bottom:621.540000px;}
.y13_c00437{bottom:652.530000px;}
.y12_c00437{bottom:683.850000px;}
.y10_c00437{bottom:714.810000px;}
.y11_c00437{bottom:723.090000px;}
.yf_c00437{bottom:745.770000px;}
.ye_c00437{bottom:776.775000px;}
.yd_c00437{bottom:808.095000px;}
.yb_c00437{bottom:839.055000px;}
.yc_c00437{bottom:847.335000px;}
.ya_c00437{bottom:870.015000px;}
.y9_c00437{bottom:901.005000px;}
.y8_c00437{bottom:932.325000px;}
.y7_c00437{bottom:963.285000px;}
.y6_c00437{bottom:994.245000px;}
.y5_c00437{bottom:1034.250000px;}
.y4_c00437{bottom:1065.570000px;}
.y1_c00437{bottom:1117.770000px;}
.h5_c00437{height:34.855313px;}
.h4_c00437{height:46.638281px;}
.h7_c00437{height:54.219375px;}
.h8_c00437{height:59.328281px;}
.h6_c00437{height:59.357813px;}
.h1_c00437{height:64.546875px;}
.h2_c00437{height:70.664062px;}
.h3_c00437{height:1187.995500px;}
.h0_c00437{height:1188.000000px;}
.w1_c00437{width:917.997000px;}
.w0_c00437{width:918.000000px;}
.x0_c00437{left:0.000000px;}
.x1_c00437{left:127.476000px;}
.x9_c00437{left:142.596000px;}
.x3_c00437{left:178.635000px;}
.x6_c00437{left:273.702000px;}
.x7_c00437{left:292.065000px;}
.x8_c00437{left:343.590000px;}
.x2_c00437{left:445.500000px;}
.x4_c00437{left:602.487000px;}
.x5_c00437{left:620.850000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls13_c00437{letter-spacing:-1.536000pt;}
.ls11_c00437{letter-spacing:-1.280000pt;}
.ls16_c00437{letter-spacing:-0.848000pt;}
.ls18_c00437{letter-spacing:-0.810667pt;}
.lsf_c00437{letter-spacing:0.000000pt;}
.ls14_c00437{letter-spacing:0.064000pt;}
.ls15_c00437{letter-spacing:0.256000pt;}
.ls17_c00437{letter-spacing:0.414933pt;}
.ls19_c00437{letter-spacing:0.460800pt;}
.ls10_c00437{letter-spacing:0.576000pt;}
.ls8_c00437{letter-spacing:0.640000pt;}
.ls2_c00437{letter-spacing:0.704000pt;}
.ls9_c00437{letter-spacing:1.280000pt;}
.ls12_c00437{letter-spacing:1.408000pt;}
.ls1_c00437{letter-spacing:3.200000pt;}
.lse_c00437{letter-spacing:3.328000pt;}
.ls0_c00437{letter-spacing:4.480000pt;}
.lsb_c00437{letter-spacing:4.608000pt;}
.lsa_c00437{letter-spacing:7.040000pt;}
.ls7_c00437{letter-spacing:9.610667pt;}
.lsc_c00437{letter-spacing:10.880000pt;}
.lsd_c00437{letter-spacing:10.888150pt;}
.ls4_c00437{letter-spacing:13.440000pt;}
.ls3_c00437{letter-spacing:14.720000pt;}
.ls6_c00437{letter-spacing:23.680000pt;}
.ls5_c00437{letter-spacing:24.960000pt;}
.ws2_c00437{word-spacing:-64.000000pt;}
.ws1_c00437{word-spacing:-16.576000pt;}
.ws4_c00437{word-spacing:-16.064000pt;}
.ws0_c00437{word-spacing:-16.000000pt;}
.ws3_c00437{word-spacing:-14.464000pt;}
.ws7_c00437{word-spacing:-13.900800pt;}
.ws6_c00437{word-spacing:-13.440000pt;}
.ws5_c00437{word-spacing:-12.592000pt;}
.ws8_c00437{word-spacing:0.000000pt;}
._b_c00437{margin-left:-3.264000pt;}
._4_c00437{margin-left:-2.048000pt;}
._0_c00437{margin-left:-1.152000pt;}
._1_c00437{width:0.960000pt;}
._2_c00437{width:2.496000pt;}
._6_c00437{width:4.096000pt;}
._3_c00437{width:5.568000pt;}
._5_c00437{width:6.848000pt;}
._10_c00437{width:7.797333pt;}
._a_c00437{width:9.792000pt;}
._9_c00437{width:11.328000pt;}
._8_c00437{width:12.736000pt;}
._7_c00437{width:13.888000pt;}
._f_c00437{width:18.176000pt;}
._d_c00437{width:19.520000pt;}
._c_c00437{width:20.480000pt;}
._11_c00437{width:21.642667pt;}
._e_c00437{width:25.098667pt;}
.fs2_c00437{font-size:34.560000pt;}
.fs1_c00437{font-size:42.240000pt;}
.fs3_c00437{font-size:53.760000pt;}
.fs0_c00437{font-size:64.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y3_c00437{bottom:51.552000pt;}
.y2_c00437{bottom:70.112000pt;}
.y26_c00437{bottom:116.192000pt;}
.y25_c00437{bottom:131.552000pt;}
.y24_c00437{bottom:146.946667pt;}
.y23_c00437{bottom:162.306667pt;}
.y22_c00437{bottom:168.386667pt;}
.y21_c00437{bottom:177.346667pt;}
.y20_c00437{bottom:192.706667pt;}
.y1f_c00437{bottom:208.066667pt;}
.y1e_c00437{bottom:214.146667pt;}
.y1d_c00437{bottom:224.066667pt;}
.y1c_c00437{bottom:331.613333pt;}
.y1b_c00437{bottom:359.173333pt;}
.y1a_c00437{bottom:387.013333pt;}
.y19_c00437{bottom:414.533333pt;}
.y18_c00437{bottom:442.053333pt;}
.y17_c00437{bottom:469.600000pt;}
.y16_c00437{bottom:497.440000pt;}
.y15_c00437{bottom:524.960000pt;}
.y14_c00437{bottom:552.480000pt;}
.y13_c00437{bottom:580.026667pt;}
.y12_c00437{bottom:607.866667pt;}
.y10_c00437{bottom:635.386667pt;}
.y11_c00437{bottom:642.746667pt;}
.yf_c00437{bottom:662.906667pt;}
.ye_c00437{bottom:690.466667pt;}
.yd_c00437{bottom:718.306667pt;}
.yb_c00437{bottom:745.826667pt;}
.yc_c00437{bottom:753.186667pt;}
.ya_c00437{bottom:773.346667pt;}
.y9_c00437{bottom:800.893333pt;}
.y8_c00437{bottom:828.733333pt;}
.y7_c00437{bottom:856.253333pt;}
.y6_c00437{bottom:883.773333pt;}
.y5_c00437{bottom:919.333333pt;}
.y4_c00437{bottom:947.173333pt;}
.y1_c00437{bottom:993.573333pt;}
.h5_c00437{height:30.982500pt;}
.h4_c00437{height:41.456250pt;}
.h7_c00437{height:48.195000pt;}
.h8_c00437{height:52.736250pt;}
.h6_c00437{height:52.762500pt;}
.h1_c00437{height:57.375000pt;}
.h2_c00437{height:62.812500pt;}
.h3_c00437{height:1055.996000pt;}
.h0_c00437{height:1056.000000pt;}
.w1_c00437{width:815.997333pt;}
.w0_c00437{width:816.000000pt;}
.x0_c00437{left:0.000000pt;}
.x1_c00437{left:113.312000pt;}
.x9_c00437{left:126.752000pt;}
.x3_c00437{left:158.786667pt;}
.x6_c00437{left:243.290667pt;}
.x7_c00437{left:259.613333pt;}
.x8_c00437{left:305.413333pt;}
.x2_c00437{left:396.000000pt;}
.x4_c00437{left:535.544000pt;}
.x5_c00437{left:551.866667pt;}
}





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

.ir_c00438:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00438;src:url('chunks/assets/font_77485e978cdb246036adab68.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_aa5af2d531a5c600f21ca980.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_55bca5acc75b14fc8d8489f5.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;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_c00438;src:url('chunks/assets/font_541bfadda9d35170549f1968.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00438;src:url('chunks/assets/font_e96d62080adff17e773555c8.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00438;src:url('chunks/assets/font_ef2028d538b88acac25311ce.woff2')format("woff");}.ff6_c00438{font-family:ff6_c00438;line-height:1.104004;font-style:normal;font-weight: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_c00438;src:url('chunks/assets/font_e06ab3dd6f244f1284ba9916.woff2')format("woff");}.ff7_c00438{font-family:ff7_c00438;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls15_c00438{letter-spacing:-1.422000px;}
.lsf_c00438{letter-spacing:-1.416000px;}
.lsc_c00438{letter-spacing:-1.044000px;}
.ls11_c00438{letter-spacing:-0.990000px;}
.lsa_c00438{letter-spacing:-0.912000px;}
.ls16_c00438{letter-spacing:-0.720000px;}
.ls7_c00438{letter-spacing:-0.648000px;}
.ls12_c00438{letter-spacing:-0.532800px;}
.ls17_c00438{letter-spacing:-0.507000px;}
.ls9_c00438{letter-spacing:-0.302400px;}
.ls6_c00438{letter-spacing:-0.288000px;}
.ls10_c00438{letter-spacing:-0.241800px;}
.ls13_c00438{letter-spacing:-0.144000px;}
.lse_c00438{letter-spacing:-0.075000px;}
.ls5_c00438{letter-spacing:0.000000px;}
.ls8_c00438{letter-spacing:0.020400px;}
.ls3_c00438{letter-spacing:0.048960px;}
.ls2_c00438{letter-spacing:0.290880px;}
.lsb_c00438{letter-spacing:0.291000px;}
.ls0_c00438{letter-spacing:0.302400px;}
.ls14_c00438{letter-spacing:0.486600px;}
.lsd_c00438{letter-spacing:0.529800px;}
.ls1_c00438{letter-spacing:0.720000px;}
.ls4_c00438{letter-spacing:13.860000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00438{word-spacing:-18.000000px;}
.wsb_c00438{word-spacing:-17.856000px;}
.ws0_c00438{word-spacing:-17.712000px;}
.ws2_c00438{word-spacing:-17.352000px;}
.ws6_c00438{word-spacing:-15.411000px;}
.ws3_c00438{word-spacing:-15.140400px;}
.ws5_c00438{word-spacing:-15.120000px;}
.ws8_c00438{word-spacing:-14.878200px;}
.ws4_c00438{word-spacing:-14.817600px;}
.wsd_c00438{word-spacing:-14.613000px;}
.wsa_c00438{word-spacing:-14.587200px;}
.ws9_c00438{word-spacing:-14.130000px;}
.wsc_c00438{word-spacing:-13.698000px;}
.ws7_c00438{word-spacing:-12.600000px;}
.wse_c00438{word-spacing:0.000000px;}
._4_c00438{margin-left:-2.736000px;}
._0_c00438{margin-left:-1.080000px;}
._2_c00438{width:1.080000px;}
._5_c00438{width:2.160000px;}
._d_c00438{width:3.991801px;}
._f_c00438{width:5.470186px;}
._e_c00438{width:6.774002px;}
._12_c00438{width:8.205627px;}
._16_c00438{width:9.291491px;}
._11_c00438{width:11.352000px;}
._10_c00438{width:12.744000px;}
._15_c00438{width:14.040000px;}
._c_c00438{width:17.451837px;}
._14_c00438{width:20.520000px;}
._1_c00438{width:22.248000px;}
._3_c00438{width:23.544000px;}
._13_c00438{width:30.744000px;}
._7_c00438{width:33.120000px;}
._6_c00438{width:34.272000px;}
._8_c00438{width:35.280000px;}
._9_c00438{width:131.125894px;}
._a_c00438{width:188.099937px;}
._b_c00438{width:189.360089px;}
.fc0_c00438{color:rgb(0,0,0);}
.fs3_c00438{font-size:38.880000px;}
.fs2_c00438{font-size:47.520000px;}
.fs1_c00438{font-size:60.480000px;}
.fs0_c00438{font-size:72.000000px;}
.y0_c00438{bottom:0.000000px;}
.y3_c00438{bottom:57.996000px;}
.y2_c00438{bottom:78.876000px;}
.y2b_c00438{bottom:130.716000px;}
.y2a_c00438{bottom:147.996000px;}
.y29_c00438{bottom:165.315000px;}
.y28_c00438{bottom:172.155000px;}
.y27_c00438{bottom:182.595000px;}
.y26_c00438{bottom:199.515000px;}
.y25_c00438{bottom:216.795000px;}
.y24_c00438{bottom:234.075000px;}
.y23_c00438{bottom:251.355000px;}
.y22_c00438{bottom:258.195000px;}
.y21_c00438{bottom:269.355000px;}
.y1f_c00438{bottom:312.585000px;}
.y20_c00438{bottom:320.865000px;}
.y1e_c00438{bottom:343.545000px;}
.y1d_c00438{bottom:374.505000px;}
.y1c_c00438{bottom:405.510000px;}
.y1a_c00438{bottom:436.470000px;}
.y1b_c00438{bottom:444.750000px;}
.y19_c00438{bottom:467.790000px;}
.y18_c00438{bottom:498.750000px;}
.y17_c00438{bottom:529.740000px;}
.y16_c00438{bottom:567.540000px;}
.y15_c00438{bottom:593.460000px;}
.y14_c00438{bottom:619.380000px;}
.y13_c00438{bottom:645.330000px;}
.y12_c00438{bottom:680.250000px;}
.y11_c00438{bottom:705.810000px;}
.y10_c00438{bottom:731.730000px;}
.yf_c00438{bottom:757.650000px;}
.ye_c00438{bottom:783.615000px;}
.yd_c00438{bottom:809.535000px;}
.yc_c00438{bottom:835.455000px;}
.yb_c00438{bottom:861.375000px;}
.ya_c00438{bottom:887.325000px;}
.y9_c00438{bottom:912.885000px;}
.y8_c00438{bottom:941.325000px;}
.y7_c00438{bottom:972.285000px;}
.y6_c00438{bottom:1003.245000px;}
.y5_c00438{bottom:1034.250000px;}
.y4_c00438{bottom:1065.570000px;}
.y1_c00438{bottom:1117.770000px;}
.h7_c00438{height:34.855313px;}
.h6_c00438{height:46.638281px;}
.h8_c00438{height:54.219375px;}
.h4_c00438{height:59.328281px;}
.h3_c00438{height:59.357813px;}
.h1_c00438{height:64.546875px;}
.h2_c00438{height:70.664062px;}
.h5_c00438{height:1187.995500px;}
.h0_c00438{height:1188.000000px;}
.w1_c00438{width:917.997000px;}
.w0_c00438{width:918.000000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:127.476000px;}
.x9_c00438{left:142.596000px;}
.x3_c00438{left:169.995000px;}
.x6_c00438{left:315.102000px;}
.x7_c00438{left:333.465000px;}
.x8_c00438{left:343.590000px;}
.x2_c00438{left:445.500000px;}
.x4_c00438{left:688.212000px;}
.x5_c00438{left:706.575000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls15_c00438{letter-spacing:-1.264000pt;}
.lsf_c00438{letter-spacing:-1.258667pt;}
.lsc_c00438{letter-spacing:-0.928000pt;}
.ls11_c00438{letter-spacing:-0.880000pt;}
.lsa_c00438{letter-spacing:-0.810667pt;}
.ls16_c00438{letter-spacing:-0.640000pt;}
.ls7_c00438{letter-spacing:-0.576000pt;}
.ls12_c00438{letter-spacing:-0.473600pt;}
.ls17_c00438{letter-spacing:-0.450667pt;}
.ls9_c00438{letter-spacing:-0.268800pt;}
.ls6_c00438{letter-spacing:-0.256000pt;}
.ls10_c00438{letter-spacing:-0.214933pt;}
.ls13_c00438{letter-spacing:-0.128000pt;}
.lse_c00438{letter-spacing:-0.066667pt;}
.ls5_c00438{letter-spacing:0.000000pt;}
.ls8_c00438{letter-spacing:0.018133pt;}
.ls3_c00438{letter-spacing:0.043520pt;}
.ls2_c00438{letter-spacing:0.258560pt;}
.lsb_c00438{letter-spacing:0.258667pt;}
.ls0_c00438{letter-spacing:0.268800pt;}
.ls14_c00438{letter-spacing:0.432533pt;}
.lsd_c00438{letter-spacing:0.470933pt;}
.ls1_c00438{letter-spacing:0.640000pt;}
.ls4_c00438{letter-spacing:12.320000pt;}
.ws1_c00438{word-spacing:-16.000000pt;}
.wsb_c00438{word-spacing:-15.872000pt;}
.ws0_c00438{word-spacing:-15.744000pt;}
.ws2_c00438{word-spacing:-15.424000pt;}
.ws6_c00438{word-spacing:-13.698667pt;}
.ws3_c00438{word-spacing:-13.458133pt;}
.ws5_c00438{word-spacing:-13.440000pt;}
.ws8_c00438{word-spacing:-13.225067pt;}
.ws4_c00438{word-spacing:-13.171200pt;}
.wsd_c00438{word-spacing:-12.989333pt;}
.wsa_c00438{word-spacing:-12.966400pt;}
.ws9_c00438{word-spacing:-12.560000pt;}
.wsc_c00438{word-spacing:-12.176000pt;}
.ws7_c00438{word-spacing:-11.200000pt;}
.wse_c00438{word-spacing:0.000000pt;}
._4_c00438{margin-left:-2.432000pt;}
._0_c00438{margin-left:-0.960000pt;}
._2_c00438{width:0.960000pt;}
._5_c00438{width:1.920000pt;}
._d_c00438{width:3.548268pt;}
._f_c00438{width:4.862387pt;}
._e_c00438{width:6.021335pt;}
._12_c00438{width:7.293891pt;}
._16_c00438{width:8.259103pt;}
._11_c00438{width:10.090667pt;}
._10_c00438{width:11.328000pt;}
._15_c00438{width:12.480000pt;}
._c_c00438{width:15.512744pt;}
._14_c00438{width:18.240000pt;}
._1_c00438{width:19.776000pt;}
._3_c00438{width:20.928000pt;}
._13_c00438{width:27.328000pt;}
._7_c00438{width:29.440000pt;}
._6_c00438{width:30.464000pt;}
._8_c00438{width:31.360000pt;}
._9_c00438{width:116.556350pt;}
._a_c00438{width:167.199944pt;}
._b_c00438{width:168.320079pt;}
.fs3_c00438{font-size:34.560000pt;}
.fs2_c00438{font-size:42.240000pt;}
.fs1_c00438{font-size:53.760000pt;}
.fs0_c00438{font-size:64.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y3_c00438{bottom:51.552000pt;}
.y2_c00438{bottom:70.112000pt;}
.y2b_c00438{bottom:116.192000pt;}
.y2a_c00438{bottom:131.552000pt;}
.y29_c00438{bottom:146.946667pt;}
.y28_c00438{bottom:153.026667pt;}
.y27_c00438{bottom:162.306667pt;}
.y26_c00438{bottom:177.346667pt;}
.y25_c00438{bottom:192.706667pt;}
.y24_c00438{bottom:208.066667pt;}
.y23_c00438{bottom:223.426667pt;}
.y22_c00438{bottom:229.506667pt;}
.y21_c00438{bottom:239.426667pt;}
.y1f_c00438{bottom:277.853333pt;}
.y20_c00438{bottom:285.213333pt;}
.y1e_c00438{bottom:305.373333pt;}
.y1d_c00438{bottom:332.893333pt;}
.y1c_c00438{bottom:360.453333pt;}
.y1a_c00438{bottom:387.973333pt;}
.y1b_c00438{bottom:395.333333pt;}
.y19_c00438{bottom:415.813333pt;}
.y18_c00438{bottom:443.333333pt;}
.y17_c00438{bottom:470.880000pt;}
.y16_c00438{bottom:504.480000pt;}
.y15_c00438{bottom:527.520000pt;}
.y14_c00438{bottom:550.560000pt;}
.y13_c00438{bottom:573.626667pt;}
.y12_c00438{bottom:604.666667pt;}
.y11_c00438{bottom:627.386667pt;}
.y10_c00438{bottom:650.426667pt;}
.yf_c00438{bottom:673.466667pt;}
.ye_c00438{bottom:696.546667pt;}
.yd_c00438{bottom:719.586667pt;}
.yc_c00438{bottom:742.626667pt;}
.yb_c00438{bottom:765.666667pt;}
.ya_c00438{bottom:788.733333pt;}
.y9_c00438{bottom:811.453333pt;}
.y8_c00438{bottom:836.733333pt;}
.y7_c00438{bottom:864.253333pt;}
.y6_c00438{bottom:891.773333pt;}
.y5_c00438{bottom:919.333333pt;}
.y4_c00438{bottom:947.173333pt;}
.y1_c00438{bottom:993.573333pt;}
.h7_c00438{height:30.982500pt;}
.h6_c00438{height:41.456250pt;}
.h8_c00438{height:48.195000pt;}
.h4_c00438{height:52.736250pt;}
.h3_c00438{height:52.762500pt;}
.h1_c00438{height:57.375000pt;}
.h2_c00438{height:62.812500pt;}
.h5_c00438{height:1055.996000pt;}
.h0_c00438{height:1056.000000pt;}
.w1_c00438{width:815.997333pt;}
.w0_c00438{width:816.000000pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:113.312000pt;}
.x9_c00438{left:126.752000pt;}
.x3_c00438{left:151.106667pt;}
.x6_c00438{left:280.090667pt;}
.x7_c00438{left:296.413333pt;}
.x8_c00438{left:305.413333pt;}
.x2_c00438{left:396.000000pt;}
.x4_c00438{left:611.744000pt;}
.x5_c00438{left:628.066667pt;}
}





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

.ir_c00439:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00439;src:url('chunks/assets/font_e0a65ee2d32daf3631a8f318.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_a818f1a95ca73b30c773dc2c.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_00f1a38a14bef6642b0eb8dc.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00439;src:url('chunks/assets/font_3aa58bd323890297f373f9e6.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00439;src:url('chunks/assets/font_cafcf636c2c433564dc0615a.woff2')format("woff");}.ff5_c00439{font-family:ff5_c00439;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00439;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff6_c00439{font-family:ff6_c00439;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls8_c00439{letter-spacing:-2.880000px;}
.ls6_c00439{letter-spacing:-1.440000px;}
.ls7_c00439{letter-spacing:-0.648000px;}
.lsa_c00439{letter-spacing:-0.486600px;}
.ls5_c00439{letter-spacing:0.000000px;}
.ls3_c00439{letter-spacing:0.720000px;}
.ls4_c00439{letter-spacing:0.864000px;}
.ls9_c00439{letter-spacing:1.152000px;}
.ls2_c00439{letter-spacing:1.440000px;}
.ls0_c00439{letter-spacing:7.920000px;}
.ls1_c00439{letter-spacing:9.360000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00439{word-spacing:-72.000000px;}
.ws2_c00439{word-spacing:-19.152000px;}
.ws0_c00439{word-spacing:-18.000000px;}
.ws3_c00439{word-spacing:-14.633400px;}
.ws4_c00439{word-spacing:0.000000px;}
._d_c00439{margin-left:-3.348000px;}
._3_c00439{margin-left:-2.328000px;}
._0_c00439{margin-left:-1.296000px;}
._4_c00439{width:1.284000px;}
._1_c00439{width:2.316000px;}
._2_c00439{width:4.164000px;}
._6_c00439{width:5.904000px;}
._a_c00439{width:6.936000px;}
._9_c00439{width:8.496000px;}
._10_c00439{width:10.068000px;}
._11_c00439{width:11.100000px;}
._c_c00439{width:12.996000px;}
._b_c00439{width:14.484000px;}
._5_c00439{width:15.876000px;}
._f_c00439{width:16.968000px;}
._e_c00439{width:19.980000px;}
._12_c00439{width:21.060000px;}
._13_c00439{width:22.248000px;}
._7_c00439{width:23.340000px;}
._8_c00439{width:25.284000px;}
.fc0_c00439{color:rgb(0,0,0);}
.fs2_c00439{font-size:38.880000px;}
.fs1_c00439{font-size:47.520000px;}
.fs3_c00439{font-size:60.480000px;}
.fs0_c00439{font-size:72.000000px;}
.y0_c00439{bottom:0.000000px;}
.y3_c00439{bottom:57.996000px;}
.y2_c00439{bottom:78.876000px;}
.y24_c00439{bottom:130.716000px;}
.y23_c00439{bottom:137.556000px;}
.y22_c00439{bottom:148.356000px;}
.y21_c00439{bottom:177.915000px;}
.y20_c00439{bottom:208.875000px;}
.y1f_c00439{bottom:239.835000px;}
.y1e_c00439{bottom:271.155000px;}
.y1d_c00439{bottom:302.145000px;}
.y1c_c00439{bottom:333.105000px;}
.y1b_c00439{bottom:364.065000px;}
.y1a_c00439{bottom:395.070000px;}
.y19_c00439{bottom:426.390000px;}
.y18_c00439{bottom:457.350000px;}
.y17_c00439{bottom:488.310000px;}
.y16_c00439{bottom:519.300000px;}
.y15_c00439{bottom:550.620000px;}
.y14_c00439{bottom:581.580000px;}
.y13_c00439{bottom:621.540000px;}
.y12_c00439{bottom:652.530000px;}
.y11_c00439{bottom:692.850000px;}
.y10_c00439{bottom:723.810000px;}
.ye_c00439{bottom:754.770000px;}
.yf_c00439{bottom:763.095000px;}
.yd_c00439{bottom:785.775000px;}
.yc_c00439{bottom:817.095000px;}
.yb_c00439{bottom:848.055000px;}
.ya_c00439{bottom:879.015000px;}
.y9_c00439{bottom:910.005000px;}
.y8_c00439{bottom:941.325000px;}
.y7_c00439{bottom:972.285000px;}
.y6_c00439{bottom:1003.245000px;}
.y5_c00439{bottom:1034.250000px;}
.y4_c00439{bottom:1065.570000px;}
.y1_c00439{bottom:1117.770000px;}
.h7_c00439{height:34.855313px;}
.h5_c00439{height:46.638281px;}
.h8_c00439{height:59.357813px;}
.h1_c00439{height:64.546875px;}
.h6_c00439{height:70.628906px;}
.h3_c00439{height:70.664062px;}
.h2_c00439{height:72.562500px;}
.h4_c00439{height:1187.995500px;}
.h0_c00439{height:1188.000000px;}
.w1_c00439{width:917.997000px;}
.w0_c00439{width:918.000000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:127.476000px;}
.x7_c00439{left:142.596000px;}
.x5_c00439{left:178.635000px;}
.x3_c00439{left:185.472000px;}
.x4_c00439{left:203.835000px;}
.x6_c00439{left:343.590000px;}
.x2_c00439{left:445.500000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls8_c00439{letter-spacing:-2.560000pt;}
.ls6_c00439{letter-spacing:-1.280000pt;}
.ls7_c00439{letter-spacing:-0.576000pt;}
.lsa_c00439{letter-spacing:-0.432533pt;}
.ls5_c00439{letter-spacing:0.000000pt;}
.ls3_c00439{letter-spacing:0.640000pt;}
.ls4_c00439{letter-spacing:0.768000pt;}
.ls9_c00439{letter-spacing:1.024000pt;}
.ls2_c00439{letter-spacing:1.280000pt;}
.ls0_c00439{letter-spacing:7.040000pt;}
.ls1_c00439{letter-spacing:8.320000pt;}
.ws1_c00439{word-spacing:-64.000000pt;}
.ws2_c00439{word-spacing:-17.024000pt;}
.ws0_c00439{word-spacing:-16.000000pt;}
.ws3_c00439{word-spacing:-13.007467pt;}
.ws4_c00439{word-spacing:0.000000pt;}
._d_c00439{margin-left:-2.976000pt;}
._3_c00439{margin-left:-2.069333pt;}
._0_c00439{margin-left:-1.152000pt;}
._4_c00439{width:1.141333pt;}
._1_c00439{width:2.058667pt;}
._2_c00439{width:3.701333pt;}
._6_c00439{width:5.248000pt;}
._a_c00439{width:6.165333pt;}
._9_c00439{width:7.552000pt;}
._10_c00439{width:8.949333pt;}
._11_c00439{width:9.866667pt;}
._c_c00439{width:11.552000pt;}
._b_c00439{width:12.874667pt;}
._5_c00439{width:14.112000pt;}
._f_c00439{width:15.082667pt;}
._e_c00439{width:17.760000pt;}
._12_c00439{width:18.720000pt;}
._13_c00439{width:19.776000pt;}
._7_c00439{width:20.746667pt;}
._8_c00439{width:22.474667pt;}
.fs2_c00439{font-size:34.560000pt;}
.fs1_c00439{font-size:42.240000pt;}
.fs3_c00439{font-size:53.760000pt;}
.fs0_c00439{font-size:64.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y3_c00439{bottom:51.552000pt;}
.y2_c00439{bottom:70.112000pt;}
.y24_c00439{bottom:116.192000pt;}
.y23_c00439{bottom:122.272000pt;}
.y22_c00439{bottom:131.872000pt;}
.y21_c00439{bottom:158.146667pt;}
.y20_c00439{bottom:185.666667pt;}
.y1f_c00439{bottom:213.186667pt;}
.y1e_c00439{bottom:241.026667pt;}
.y1d_c00439{bottom:268.573333pt;}
.y1c_c00439{bottom:296.093333pt;}
.y1b_c00439{bottom:323.613333pt;}
.y1a_c00439{bottom:351.173333pt;}
.y19_c00439{bottom:379.013333pt;}
.y18_c00439{bottom:406.533333pt;}
.y17_c00439{bottom:434.053333pt;}
.y16_c00439{bottom:461.600000pt;}
.y15_c00439{bottom:489.440000pt;}
.y14_c00439{bottom:516.960000pt;}
.y13_c00439{bottom:552.480000pt;}
.y12_c00439{bottom:580.026667pt;}
.y11_c00439{bottom:615.866667pt;}
.y10_c00439{bottom:643.386667pt;}
.ye_c00439{bottom:670.906667pt;}
.yf_c00439{bottom:678.306667pt;}
.yd_c00439{bottom:698.466667pt;}
.yc_c00439{bottom:726.306667pt;}
.yb_c00439{bottom:753.826667pt;}
.ya_c00439{bottom:781.346667pt;}
.y9_c00439{bottom:808.893333pt;}
.y8_c00439{bottom:836.733333pt;}
.y7_c00439{bottom:864.253333pt;}
.y6_c00439{bottom:891.773333pt;}
.y5_c00439{bottom:919.333333pt;}
.y4_c00439{bottom:947.173333pt;}
.y1_c00439{bottom:993.573333pt;}
.h7_c00439{height:30.982500pt;}
.h5_c00439{height:41.456250pt;}
.h8_c00439{height:52.762500pt;}
.h1_c00439{height:57.375000pt;}
.h6_c00439{height:62.781250pt;}
.h3_c00439{height:62.812500pt;}
.h2_c00439{height:64.500000pt;}
.h4_c00439{height:1055.996000pt;}
.h0_c00439{height:1056.000000pt;}
.w1_c00439{width:815.997333pt;}
.w0_c00439{width:816.000000pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:113.312000pt;}
.x7_c00439{left:126.752000pt;}
.x5_c00439{left:158.786667pt;}
.x3_c00439{left:164.864000pt;}
.x4_c00439{left:181.186667pt;}
.x6_c00439{left:305.413333pt;}
.x2_c00439{left:396.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_c00440 {
    display:none;
  }
  .loading-indicator_c00440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00440 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00440 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00440" -> "#page-container .classname_c00440")
 */
.pf_c00440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00440 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00440 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00440 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00440 {overflow:visible;}
  }
}
.c_c00440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00440 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00440:after { /* webkit #35443 */
  content: '';
}
.t_c00440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00440 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00440 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00440 { /* info for Javascript */
  display:none;
}
.l_c00440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00440:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00440;src:url('chunks/assets/font_eaf8a1cf19929ae94d4f081d.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_81d25e7b0cf0952771c2818b.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_1804be6ebe2501ddde3c787c.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;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_c00440;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00440;src:url('chunks/assets/font_a477b1a147a13b4530905adc.woff2')format("woff");}.ff5_c00440{font-family:ff5_c00440;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00440;src:url('chunks/assets/font_725d35b7a7f67979618509ca.woff2')format("woff");}.ff6_c00440{font-family:ff6_c00440;line-height:1.112305;font-style:normal;font-weight: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_c00440;src:url('chunks/assets/font_be8a6c4f1324319fb90fced3.woff2')format("woff");}.ff7_c00440{font-family:ff7_c00440;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.lsf_c00440{letter-spacing:-1.416000px;}
.lsb_c00440{letter-spacing:-1.368000px;}
.lsc_c00440{letter-spacing:-0.792000px;}
.ls9_c00440{letter-spacing:-0.720000px;}
.lsa_c00440{letter-spacing:-0.241800px;}
.ls7_c00440{letter-spacing:0.000000px;}
.ls8_c00440{letter-spacing:0.020400px;}
.lse_c00440{letter-spacing:0.072000px;}
.ls3_c00440{letter-spacing:0.144000px;}
.ls4_c00440{letter-spacing:0.360000px;}
.ls1_c00440{letter-spacing:0.524160px;}
.ls6_c00440{letter-spacing:0.711121px;}
.ls0_c00440{letter-spacing:0.720000px;}
.ls2_c00440{letter-spacing:0.739924px;}
.lsd_c00440{letter-spacing:2.160000px;}
.ls5_c00440{letter-spacing:3.600000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00440{word-spacing:-72.000000px;}
.ws4_c00440{word-spacing:-60.480000px;}
.ws8_c00440{word-spacing:-18.072000px;}
.ws0_c00440{word-spacing:-18.000000px;}
.ws7_c00440{word-spacing:-17.208000px;}
.ws6_c00440{word-spacing:-16.632000px;}
.ws2_c00440{word-spacing:-15.140400px;}
.ws3_c00440{word-spacing:-15.120000px;}
.ws5_c00440{word-spacing:-14.878200px;}
.ws9_c00440{word-spacing:0.000000px;}
._1_c00440{margin-left:-2.736000px;}
._4_c00440{margin-left:-1.440000px;}
._0_c00440{width:1.008000px;}
._5_c00440{width:2.736000px;}
._3_c00440{width:4.680000px;}
._2_c00440{width:6.120000px;}
._6_c00440{width:7.344000px;}
._a_c00440{width:9.000000px;}
._b_c00440{width:10.440000px;}
._c_c00440{width:12.144000px;}
._d_c00440{width:19.380000px;}
._e_c00440{width:20.940000px;}
._8_c00440{width:26.568000px;}
._7_c00440{width:27.720000px;}
._9_c00440{width:28.944000px;}
.fc0_c00440{color:rgb(0,0,0);}
.fs1_c00440{font-size:60.480000px;}
.fs0_c00440{font-size:72.000000px;}
.y0_c00440{bottom:0.000000px;}
.y3_c00440{bottom:57.996000px;}
.y2_c00440{bottom:78.876000px;}
.y22_c00440{bottom:136.836000px;}
.y21_c00440{bottom:162.795000px;}
.y20_c00440{bottom:188.715000px;}
.y1f_c00440{bottom:216.795000px;}
.y1e_c00440{bottom:247.755000px;}
.y1d_c00440{bottom:278.745000px;}
.y1c_c00440{bottom:310.065000px;}
.y1b_c00440{bottom:341.025000px;}
.y1a_c00440{bottom:371.985000px;}
.y19_c00440{bottom:402.990000px;}
.y18_c00440{bottom:434.310000px;}
.y17_c00440{bottom:465.270000px;}
.y16_c00440{bottom:496.230000px;}
.y15_c00440{bottom:527.220000px;}
.y14_c00440{bottom:558.540000px;}
.y13_c00440{bottom:589.500000px;}
.y12_c00440{bottom:620.460000px;}
.y11_c00440{bottom:658.290000px;}
.y10_c00440{bottom:684.210000px;}
.yf_c00440{bottom:719.130000px;}
.ye_c00440{bottom:745.050000px;}
.yd_c00440{bottom:770.655000px;}
.yc_c00440{bottom:799.095000px;}
.yb_c00440{bottom:839.055000px;}
.ya_c00440{bottom:879.015000px;}
.y9_c00440{bottom:910.005000px;}
.y8_c00440{bottom:941.325000px;}
.y7_c00440{bottom:972.285000px;}
.y6_c00440{bottom:1003.245000px;}
.y5_c00440{bottom:1034.250000px;}
.y4_c00440{bottom:1065.570000px;}
.y1_c00440{bottom:1117.770000px;}
.h6_c00440{height:59.328281px;}
.h5_c00440{height:59.357813px;}
.h1_c00440{height:64.546875px;}
.h3_c00440{height:70.628906px;}
.h2_c00440{height:70.664062px;}
.h4_c00440{height:72.562500px;}
.h0_c00440{height:1188.000000px;}
.w0_c00440{width:918.000000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:127.476000px;}
.x4_c00440{left:169.995000px;}
.x3_c00440{left:180.795000px;}
.x2_c00440{left:445.500000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.lsf_c00440{letter-spacing:-1.258667pt;}
.lsb_c00440{letter-spacing:-1.216000pt;}
.lsc_c00440{letter-spacing:-0.704000pt;}
.ls9_c00440{letter-spacing:-0.640000pt;}
.lsa_c00440{letter-spacing:-0.214933pt;}
.ls7_c00440{letter-spacing:0.000000pt;}
.ls8_c00440{letter-spacing:0.018133pt;}
.lse_c00440{letter-spacing:0.064000pt;}
.ls3_c00440{letter-spacing:0.128000pt;}
.ls4_c00440{letter-spacing:0.320000pt;}
.ls1_c00440{letter-spacing:0.465920pt;}
.ls6_c00440{letter-spacing:0.632108pt;}
.ls0_c00440{letter-spacing:0.640000pt;}
.ls2_c00440{letter-spacing:0.657710pt;}
.lsd_c00440{letter-spacing:1.920000pt;}
.ls5_c00440{letter-spacing:3.200000pt;}
.ws1_c00440{word-spacing:-64.000000pt;}
.ws4_c00440{word-spacing:-53.760000pt;}
.ws8_c00440{word-spacing:-16.064000pt;}
.ws0_c00440{word-spacing:-16.000000pt;}
.ws7_c00440{word-spacing:-15.296000pt;}
.ws6_c00440{word-spacing:-14.784000pt;}
.ws2_c00440{word-spacing:-13.458133pt;}
.ws3_c00440{word-spacing:-13.440000pt;}
.ws5_c00440{word-spacing:-13.225067pt;}
.ws9_c00440{word-spacing:0.000000pt;}
._1_c00440{margin-left:-2.432000pt;}
._4_c00440{margin-left:-1.280000pt;}
._0_c00440{width:0.896000pt;}
._5_c00440{width:2.432000pt;}
._3_c00440{width:4.160000pt;}
._2_c00440{width:5.440000pt;}
._6_c00440{width:6.528000pt;}
._a_c00440{width:8.000000pt;}
._b_c00440{width:9.280000pt;}
._c_c00440{width:10.794667pt;}
._d_c00440{width:17.226667pt;}
._e_c00440{width:18.613333pt;}
._8_c00440{width:23.616000pt;}
._7_c00440{width:24.640000pt;}
._9_c00440{width:25.728000pt;}
.fs1_c00440{font-size:53.760000pt;}
.fs0_c00440{font-size:64.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y3_c00440{bottom:51.552000pt;}
.y2_c00440{bottom:70.112000pt;}
.y22_c00440{bottom:121.632000pt;}
.y21_c00440{bottom:144.706667pt;}
.y20_c00440{bottom:167.746667pt;}
.y1f_c00440{bottom:192.706667pt;}
.y1e_c00440{bottom:220.226667pt;}
.y1d_c00440{bottom:247.773333pt;}
.y1c_c00440{bottom:275.613333pt;}
.y1b_c00440{bottom:303.133333pt;}
.y1a_c00440{bottom:330.653333pt;}
.y19_c00440{bottom:358.213333pt;}
.y18_c00440{bottom:386.053333pt;}
.y17_c00440{bottom:413.573333pt;}
.y16_c00440{bottom:441.093333pt;}
.y15_c00440{bottom:468.640000pt;}
.y14_c00440{bottom:496.480000pt;}
.y13_c00440{bottom:524.000000pt;}
.y12_c00440{bottom:551.520000pt;}
.y11_c00440{bottom:585.146667pt;}
.y10_c00440{bottom:608.186667pt;}
.yf_c00440{bottom:639.226667pt;}
.ye_c00440{bottom:662.266667pt;}
.yd_c00440{bottom:685.026667pt;}
.yc_c00440{bottom:710.306667pt;}
.yb_c00440{bottom:745.826667pt;}
.ya_c00440{bottom:781.346667pt;}
.y9_c00440{bottom:808.893333pt;}
.y8_c00440{bottom:836.733333pt;}
.y7_c00440{bottom:864.253333pt;}
.y6_c00440{bottom:891.773333pt;}
.y5_c00440{bottom:919.333333pt;}
.y4_c00440{bottom:947.173333pt;}
.y1_c00440{bottom:993.573333pt;}
.h6_c00440{height:52.736250pt;}
.h5_c00440{height:52.762500pt;}
.h1_c00440{height:57.375000pt;}
.h3_c00440{height:62.781250pt;}
.h2_c00440{height:62.812500pt;}
.h4_c00440{height:64.500000pt;}
.h0_c00440{height:1056.000000pt;}
.w0_c00440{width:816.000000pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:113.312000pt;}
.x4_c00440{left:151.106667pt;}
.x3_c00440{left:160.706667pt;}
.x2_c00440{left:396.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_c00441 {
    display:none;
  }
  .loading-indicator_c00441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00441 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00441 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00441" -> "#page-container .classname_c00441")
 */
.pf_c00441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00441 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00441 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00441 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00441 {overflow:visible;}
  }
}
.c_c00441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00441 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00441:after { /* webkit #35443 */
  content: '';
}
.t_c00441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00441 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00441 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00441 { /* info for Javascript */
  display:none;
}
.l_c00441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00441:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00441;src:url('chunks/assets/font_1e50a8e13c13884740f31b21.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_f2fc30f2606d7601421f42df.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_de304ac90da40f04c1255e21.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_14b7765f537f7ec16e6874f2.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00441;src:url('chunks/assets/font_3d3789806c6a558b200780bb.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00441;src:url('chunks/assets/font_a7bb71de914ad802382b6359.woff2')format("woff");}.ff6_c00441{font-family:ff6_c00441;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls7_c00441{letter-spacing:-1.416000px;}
.ls9_c00441{letter-spacing:-0.720000px;}
.lsb_c00441{letter-spacing:-0.466800px;}
.ls8_c00441{letter-spacing:-0.230400px;}
.lsc_c00441{letter-spacing:-0.144000px;}
.ls3_c00441{letter-spacing:0.000000px;}
.ls6_c00441{letter-spacing:0.022800px;}
.ls5_c00441{letter-spacing:0.166800px;}
.ls4_c00441{letter-spacing:0.486600px;}
.lsa_c00441{letter-spacing:0.529800px;}
.ls0_c00441{letter-spacing:0.720000px;}
.ls1_c00441{letter-spacing:0.920304px;}
.ls2_c00441{letter-spacing:8.064000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00441{word-spacing:-60.480000px;}
.ws0_c00441{word-spacing:-18.000000px;}
.ws8_c00441{word-spacing:-17.856000px;}
.ws1_c00441{word-spacing:-15.606600px;}
.ws3_c00441{word-spacing:-15.286800px;}
.ws2_c00441{word-spacing:-15.120000px;}
.ws5_c00441{word-spacing:-14.889600px;}
.ws7_c00441{word-spacing:-14.653200px;}
.ws4_c00441{word-spacing:-12.600000px;}
.ws9_c00441{word-spacing:0.000000px;}
._7_c00441{margin-left:-2.971912px;}
._1_c00441{margin-left:-1.934997px;}
._0_c00441{width:1.390798px;}
._2_c00441{width:2.539797px;}
._3_c00441{width:4.477818px;}
._8_c00441{width:5.789401px;}
._6_c00441{width:7.379399px;}
._4_c00441{width:8.568000px;}
._5_c00441{width:9.632398px;}
._e_c00441{width:10.898404px;}
._d_c00441{width:16.934400px;}
._c_c00441{width:91.984289px;}
._9_c00441{width:121.115699px;}
._b_c00441{width:188.040077px;}
._a_c00441{width:189.479969px;}
.fc0_c00441{color:rgb(0,0,0);}
.fs3_c00441{font-size:38.880000px;}
.fs2_c00441{font-size:47.520000px;}
.fs1_c00441{font-size:60.480000px;}
.fs0_c00441{font-size:72.000000px;}
.y0_c00441{bottom:0.000000px;}
.y3_c00441{bottom:57.996000px;}
.y2_c00441{bottom:78.876000px;}
.y27_c00441{bottom:130.716000px;}
.y26_c00441{bottom:147.996000px;}
.y25_c00441{bottom:165.315000px;}
.y24_c00441{bottom:172.155000px;}
.y23_c00441{bottom:182.955000px;}
.y22_c00441{bottom:230.835000px;}
.y21_c00441{bottom:262.155000px;}
.y20_c00441{bottom:293.145000px;}
.y1f_c00441{bottom:324.105000px;}
.y1e_c00441{bottom:361.905000px;}
.y1d_c00441{bottom:387.825000px;}
.y1c_c00441{bottom:413.790000px;}
.y1b_c00441{bottom:439.350000px;}
.y1a_c00441{bottom:465.270000px;}
.y19_c00441{bottom:491.190000px;}
.y18_c00441{bottom:526.140000px;}
.y17_c00441{bottom:552.060000px;}
.y16_c00441{bottom:577.980000px;}
.y15_c00441{bottom:603.900000px;}
.y14_c00441{bottom:629.820000px;}
.y13_c00441{bottom:655.410000px;}
.y12_c00441{bottom:681.330000px;}
.y11_c00441{bottom:707.250000px;}
.y10_c00441{bottom:733.170000px;}
.yf_c00441{bottom:759.090000px;}
.ye_c00441{bottom:787.215000px;}
.yd_c00441{bottom:818.175000px;}
.yb_c00441{bottom:849.495000px;}
.yc_c00441{bottom:857.775000px;}
.ya_c00441{bottom:880.455000px;}
.y9_c00441{bottom:911.445000px;}
.y8_c00441{bottom:942.405000px;}
.y7_c00441{bottom:973.725000px;}
.y6_c00441{bottom:1004.685000px;}
.y5_c00441{bottom:1042.530000px;}
.y4_c00441{bottom:1068.450000px;}
.y1_c00441{bottom:1117.770000px;}
.h8_c00441{height:34.855313px;}
.h5_c00441{height:46.638281px;}
.h9_c00441{height:54.219375px;}
.h2_c00441{height:59.328281px;}
.h7_c00441{height:59.357813px;}
.h1_c00441{height:64.546875px;}
.h6_c00441{height:70.628906px;}
.h3_c00441{height:70.664062px;}
.h4_c00441{height:1187.995500px;}
.h0_c00441{height:1188.000000px;}
.w1_c00441{width:917.997000px;}
.w0_c00441{width:918.000000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:127.476000px;}
.x7_c00441{left:142.596000px;}
.x3_c00441{left:169.995000px;}
.x6_c00441{left:343.590000px;}
.x2_c00441{left:445.500000px;}
.x4_c00441{left:655.812000px;}
.x5_c00441{left:674.175000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls7_c00441{letter-spacing:-1.258667pt;}
.ls9_c00441{letter-spacing:-0.640000pt;}
.lsb_c00441{letter-spacing:-0.414933pt;}
.ls8_c00441{letter-spacing:-0.204800pt;}
.lsc_c00441{letter-spacing:-0.128000pt;}
.ls3_c00441{letter-spacing:0.000000pt;}
.ls6_c00441{letter-spacing:0.020267pt;}
.ls5_c00441{letter-spacing:0.148267pt;}
.ls4_c00441{letter-spacing:0.432533pt;}
.lsa_c00441{letter-spacing:0.470933pt;}
.ls0_c00441{letter-spacing:0.640000pt;}
.ls1_c00441{letter-spacing:0.818048pt;}
.ls2_c00441{letter-spacing:7.168000pt;}
.ws6_c00441{word-spacing:-53.760000pt;}
.ws0_c00441{word-spacing:-16.000000pt;}
.ws8_c00441{word-spacing:-15.872000pt;}
.ws1_c00441{word-spacing:-13.872533pt;}
.ws3_c00441{word-spacing:-13.588267pt;}
.ws2_c00441{word-spacing:-13.440000pt;}
.ws5_c00441{word-spacing:-13.235200pt;}
.ws7_c00441{word-spacing:-13.025067pt;}
.ws4_c00441{word-spacing:-11.200000pt;}
.ws9_c00441{word-spacing:0.000000pt;}
._7_c00441{margin-left:-2.641700pt;}
._1_c00441{margin-left:-1.719997pt;}
._0_c00441{width:1.236265pt;}
._2_c00441{width:2.257597pt;}
._3_c00441{width:3.980283pt;}
._8_c00441{width:5.146134pt;}
._6_c00441{width:6.559466pt;}
._4_c00441{width:7.616000pt;}
._5_c00441{width:8.562132pt;}
._e_c00441{width:9.687470pt;}
._d_c00441{width:15.052800pt;}
._c_c00441{width:81.763813pt;}
._9_c00441{width:107.658399pt;}
._b_c00441{width:167.146735pt;}
._a_c00441{width:168.426639pt;}
.fs3_c00441{font-size:34.560000pt;}
.fs2_c00441{font-size:42.240000pt;}
.fs1_c00441{font-size:53.760000pt;}
.fs0_c00441{font-size:64.000000pt;}
.y0_c00441{bottom:0.000000pt;}
.y3_c00441{bottom:51.552000pt;}
.y2_c00441{bottom:70.112000pt;}
.y27_c00441{bottom:116.192000pt;}
.y26_c00441{bottom:131.552000pt;}
.y25_c00441{bottom:146.946667pt;}
.y24_c00441{bottom:153.026667pt;}
.y23_c00441{bottom:162.626667pt;}
.y22_c00441{bottom:205.186667pt;}
.y21_c00441{bottom:233.026667pt;}
.y20_c00441{bottom:260.573333pt;}
.y1f_c00441{bottom:288.093333pt;}
.y1e_c00441{bottom:321.693333pt;}
.y1d_c00441{bottom:344.733333pt;}
.y1c_c00441{bottom:367.813333pt;}
.y1b_c00441{bottom:390.533333pt;}
.y1a_c00441{bottom:413.573333pt;}
.y19_c00441{bottom:436.613333pt;}
.y18_c00441{bottom:467.680000pt;}
.y17_c00441{bottom:490.720000pt;}
.y16_c00441{bottom:513.760000pt;}
.y15_c00441{bottom:536.800000pt;}
.y14_c00441{bottom:559.840000pt;}
.y13_c00441{bottom:582.586667pt;}
.y12_c00441{bottom:605.626667pt;}
.y11_c00441{bottom:628.666667pt;}
.y10_c00441{bottom:651.706667pt;}
.yf_c00441{bottom:674.746667pt;}
.ye_c00441{bottom:699.746667pt;}
.yd_c00441{bottom:727.266667pt;}
.yb_c00441{bottom:755.106667pt;}
.yc_c00441{bottom:762.466667pt;}
.ya_c00441{bottom:782.626667pt;}
.y9_c00441{bottom:810.173333pt;}
.y8_c00441{bottom:837.693333pt;}
.y7_c00441{bottom:865.533333pt;}
.y6_c00441{bottom:893.053333pt;}
.y5_c00441{bottom:926.693333pt;}
.y4_c00441{bottom:949.733333pt;}
.y1_c00441{bottom:993.573333pt;}
.h8_c00441{height:30.982500pt;}
.h5_c00441{height:41.456250pt;}
.h9_c00441{height:48.195000pt;}
.h2_c00441{height:52.736250pt;}
.h7_c00441{height:52.762500pt;}
.h1_c00441{height:57.375000pt;}
.h6_c00441{height:62.781250pt;}
.h3_c00441{height:62.812500pt;}
.h4_c00441{height:1055.996000pt;}
.h0_c00441{height:1056.000000pt;}
.w1_c00441{width:815.997333pt;}
.w0_c00441{width:816.000000pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:113.312000pt;}
.x7_c00441{left:126.752000pt;}
.x3_c00441{left:151.106667pt;}
.x6_c00441{left:305.413333pt;}
.x2_c00441{left:396.000000pt;}
.x4_c00441{left:582.944000pt;}
.x5_c00441{left:599.266667pt;}
}





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

.ir_c00442:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00442;src:url('chunks/assets/font_75cb7cf76b6e8a423bf47866.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_00267417cc8a463cac8ad682.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_ef102b7aacb3f8fc6237b346.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;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_c00442;src:url('chunks/assets/font_17ebe841753956c5ffb600b1.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00442;src:url('chunks/assets/font_bbea15b602b755878277f7f1.woff2')format("woff");}.ff5_c00442{font-family:ff5_c00442;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00442;src:url('chunks/assets/font_796a815048f3fa01f67fe7a7.woff2')format("woff");}.ff6_c00442{font-family:ff6_c00442;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls2f_c00442{letter-spacing:-2.880000px;}
.ls2e_c00442{letter-spacing:-1.380000px;}
.ls2a_c00442{letter-spacing:-1.272000px;}
.ls31_c00442{letter-spacing:-0.912000px;}
.ls22_c00442{letter-spacing:-0.720000px;}
.ls30_c00442{letter-spacing:-0.532800px;}
.ls32_c00442{letter-spacing:-0.486600px;}
.ls25_c00442{letter-spacing:-0.360000px;}
.ls2c_c00442{letter-spacing:-0.241800px;}
.ls21_c00442{letter-spacing:0.000000px;}
.ls28_c00442{letter-spacing:0.020400px;}
.ls7_c00442{letter-spacing:0.022800px;}
.ls26_c00442{letter-spacing:0.072000px;}
.ls2b_c00442{letter-spacing:0.166800px;}
.ls10_c00442{letter-spacing:0.167040px;}
.lsf_c00442{letter-spacing:0.168480px;}
.ls23_c00442{letter-spacing:0.288000px;}
.ls9_c00442{letter-spacing:0.302400px;}
.ls2d_c00442{letter-spacing:0.313800px;}
.lsb_c00442{letter-spacing:0.482400px;}
.ls6_c00442{letter-spacing:0.486720px;}
.ls2_c00442{letter-spacing:0.504000px;}
.ls8_c00442{letter-spacing:0.538560px;}
.ls24_c00442{letter-spacing:0.576000px;}
.ls27_c00442{letter-spacing:0.648000px;}
.ls4_c00442{letter-spacing:0.720000px;}
.ls19_c00442{letter-spacing:0.732000px;}
.lsa_c00442{letter-spacing:0.743040px;}
.ls29_c00442{letter-spacing:1.440000px;}
.ls5_c00442{letter-spacing:1.460160px;}
.ls3_c00442{letter-spacing:1.584000px;}
.lsc_c00442{letter-spacing:2.160000px;}
.lsd_c00442{letter-spacing:2.183040px;}
.ls18_c00442{letter-spacing:2.280000px;}
.lse_c00442{letter-spacing:2.340000px;}
.ls1b_c00442{letter-spacing:3.576960px;}
.ls17_c00442{letter-spacing:3.600000px;}
.ls1c_c00442{letter-spacing:5.040000px;}
.ls20_c00442{letter-spacing:5.063040px;}
.ls1f_c00442{letter-spacing:5.184000px;}
.ls13_c00442{letter-spacing:6.480000px;}
.ls14_c00442{letter-spacing:6.503040px;}
.ls12_c00442{letter-spacing:7.920000px;}
.ls11_c00442{letter-spacing:7.932000px;}
.ls16_c00442{letter-spacing:7.940160px;}
.ls15_c00442{letter-spacing:8.040000px;}
.ls1a_c00442{letter-spacing:8.064000px;}
.ls0_c00442{letter-spacing:10.800000px;}
.ls1_c00442{letter-spacing:12.240000px;}
.ls1e_c00442{letter-spacing:15.131399px;}
.ls1d_c00442{letter-spacing:15.276000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00442{word-spacing:-18.648000px;}
.ws2_c00442{word-spacing:-18.072000px;}
.ws0_c00442{word-spacing:-18.000000px;}
.ws1_c00442{word-spacing:-17.640000px;}
.wsa_c00442{word-spacing:-15.433800px;}
.wsb_c00442{word-spacing:-15.287040px;}
.ws8_c00442{word-spacing:-15.286800px;}
.ws6_c00442{word-spacing:-15.142800px;}
.ws5_c00442{word-spacing:-15.140400px;}
.ws4_c00442{word-spacing:-15.120000px;}
.ws9_c00442{word-spacing:-14.878200px;}
.wsd_c00442{word-spacing:-14.633400px;}
.ws7_c00442{word-spacing:-13.848000px;}
.wsc_c00442{word-spacing:-13.740000px;}
.wse_c00442{word-spacing:0.000000px;}
._1_c00442{margin-left:-2.736000px;}
._2_c00442{margin-left:-1.008000px;}
._0_c00442{width:1.080000px;}
._4_c00442{width:2.292000px;}
._f_c00442{width:3.468000px;}
._8_c00442{width:4.476000px;}
._7_c00442{width:5.544000px;}
._10_c00442{width:6.708000px;}
._3_c00442{width:7.848000px;}
._5_c00442{width:9.000000px;}
._6_c00442{width:10.284000px;}
._9_c00442{width:11.532000px;}
._c_c00442{width:12.600000px;}
._b_c00442{width:13.980000px;}
._a_c00442{width:15.348000px;}
._11_c00442{width:16.716007px;}
._e_c00442{width:30.168000px;}
._d_c00442{width:31.176000px;}
.fc0_c00442{color:rgb(0,0,0);}
.fs2_c00442{font-size:38.880000px;}
.fs1_c00442{font-size:47.520000px;}
.fs3_c00442{font-size:60.480000px;}
.fs0_c00442{font-size:72.000000px;}
.fs4_c00442{font-size:96.480000px;}
.y0_c00442{bottom:0.000000px;}
.y3_c00442{bottom:57.996000px;}
.y2_c00442{bottom:78.876000px;}
.y39_c00442{bottom:130.716000px;}
.y38_c00442{bottom:147.996000px;}
.y37_c00442{bottom:165.315000px;}
.y36_c00442{bottom:172.155000px;}
.y35_c00442{bottom:182.595000px;}
.y34_c00442{bottom:199.515000px;}
.y33_c00442{bottom:216.795000px;}
.y32_c00442{bottom:223.635000px;}
.y31_c00442{bottom:234.075000px;}
.y30_c00442{bottom:251.355000px;}
.y2f_c00442{bottom:258.195000px;}
.y2e_c00442{bottom:268.635000px;}
.y2d_c00442{bottom:285.945000px;}
.y2c_c00442{bottom:303.225000px;}
.y2b_c00442{bottom:320.505000px;}
.y2a_c00442{bottom:337.785000px;}
.y29_c00442{bottom:344.625000px;}
.y28_c00442{bottom:355.065000px;}
.y27_c00442{bottom:372.345000px;}
.y26_c00442{bottom:379.185000px;}
.y25_c00442{bottom:389.625000px;}
.y24_c00442{bottom:406.590000px;}
.y23_c00442{bottom:423.870000px;}
.y22_c00442{bottom:441.150000px;}
.y21_c00442{bottom:458.430000px;}
.y20_c00442{bottom:465.270000px;}
.y1f_c00442{bottom:475.710000px;}
.y1e_c00442{bottom:492.990000px;}
.y1d_c00442{bottom:510.270000px;}
.y1c_c00442{bottom:517.140000px;}
.y1b_c00442{bottom:527.940000px;}
.y1a_c00442{bottom:559.620000px;}
.y18_c00442{bottom:590.580000px;}
.y19_c00442{bottom:598.860000px;}
.y16_c00442{bottom:621.540000px;}
.y17_c00442{bottom:629.820000px;}
.y14_c00442{bottom:652.530000px;}
.y15_c00442{bottom:660.810000px;}
.y13_c00442{bottom:683.850000px;}
.y12_c00442{bottom:714.810000px;}
.y11_c00442{bottom:745.770000px;}
.yf_c00442{bottom:776.775000px;}
.y10_c00442{bottom:785.055000px;}
.ye_c00442{bottom:808.095000px;}
.yd_c00442{bottom:839.055000px;}
.yb_c00442{bottom:879.015000px;}
.yc_c00442{bottom:887.325000px;}
.ya_c00442{bottom:910.005000px;}
.y9_c00442{bottom:941.325000px;}
.y8_c00442{bottom:972.285000px;}
.y6_c00442{bottom:1003.245000px;}
.y7_c00442{bottom:1011.570000px;}
.y5_c00442{bottom:1034.250000px;}
.y4_c00442{bottom:1065.570000px;}
.y1_c00442{bottom:1117.770000px;}
.h5_c00442{height:34.855313px;}
.h4_c00442{height:46.638281px;}
.h7_c00442{height:54.219375px;}
.h6_c00442{height:59.357813px;}
.h1_c00442{height:64.546875px;}
.h2_c00442{height:70.664062px;}
.h8_c00442{height:99.166237px;}
.h3_c00442{height:1187.995500px;}
.h0_c00442{height:1188.000000px;}
.w1_c00442{width:917.997000px;}
.w0_c00442{width:918.000000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:127.476000px;}
.x13_c00442{left:142.596000px;}
.x9_c00442{left:169.995000px;}
.x10_c00442{left:184.392000px;}
.x7_c00442{left:189.432000px;}
.x11_c00442{left:202.755000px;}
.x8_c00442{left:207.795000px;}
.xa_c00442{left:277.662000px;}
.xb_c00442{left:296.025000px;}
.x12_c00442{left:343.590000px;}
.xe_c00442{left:405.147000px;}
.xf_c00442{left:423.510000px;}
.x2_c00442{left:445.500000px;}
.x3_c00442{left:504.897000px;}
.x4_c00442{left:523.260000px;}
.xc_c00442{left:676.332000px;}
.xd_c00442{left:694.695000px;}
.x5_c00442{left:767.802000px;}
.x6_c00442{left:786.165000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls2f_c00442{letter-spacing:-2.560000pt;}
.ls2e_c00442{letter-spacing:-1.226667pt;}
.ls2a_c00442{letter-spacing:-1.130667pt;}
.ls31_c00442{letter-spacing:-0.810667pt;}
.ls22_c00442{letter-spacing:-0.640000pt;}
.ls30_c00442{letter-spacing:-0.473600pt;}
.ls32_c00442{letter-spacing:-0.432533pt;}
.ls25_c00442{letter-spacing:-0.320000pt;}
.ls2c_c00442{letter-spacing:-0.214933pt;}
.ls21_c00442{letter-spacing:0.000000pt;}
.ls28_c00442{letter-spacing:0.018133pt;}
.ls7_c00442{letter-spacing:0.020267pt;}
.ls26_c00442{letter-spacing:0.064000pt;}
.ls2b_c00442{letter-spacing:0.148267pt;}
.ls10_c00442{letter-spacing:0.148480pt;}
.lsf_c00442{letter-spacing:0.149760pt;}
.ls23_c00442{letter-spacing:0.256000pt;}
.ls9_c00442{letter-spacing:0.268800pt;}
.ls2d_c00442{letter-spacing:0.278933pt;}
.lsb_c00442{letter-spacing:0.428800pt;}
.ls6_c00442{letter-spacing:0.432640pt;}
.ls2_c00442{letter-spacing:0.448000pt;}
.ls8_c00442{letter-spacing:0.478720pt;}
.ls24_c00442{letter-spacing:0.512000pt;}
.ls27_c00442{letter-spacing:0.576000pt;}
.ls4_c00442{letter-spacing:0.640000pt;}
.ls19_c00442{letter-spacing:0.650667pt;}
.lsa_c00442{letter-spacing:0.660480pt;}
.ls29_c00442{letter-spacing:1.280000pt;}
.ls5_c00442{letter-spacing:1.297920pt;}
.ls3_c00442{letter-spacing:1.408000pt;}
.lsc_c00442{letter-spacing:1.920000pt;}
.lsd_c00442{letter-spacing:1.940480pt;}
.ls18_c00442{letter-spacing:2.026667pt;}
.lse_c00442{letter-spacing:2.080000pt;}
.ls1b_c00442{letter-spacing:3.179520pt;}
.ls17_c00442{letter-spacing:3.200000pt;}
.ls1c_c00442{letter-spacing:4.480000pt;}
.ls20_c00442{letter-spacing:4.500480pt;}
.ls1f_c00442{letter-spacing:4.608000pt;}
.ls13_c00442{letter-spacing:5.760000pt;}
.ls14_c00442{letter-spacing:5.780480pt;}
.ls12_c00442{letter-spacing:7.040000pt;}
.ls11_c00442{letter-spacing:7.050667pt;}
.ls16_c00442{letter-spacing:7.057920pt;}
.ls15_c00442{letter-spacing:7.146667pt;}
.ls1a_c00442{letter-spacing:7.168000pt;}
.ls0_c00442{letter-spacing:9.600000pt;}
.ls1_c00442{letter-spacing:10.880000pt;}
.ls1e_c00442{letter-spacing:13.450132pt;}
.ls1d_c00442{letter-spacing:13.578667pt;}
.ws3_c00442{word-spacing:-16.576000pt;}
.ws2_c00442{word-spacing:-16.064000pt;}
.ws0_c00442{word-spacing:-16.000000pt;}
.ws1_c00442{word-spacing:-15.680000pt;}
.wsa_c00442{word-spacing:-13.718933pt;}
.wsb_c00442{word-spacing:-13.588480pt;}
.ws8_c00442{word-spacing:-13.588267pt;}
.ws6_c00442{word-spacing:-13.460267pt;}
.ws5_c00442{word-spacing:-13.458133pt;}
.ws4_c00442{word-spacing:-13.440000pt;}
.ws9_c00442{word-spacing:-13.225067pt;}
.wsd_c00442{word-spacing:-13.007467pt;}
.ws7_c00442{word-spacing:-12.309333pt;}
.wsc_c00442{word-spacing:-12.213333pt;}
.wse_c00442{word-spacing:0.000000pt;}
._1_c00442{margin-left:-2.432000pt;}
._2_c00442{margin-left:-0.896000pt;}
._0_c00442{width:0.960000pt;}
._4_c00442{width:2.037333pt;}
._f_c00442{width:3.082667pt;}
._8_c00442{width:3.978667pt;}
._7_c00442{width:4.928000pt;}
._10_c00442{width:5.962667pt;}
._3_c00442{width:6.976000pt;}
._5_c00442{width:8.000000pt;}
._6_c00442{width:9.141333pt;}
._9_c00442{width:10.250667pt;}
._c_c00442{width:11.200000pt;}
._b_c00442{width:12.426667pt;}
._a_c00442{width:13.642667pt;}
._11_c00442{width:14.858673pt;}
._e_c00442{width:26.816000pt;}
._d_c00442{width:27.712000pt;}
.fs2_c00442{font-size:34.560000pt;}
.fs1_c00442{font-size:42.240000pt;}
.fs3_c00442{font-size:53.760000pt;}
.fs0_c00442{font-size:64.000000pt;}
.fs4_c00442{font-size:85.760000pt;}
.y0_c00442{bottom:0.000000pt;}
.y3_c00442{bottom:51.552000pt;}
.y2_c00442{bottom:70.112000pt;}
.y39_c00442{bottom:116.192000pt;}
.y38_c00442{bottom:131.552000pt;}
.y37_c00442{bottom:146.946667pt;}
.y36_c00442{bottom:153.026667pt;}
.y35_c00442{bottom:162.306667pt;}
.y34_c00442{bottom:177.346667pt;}
.y33_c00442{bottom:192.706667pt;}
.y32_c00442{bottom:198.786667pt;}
.y31_c00442{bottom:208.066667pt;}
.y30_c00442{bottom:223.426667pt;}
.y2f_c00442{bottom:229.506667pt;}
.y2e_c00442{bottom:238.786667pt;}
.y2d_c00442{bottom:254.173333pt;}
.y2c_c00442{bottom:269.533333pt;}
.y2b_c00442{bottom:284.893333pt;}
.y2a_c00442{bottom:300.253333pt;}
.y29_c00442{bottom:306.333333pt;}
.y28_c00442{bottom:315.613333pt;}
.y27_c00442{bottom:330.973333pt;}
.y26_c00442{bottom:337.053333pt;}
.y25_c00442{bottom:346.333333pt;}
.y24_c00442{bottom:361.413333pt;}
.y23_c00442{bottom:376.773333pt;}
.y22_c00442{bottom:392.133333pt;}
.y21_c00442{bottom:407.493333pt;}
.y20_c00442{bottom:413.573333pt;}
.y1f_c00442{bottom:422.853333pt;}
.y1e_c00442{bottom:438.213333pt;}
.y1d_c00442{bottom:453.573333pt;}
.y1c_c00442{bottom:459.680000pt;}
.y1b_c00442{bottom:469.280000pt;}
.y1a_c00442{bottom:497.440000pt;}
.y18_c00442{bottom:524.960000pt;}
.y19_c00442{bottom:532.320000pt;}
.y16_c00442{bottom:552.480000pt;}
.y17_c00442{bottom:559.840000pt;}
.y14_c00442{bottom:580.026667pt;}
.y15_c00442{bottom:587.386667pt;}
.y13_c00442{bottom:607.866667pt;}
.y12_c00442{bottom:635.386667pt;}
.y11_c00442{bottom:662.906667pt;}
.yf_c00442{bottom:690.466667pt;}
.y10_c00442{bottom:697.826667pt;}
.ye_c00442{bottom:718.306667pt;}
.yd_c00442{bottom:745.826667pt;}
.yb_c00442{bottom:781.346667pt;}
.yc_c00442{bottom:788.733333pt;}
.ya_c00442{bottom:808.893333pt;}
.y9_c00442{bottom:836.733333pt;}
.y8_c00442{bottom:864.253333pt;}
.y6_c00442{bottom:891.773333pt;}
.y7_c00442{bottom:899.173333pt;}
.y5_c00442{bottom:919.333333pt;}
.y4_c00442{bottom:947.173333pt;}
.y1_c00442{bottom:993.573333pt;}
.h5_c00442{height:30.982500pt;}
.h4_c00442{height:41.456250pt;}
.h7_c00442{height:48.195000pt;}
.h6_c00442{height:52.762500pt;}
.h1_c00442{height:57.375000pt;}
.h2_c00442{height:62.812500pt;}
.h8_c00442{height:88.147766pt;}
.h3_c00442{height:1055.996000pt;}
.h0_c00442{height:1056.000000pt;}
.w1_c00442{width:815.997333pt;}
.w0_c00442{width:816.000000pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:113.312000pt;}
.x13_c00442{left:126.752000pt;}
.x9_c00442{left:151.106667pt;}
.x10_c00442{left:163.904000pt;}
.x7_c00442{left:168.384000pt;}
.x11_c00442{left:180.226667pt;}
.x8_c00442{left:184.706667pt;}
.xa_c00442{left:246.810667pt;}
.xb_c00442{left:263.133333pt;}
.x12_c00442{left:305.413333pt;}
.xe_c00442{left:360.130667pt;}
.xf_c00442{left:376.453333pt;}
.x2_c00442{left:396.000000pt;}
.x3_c00442{left:448.797333pt;}
.x4_c00442{left:465.120000pt;}
.xc_c00442{left:601.184000pt;}
.xd_c00442{left:617.506667pt;}
.x5_c00442{left:682.490667pt;}
.x6_c00442{left:698.813333pt;}
}





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

.ir_c00443:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00443;src:url('chunks/assets/font_0ee861285579d49923fc3d0d.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_20aee5c12ed962d6e5c3f67e.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_56d5e51ea7108ed090258376.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00443;src:url('chunks/assets/font_ebf35b9c76eed7f66ee85201.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;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_c00443;src:url('chunks/assets/font_aad6d232488d30a4b73ef275.woff2')format("woff");}.ff5_c00443{font-family:ff5_c00443;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00443;src:url('chunks/assets/font_5484e60becde88ab30f86005.woff2')format("woff");}.ff6_c00443{font-family:ff6_c00443;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.lsd_c00443{letter-spacing:-1.272000px;}
.ls10_c00443{letter-spacing:-0.954000px;}
.ls8_c00443{letter-spacing:0.000000px;}
.lsb_c00443{letter-spacing:0.020400px;}
.lsf_c00443{letter-spacing:0.022800px;}
.lsc_c00443{letter-spacing:0.466800px;}
.lse_c00443{letter-spacing:0.529800px;}
.ls9_c00443{letter-spacing:0.576000px;}
.lsa_c00443{letter-spacing:0.648000px;}
.ls6_c00443{letter-spacing:0.708480px;}
.ls2_c00443{letter-spacing:0.720000px;}
.ls5_c00443{letter-spacing:0.740160px;}
.ls0_c00443{letter-spacing:5.040000px;}
.ls3_c00443{letter-spacing:5.184000px;}
.ls7_c00443{letter-spacing:10.800000px;}
.ls1_c00443{letter-spacing:12.240000px;}
.ls4_c00443{letter-spacing:15.276000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00443{word-spacing:-72.000000px;}
.ws5_c00443{word-spacing:-60.480000px;}
.ws0_c00443{word-spacing:-18.648000px;}
.ws2_c00443{word-spacing:-18.000000px;}
.ws3_c00443{word-spacing:-15.140400px;}
.ws4_c00443{word-spacing:-15.120000px;}
.ws7_c00443{word-spacing:-14.166000px;}
.ws6_c00443{word-spacing:-13.848000px;}
.ws8_c00443{word-spacing:0.000000px;}
._4_c00443{margin-left:-2.448000px;}
._0_c00443{margin-left:-1.296000px;}
._1_c00443{width:1.368000px;}
._7_c00443{width:2.376000px;}
._6_c00443{width:4.392000px;}
._5_c00443{width:5.400000px;}
._8_c00443{width:6.552000px;}
._d_c00443{width:7.776000px;}
._9_c00443{width:9.228000px;}
._a_c00443{width:10.860000px;}
._e_c00443{width:12.384000px;}
._b_c00443{width:13.464000px;}
._c_c00443{width:15.324000px;}
._f_c00443{width:16.926002px;}
._3_c00443{width:51.840000px;}
._2_c00443{width:53.064000px;}
.fc0_c00443{color:rgb(0,0,0);}
.fs3_c00443{font-size:38.880000px;}
.fs1_c00443{font-size:47.520000px;}
.fs2_c00443{font-size:60.480000px;}
.fs0_c00443{font-size:72.000000px;}
.y0_c00443{bottom:0.000000px;}
.y3_c00443{bottom:57.996000px;}
.y2_c00443{bottom:78.876000px;}
.y2d_c00443{bottom:110.556000px;}
.y2c_c00443{bottom:130.716000px;}
.y2b_c00443{bottom:147.996000px;}
.y2a_c00443{bottom:165.315000px;}
.y29_c00443{bottom:172.155000px;}
.y28_c00443{bottom:182.595000px;}
.y27_c00443{bottom:199.515000px;}
.y26_c00443{bottom:216.795000px;}
.y25_c00443{bottom:234.075000px;}
.y24_c00443{bottom:251.355000px;}
.y23_c00443{bottom:258.195000px;}
.y22_c00443{bottom:268.635000px;}
.y21_c00443{bottom:285.945000px;}
.y20_c00443{bottom:292.785000px;}
.y1f_c00443{bottom:303.945000px;}
.y1e_c00443{bottom:339.585000px;}
.y1c_c00443{bottom:370.545000px;}
.y1d_c00443{bottom:378.825000px;}
.y1b_c00443{bottom:401.910000px;}
.y1a_c00443{bottom:439.350000px;}
.y19_c00443{bottom:474.270000px;}
.y18_c00443{bottom:500.190000px;}
.y17_c00443{bottom:528.300000px;}
.y16_c00443{bottom:559.620000px;}
.y15_c00443{bottom:590.580000px;}
.y14_c00443{bottom:621.540000px;}
.y13_c00443{bottom:652.530000px;}
.y12_c00443{bottom:683.850000px;}
.y10_c00443{bottom:714.810000px;}
.y11_c00443{bottom:723.090000px;}
.yf_c00443{bottom:745.770000px;}
.ye_c00443{bottom:785.775000px;}
.yd_c00443{bottom:817.095000px;}
.yc_c00443{bottom:848.055000px;}
.yb_c00443{bottom:879.015000px;}
.ya_c00443{bottom:910.005000px;}
.y9_c00443{bottom:941.325000px;}
.y7_c00443{bottom:972.285000px;}
.y8_c00443{bottom:980.565000px;}
.y6_c00443{bottom:1003.245000px;}
.y5_c00443{bottom:1034.250000px;}
.y4_c00443{bottom:1065.570000px;}
.y1_c00443{bottom:1117.770000px;}
.h7_c00443{height:34.855313px;}
.h4_c00443{height:46.638281px;}
.h8_c00443{height:54.219375px;}
.h6_c00443{height:59.328281px;}
.h5_c00443{height:59.357813px;}
.h1_c00443{height:64.546875px;}
.h2_c00443{height:70.664062px;}
.h3_c00443{height:1187.995500px;}
.h0_c00443{height:1188.000000px;}
.w1_c00443{width:917.997000px;}
.w0_c00443{width:918.000000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:127.476000px;}
.xb_c00443{left:142.596000px;}
.x5_c00443{left:169.995000px;}
.x3_c00443{left:217.872000px;}
.x4_c00443{left:236.235000px;}
.xa_c00443{left:343.590000px;}
.x2_c00443{left:445.500000px;}
.x8_c00443{left:686.412000px;}
.x9_c00443{left:704.775000px;}
.x6_c00443{left:747.642000px;}
.x7_c00443{left:766.005000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.lsd_c00443{letter-spacing:-1.130667pt;}
.ls10_c00443{letter-spacing:-0.848000pt;}
.ls8_c00443{letter-spacing:0.000000pt;}
.lsb_c00443{letter-spacing:0.018133pt;}
.lsf_c00443{letter-spacing:0.020267pt;}
.lsc_c00443{letter-spacing:0.414933pt;}
.lse_c00443{letter-spacing:0.470933pt;}
.ls9_c00443{letter-spacing:0.512000pt;}
.lsa_c00443{letter-spacing:0.576000pt;}
.ls6_c00443{letter-spacing:0.629760pt;}
.ls2_c00443{letter-spacing:0.640000pt;}
.ls5_c00443{letter-spacing:0.657920pt;}
.ls0_c00443{letter-spacing:4.480000pt;}
.ls3_c00443{letter-spacing:4.608000pt;}
.ls7_c00443{letter-spacing:9.600000pt;}
.ls1_c00443{letter-spacing:10.880000pt;}
.ls4_c00443{letter-spacing:13.578667pt;}
.ws1_c00443{word-spacing:-64.000000pt;}
.ws5_c00443{word-spacing:-53.760000pt;}
.ws0_c00443{word-spacing:-16.576000pt;}
.ws2_c00443{word-spacing:-16.000000pt;}
.ws3_c00443{word-spacing:-13.458133pt;}
.ws4_c00443{word-spacing:-13.440000pt;}
.ws7_c00443{word-spacing:-12.592000pt;}
.ws6_c00443{word-spacing:-12.309333pt;}
.ws8_c00443{word-spacing:0.000000pt;}
._4_c00443{margin-left:-2.176000pt;}
._0_c00443{margin-left:-1.152000pt;}
._1_c00443{width:1.216000pt;}
._7_c00443{width:2.112000pt;}
._6_c00443{width:3.904000pt;}
._5_c00443{width:4.800000pt;}
._8_c00443{width:5.824000pt;}
._d_c00443{width:6.912000pt;}
._9_c00443{width:8.202667pt;}
._a_c00443{width:9.653333pt;}
._e_c00443{width:11.008000pt;}
._b_c00443{width:11.968000pt;}
._c_c00443{width:13.621333pt;}
._f_c00443{width:15.045335pt;}
._3_c00443{width:46.080000pt;}
._2_c00443{width:47.168000pt;}
.fs3_c00443{font-size:34.560000pt;}
.fs1_c00443{font-size:42.240000pt;}
.fs2_c00443{font-size:53.760000pt;}
.fs0_c00443{font-size:64.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y3_c00443{bottom:51.552000pt;}
.y2_c00443{bottom:70.112000pt;}
.y2d_c00443{bottom:98.272000pt;}
.y2c_c00443{bottom:116.192000pt;}
.y2b_c00443{bottom:131.552000pt;}
.y2a_c00443{bottom:146.946667pt;}
.y29_c00443{bottom:153.026667pt;}
.y28_c00443{bottom:162.306667pt;}
.y27_c00443{bottom:177.346667pt;}
.y26_c00443{bottom:192.706667pt;}
.y25_c00443{bottom:208.066667pt;}
.y24_c00443{bottom:223.426667pt;}
.y23_c00443{bottom:229.506667pt;}
.y22_c00443{bottom:238.786667pt;}
.y21_c00443{bottom:254.173333pt;}
.y20_c00443{bottom:260.253333pt;}
.y1f_c00443{bottom:270.173333pt;}
.y1e_c00443{bottom:301.853333pt;}
.y1c_c00443{bottom:329.373333pt;}
.y1d_c00443{bottom:336.733333pt;}
.y1b_c00443{bottom:357.253333pt;}
.y1a_c00443{bottom:390.533333pt;}
.y19_c00443{bottom:421.573333pt;}
.y18_c00443{bottom:444.613333pt;}
.y17_c00443{bottom:469.600000pt;}
.y16_c00443{bottom:497.440000pt;}
.y15_c00443{bottom:524.960000pt;}
.y14_c00443{bottom:552.480000pt;}
.y13_c00443{bottom:580.026667pt;}
.y12_c00443{bottom:607.866667pt;}
.y10_c00443{bottom:635.386667pt;}
.y11_c00443{bottom:642.746667pt;}
.yf_c00443{bottom:662.906667pt;}
.ye_c00443{bottom:698.466667pt;}
.yd_c00443{bottom:726.306667pt;}
.yc_c00443{bottom:753.826667pt;}
.yb_c00443{bottom:781.346667pt;}
.ya_c00443{bottom:808.893333pt;}
.y9_c00443{bottom:836.733333pt;}
.y7_c00443{bottom:864.253333pt;}
.y8_c00443{bottom:871.613333pt;}
.y6_c00443{bottom:891.773333pt;}
.y5_c00443{bottom:919.333333pt;}
.y4_c00443{bottom:947.173333pt;}
.y1_c00443{bottom:993.573333pt;}
.h7_c00443{height:30.982500pt;}
.h4_c00443{height:41.456250pt;}
.h8_c00443{height:48.195000pt;}
.h6_c00443{height:52.736250pt;}
.h5_c00443{height:52.762500pt;}
.h1_c00443{height:57.375000pt;}
.h2_c00443{height:62.812500pt;}
.h3_c00443{height:1055.996000pt;}
.h0_c00443{height:1056.000000pt;}
.w1_c00443{width:815.997333pt;}
.w0_c00443{width:816.000000pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:113.312000pt;}
.xb_c00443{left:126.752000pt;}
.x5_c00443{left:151.106667pt;}
.x3_c00443{left:193.664000pt;}
.x4_c00443{left:209.986667pt;}
.xa_c00443{left:305.413333pt;}
.x2_c00443{left:396.000000pt;}
.x8_c00443{left:610.144000pt;}
.x9_c00443{left:626.466667pt;}
.x6_c00443{left:664.570667pt;}
.x7_c00443{left:680.893333pt;}
}





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

.ir_c00444:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00444;src:url('chunks/assets/font_1f91c977ba7500c2c18183bb.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_822cefed309dacfa4cefc880.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_dd5aa288e7f80b6c53b037b6.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;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_c00444;src:url('chunks/assets/font_442228bde0a9f41a12226817.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00444;src:url('chunks/assets/font_1722497f9130ab737dc421ff.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00444;src:url('chunks/assets/font_994cc3e87e6322bf0a17cfbe.woff2')format("woff");}.ff6_c00444{font-family:ff6_c00444;line-height:1.104004;font-style:normal;font-weight: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_c00444;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00444{font-family:ff7_c00444;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls17_c00444{letter-spacing:-1.680000px;}
.lsd_c00444{letter-spacing:-1.512000px;}
.ls15_c00444{letter-spacing:-1.416000px;}
.lsf_c00444{letter-spacing:-1.380000px;}
.ls16_c00444{letter-spacing:-0.912000px;}
.ls12_c00444{letter-spacing:-0.532800px;}
.lsc_c00444{letter-spacing:-0.241800px;}
.lsa_c00444{letter-spacing:0.000000px;}
.lsb_c00444{letter-spacing:0.020400px;}
.ls11_c00444{letter-spacing:0.022800px;}
.lse_c00444{letter-spacing:0.060600px;}
.ls13_c00444{letter-spacing:0.166800px;}
.ls2_c00444{letter-spacing:0.302400px;}
.ls18_c00444{letter-spacing:0.486600px;}
.ls3_c00444{letter-spacing:0.518400px;}
.ls0_c00444{letter-spacing:0.524160px;}
.ls14_c00444{letter-spacing:0.529800px;}
.ls5_c00444{letter-spacing:0.696960px;}
.ls10_c00444{letter-spacing:0.702000px;}
.ls1_c00444{letter-spacing:0.720000px;}
.ls8_c00444{letter-spacing:0.739917px;}
.ls6_c00444{letter-spacing:0.740355px;}
.ls4_c00444{letter-spacing:0.860356px;}
.ls7_c00444{letter-spacing:0.900000px;}
.ls9_c00444{letter-spacing:2.160000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00444{word-spacing:-60.480000px;}
.ws0_c00444{word-spacing:-18.000000px;}
.ws4_c00444{word-spacing:-15.822000px;}
.wsa_c00444{word-spacing:-15.606600px;}
.ws8_c00444{word-spacing:-15.286800px;}
.ws1_c00444{word-spacing:-15.140400px;}
.ws2_c00444{word-spacing:-15.120000px;}
.ws7_c00444{word-spacing:-14.878200px;}
.ws6_c00444{word-spacing:-14.587200px;}
.ws9_c00444{word-spacing:-13.440000px;}
.ws5_c00444{word-spacing:-12.600000px;}
.wsb_c00444{word-spacing:0.000000px;}
._3_c00444{margin-left:-3.168000px;}
._1_c00444{margin-left:-1.944000px;}
._0_c00444{width:1.368000px;}
._5_c00444{width:2.376000px;}
._2_c00444{width:3.888000px;}
._4_c00444{width:5.184000px;}
._6_c00444{width:6.564000px;}
._d_c00444{width:8.342853px;}
._b_c00444{width:9.382798px;}
._c_c00444{width:11.412495px;}
._f_c00444{width:19.141171px;}
._e_c00444{width:20.836800px;}
._a_c00444{width:22.938036px;}
._7_c00444{width:127.341548px;}
._9_c00444{width:188.040083px;}
._8_c00444{width:189.479969px;}
.fc0_c00444{color:rgb(0,0,0);}
.fs2_c00444{font-size:47.520000px;}
.fs1_c00444{font-size:60.480000px;}
.fs0_c00444{font-size:72.000000px;}
.y0_c00444{bottom:0.000000px;}
.y3_c00444{bottom:57.996000px;}
.y2_c00444{bottom:78.876000px;}
.y27_c00444{bottom:130.716000px;}
.y26_c00444{bottom:147.996000px;}
.y25_c00444{bottom:165.315000px;}
.y24_c00444{bottom:182.595000px;}
.y23_c00444{bottom:199.515000px;}
.y22_c00444{bottom:216.795000px;}
.y21_c00444{bottom:234.075000px;}
.y20_c00444{bottom:251.355000px;}
.y1f_c00444{bottom:269.355000px;}
.y1e_c00444{bottom:343.545000px;}
.y1d_c00444{bottom:381.345000px;}
.y1c_c00444{bottom:406.950000px;}
.y1b_c00444{bottom:432.870000px;}
.y1a_c00444{bottom:458.790000px;}
.y19_c00444{bottom:484.710000px;}
.y18_c00444{bottom:510.630000px;}
.y17_c00444{bottom:536.580000px;}
.y16_c00444{bottom:571.500000px;}
.y15_c00444{bottom:597.420000px;}
.y14_c00444{bottom:622.980000px;}
.y13_c00444{bottom:648.930000px;}
.y12_c00444{bottom:674.850000px;}
.y11_c00444{bottom:700.770000px;}
.y10_c00444{bottom:726.690000px;}
.yf_c00444{bottom:752.610000px;}
.ye_c00444{bottom:778.575000px;}
.yd_c00444{bottom:804.495000px;}
.yc_c00444{bottom:830.055000px;}
.yb_c00444{bottom:855.975000px;}
.ya_c00444{bottom:881.895000px;}
.y9_c00444{bottom:910.005000px;}
.y8_c00444{bottom:941.325000px;}
.y7_c00444{bottom:972.285000px;}
.y6_c00444{bottom:1003.245000px;}
.y5_c00444{bottom:1034.250000px;}
.y4_c00444{bottom:1065.570000px;}
.y1_c00444{bottom:1117.770000px;}
.h7_c00444{height:54.219375px;}
.h5_c00444{height:59.328281px;}
.h3_c00444{height:59.357813px;}
.h4_c00444{height:60.952500px;}
.h1_c00444{height:64.546875px;}
.h2_c00444{height:70.664062px;}
.h6_c00444{height:1187.995500px;}
.h0_c00444{height:1188.000000px;}
.w1_c00444{width:917.997000px;}
.w0_c00444{width:918.000000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:127.476000px;}
.x3_c00444{left:169.995000px;}
.x2_c00444{left:445.500000px;}
.x4_c00444{left:790.485000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls17_c00444{letter-spacing:-1.493333pt;}
.lsd_c00444{letter-spacing:-1.344000pt;}
.ls15_c00444{letter-spacing:-1.258667pt;}
.lsf_c00444{letter-spacing:-1.226667pt;}
.ls16_c00444{letter-spacing:-0.810667pt;}
.ls12_c00444{letter-spacing:-0.473600pt;}
.lsc_c00444{letter-spacing:-0.214933pt;}
.lsa_c00444{letter-spacing:0.000000pt;}
.lsb_c00444{letter-spacing:0.018133pt;}
.ls11_c00444{letter-spacing:0.020267pt;}
.lse_c00444{letter-spacing:0.053867pt;}
.ls13_c00444{letter-spacing:0.148267pt;}
.ls2_c00444{letter-spacing:0.268800pt;}
.ls18_c00444{letter-spacing:0.432533pt;}
.ls3_c00444{letter-spacing:0.460800pt;}
.ls0_c00444{letter-spacing:0.465920pt;}
.ls14_c00444{letter-spacing:0.470933pt;}
.ls5_c00444{letter-spacing:0.619520pt;}
.ls10_c00444{letter-spacing:0.624000pt;}
.ls1_c00444{letter-spacing:0.640000pt;}
.ls8_c00444{letter-spacing:0.657704pt;}
.ls6_c00444{letter-spacing:0.658093pt;}
.ls4_c00444{letter-spacing:0.764761pt;}
.ls7_c00444{letter-spacing:0.800000pt;}
.ls9_c00444{letter-spacing:1.920000pt;}
.ws3_c00444{word-spacing:-53.760000pt;}
.ws0_c00444{word-spacing:-16.000000pt;}
.ws4_c00444{word-spacing:-14.064000pt;}
.wsa_c00444{word-spacing:-13.872533pt;}
.ws8_c00444{word-spacing:-13.588267pt;}
.ws1_c00444{word-spacing:-13.458133pt;}
.ws2_c00444{word-spacing:-13.440000pt;}
.ws7_c00444{word-spacing:-13.225067pt;}
.ws6_c00444{word-spacing:-12.966400pt;}
.ws9_c00444{word-spacing:-11.946667pt;}
.ws5_c00444{word-spacing:-11.200000pt;}
.wsb_c00444{word-spacing:0.000000pt;}
._3_c00444{margin-left:-2.816000pt;}
._1_c00444{margin-left:-1.728000pt;}
._0_c00444{width:1.216000pt;}
._5_c00444{width:2.112000pt;}
._2_c00444{width:3.456000pt;}
._4_c00444{width:4.608000pt;}
._6_c00444{width:5.834667pt;}
._d_c00444{width:7.415869pt;}
._b_c00444{width:8.340265pt;}
._c_c00444{width:10.144440pt;}
._f_c00444{width:17.014374pt;}
._e_c00444{width:18.521600pt;}
._a_c00444{width:20.389366pt;}
._7_c00444{width:113.192487pt;}
._9_c00444{width:167.146740pt;}
._8_c00444{width:168.426639pt;}
.fs2_c00444{font-size:42.240000pt;}
.fs1_c00444{font-size:53.760000pt;}
.fs0_c00444{font-size:64.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y3_c00444{bottom:51.552000pt;}
.y2_c00444{bottom:70.112000pt;}
.y27_c00444{bottom:116.192000pt;}
.y26_c00444{bottom:131.552000pt;}
.y25_c00444{bottom:146.946667pt;}
.y24_c00444{bottom:162.306667pt;}
.y23_c00444{bottom:177.346667pt;}
.y22_c00444{bottom:192.706667pt;}
.y21_c00444{bottom:208.066667pt;}
.y20_c00444{bottom:223.426667pt;}
.y1f_c00444{bottom:239.426667pt;}
.y1e_c00444{bottom:305.373333pt;}
.y1d_c00444{bottom:338.973333pt;}
.y1c_c00444{bottom:361.733333pt;}
.y1b_c00444{bottom:384.773333pt;}
.y1a_c00444{bottom:407.813333pt;}
.y19_c00444{bottom:430.853333pt;}
.y18_c00444{bottom:453.893333pt;}
.y17_c00444{bottom:476.960000pt;}
.y16_c00444{bottom:508.000000pt;}
.y15_c00444{bottom:531.040000pt;}
.y14_c00444{bottom:553.760000pt;}
.y13_c00444{bottom:576.826667pt;}
.y12_c00444{bottom:599.866667pt;}
.y11_c00444{bottom:622.906667pt;}
.y10_c00444{bottom:645.946667pt;}
.yf_c00444{bottom:668.986667pt;}
.ye_c00444{bottom:692.066667pt;}
.yd_c00444{bottom:715.106667pt;}
.yc_c00444{bottom:737.826667pt;}
.yb_c00444{bottom:760.866667pt;}
.ya_c00444{bottom:783.906667pt;}
.y9_c00444{bottom:808.893333pt;}
.y8_c00444{bottom:836.733333pt;}
.y7_c00444{bottom:864.253333pt;}
.y6_c00444{bottom:891.773333pt;}
.y5_c00444{bottom:919.333333pt;}
.y4_c00444{bottom:947.173333pt;}
.y1_c00444{bottom:993.573333pt;}
.h7_c00444{height:48.195000pt;}
.h5_c00444{height:52.736250pt;}
.h3_c00444{height:52.762500pt;}
.h4_c00444{height:54.180000pt;}
.h1_c00444{height:57.375000pt;}
.h2_c00444{height:62.812500pt;}
.h6_c00444{height:1055.996000pt;}
.h0_c00444{height:1056.000000pt;}
.w1_c00444{width:815.997333pt;}
.w0_c00444{width:816.000000pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:113.312000pt;}
.x3_c00444{left:151.106667pt;}
.x2_c00444{left:396.000000pt;}
.x4_c00444{left:702.653333pt;}
}





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

.ir_c00445:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00445;src:url('chunks/assets/font_d64df9e89a8010696c277964.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_7c615dc7f694b62bc491c8f4.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_611bede3b257b1c1056c398f.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_a720ddb6e887953f09fd2b17.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00445;src:url('chunks/assets/font_7f88c1d480e81cfb877113f2.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;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_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.lsd_c00445{letter-spacing:-0.912000px;}
.ls8_c00445{letter-spacing:-0.792000px;}
.lsb_c00445{letter-spacing:-0.720000px;}
.lsc_c00445{letter-spacing:-0.532800px;}
.ls7_c00445{letter-spacing:0.000000px;}
.ls0_c00445{letter-spacing:0.144000px;}
.lsa_c00445{letter-spacing:0.466800px;}
.ls3_c00445{letter-spacing:0.504000px;}
.ls9_c00445{letter-spacing:0.648000px;}
.ls4_c00445{letter-spacing:0.720000px;}
.ls6_c00445{letter-spacing:2.160000px;}
.ls5_c00445{letter-spacing:2.316960px;}
.ls2_c00445{letter-spacing:12.240000px;}
.ls1_c00445{letter-spacing:12.384000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00445{word-spacing:-72.000000px;}
.ws3_c00445{word-spacing:-18.648000px;}
.ws1_c00445{word-spacing:-18.000000px;}
.ws2_c00445{word-spacing:-17.208000px;}
.ws4_c00445{word-spacing:0.000000px;}
._5_c00445{margin-left:-2.880000px;}
._1_c00445{margin-left:-1.440000px;}
._2_c00445{width:1.512000px;}
._6_c00445{width:3.240000px;}
._7_c00445{width:4.416000px;}
._8_c00445{width:5.904000px;}
._4_c00445{width:6.912000px;}
._0_c00445{width:8.568000px;}
._3_c00445{width:9.624000px;}
._a_c00445{width:11.148000px;}
._9_c00445{width:12.468000px;}
._b_c00445{width:14.172000px;}
._c_c00445{width:16.344000px;}
._d_c00445{width:30.600000px;}
._e_c00445{width:33.048000px;}
.fc0_c00445{color:rgb(0,0,0);}
.fs2_c00445{font-size:38.880000px;}
.fs1_c00445{font-size:47.520000px;}
.fs3_c00445{font-size:60.480000px;}
.fs0_c00445{font-size:72.000000px;}
.y0_c00445{bottom:0.000000px;}
.y3_c00445{bottom:57.996000px;}
.y2_c00445{bottom:78.876000px;}
.y29_c00445{bottom:110.556000px;}
.y28_c00445{bottom:130.716000px;}
.y27_c00445{bottom:147.996000px;}
.y26_c00445{bottom:154.875000px;}
.y25_c00445{bottom:165.315000px;}
.y24_c00445{bottom:182.595000px;}
.y23_c00445{bottom:199.515000px;}
.y22_c00445{bottom:206.355000px;}
.y21_c00445{bottom:217.515000px;}
.y1f_c00445{bottom:257.835000px;}
.y20_c00445{bottom:266.115000px;}
.y1e_c00445{bottom:289.185000px;}
.y1d_c00445{bottom:320.145000px;}
.y1c_c00445{bottom:351.105000px;}
.y1b_c00445{bottom:382.065000px;}
.y1a_c00445{bottom:413.070000px;}
.y19_c00445{bottom:444.390000px;}
.y18_c00445{bottom:475.350000px;}
.y17_c00445{bottom:506.310000px;}
.y16_c00445{bottom:537.300000px;}
.y15_c00445{bottom:568.620000px;}
.y14_c00445{bottom:599.580000px;}
.y13_c00445{bottom:630.540000px;}
.y12_c00445{bottom:661.530000px;}
.y11_c00445{bottom:692.850000px;}
.yf_c00445{bottom:723.810000px;}
.y10_c00445{bottom:732.090000px;}
.ye_c00445{bottom:754.770000px;}
.yd_c00445{bottom:785.775000px;}
.yc_c00445{bottom:817.095000px;}
.yb_c00445{bottom:848.055000px;}
.ya_c00445{bottom:879.015000px;}
.y9_c00445{bottom:910.005000px;}
.y8_c00445{bottom:941.325000px;}
.y7_c00445{bottom:972.285000px;}
.y6_c00445{bottom:1003.245000px;}
.y5_c00445{bottom:1034.250000px;}
.y4_c00445{bottom:1065.570000px;}
.y1_c00445{bottom:1117.770000px;}
.h6_c00445{height:34.855313px;}
.h4_c00445{height:46.638281px;}
.h8_c00445{height:54.219375px;}
.h7_c00445{height:59.357813px;}
.h1_c00445{height:64.546875px;}
.h5_c00445{height:70.628906px;}
.h2_c00445{height:70.664062px;}
.h3_c00445{height:1187.995500px;}
.h0_c00445{height:1188.000000px;}
.w1_c00445{width:917.997000px;}
.w0_c00445{width:918.000000px;}
.x0_c00445{left:0.000000px;}
.x1_c00445{left:127.476000px;}
.xa_c00445{left:142.596000px;}
.x3_c00445{left:169.995000px;}
.x6_c00445{left:178.635000px;}
.x9_c00445{left:343.590000px;}
.x4_c00445{left:366.627000px;}
.x5_c00445{left:384.990000px;}
.x2_c00445{left:445.500000px;}
.x7_c00445{left:491.577000px;}
.x8_c00445{left:509.940000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.lsd_c00445{letter-spacing:-0.810667pt;}
.ls8_c00445{letter-spacing:-0.704000pt;}
.lsb_c00445{letter-spacing:-0.640000pt;}
.lsc_c00445{letter-spacing:-0.473600pt;}
.ls7_c00445{letter-spacing:0.000000pt;}
.ls0_c00445{letter-spacing:0.128000pt;}
.lsa_c00445{letter-spacing:0.414933pt;}
.ls3_c00445{letter-spacing:0.448000pt;}
.ls9_c00445{letter-spacing:0.576000pt;}
.ls4_c00445{letter-spacing:0.640000pt;}
.ls6_c00445{letter-spacing:1.920000pt;}
.ls5_c00445{letter-spacing:2.059520pt;}
.ls2_c00445{letter-spacing:10.880000pt;}
.ls1_c00445{letter-spacing:11.008000pt;}
.ws0_c00445{word-spacing:-64.000000pt;}
.ws3_c00445{word-spacing:-16.576000pt;}
.ws1_c00445{word-spacing:-16.000000pt;}
.ws2_c00445{word-spacing:-15.296000pt;}
.ws4_c00445{word-spacing:0.000000pt;}
._5_c00445{margin-left:-2.560000pt;}
._1_c00445{margin-left:-1.280000pt;}
._2_c00445{width:1.344000pt;}
._6_c00445{width:2.880000pt;}
._7_c00445{width:3.925333pt;}
._8_c00445{width:5.248000pt;}
._4_c00445{width:6.144000pt;}
._0_c00445{width:7.616000pt;}
._3_c00445{width:8.554667pt;}
._a_c00445{width:9.909333pt;}
._9_c00445{width:11.082667pt;}
._b_c00445{width:12.597333pt;}
._c_c00445{width:14.528000pt;}
._d_c00445{width:27.200000pt;}
._e_c00445{width:29.376000pt;}
.fs2_c00445{font-size:34.560000pt;}
.fs1_c00445{font-size:42.240000pt;}
.fs3_c00445{font-size:53.760000pt;}
.fs0_c00445{font-size:64.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y3_c00445{bottom:51.552000pt;}
.y2_c00445{bottom:70.112000pt;}
.y29_c00445{bottom:98.272000pt;}
.y28_c00445{bottom:116.192000pt;}
.y27_c00445{bottom:131.552000pt;}
.y26_c00445{bottom:137.666667pt;}
.y25_c00445{bottom:146.946667pt;}
.y24_c00445{bottom:162.306667pt;}
.y23_c00445{bottom:177.346667pt;}
.y22_c00445{bottom:183.426667pt;}
.y21_c00445{bottom:193.346667pt;}
.y1f_c00445{bottom:229.186667pt;}
.y20_c00445{bottom:236.546667pt;}
.y1e_c00445{bottom:257.053333pt;}
.y1d_c00445{bottom:284.573333pt;}
.y1c_c00445{bottom:312.093333pt;}
.y1b_c00445{bottom:339.613333pt;}
.y1a_c00445{bottom:367.173333pt;}
.y19_c00445{bottom:395.013333pt;}
.y18_c00445{bottom:422.533333pt;}
.y17_c00445{bottom:450.053333pt;}
.y16_c00445{bottom:477.600000pt;}
.y15_c00445{bottom:505.440000pt;}
.y14_c00445{bottom:532.960000pt;}
.y13_c00445{bottom:560.480000pt;}
.y12_c00445{bottom:588.026667pt;}
.y11_c00445{bottom:615.866667pt;}
.yf_c00445{bottom:643.386667pt;}
.y10_c00445{bottom:650.746667pt;}
.ye_c00445{bottom:670.906667pt;}
.yd_c00445{bottom:698.466667pt;}
.yc_c00445{bottom:726.306667pt;}
.yb_c00445{bottom:753.826667pt;}
.ya_c00445{bottom:781.346667pt;}
.y9_c00445{bottom:808.893333pt;}
.y8_c00445{bottom:836.733333pt;}
.y7_c00445{bottom:864.253333pt;}
.y6_c00445{bottom:891.773333pt;}
.y5_c00445{bottom:919.333333pt;}
.y4_c00445{bottom:947.173333pt;}
.y1_c00445{bottom:993.573333pt;}
.h6_c00445{height:30.982500pt;}
.h4_c00445{height:41.456250pt;}
.h8_c00445{height:48.195000pt;}
.h7_c00445{height:52.762500pt;}
.h1_c00445{height:57.375000pt;}
.h5_c00445{height:62.781250pt;}
.h2_c00445{height:62.812500pt;}
.h3_c00445{height:1055.996000pt;}
.h0_c00445{height:1056.000000pt;}
.w1_c00445{width:815.997333pt;}
.w0_c00445{width:816.000000pt;}
.x0_c00445{left:0.000000pt;}
.x1_c00445{left:113.312000pt;}
.xa_c00445{left:126.752000pt;}
.x3_c00445{left:151.106667pt;}
.x6_c00445{left:158.786667pt;}
.x9_c00445{left:305.413333pt;}
.x4_c00445{left:325.890667pt;}
.x5_c00445{left:342.213333pt;}
.x2_c00445{left:396.000000pt;}
.x7_c00445{left:436.957333pt;}
.x8_c00445{left:453.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_c00446 {
    display:none;
  }
  .loading-indicator_c00446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00446 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00446 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00446" -> "#page-container .classname_c00446")
 */
.pf_c00446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00446 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00446 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00446 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00446 {overflow:visible;}
  }
}
.c_c00446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00446 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00446:after { /* webkit #35443 */
  content: '';
}
.t_c00446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00446 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00446 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00446 { /* info for Javascript */
  display:none;
}
.l_c00446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00446:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00446;src:url('chunks/assets/font_bb6893ca307e722f5ea0fd96.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_ce2d3746947f950b0825df77.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_adc65f1882cc3099cdf063b2.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_d302be47990fc80d9dfd9559.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;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_c00446;src:url('chunks/assets/font_92c92d4895b3db931527de8d.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00446;src:url('chunks/assets/font_334541e44ae456df1caeac6b.woff2')format("woff");}.ff6_c00446{font-family:ff6_c00446;line-height:1.104004;font-style:normal;font-weight: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_c00446;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00446{font-family:ff7_c00446;line-height:1.311035;font-style:normal;font-weight: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_c00446;src:url('chunks/assets/font_c7fb5d7b5c85df6dd8730f60.woff2')format("woff");}.ff8_c00446{font-family:ff8_c00446;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.lsc_c00446{letter-spacing:-0.936000px;}
.lsa_c00446{letter-spacing:-0.912000px;}
.lsd_c00446{letter-spacing:-0.720000px;}
.lsb_c00446{letter-spacing:-0.486600px;}
.ls9_c00446{letter-spacing:-0.169800px;}
.ls5_c00446{letter-spacing:0.000000px;}
.ls8_c00446{letter-spacing:0.020400px;}
.ls6_c00446{letter-spacing:0.072000px;}
.ls7_c00446{letter-spacing:0.648000px;}
.ls2_c00446{letter-spacing:0.720000px;}
.ls3_c00446{letter-spacing:0.740278px;}
.ls1_c00446{letter-spacing:1.440000px;}
.ls4_c00446{letter-spacing:5.040000px;}
.ls0_c00446{letter-spacing:9.360000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00446{word-spacing:-60.480000px;}
.ws1_c00446{word-spacing:-18.072000px;}
.ws0_c00446{word-spacing:-18.000000px;}
.ws2_c00446{word-spacing:-15.140400px;}
.ws3_c00446{word-spacing:-15.120000px;}
.ws4_c00446{word-spacing:-14.950200px;}
.ws6_c00446{word-spacing:-14.633400px;}
.ws7_c00446{word-spacing:-14.184000px;}
.ws8_c00446{word-spacing:0.000000px;}
._10_c00446{margin-left:-3.384000px;}
._2_c00446{margin-left:-2.376000px;}
._0_c00446{margin-left:-1.296000px;}
._1_c00446{width:1.368000px;}
._6_c00446{width:3.168000px;}
._f_c00446{width:4.824000px;}
._b_c00446{width:6.048000px;}
._a_c00446{width:7.776000px;}
._3_c00446{width:9.288000px;}
._4_c00446{width:10.512000px;}
._e_c00446{width:11.880000px;}
._16_c00446{width:12.960000px;}
._11_c00446{width:13.968000px;}
._12_c00446{width:15.120000px;}
._5_c00446{width:16.632000px;}
._13_c00446{width:21.312000px;}
._15_c00446{width:23.171976px;}
._14_c00446{width:24.624000px;}
._17_c00446{width:26.280000px;}
._c_c00446{width:27.504000px;}
._d_c00446{width:29.724000px;}
._7_c00446{width:37.872000px;}
._9_c00446{width:38.880000px;}
._8_c00446{width:39.888000px;}
.fc0_c00446{color:rgb(0,0,0);}
.fs3_c00446{font-size:38.880000px;}
.fs1_c00446{font-size:47.520000px;}
.fs2_c00446{font-size:60.480000px;}
.fs0_c00446{font-size:72.000000px;}
.y0_c00446{bottom:0.000000px;}
.y3_c00446{bottom:57.996000px;}
.y2_c00446{bottom:78.876000px;}
.y28_c00446{bottom:130.716000px;}
.y27_c00446{bottom:147.996000px;}
.y26_c00446{bottom:165.315000px;}
.y25_c00446{bottom:172.155000px;}
.y24_c00446{bottom:182.595000px;}
.y23_c00446{bottom:199.515000px;}
.y22_c00446{bottom:206.355000px;}
.y21_c00446{bottom:216.795000px;}
.y20_c00446{bottom:234.075000px;}
.y1f_c00446{bottom:251.355000px;}
.y1e_c00446{bottom:269.355000px;}
.y1d_c00446{bottom:315.465000px;}
.y1c_c00446{bottom:341.025000px;}
.y1b_c00446{bottom:366.945000px;}
.y1a_c00446{bottom:395.070000px;}
.y19_c00446{bottom:435.390000px;}
.y18_c00446{bottom:475.350000px;}
.y17_c00446{bottom:506.310000px;}
.y16_c00446{bottom:537.300000px;}
.y15_c00446{bottom:568.620000px;}
.y14_c00446{bottom:599.580000px;}
.y13_c00446{bottom:630.540000px;}
.y12_c00446{bottom:661.530000px;}
.y11_c00446{bottom:692.850000px;}
.y10_c00446{bottom:723.810000px;}
.yf_c00446{bottom:754.770000px;}
.ye_c00446{bottom:785.775000px;}
.yd_c00446{bottom:817.095000px;}
.yc_c00446{bottom:848.055000px;}
.yb_c00446{bottom:879.015000px;}
.ya_c00446{bottom:910.005000px;}
.y8_c00446{bottom:941.325000px;}
.y9_c00446{bottom:949.605000px;}
.y7_c00446{bottom:972.285000px;}
.y6_c00446{bottom:1003.245000px;}
.y5_c00446{bottom:1034.250000px;}
.y4_c00446{bottom:1065.570000px;}
.y1_c00446{bottom:1117.770000px;}
.h8_c00446{height:34.855313px;}
.h4_c00446{height:46.638281px;}
.h9_c00446{height:54.219375px;}
.ha_c00446{height:54.514688px;}
.h6_c00446{height:59.357813px;}
.h7_c00446{height:60.952500px;}
.h1_c00446{height:64.546875px;}
.h5_c00446{height:70.628906px;}
.h2_c00446{height:70.664062px;}
.h3_c00446{height:1187.995500px;}
.h0_c00446{height:1188.000000px;}
.w1_c00446{width:917.997000px;}
.w0_c00446{width:918.000000px;}
.x0_c00446{left:0.000000px;}
.x1_c00446{left:127.476000px;}
.xa_c00446{left:142.596000px;}
.x9_c00446{left:169.995000px;}
.x7_c00446{left:178.635000px;}
.x8_c00446{left:180.795000px;}
.x3_c00446{left:328.782000px;}
.x4_c00446{left:347.190000px;}
.x2_c00446{left:445.500000px;}
.x5_c00446{left:772.122000px;}
.x6_c00446{left:790.485000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.lsc_c00446{letter-spacing:-0.832000pt;}
.lsa_c00446{letter-spacing:-0.810667pt;}
.lsd_c00446{letter-spacing:-0.640000pt;}
.lsb_c00446{letter-spacing:-0.432533pt;}
.ls9_c00446{letter-spacing:-0.150933pt;}
.ls5_c00446{letter-spacing:0.000000pt;}
.ls8_c00446{letter-spacing:0.018133pt;}
.ls6_c00446{letter-spacing:0.064000pt;}
.ls7_c00446{letter-spacing:0.576000pt;}
.ls2_c00446{letter-spacing:0.640000pt;}
.ls3_c00446{letter-spacing:0.658025pt;}
.ls1_c00446{letter-spacing:1.280000pt;}
.ls4_c00446{letter-spacing:4.480000pt;}
.ls0_c00446{letter-spacing:8.320000pt;}
.ws5_c00446{word-spacing:-53.760000pt;}
.ws1_c00446{word-spacing:-16.064000pt;}
.ws0_c00446{word-spacing:-16.000000pt;}
.ws2_c00446{word-spacing:-13.458133pt;}
.ws3_c00446{word-spacing:-13.440000pt;}
.ws4_c00446{word-spacing:-13.289067pt;}
.ws6_c00446{word-spacing:-13.007467pt;}
.ws7_c00446{word-spacing:-12.608000pt;}
.ws8_c00446{word-spacing:0.000000pt;}
._10_c00446{margin-left:-3.008000pt;}
._2_c00446{margin-left:-2.112000pt;}
._0_c00446{margin-left:-1.152000pt;}
._1_c00446{width:1.216000pt;}
._6_c00446{width:2.816000pt;}
._f_c00446{width:4.288000pt;}
._b_c00446{width:5.376000pt;}
._a_c00446{width:6.912000pt;}
._3_c00446{width:8.256000pt;}
._4_c00446{width:9.344000pt;}
._e_c00446{width:10.560000pt;}
._16_c00446{width:11.520000pt;}
._11_c00446{width:12.416000pt;}
._12_c00446{width:13.440000pt;}
._5_c00446{width:14.784000pt;}
._13_c00446{width:18.944000pt;}
._15_c00446{width:20.597312pt;}
._14_c00446{width:21.888000pt;}
._17_c00446{width:23.360000pt;}
._c_c00446{width:24.448000pt;}
._d_c00446{width:26.421333pt;}
._7_c00446{width:33.664000pt;}
._9_c00446{width:34.560000pt;}
._8_c00446{width:35.456000pt;}
.fs3_c00446{font-size:34.560000pt;}
.fs1_c00446{font-size:42.240000pt;}
.fs2_c00446{font-size:53.760000pt;}
.fs0_c00446{font-size:64.000000pt;}
.y0_c00446{bottom:0.000000pt;}
.y3_c00446{bottom:51.552000pt;}
.y2_c00446{bottom:70.112000pt;}
.y28_c00446{bottom:116.192000pt;}
.y27_c00446{bottom:131.552000pt;}
.y26_c00446{bottom:146.946667pt;}
.y25_c00446{bottom:153.026667pt;}
.y24_c00446{bottom:162.306667pt;}
.y23_c00446{bottom:177.346667pt;}
.y22_c00446{bottom:183.426667pt;}
.y21_c00446{bottom:192.706667pt;}
.y20_c00446{bottom:208.066667pt;}
.y1f_c00446{bottom:223.426667pt;}
.y1e_c00446{bottom:239.426667pt;}
.y1d_c00446{bottom:280.413333pt;}
.y1c_c00446{bottom:303.133333pt;}
.y1b_c00446{bottom:326.173333pt;}
.y1a_c00446{bottom:351.173333pt;}
.y19_c00446{bottom:387.013333pt;}
.y18_c00446{bottom:422.533333pt;}
.y17_c00446{bottom:450.053333pt;}
.y16_c00446{bottom:477.600000pt;}
.y15_c00446{bottom:505.440000pt;}
.y14_c00446{bottom:532.960000pt;}
.y13_c00446{bottom:560.480000pt;}
.y12_c00446{bottom:588.026667pt;}
.y11_c00446{bottom:615.866667pt;}
.y10_c00446{bottom:643.386667pt;}
.yf_c00446{bottom:670.906667pt;}
.ye_c00446{bottom:698.466667pt;}
.yd_c00446{bottom:726.306667pt;}
.yc_c00446{bottom:753.826667pt;}
.yb_c00446{bottom:781.346667pt;}
.ya_c00446{bottom:808.893333pt;}
.y8_c00446{bottom:836.733333pt;}
.y9_c00446{bottom:844.093333pt;}
.y7_c00446{bottom:864.253333pt;}
.y6_c00446{bottom:891.773333pt;}
.y5_c00446{bottom:919.333333pt;}
.y4_c00446{bottom:947.173333pt;}
.y1_c00446{bottom:993.573333pt;}
.h8_c00446{height:30.982500pt;}
.h4_c00446{height:41.456250pt;}
.h9_c00446{height:48.195000pt;}
.ha_c00446{height:48.457500pt;}
.h6_c00446{height:52.762500pt;}
.h7_c00446{height:54.180000pt;}
.h1_c00446{height:57.375000pt;}
.h5_c00446{height:62.781250pt;}
.h2_c00446{height:62.812500pt;}
.h3_c00446{height:1055.996000pt;}
.h0_c00446{height:1056.000000pt;}
.w1_c00446{width:815.997333pt;}
.w0_c00446{width:816.000000pt;}
.x0_c00446{left:0.000000pt;}
.x1_c00446{left:113.312000pt;}
.xa_c00446{left:126.752000pt;}
.x9_c00446{left:151.106667pt;}
.x7_c00446{left:158.786667pt;}
.x8_c00446{left:160.706667pt;}
.x3_c00446{left:292.250667pt;}
.x4_c00446{left:308.613333pt;}
.x2_c00446{left:396.000000pt;}
.x5_c00446{left:686.330667pt;}
.x6_c00446{left:702.653333pt;}
}





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

.ir_c00447:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00447;src:url('chunks/assets/font_57f9f0688a464e64a6fdd2c9.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_9bf13b1f063e3bfad31d2d1b.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_2bf36a76c629bb420739d6d0.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00447;src:url('chunks/assets/font_699190603a31533a68c03d4c.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00447;src:url('chunks/assets/font_c1799f575977a6702d3e105a.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00447;src:url('chunks/assets/font_543b263f246d187a50515d18.woff2')format("woff");}.ff6_c00447{font-family:ff6_c00447;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.lse_c00447{letter-spacing:-1.152000px;}
.lsd_c00447{letter-spacing:-0.648000px;}
.ls13_c00447{letter-spacing:-0.532800px;}
.lsf_c00447{letter-spacing:-0.288000px;}
.lsb_c00447{letter-spacing:-0.241800px;}
.ls7_c00447{letter-spacing:0.000000px;}
.ls8_c00447{letter-spacing:0.020400px;}
.ls5_c00447{letter-spacing:0.048960px;}
.ls10_c00447{letter-spacing:0.144000px;}
.ls9_c00447{letter-spacing:0.291000px;}
.ls12_c00447{letter-spacing:0.486600px;}
.ls11_c00447{letter-spacing:0.504000px;}
.lsc_c00447{letter-spacing:0.524400px;}
.lsa_c00447{letter-spacing:0.529800px;}
.ls2_c00447{letter-spacing:0.705479px;}
.ls1_c00447{letter-spacing:0.720000px;}
.ls4_c00447{letter-spacing:0.728640px;}
.ls0_c00447{letter-spacing:8.100000px;}
.ls3_c00447{letter-spacing:13.680000px;}
.ls6_c00447{letter-spacing:16.716000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:-72.000000px;}
.ws4_c00447{word-spacing:-60.771000px;}
.ws3_c00447{word-spacing:-60.480000px;}
.ws8_c00447{word-spacing:-18.144000px;}
.ws1_c00447{word-spacing:-18.000000px;}
.ws7_c00447{word-spacing:-15.644400px;}
.ws9_c00447{word-spacing:-15.606600px;}
.ws2_c00447{word-spacing:-15.140400px;}
.ws5_c00447{word-spacing:-15.120000px;}
.ws6_c00447{word-spacing:-14.878200px;}
.wsa_c00447{word-spacing:0.000000px;}
._6_c00447{margin-left:-3.520803px;}
._3_c00447{margin-left:-2.297393px;}
._1_c00447{margin-left:-1.028402px;}
._2_c00447{width:1.021205px;}
._7_c00447{width:2.952000px;}
._8_c00447{width:4.762846px;}
._4_c00447{width:5.986189px;}
._0_c00447{width:7.862400px;}
._5_c00447{width:9.425393px;}
._9_c00447{width:11.201420px;}
._d_c00447{width:12.488377px;}
._c_c00447{width:13.685992px;}
._e_c00447{width:16.300261px;}
._f_c00447{width:17.492656px;}
._a_c00447{width:26.881770px;}
._b_c00447{width:28.851598px;}
.fc0_c00447{color:rgb(0,0,0);}
.fs3_c00447{font-size:38.880000px;}
.fs2_c00447{font-size:47.520000px;}
.fs1_c00447{font-size:60.480000px;}
.fs0_c00447{font-size:72.000000px;}
.y0_c00447{bottom:0.000000px;}
.y3_c00447{bottom:57.996000px;}
.y2_c00447{bottom:78.876000px;}
.y29_c00447{bottom:130.716000px;}
.y28_c00447{bottom:147.996000px;}
.y27_c00447{bottom:165.315000px;}
.y26_c00447{bottom:172.155000px;}
.y25_c00447{bottom:182.595000px;}
.y24_c00447{bottom:189.435000px;}
.y23_c00447{bottom:200.235000px;}
.y22_c00447{bottom:224.715000px;}
.y21_c00447{bottom:250.635000px;}
.y20_c00447{bottom:285.585000px;}
.y1f_c00447{bottom:311.505000px;}
.y1e_c00447{bottom:337.425000px;}
.y1d_c00447{bottom:365.505000px;}
.y1c_c00447{bottom:396.510000px;}
.y1a_c00447{bottom:427.470000px;}
.y1b_c00447{bottom:435.750000px;}
.y18_c00447{bottom:458.790000px;}
.y19_c00447{bottom:467.070000px;}
.y17_c00447{bottom:489.750000px;}
.y16_c00447{bottom:520.740000px;}
.y15_c00447{bottom:551.700000px;}
.y14_c00447{bottom:583.020000px;}
.y13_c00447{bottom:613.980000px;}
.y12_c00447{bottom:644.970000px;}
.y11_c00447{bottom:682.770000px;}
.y10_c00447{bottom:708.690000px;}
.yf_c00447{bottom:743.610000px;}
.ye_c00447{bottom:769.575000px;}
.yd_c00447{bottom:795.495000px;}
.yc_c00447{bottom:823.575000px;}
.yb_c00447{bottom:854.535000px;}
.ya_c00447{bottom:885.525000px;}
.y9_c00447{bottom:916.485000px;}
.y8_c00447{bottom:947.805000px;}
.y7_c00447{bottom:978.765000px;}
.y6_c00447{bottom:1007.565000px;}
.y5_c00447{bottom:1042.530000px;}
.y4_c00447{bottom:1068.450000px;}
.y1_c00447{bottom:1117.770000px;}
.h7_c00447{height:34.855313px;}
.h6_c00447{height:46.638281px;}
.h2_c00447{height:59.328281px;}
.h3_c00447{height:59.357813px;}
.h1_c00447{height:64.546875px;}
.h4_c00447{height:70.664062px;}
.h5_c00447{height:1187.995500px;}
.h0_c00447{height:1188.000000px;}
.w1_c00447{width:917.997000px;}
.w0_c00447{width:918.000000px;}
.x0_c00447{left:0.000000px;}
.x1_c00447{left:127.476000px;}
.x9_c00447{left:142.596000px;}
.x3_c00447{left:169.995000px;}
.x6_c00447{left:190.152000px;}
.x7_c00447{left:208.515000px;}
.x8_c00447{left:343.590000px;}
.x2_c00447{left:445.500000px;}
.x4_c00447{left:505.617000px;}
.x5_c00447{left:523.980000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.lse_c00447{letter-spacing:-1.024000pt;}
.lsd_c00447{letter-spacing:-0.576000pt;}
.ls13_c00447{letter-spacing:-0.473600pt;}
.lsf_c00447{letter-spacing:-0.256000pt;}
.lsb_c00447{letter-spacing:-0.214933pt;}
.ls7_c00447{letter-spacing:0.000000pt;}
.ls8_c00447{letter-spacing:0.018133pt;}
.ls5_c00447{letter-spacing:0.043520pt;}
.ls10_c00447{letter-spacing:0.128000pt;}
.ls9_c00447{letter-spacing:0.258667pt;}
.ls12_c00447{letter-spacing:0.432533pt;}
.ls11_c00447{letter-spacing:0.448000pt;}
.lsc_c00447{letter-spacing:0.466133pt;}
.lsa_c00447{letter-spacing:0.470933pt;}
.ls2_c00447{letter-spacing:0.627092pt;}
.ls1_c00447{letter-spacing:0.640000pt;}
.ls4_c00447{letter-spacing:0.647680pt;}
.ls0_c00447{letter-spacing:7.200000pt;}
.ls3_c00447{letter-spacing:12.160000pt;}
.ls6_c00447{letter-spacing:14.858667pt;}
.ws0_c00447{word-spacing:-64.000000pt;}
.ws4_c00447{word-spacing:-54.018667pt;}
.ws3_c00447{word-spacing:-53.760000pt;}
.ws8_c00447{word-spacing:-16.128000pt;}
.ws1_c00447{word-spacing:-16.000000pt;}
.ws7_c00447{word-spacing:-13.906133pt;}
.ws9_c00447{word-spacing:-13.872533pt;}
.ws2_c00447{word-spacing:-13.458133pt;}
.ws5_c00447{word-spacing:-13.440000pt;}
.ws6_c00447{word-spacing:-13.225067pt;}
.wsa_c00447{word-spacing:0.000000pt;}
._6_c00447{margin-left:-3.129603pt;}
._3_c00447{margin-left:-2.042127pt;}
._1_c00447{margin-left:-0.914135pt;}
._2_c00447{width:0.907738pt;}
._7_c00447{width:2.624000pt;}
._8_c00447{width:4.233641pt;}
._4_c00447{width:5.321057pt;}
._0_c00447{width:6.988800pt;}
._5_c00447{width:8.378127pt;}
._9_c00447{width:9.956818pt;}
._d_c00447{width:11.100780pt;}
._c_c00447{width:12.165327pt;}
._e_c00447{width:14.489121pt;}
._f_c00447{width:15.549028pt;}
._a_c00447{width:23.894907pt;}
._b_c00447{width:25.645865pt;}
.fs3_c00447{font-size:34.560000pt;}
.fs2_c00447{font-size:42.240000pt;}
.fs1_c00447{font-size:53.760000pt;}
.fs0_c00447{font-size:64.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y3_c00447{bottom:51.552000pt;}
.y2_c00447{bottom:70.112000pt;}
.y29_c00447{bottom:116.192000pt;}
.y28_c00447{bottom:131.552000pt;}
.y27_c00447{bottom:146.946667pt;}
.y26_c00447{bottom:153.026667pt;}
.y25_c00447{bottom:162.306667pt;}
.y24_c00447{bottom:168.386667pt;}
.y23_c00447{bottom:177.986667pt;}
.y22_c00447{bottom:199.746667pt;}
.y21_c00447{bottom:222.786667pt;}
.y20_c00447{bottom:253.853333pt;}
.y1f_c00447{bottom:276.893333pt;}
.y1e_c00447{bottom:299.933333pt;}
.y1d_c00447{bottom:324.893333pt;}
.y1c_c00447{bottom:352.453333pt;}
.y1a_c00447{bottom:379.973333pt;}
.y1b_c00447{bottom:387.333333pt;}
.y18_c00447{bottom:407.813333pt;}
.y19_c00447{bottom:415.173333pt;}
.y17_c00447{bottom:435.333333pt;}
.y16_c00447{bottom:462.880000pt;}
.y15_c00447{bottom:490.400000pt;}
.y14_c00447{bottom:518.240000pt;}
.y13_c00447{bottom:545.760000pt;}
.y12_c00447{bottom:573.306667pt;}
.y11_c00447{bottom:606.906667pt;}
.y10_c00447{bottom:629.946667pt;}
.yf_c00447{bottom:660.986667pt;}
.ye_c00447{bottom:684.066667pt;}
.yd_c00447{bottom:707.106667pt;}
.yc_c00447{bottom:732.066667pt;}
.yb_c00447{bottom:759.586667pt;}
.ya_c00447{bottom:787.133333pt;}
.y9_c00447{bottom:814.653333pt;}
.y8_c00447{bottom:842.493333pt;}
.y7_c00447{bottom:870.013333pt;}
.y6_c00447{bottom:895.613333pt;}
.y5_c00447{bottom:926.693333pt;}
.y4_c00447{bottom:949.733333pt;}
.y1_c00447{bottom:993.573333pt;}
.h7_c00447{height:30.982500pt;}
.h6_c00447{height:41.456250pt;}
.h2_c00447{height:52.736250pt;}
.h3_c00447{height:52.762500pt;}
.h1_c00447{height:57.375000pt;}
.h4_c00447{height:62.812500pt;}
.h5_c00447{height:1055.996000pt;}
.h0_c00447{height:1056.000000pt;}
.w1_c00447{width:815.997333pt;}
.w0_c00447{width:816.000000pt;}
.x0_c00447{left:0.000000pt;}
.x1_c00447{left:113.312000pt;}
.x9_c00447{left:126.752000pt;}
.x3_c00447{left:151.106667pt;}
.x6_c00447{left:169.024000pt;}
.x7_c00447{left:185.346667pt;}
.x8_c00447{left:305.413333pt;}
.x2_c00447{left:396.000000pt;}
.x4_c00447{left:449.437333pt;}
.x5_c00447{left:465.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_c00448 {
    display:none;
  }
  .loading-indicator_c00448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00448 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00448 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00448" -> "#page-container .classname_c00448")
 */
.pf_c00448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00448 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00448 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00448 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00448 {overflow:visible;}
  }
}
.c_c00448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00448 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00448:after { /* webkit #35443 */
  content: '';
}
.t_c00448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00448 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00448 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00448 { /* info for Javascript */
  display:none;
}
.l_c00448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00448:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00448 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00448.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00448;src:url('chunks/assets/font_0b782e0b68f2e40e37aa740b.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_becf8ce00dac957d65d030ba.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_11fefc61882a894fec0d9b79.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;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_c00448;src:url('chunks/assets/font_0e981117d0d0fc9156d633fc.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00448;src:url('chunks/assets/font_1a238ada2918a6d3eed5cf6d.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00448;src:url('chunks/assets/font_44d96e2c0010ecacd4aa3dfa.woff2')format("woff");}.ff6_c00448{font-family:ff6_c00448;line-height:1.104004;font-style:normal;font-weight: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_c00448;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7_c00448{font-family:ff7_c00448;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_c00448;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8_c00448{font-family:ff8_c00448;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.lsa_c00448{letter-spacing:-1.416000px;}
.lsc_c00448{letter-spacing:-1.044000px;}
.ls8_c00448{letter-spacing:0.000000px;}
.ls9_c00448{letter-spacing:0.020400px;}
.ls2_c00448{letter-spacing:0.120000px;}
.ls4_c00448{letter-spacing:0.144000px;}
.ls7_c00448{letter-spacing:0.290880px;}
.lsb_c00448{letter-spacing:0.291000px;}
.ls6_c00448{letter-spacing:0.504000px;}
.ls3_c00448{letter-spacing:0.524160px;}
.lsd_c00448{letter-spacing:0.702000px;}
.ls1_c00448{letter-spacing:0.720000px;}
.ls0_c00448{letter-spacing:1.440000px;}
.ls5_c00448{letter-spacing:12.240000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-18.000000px;}
.ws3_c00448{word-spacing:-15.411000px;}
.ws1_c00448{word-spacing:-15.140400px;}
.ws2_c00448{word-spacing:-15.120000px;}
.ws4_c00448{word-spacing:0.000000px;}
._11_c00448{margin-left:-3.576000px;}
._0_c00448{margin-left:-2.160000px;}
._5_c00448{margin-left:-1.032000px;}
._4_c00448{width:1.128000px;}
._2_c00448{width:2.304000px;}
._9_c00448{width:3.660000px;}
._6_c00448{width:4.704000px;}
._7_c00448{width:6.480000px;}
._8_c00448{width:9.816000px;}
._b_c00448{width:11.400000px;}
._a_c00448{width:12.888000px;}
._3_c00448{width:15.312000px;}
._1_c00448{width:16.488000px;}
._c_c00448{width:19.344000px;}
._d_c00448{width:20.760000px;}
._15_c00448{width:22.728000px;}
._e_c00448{width:24.168000px;}
._f_c00448{width:25.368000px;}
._10_c00448{width:27.288000px;}
._14_c00448{width:28.584000px;}
._13_c00448{width:29.856000px;}
._12_c00448{width:30.888000px;}
.fc0_c00448{color:rgb(0,0,0);}
.fs1_c00448{font-size:60.480000px;}
.fs0_c00448{font-size:72.000000px;}
.y0_c00448{bottom:0.000000px;}
.y3_c00448{bottom:57.996000px;}
.y2_c00448{bottom:78.876000px;}
.y23_c00448{bottom:118.476000px;}
.y22_c00448{bottom:149.472000px;}
.y21_c00448{bottom:180.435000px;}
.y20_c00448{bottom:218.235000px;}
.y1f_c00448{bottom:244.155000px;}
.y1e_c00448{bottom:270.075000px;}
.y1d_c00448{bottom:305.025000px;}
.y1c_c00448{bottom:330.945000px;}
.y1b_c00448{bottom:356.505000px;}
.y1a_c00448{bottom:382.425000px;}
.y19_c00448{bottom:410.910000px;}
.y18_c00448{bottom:441.870000px;}
.y17_c00448{bottom:472.830000px;}
.y16_c00448{bottom:503.790000px;}
.y15_c00448{bottom:535.140000px;}
.y14_c00448{bottom:566.100000px;}
.y13_c00448{bottom:597.060000px;}
.y12_c00448{bottom:628.020000px;}
.y11_c00448{bottom:659.370000px;}
.y10_c00448{bottom:696.810000px;}
.yf_c00448{bottom:731.730000px;}
.ye_c00448{bottom:757.650000px;}
.yd_c00448{bottom:785.775000px;}
.yc_c00448{bottom:817.095000px;}
.yb_c00448{bottom:848.055000px;}
.ya_c00448{bottom:879.015000px;}
.y9_c00448{bottom:910.005000px;}
.y8_c00448{bottom:941.325000px;}
.y7_c00448{bottom:972.285000px;}
.y6_c00448{bottom:1003.245000px;}
.y5_c00448{bottom:1034.250000px;}
.y4_c00448{bottom:1065.570000px;}
.y1_c00448{bottom:1117.770000px;}
.h5_c00448{height:59.328281px;}
.h3_c00448{height:59.357813px;}
.h4_c00448{height:60.952500px;}
.h1_c00448{height:64.546875px;}
.h2_c00448{height:70.664062px;}
.h0_c00448{height:1188.000000px;}
.w0_c00448{width:918.000000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:127.476000px;}
.x3_c00448{left:169.995000px;}
.x2_c00448{left:445.500000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.lsa_c00448{letter-spacing:-1.258667pt;}
.lsc_c00448{letter-spacing:-0.928000pt;}
.ls8_c00448{letter-spacing:0.000000pt;}
.ls9_c00448{letter-spacing:0.018133pt;}
.ls2_c00448{letter-spacing:0.106667pt;}
.ls4_c00448{letter-spacing:0.128000pt;}
.ls7_c00448{letter-spacing:0.258560pt;}
.lsb_c00448{letter-spacing:0.258667pt;}
.ls6_c00448{letter-spacing:0.448000pt;}
.ls3_c00448{letter-spacing:0.465920pt;}
.lsd_c00448{letter-spacing:0.624000pt;}
.ls1_c00448{letter-spacing:0.640000pt;}
.ls0_c00448{letter-spacing:1.280000pt;}
.ls5_c00448{letter-spacing:10.880000pt;}
.ws0_c00448{word-spacing:-16.000000pt;}
.ws3_c00448{word-spacing:-13.698667pt;}
.ws1_c00448{word-spacing:-13.458133pt;}
.ws2_c00448{word-spacing:-13.440000pt;}
.ws4_c00448{word-spacing:0.000000pt;}
._11_c00448{margin-left:-3.178667pt;}
._0_c00448{margin-left:-1.920000pt;}
._5_c00448{margin-left:-0.917333pt;}
._4_c00448{width:1.002667pt;}
._2_c00448{width:2.048000pt;}
._9_c00448{width:3.253333pt;}
._6_c00448{width:4.181333pt;}
._7_c00448{width:5.760000pt;}
._8_c00448{width:8.725333pt;}
._b_c00448{width:10.133333pt;}
._a_c00448{width:11.456000pt;}
._3_c00448{width:13.610667pt;}
._1_c00448{width:14.656000pt;}
._c_c00448{width:17.194667pt;}
._d_c00448{width:18.453333pt;}
._15_c00448{width:20.202667pt;}
._e_c00448{width:21.482667pt;}
._f_c00448{width:22.549333pt;}
._10_c00448{width:24.256000pt;}
._14_c00448{width:25.408000pt;}
._13_c00448{width:26.538667pt;}
._12_c00448{width:27.456000pt;}
.fs1_c00448{font-size:53.760000pt;}
.fs0_c00448{font-size:64.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y3_c00448{bottom:51.552000pt;}
.y2_c00448{bottom:70.112000pt;}
.y23_c00448{bottom:105.312000pt;}
.y22_c00448{bottom:132.864000pt;}
.y21_c00448{bottom:160.386667pt;}
.y20_c00448{bottom:193.986667pt;}
.y1f_c00448{bottom:217.026667pt;}
.y1e_c00448{bottom:240.066667pt;}
.y1d_c00448{bottom:271.133333pt;}
.y1c_c00448{bottom:294.173333pt;}
.y1b_c00448{bottom:316.893333pt;}
.y1a_c00448{bottom:339.933333pt;}
.y19_c00448{bottom:365.253333pt;}
.y18_c00448{bottom:392.773333pt;}
.y17_c00448{bottom:420.293333pt;}
.y16_c00448{bottom:447.813333pt;}
.y15_c00448{bottom:475.680000pt;}
.y14_c00448{bottom:503.200000pt;}
.y13_c00448{bottom:530.720000pt;}
.y12_c00448{bottom:558.240000pt;}
.y11_c00448{bottom:586.106667pt;}
.y10_c00448{bottom:619.386667pt;}
.yf_c00448{bottom:650.426667pt;}
.ye_c00448{bottom:673.466667pt;}
.yd_c00448{bottom:698.466667pt;}
.yc_c00448{bottom:726.306667pt;}
.yb_c00448{bottom:753.826667pt;}
.ya_c00448{bottom:781.346667pt;}
.y9_c00448{bottom:808.893333pt;}
.y8_c00448{bottom:836.733333pt;}
.y7_c00448{bottom:864.253333pt;}
.y6_c00448{bottom:891.773333pt;}
.y5_c00448{bottom:919.333333pt;}
.y4_c00448{bottom:947.173333pt;}
.y1_c00448{bottom:993.573333pt;}
.h5_c00448{height:52.736250pt;}
.h3_c00448{height:52.762500pt;}
.h4_c00448{height:54.180000pt;}
.h1_c00448{height:57.375000pt;}
.h2_c00448{height:62.812500pt;}
.h0_c00448{height:1056.000000pt;}
.w0_c00448{width:816.000000pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:113.312000pt;}
.x3_c00448{left:151.106667pt;}
.x2_c00448{left:396.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_c00449 {
    display:none;
  }
  .loading-indicator_c00449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00449 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00449 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00449" -> "#page-container .classname_c00449")
 */
.pf_c00449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00449 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00449 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00449 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00449 {overflow:visible;}
  }
}
.c_c00449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00449 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00449:after { /* webkit #35443 */
  content: '';
}
.t_c00449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00449 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00449 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00449 { /* info for Javascript */
  display:none;
}
.l_c00449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00449:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00449 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00449.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00449;src:url('chunks/assets/font_cfba8ec694b0286c5310b581.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_bf6c0bfc5e27f5d9c0ff449f.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_c5dcd2ee0ed6d5a594f42a35.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;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_c00449;src:url('chunks/assets/font_778f1ff1225ddb93d8e69dfd.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00449;src:url('chunks/assets/font_3d969007ee3374179b7fcd60.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00449;src:url('chunks/assets/font_29ed42abd77fc064486b6347.woff2')format("woff");}.ff6_c00449{font-family:ff6_c00449;line-height:1.104004;font-style:normal;font-weight: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_c00449;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7_c00449{font-family:ff7_c00449;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_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.lse_c00449{letter-spacing:-1.680000px;}
.lsa_c00449{letter-spacing:-1.416000px;}
.lsc_c00449{letter-spacing:-1.380000px;}
.ls8_c00449{letter-spacing:-0.912000px;}
.ls9_c00449{letter-spacing:-0.720000px;}
.lsb_c00449{letter-spacing:-0.302400px;}
.ls10_c00449{letter-spacing:-0.241800px;}
.ls6_c00449{letter-spacing:0.000000px;}
.ls7_c00449{letter-spacing:0.020400px;}
.lsd_c00449{letter-spacing:0.022800px;}
.ls0_c00449{letter-spacing:0.120000px;}
.ls3_c00449{letter-spacing:0.302400px;}
.ls1_c00449{letter-spacing:0.524160px;}
.lsf_c00449{letter-spacing:0.529800px;}
.ls2_c00449{letter-spacing:0.720000px;}
.ls5_c00449{letter-spacing:0.740160px;}
.ls4_c00449{letter-spacing:5.184000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:-18.000000px;}
.ws5_c00449{word-spacing:-15.142800px;}
.ws1_c00449{word-spacing:-15.140400px;}
.ws2_c00449{word-spacing:-15.120000px;}
.ws7_c00449{word-spacing:-14.878200px;}
.ws3_c00449{word-spacing:-14.817600px;}
.ws4_c00449{word-spacing:-13.740000px;}
.ws6_c00449{word-spacing:-13.440000px;}
.ws8_c00449{word-spacing:0.000000px;}
._5_c00449{margin-left:-3.456000px;}
._0_c00449{margin-left:-2.232000px;}
._4_c00449{margin-left:-1.008000px;}
._1_c00449{width:1.368000px;}
._7_c00449{width:3.108024px;}
._9_c00449{width:4.163832px;}
._8_c00449{width:5.544000px;}
._a_c00449{width:7.176000px;}
._11_c00449{width:8.820000px;}
._f_c00449{width:10.296000px;}
._e_c00449{width:11.376000px;}
._2_c00449{width:14.112000px;}
._6_c00449{width:15.192000px;}
._3_c00449{width:16.200000px;}
._10_c00449{width:17.214002px;}
._b_c00449{width:21.960000px;}
._c_c00449{width:23.243976px;}
._d_c00449{width:24.683976px;}
._12_c00449{width:31.320000px;}
._13_c00449{width:34.043952px;}
.fc0_c00449{color:rgb(0,0,0);}
.fs3_c00449{font-size:38.880000px;}
.fs1_c00449{font-size:47.520000px;}
.fs2_c00449{font-size:60.480000px;}
.fs0_c00449{font-size:72.000000px;}
.y0_c00449{bottom:0.000000px;}
.y3_c00449{bottom:57.996000px;}
.y2_c00449{bottom:78.876000px;}
.y26_c00449{bottom:130.716000px;}
.y25_c00449{bottom:147.996000px;}
.y24_c00449{bottom:154.875000px;}
.y23_c00449{bottom:165.675000px;}
.y22_c00449{bottom:206.715000px;}
.y21_c00449{bottom:232.635000px;}
.y20_c00449{bottom:258.195000px;}
.y1f_c00449{bottom:284.145000px;}
.y1e_c00449{bottom:312.585000px;}
.y1d_c00449{bottom:343.185000px;}
.y1c_c00449{bottom:374.505000px;}
.y1b_c00449{bottom:405.510000px;}
.y1a_c00449{bottom:436.470000px;}
.y19_c00449{bottom:467.790000px;}
.y18_c00449{bottom:498.750000px;}
.y17_c00449{bottom:529.740000px;}
.y16_c00449{bottom:560.700000px;}
.y15_c00449{bottom:592.020000px;}
.y14_c00449{bottom:622.980000px;}
.y13_c00449{bottom:660.810000px;}
.y12_c00449{bottom:686.730000px;}
.y11_c00449{bottom:712.650000px;}
.y10_c00449{bottom:747.210000px;}
.yf_c00449{bottom:773.175000px;}
.ye_c00449{bottom:799.095000px;}
.yd_c00449{bottom:825.015000px;}
.yc_c00449{bottom:850.935000px;}
.yb_c00449{bottom:879.015000px;}
.ya_c00449{bottom:910.005000px;}
.y8_c00449{bottom:941.325000px;}
.y9_c00449{bottom:949.605000px;}
.y7_c00449{bottom:972.285000px;}
.y6_c00449{bottom:1003.245000px;}
.y5_c00449{bottom:1034.250000px;}
.y4_c00449{bottom:1065.570000px;}
.y1_c00449{bottom:1117.770000px;}
.h8_c00449{height:34.855313px;}
.h4_c00449{height:46.638281px;}
.h6_c00449{height:59.328281px;}
.h5_c00449{height:59.357813px;}
.h1_c00449{height:64.546875px;}
.h7_c00449{height:70.628906px;}
.h2_c00449{height:70.664062px;}
.h3_c00449{height:1187.995500px;}
.h0_c00449{height:1188.000000px;}
.w1_c00449{width:917.997000px;}
.w0_c00449{width:918.000000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:127.476000px;}
.x7_c00449{left:142.596000px;}
.x5_c00449{left:169.995000px;}
.x6_c00449{left:343.590000px;}
.x3_c00449{left:369.867000px;}
.x4_c00449{left:388.230000px;}
.x2_c00449{left:445.500000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.lse_c00449{letter-spacing:-1.493333pt;}
.lsa_c00449{letter-spacing:-1.258667pt;}
.lsc_c00449{letter-spacing:-1.226667pt;}
.ls8_c00449{letter-spacing:-0.810667pt;}
.ls9_c00449{letter-spacing:-0.640000pt;}
.lsb_c00449{letter-spacing:-0.268800pt;}
.ls10_c00449{letter-spacing:-0.214933pt;}
.ls6_c00449{letter-spacing:0.000000pt;}
.ls7_c00449{letter-spacing:0.018133pt;}
.lsd_c00449{letter-spacing:0.020267pt;}
.ls0_c00449{letter-spacing:0.106667pt;}
.ls3_c00449{letter-spacing:0.268800pt;}
.ls1_c00449{letter-spacing:0.465920pt;}
.lsf_c00449{letter-spacing:0.470933pt;}
.ls2_c00449{letter-spacing:0.640000pt;}
.ls5_c00449{letter-spacing:0.657920pt;}
.ls4_c00449{letter-spacing:4.608000pt;}
.ws0_c00449{word-spacing:-16.000000pt;}
.ws5_c00449{word-spacing:-13.460267pt;}
.ws1_c00449{word-spacing:-13.458133pt;}
.ws2_c00449{word-spacing:-13.440000pt;}
.ws7_c00449{word-spacing:-13.225067pt;}
.ws3_c00449{word-spacing:-13.171200pt;}
.ws4_c00449{word-spacing:-12.213333pt;}
.ws6_c00449{word-spacing:-11.946667pt;}
.ws8_c00449{word-spacing:0.000000pt;}
._5_c00449{margin-left:-3.072000pt;}
._0_c00449{margin-left:-1.984000pt;}
._4_c00449{margin-left:-0.896000pt;}
._1_c00449{width:1.216000pt;}
._7_c00449{width:2.762688pt;}
._9_c00449{width:3.701184pt;}
._8_c00449{width:4.928000pt;}
._a_c00449{width:6.378667pt;}
._11_c00449{width:7.840000pt;}
._f_c00449{width:9.152000pt;}
._e_c00449{width:10.112000pt;}
._2_c00449{width:12.544000pt;}
._6_c00449{width:13.504000pt;}
._3_c00449{width:14.400000pt;}
._10_c00449{width:15.301335pt;}
._b_c00449{width:19.520000pt;}
._c_c00449{width:20.661312pt;}
._d_c00449{width:21.941312pt;}
._12_c00449{width:27.840000pt;}
._13_c00449{width:30.261291pt;}
.fs3_c00449{font-size:34.560000pt;}
.fs1_c00449{font-size:42.240000pt;}
.fs2_c00449{font-size:53.760000pt;}
.fs0_c00449{font-size:64.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y3_c00449{bottom:51.552000pt;}
.y2_c00449{bottom:70.112000pt;}
.y26_c00449{bottom:116.192000pt;}
.y25_c00449{bottom:131.552000pt;}
.y24_c00449{bottom:137.666667pt;}
.y23_c00449{bottom:147.266667pt;}
.y22_c00449{bottom:183.746667pt;}
.y21_c00449{bottom:206.786667pt;}
.y20_c00449{bottom:229.506667pt;}
.y1f_c00449{bottom:252.573333pt;}
.y1e_c00449{bottom:277.853333pt;}
.y1d_c00449{bottom:305.053333pt;}
.y1c_c00449{bottom:332.893333pt;}
.y1b_c00449{bottom:360.453333pt;}
.y1a_c00449{bottom:387.973333pt;}
.y19_c00449{bottom:415.813333pt;}
.y18_c00449{bottom:443.333333pt;}
.y17_c00449{bottom:470.880000pt;}
.y16_c00449{bottom:498.400000pt;}
.y15_c00449{bottom:526.240000pt;}
.y14_c00449{bottom:553.760000pt;}
.y13_c00449{bottom:587.386667pt;}
.y12_c00449{bottom:610.426667pt;}
.y11_c00449{bottom:633.466667pt;}
.y10_c00449{bottom:664.186667pt;}
.yf_c00449{bottom:687.266667pt;}
.ye_c00449{bottom:710.306667pt;}
.yd_c00449{bottom:733.346667pt;}
.yc_c00449{bottom:756.386667pt;}
.yb_c00449{bottom:781.346667pt;}
.ya_c00449{bottom:808.893333pt;}
.y8_c00449{bottom:836.733333pt;}
.y9_c00449{bottom:844.093333pt;}
.y7_c00449{bottom:864.253333pt;}
.y6_c00449{bottom:891.773333pt;}
.y5_c00449{bottom:919.333333pt;}
.y4_c00449{bottom:947.173333pt;}
.y1_c00449{bottom:993.573333pt;}
.h8_c00449{height:30.982500pt;}
.h4_c00449{height:41.456250pt;}
.h6_c00449{height:52.736250pt;}
.h5_c00449{height:52.762500pt;}
.h1_c00449{height:57.375000pt;}
.h7_c00449{height:62.781250pt;}
.h2_c00449{height:62.812500pt;}
.h3_c00449{height:1055.996000pt;}
.h0_c00449{height:1056.000000pt;}
.w1_c00449{width:815.997333pt;}
.w0_c00449{width:816.000000pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:113.312000pt;}
.x7_c00449{left:126.752000pt;}
.x5_c00449{left:151.106667pt;}
.x6_c00449{left:305.413333pt;}
.x3_c00449{left:328.770667pt;}
.x4_c00449{left:345.093333pt;}
.x2_c00449{left:396.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_c00450 {
    display:none;
  }
  .loading-indicator_c00450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00450 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00450 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00450" -> "#page-container .classname_c00450")
 */
.pf_c00450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00450 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00450 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00450 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00450 {overflow:visible;}
  }
}
.c_c00450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00450 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00450:after { /* webkit #35443 */
  content: '';
}
.t_c00450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00450 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00450 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00450 { /* info for Javascript */
  display:none;
}
.l_c00450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00450:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00450 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00450.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00450;src:url('chunks/assets/font_0874a3342ab4a56e463588f5.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_efe35ab1123c0b286f485133.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_cdd1787b7a10aa263e49b241.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_d577992a545ac675596a770e.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00450;src:url('chunks/assets/font_f751ef03bbf20f9225bcecb5.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;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_c00450;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6_c00450{font-family:ff6_c00450;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_c00450;src:url('chunks/assets/font_180adce8a1ccbea684ae8b98.woff2')format("woff");}.ff7_c00450{font-family:ff7_c00450;line-height:1.104004;font-style:normal;font-weight: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_c00450;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8_c00450{font-family:ff8_c00450;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls9_c00450{letter-spacing:-1.728000px;}
.ls8_c00450{letter-spacing:-1.416000px;}
.lse_c00450{letter-spacing:-1.152000px;}
.ls7_c00450{letter-spacing:-0.720000px;}
.lsd_c00450{letter-spacing:-0.144000px;}
.ls6_c00450{letter-spacing:0.000000px;}
.ls5_c00450{letter-spacing:0.120000px;}
.lsc_c00450{letter-spacing:0.166800px;}
.lsa_c00450{letter-spacing:0.486600px;}
.lsb_c00450{letter-spacing:0.529800px;}
.ls0_c00450{letter-spacing:0.720000px;}
.ls1_c00450{letter-spacing:0.900000px;}
.ls3_c00450{letter-spacing:15.120000px;}
.ls4_c00450{letter-spacing:16.560000px;}
.ls2_c00450{letter-spacing:25.200000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00450{word-spacing:-60.480000px;}
.ws2_c00450{word-spacing:-18.000000px;}
.ws6_c00450{word-spacing:-17.856000px;}
.ws3_c00450{word-spacing:-15.606600px;}
.ws4_c00450{word-spacing:-15.286800px;}
.ws0_c00450{word-spacing:-15.120000px;}
.ws1_c00450{word-spacing:-13.704000px;}
.ws7_c00450{word-spacing:0.000000px;}
._8_c00450{margin-left:-3.507524px;}
._3_c00450{margin-left:-2.419200px;}
._0_c00450{margin-left:-1.028402px;}
._1_c00450{width:1.995598px;}
._2_c00450{width:3.084601px;}
._4_c00450{width:4.295411px;}
._7_c00450{width:5.820474px;}
._6_c00450{width:7.224034px;}
._5_c00450{width:8.225401px;}
._12_c00450{width:9.485774px;}
._f_c00450{width:11.459031px;}
._e_c00450{width:12.928648px;}
._d_c00450{width:14.020804px;}
._11_c00450{width:15.044258px;}
._10_c00450{width:16.747200px;}
._a_c00450{width:23.454525px;}
._9_c00450{width:24.572402px;}
._b_c00450{width:25.650154px;}
._c_c00450{width:27.383047px;}
.fc0_c00450{color:rgb(0,0,0);}
.fs1_c00450{font-size:60.480000px;}
.fs0_c00450{font-size:72.000000px;}
.y0_c00450{bottom:0.000000px;}
.y3_c00450{bottom:57.996000px;}
.y2_c00450{bottom:78.876000px;}
.y23_c00450{bottom:123.516000px;}
.y22_c00450{bottom:154.515000px;}
.y21_c00450{bottom:185.475000px;}
.y20_c00450{bottom:216.795000px;}
.y1f_c00450{bottom:247.755000px;}
.y1e_c00450{bottom:278.745000px;}
.y1d_c00450{bottom:310.065000px;}
.y1c_c00450{bottom:341.025000px;}
.y1b_c00450{bottom:371.985000px;}
.y1a_c00450{bottom:402.990000px;}
.y19_c00450{bottom:440.790000px;}
.y18_c00450{bottom:466.710000px;}
.y17_c00450{bottom:501.630000px;}
.y16_c00450{bottom:527.580000px;}
.y15_c00450{bottom:553.500000px;}
.y14_c00450{bottom:581.580000px;}
.y13_c00450{bottom:612.180000px;}
.y12_c00450{bottom:643.530000px;}
.y11_c00450{bottom:674.850000px;}
.y10_c00450{bottom:705.810000px;}
.yf_c00450{bottom:736.770000px;}
.ye_c00450{bottom:767.775000px;}
.yd_c00450{bottom:799.095000px;}
.yc_c00450{bottom:830.055000px;}
.yb_c00450{bottom:861.015000px;}
.ya_c00450{bottom:892.005000px;}
.y9_c00450{bottom:929.805000px;}
.y8_c00450{bottom:955.725000px;}
.y7_c00450{bottom:981.645000px;}
.y6_c00450{bottom:1007.565000px;}
.y5_c00450{bottom:1042.530000px;}
.y4_c00450{bottom:1068.450000px;}
.y1_c00450{bottom:1117.770000px;}
.h3_c00450{height:59.328281px;}
.h2_c00450{height:59.357813px;}
.h6_c00450{height:60.952500px;}
.h1_c00450{height:64.546875px;}
.h5_c00450{height:70.628906px;}
.h4_c00450{height:70.664062px;}
.h0_c00450{height:1188.000000px;}
.w0_c00450{width:918.000000px;}
.x0_c00450{left:0.000000px;}
.x1_c00450{left:127.476000px;}
.x3_c00450{left:169.995000px;}
.x2_c00450{left:445.500000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls9_c00450{letter-spacing:-1.536000pt;}
.ls8_c00450{letter-spacing:-1.258667pt;}
.lse_c00450{letter-spacing:-1.024000pt;}
.ls7_c00450{letter-spacing:-0.640000pt;}
.lsd_c00450{letter-spacing:-0.128000pt;}
.ls6_c00450{letter-spacing:0.000000pt;}
.ls5_c00450{letter-spacing:0.106667pt;}
.lsc_c00450{letter-spacing:0.148267pt;}
.lsa_c00450{letter-spacing:0.432533pt;}
.lsb_c00450{letter-spacing:0.470933pt;}
.ls0_c00450{letter-spacing:0.640000pt;}
.ls1_c00450{letter-spacing:0.800000pt;}
.ls3_c00450{letter-spacing:13.440000pt;}
.ls4_c00450{letter-spacing:14.720000pt;}
.ls2_c00450{letter-spacing:22.400000pt;}
.ws5_c00450{word-spacing:-53.760000pt;}
.ws2_c00450{word-spacing:-16.000000pt;}
.ws6_c00450{word-spacing:-15.872000pt;}
.ws3_c00450{word-spacing:-13.872533pt;}
.ws4_c00450{word-spacing:-13.588267pt;}
.ws0_c00450{word-spacing:-13.440000pt;}
.ws1_c00450{word-spacing:-12.181333pt;}
.ws7_c00450{word-spacing:0.000000pt;}
._8_c00450{margin-left:-3.117799pt;}
._3_c00450{margin-left:-2.150400pt;}
._0_c00450{margin-left:-0.914135pt;}
._1_c00450{width:1.773865pt;}
._2_c00450{width:2.741868pt;}
._4_c00450{width:3.818143pt;}
._7_c00450{width:5.173755pt;}
._6_c00450{width:6.421363pt;}
._5_c00450{width:7.311468pt;}
._12_c00450{width:8.431799pt;}
._f_c00450{width:10.185806pt;}
._e_c00450{width:11.492132pt;}
._d_c00450{width:12.462937pt;}
._11_c00450{width:13.372674pt;}
._10_c00450{width:14.886400pt;}
._a_c00450{width:20.848467pt;}
._9_c00450{width:21.842135pt;}
._b_c00450{width:22.800137pt;}
._c_c00450{width:24.340486pt;}
.fs1_c00450{font-size:53.760000pt;}
.fs0_c00450{font-size:64.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y3_c00450{bottom:51.552000pt;}
.y2_c00450{bottom:70.112000pt;}
.y23_c00450{bottom:109.792000pt;}
.y22_c00450{bottom:137.346667pt;}
.y21_c00450{bottom:164.866667pt;}
.y20_c00450{bottom:192.706667pt;}
.y1f_c00450{bottom:220.226667pt;}
.y1e_c00450{bottom:247.773333pt;}
.y1d_c00450{bottom:275.613333pt;}
.y1c_c00450{bottom:303.133333pt;}
.y1b_c00450{bottom:330.653333pt;}
.y1a_c00450{bottom:358.213333pt;}
.y19_c00450{bottom:391.813333pt;}
.y18_c00450{bottom:414.853333pt;}
.y17_c00450{bottom:445.893333pt;}
.y16_c00450{bottom:468.960000pt;}
.y15_c00450{bottom:492.000000pt;}
.y14_c00450{bottom:516.960000pt;}
.y13_c00450{bottom:544.160000pt;}
.y12_c00450{bottom:572.026667pt;}
.y11_c00450{bottom:599.866667pt;}
.y10_c00450{bottom:627.386667pt;}
.yf_c00450{bottom:654.906667pt;}
.ye_c00450{bottom:682.466667pt;}
.yd_c00450{bottom:710.306667pt;}
.yc_c00450{bottom:737.826667pt;}
.yb_c00450{bottom:765.346667pt;}
.ya_c00450{bottom:792.893333pt;}
.y9_c00450{bottom:826.493333pt;}
.y8_c00450{bottom:849.533333pt;}
.y7_c00450{bottom:872.573333pt;}
.y6_c00450{bottom:895.613333pt;}
.y5_c00450{bottom:926.693333pt;}
.y4_c00450{bottom:949.733333pt;}
.y1_c00450{bottom:993.573333pt;}
.h3_c00450{height:52.736250pt;}
.h2_c00450{height:52.762500pt;}
.h6_c00450{height:54.180000pt;}
.h1_c00450{height:57.375000pt;}
.h5_c00450{height:62.781250pt;}
.h4_c00450{height:62.812500pt;}
.h0_c00450{height:1056.000000pt;}
.w0_c00450{width:816.000000pt;}
.x0_c00450{left:0.000000pt;}
.x1_c00450{left:113.312000pt;}
.x3_c00450{left:151.106667pt;}
.x2_c00450{left:396.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_c00451 {
    display:none;
  }
  .loading-indicator_c00451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00451 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00451 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00451" -> "#page-container .classname_c00451")
 */
.pf_c00451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00451 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00451 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00451 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00451 {overflow:visible;}
  }
}
.c_c00451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00451 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00451:after { /* webkit #35443 */
  content: '';
}
.t_c00451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00451 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00451 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00451 { /* info for Javascript */
  display:none;
}
.l_c00451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00451:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00451 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00451.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00451;src:url('chunks/assets/font_b7b4b64be050bb19a9def587.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_83a7eac7013f3c11d3077fbc.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_ebd4d32fc1b21ac1061d9e0a.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;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_c00451;src:url('chunks/assets/font_3f5c1637bff7e4cbfff52314.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00451;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00451{font-family:ff5_c00451;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00451;src:url('chunks/assets/font_2f2d11ff17004b7ccd50ee2b.woff2')format("woff");}.ff6_c00451{font-family:ff6_c00451;line-height:1.104004;font-style:normal;font-weight: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_c00451;src:url('chunks/assets/font_7b3489d3f2638fbaea16bda1.woff2')format("woff");}.ff7_c00451{font-family:ff7_c00451;line-height:1.117188;font-style:normal;font-weight: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_c00451;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff8_c00451{font-family:ff8_c00451;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_c00451;src:url('chunks/assets/font_ee045ad2b2c3c4ddbd1ff4b5.woff2')format("woff");}.ff9_c00451{font-family:ff9_c00451;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.lsc_c00451{letter-spacing:-1.416000px;}
.ls8_c00451{letter-spacing:-0.912000px;}
.lsb_c00451{letter-spacing:-0.360000px;}
.ls6_c00451{letter-spacing:0.000000px;}
.ls7_c00451{letter-spacing:0.020400px;}
.ls2_c00451{letter-spacing:0.120000px;}
.ls3_c00451{letter-spacing:0.486720px;}
.ls4_c00451{letter-spacing:0.504000px;}
.lsa_c00451{letter-spacing:0.648000px;}
.ls0_c00451{letter-spacing:0.720000px;}
.ls9_c00451{letter-spacing:1.584000px;}
.ls1_c00451{letter-spacing:6.480000px;}
.ls5_c00451{letter-spacing:15.120000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00451{word-spacing:-72.000000px;}
.ws4_c00451{word-spacing:-18.648000px;}
.ws6_c00451{word-spacing:-18.504000px;}
.ws2_c00451{word-spacing:-18.000000px;}
.ws5_c00451{word-spacing:-17.640000px;}
.ws0_c00451{word-spacing:-15.140400px;}
.ws1_c00451{word-spacing:-15.120000px;}
.ws7_c00451{word-spacing:0.000000px;}
._1_c00451{margin-left:-2.412853px;}
._0_c00451{margin-left:-1.218585px;}
._2_c00451{width:1.565650px;}
._4_c00451{width:3.507598px;}
._3_c00451{width:5.149785px;}
._8_c00451{width:6.768000px;}
._9_c00451{width:8.624488px;}
._f_c00451{width:14.959204px;}
._e_c00451{width:16.578248px;}
._d_c00451{width:20.176196px;}
._c_c00451{width:21.435343px;}
._7_c00451{width:24.300346px;}
._5_c00451{width:25.380853px;}
._6_c00451{width:26.512459px;}
._a_c00451{width:29.160000px;}
._b_c00451{width:30.600000px;}
.fc0_c00451{color:rgb(0,0,0);}
.fs3_c00451{font-size:38.880000px;}
.fs2_c00451{font-size:47.520000px;}
.fs1_c00451{font-size:60.480000px;}
.fs0_c00451{font-size:72.000000px;}
.y0_c00451{bottom:0.000000px;}
.y3_c00451{bottom:57.996000px;}
.y2_c00451{bottom:78.876000px;}
.y25_c00451{bottom:130.716000px;}
.y24_c00451{bottom:137.556000px;}
.y23_c00451{bottom:148.356000px;}
.y22_c00451{bottom:173.235000px;}
.y21_c00451{bottom:201.315000px;}
.y20_c00451{bottom:232.275000px;}
.y1f_c00451{bottom:263.235000px;}
.y1e_c00451{bottom:294.585000px;}
.y1d_c00451{bottom:325.545000px;}
.y1c_c00451{bottom:356.505000px;}
.y1a_c00451{bottom:387.465000px;}
.y1b_c00451{bottom:395.790000px;}
.y19_c00451{bottom:418.470000px;}
.y18_c00451{bottom:449.790000px;}
.y17_c00451{bottom:480.750000px;}
.y16_c00451{bottom:511.710000px;}
.y15_c00451{bottom:542.700000px;}
.y14_c00451{bottom:580.500000px;}
.y13_c00451{bottom:615.420000px;}
.y12_c00451{bottom:641.370000px;}
.y11_c00451{bottom:669.450000px;}
.y10_c00451{bottom:700.770000px;}
.yf_c00451{bottom:731.730000px;}
.ye_c00451{bottom:762.735000px;}
.yd_c00451{bottom:793.695000px;}
.yc_c00451{bottom:825.015000px;}
.yb_c00451{bottom:855.975000px;}
.ya_c00451{bottom:886.965000px;}
.y9_c00451{bottom:917.925000px;}
.y8_c00451{bottom:955.725000px;}
.y7_c00451{bottom:981.645000px;}
.y6_c00451{bottom:1016.610000px;}
.y5_c00451{bottom:1042.530000px;}
.y4_c00451{bottom:1068.450000px;}
.y1_c00451{bottom:1117.770000px;}
.h8_c00451{height:34.855313px;}
.h7_c00451{height:46.638281px;}
.h4_c00451{height:59.328281px;}
.h2_c00451{height:59.357813px;}
.h3_c00451{height:60.952500px;}
.h1_c00451{height:64.546875px;}
.h5_c00451{height:70.664062px;}
.h6_c00451{height:1187.995500px;}
.h0_c00451{height:1188.000000px;}
.w1_c00451{width:917.997000px;}
.w0_c00451{width:918.000000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:127.476000px;}
.x7_c00451{left:142.596000px;}
.x3_c00451{left:169.995000px;}
.x6_c00451{left:343.590000px;}
.x2_c00451{left:445.500000px;}
.x4_c00451{left:530.097000px;}
.x5_c00451{left:548.490000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.lsc_c00451{letter-spacing:-1.258667pt;}
.ls8_c00451{letter-spacing:-0.810667pt;}
.lsb_c00451{letter-spacing:-0.320000pt;}
.ls6_c00451{letter-spacing:0.000000pt;}
.ls7_c00451{letter-spacing:0.018133pt;}
.ls2_c00451{letter-spacing:0.106667pt;}
.ls3_c00451{letter-spacing:0.432640pt;}
.ls4_c00451{letter-spacing:0.448000pt;}
.lsa_c00451{letter-spacing:0.576000pt;}
.ls0_c00451{letter-spacing:0.640000pt;}
.ls9_c00451{letter-spacing:1.408000pt;}
.ls1_c00451{letter-spacing:5.760000pt;}
.ls5_c00451{letter-spacing:13.440000pt;}
.ws3_c00451{word-spacing:-64.000000pt;}
.ws4_c00451{word-spacing:-16.576000pt;}
.ws6_c00451{word-spacing:-16.448000pt;}
.ws2_c00451{word-spacing:-16.000000pt;}
.ws5_c00451{word-spacing:-15.680000pt;}
.ws0_c00451{word-spacing:-13.458133pt;}
.ws1_c00451{word-spacing:-13.440000pt;}
.ws7_c00451{word-spacing:0.000000pt;}
._1_c00451{margin-left:-2.144759pt;}
._0_c00451{margin-left:-1.083186pt;}
._2_c00451{width:1.391689pt;}
._4_c00451{width:3.117865pt;}
._3_c00451{width:4.577586pt;}
._8_c00451{width:6.016000pt;}
._9_c00451{width:7.666212pt;}
._f_c00451{width:13.297070pt;}
._e_c00451{width:14.736220pt;}
._d_c00451{width:17.934397pt;}
._c_c00451{width:19.053638pt;}
._7_c00451{width:21.600307pt;}
._5_c00451{width:22.560759pt;}
._6_c00451{width:23.566630pt;}
._a_c00451{width:25.920000pt;}
._b_c00451{width:27.200000pt;}
.fs3_c00451{font-size:34.560000pt;}
.fs2_c00451{font-size:42.240000pt;}
.fs1_c00451{font-size:53.760000pt;}
.fs0_c00451{font-size:64.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y3_c00451{bottom:51.552000pt;}
.y2_c00451{bottom:70.112000pt;}
.y25_c00451{bottom:116.192000pt;}
.y24_c00451{bottom:122.272000pt;}
.y23_c00451{bottom:131.872000pt;}
.y22_c00451{bottom:153.986667pt;}
.y21_c00451{bottom:178.946667pt;}
.y20_c00451{bottom:206.466667pt;}
.y1f_c00451{bottom:233.986667pt;}
.y1e_c00451{bottom:261.853333pt;}
.y1d_c00451{bottom:289.373333pt;}
.y1c_c00451{bottom:316.893333pt;}
.y1a_c00451{bottom:344.413333pt;}
.y1b_c00451{bottom:351.813333pt;}
.y19_c00451{bottom:371.973333pt;}
.y18_c00451{bottom:399.813333pt;}
.y17_c00451{bottom:427.333333pt;}
.y16_c00451{bottom:454.853333pt;}
.y15_c00451{bottom:482.400000pt;}
.y14_c00451{bottom:516.000000pt;}
.y13_c00451{bottom:547.040000pt;}
.y12_c00451{bottom:570.106667pt;}
.y11_c00451{bottom:595.066667pt;}
.y10_c00451{bottom:622.906667pt;}
.yf_c00451{bottom:650.426667pt;}
.ye_c00451{bottom:677.986667pt;}
.yd_c00451{bottom:705.506667pt;}
.yc_c00451{bottom:733.346667pt;}
.yb_c00451{bottom:760.866667pt;}
.ya_c00451{bottom:788.413333pt;}
.y9_c00451{bottom:815.933333pt;}
.y8_c00451{bottom:849.533333pt;}
.y7_c00451{bottom:872.573333pt;}
.y6_c00451{bottom:903.653333pt;}
.y5_c00451{bottom:926.693333pt;}
.y4_c00451{bottom:949.733333pt;}
.y1_c00451{bottom:993.573333pt;}
.h8_c00451{height:30.982500pt;}
.h7_c00451{height:41.456250pt;}
.h4_c00451{height:52.736250pt;}
.h2_c00451{height:52.762500pt;}
.h3_c00451{height:54.180000pt;}
.h1_c00451{height:57.375000pt;}
.h5_c00451{height:62.812500pt;}
.h6_c00451{height:1055.996000pt;}
.h0_c00451{height:1056.000000pt;}
.w1_c00451{width:815.997333pt;}
.w0_c00451{width:816.000000pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:113.312000pt;}
.x7_c00451{left:126.752000pt;}
.x3_c00451{left:151.106667pt;}
.x6_c00451{left:305.413333pt;}
.x2_c00451{left:396.000000pt;}
.x4_c00451{left:471.197333pt;}
.x5_c00451{left:487.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00452 {
    display:none;
  }
  .loading-indicator_c00452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00452 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00452 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00452" -> "#page-container .classname_c00452")
 */
.pf_c00452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00452 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00452 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00452 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00452 {overflow:visible;}
  }
}
.c_c00452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00452 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00452:after { /* webkit #35443 */
  content: '';
}
.t_c00452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00452 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00452 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00452 { /* info for Javascript */
  display:none;
}
.l_c00452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00452:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00452 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00452.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00452;src:url('chunks/assets/font_622344eec9bec6c98c2b4b4f.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_7631c46c5eb9b4fd38ca6ed2.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_3d7fb98e4a16a817bcf87228.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_f2c1c0b2a080be453f6125f2.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00452;src:url('chunks/assets/font_20e5838535a3f12584321302.woff2')format("woff");}.ff6_c00452{font-family:ff6_c00452;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_c00452;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff7_c00452{font-family:ff7_c00452;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls4_c00452{letter-spacing:-1.416000px;}
.ls5_c00452{letter-spacing:-0.288000px;}
.ls2_c00452{letter-spacing:0.000000px;}
.ls3_c00452{letter-spacing:0.521400px;}
.ls0_c00452{letter-spacing:0.720000px;}
.ls1_c00452{letter-spacing:2.160000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00452{word-spacing:-72.000000px;}
.ws2_c00452{word-spacing:-60.480000px;}
.ws4_c00452{word-spacing:-18.000000px;}
.ws0_c00452{word-spacing:-15.641400px;}
.ws1_c00452{word-spacing:-15.120000px;}
.ws5_c00452{word-spacing:0.000000px;}
._c_c00452{margin-left:-3.495623px;}
._1_c00452{margin-left:-2.150971px;}
._0_c00452{margin-left:-1.054227px;}
._2_c00452{width:1.047030px;}
._4_c00452{width:2.048970px;}
._a_c00452{width:3.461532px;}
._b_c00452{width:5.216970px;}
._9_c00452{width:6.949315px;}
._7_c00452{width:8.315941px;}
._8_c00452{width:9.942025px;}
._e_c00452{width:11.429964px;}
._f_c00452{width:12.537007px;}
._3_c00452{width:13.598971px;}
._5_c00452{width:14.639883px;}
._6_c00452{width:16.009200px;}
._d_c00452{width:19.970387px;}
._10_c00452{width:21.764364px;}
._11_c00452{width:22.963717px;}
._12_c00452{width:24.202820px;}
.fc0_c00452{color:rgb(0,0,0);}
.fs1_c00452{font-size:60.480000px;}
.fs0_c00452{font-size:72.000000px;}
.y0_c00452{bottom:0.000000px;}
.y3_c00452{bottom:57.996000px;}
.y2_c00452{bottom:78.876000px;}
.y21_c00452{bottom:147.996000px;}
.y20_c00452{bottom:179.355000px;}
.y1f_c00452{bottom:210.315000px;}
.y1e_c00452{bottom:241.275000px;}
.y1d_c00452{bottom:272.265000px;}
.y1c_c00452{bottom:303.585000px;}
.y1b_c00452{bottom:334.545000px;}
.y1a_c00452{bottom:365.505000px;}
.y19_c00452{bottom:396.510000px;}
.y18_c00452{bottom:427.470000px;}
.y17_c00452{bottom:458.790000px;}
.y16_c00452{bottom:489.750000px;}
.y15_c00452{bottom:520.740000px;}
.y14_c00452{bottom:560.700000px;}
.y13_c00452{bottom:592.020000px;}
.y12_c00452{bottom:622.980000px;}
.y11_c00452{bottom:653.970000px;}
.y10_c00452{bottom:684.930000px;}
.yf_c00452{bottom:716.250000px;}
.ye_c00452{bottom:747.210000px;}
.yd_c00452{bottom:778.215000px;}
.yc_c00452{bottom:809.175000px;}
.yb_c00452{bottom:840.495000px;}
.ya_c00452{bottom:871.455000px;}
.y9_c00452{bottom:902.445000px;}
.y8_c00452{bottom:933.405000px;}
.y7_c00452{bottom:964.725000px;}
.y6_c00452{bottom:995.685000px;}
.y5_c00452{bottom:1033.530000px;}
.y4_c00452{bottom:1068.450000px;}
.y1_c00452{bottom:1117.770000px;}
.h3_c00452{height:59.328281px;}
.h2_c00452{height:60.952500px;}
.h1_c00452{height:64.546875px;}
.h5_c00452{height:70.628906px;}
.h4_c00452{height:70.664062px;}
.h0_c00452{height:1188.000000px;}
.w0_c00452{width:918.000000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:127.476000px;}
.x3_c00452{left:169.995000px;}
.x4_c00452{left:178.635000px;}
.x2_c00452{left:445.500000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls4_c00452{letter-spacing:-1.258667pt;}
.ls5_c00452{letter-spacing:-0.256000pt;}
.ls2_c00452{letter-spacing:0.000000pt;}
.ls3_c00452{letter-spacing:0.463467pt;}
.ls0_c00452{letter-spacing:0.640000pt;}
.ls1_c00452{letter-spacing:1.920000pt;}
.ws3_c00452{word-spacing:-64.000000pt;}
.ws2_c00452{word-spacing:-53.760000pt;}
.ws4_c00452{word-spacing:-16.000000pt;}
.ws0_c00452{word-spacing:-13.903467pt;}
.ws1_c00452{word-spacing:-13.440000pt;}
.ws5_c00452{word-spacing:0.000000pt;}
._c_c00452{margin-left:-3.107220pt;}
._1_c00452{margin-left:-1.911974pt;}
._0_c00452{margin-left:-0.937091pt;}
._2_c00452{width:0.930693pt;}
._4_c00452{width:1.821307pt;}
._a_c00452{width:3.076918pt;}
._b_c00452{width:4.637307pt;}
._9_c00452{width:6.177169pt;}
._7_c00452{width:7.391948pt;}
._8_c00452{width:8.837356pt;}
._e_c00452{width:10.159968pt;}
._f_c00452{width:11.144006pt;}
._3_c00452{width:12.087974pt;}
._5_c00452{width:13.013229pt;}
._6_c00452{width:14.230400pt;}
._d_c00452{width:17.751455pt;}
._10_c00452{width:19.346102pt;}
._11_c00452{width:20.412193pt;}
._12_c00452{width:21.513618pt;}
.fs1_c00452{font-size:53.760000pt;}
.fs0_c00452{font-size:64.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y3_c00452{bottom:51.552000pt;}
.y2_c00452{bottom:70.112000pt;}
.y21_c00452{bottom:131.552000pt;}
.y20_c00452{bottom:159.426667pt;}
.y1f_c00452{bottom:186.946667pt;}
.y1e_c00452{bottom:214.466667pt;}
.y1d_c00452{bottom:242.013333pt;}
.y1c_c00452{bottom:269.853333pt;}
.y1b_c00452{bottom:297.373333pt;}
.y1a_c00452{bottom:324.893333pt;}
.y19_c00452{bottom:352.453333pt;}
.y18_c00452{bottom:379.973333pt;}
.y17_c00452{bottom:407.813333pt;}
.y16_c00452{bottom:435.333333pt;}
.y15_c00452{bottom:462.880000pt;}
.y14_c00452{bottom:498.400000pt;}
.y13_c00452{bottom:526.240000pt;}
.y12_c00452{bottom:553.760000pt;}
.y11_c00452{bottom:581.306667pt;}
.y10_c00452{bottom:608.826667pt;}
.yf_c00452{bottom:636.666667pt;}
.ye_c00452{bottom:664.186667pt;}
.yd_c00452{bottom:691.746667pt;}
.yc_c00452{bottom:719.266667pt;}
.yb_c00452{bottom:747.106667pt;}
.ya_c00452{bottom:774.626667pt;}
.y9_c00452{bottom:802.173333pt;}
.y8_c00452{bottom:829.693333pt;}
.y7_c00452{bottom:857.533333pt;}
.y6_c00452{bottom:885.053333pt;}
.y5_c00452{bottom:918.693333pt;}
.y4_c00452{bottom:949.733333pt;}
.y1_c00452{bottom:993.573333pt;}
.h3_c00452{height:52.736250pt;}
.h2_c00452{height:54.180000pt;}
.h1_c00452{height:57.375000pt;}
.h5_c00452{height:62.781250pt;}
.h4_c00452{height:62.812500pt;}
.h0_c00452{height:1056.000000pt;}
.w0_c00452{width:816.000000pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:113.312000pt;}
.x3_c00452{left:151.106667pt;}
.x4_c00452{left:158.786667pt;}
.x2_c00452{left:396.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_c00453 {
    display:none;
  }
  .loading-indicator_c00453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00453 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00453 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00453" -> "#page-container .classname_c00453")
 */
.pf_c00453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00453 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00453 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00453 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00453 {overflow:visible;}
  }
}
.c_c00453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00453 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00453:after { /* webkit #35443 */
  content: '';
}
.t_c00453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00453 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00453 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00453 { /* info for Javascript */
  display:none;
}
.l_c00453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00453:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00453 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00453.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00453;src:url('chunks/assets/font_95390b5388be35bbb10247d3.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_f5544e1ed5e1766c69510af2.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_12fdfb6e8ee64ef21f8d1887.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_b12683c00342ad56066e6ff1.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_4d4ca268f2d883cdba92922c.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00453;src:url('chunks/assets/font_e0e44bf1adee28b00f8b3f00.woff2')format("woff");}.ff6_c00453{font-family:ff6_c00453;line-height:1.104004;font-style:normal;font-weight: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_c00453;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00453{font-family:ff7_c00453;line-height:1.311035;font-style:normal;font-weight: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_c00453;src:url('chunks/assets/font_7156bb1728871c1a7f78379d.woff2')format("woff");}.ff8_c00453{font-family:ff8_c00453;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls13_c00453{letter-spacing:-2.376000px;}
.lsf_c00453{letter-spacing:-1.740000px;}
.lsd_c00453{letter-spacing:-1.680000px;}
.lsb_c00453{letter-spacing:-1.512000px;}
.lsa_c00453{letter-spacing:-1.422000px;}
.ls14_c00453{letter-spacing:-0.972000px;}
.ls12_c00453{letter-spacing:-0.720000px;}
.lse_c00453{letter-spacing:-0.466800px;}
.ls10_c00453{letter-spacing:-0.302400px;}
.ls8_c00453{letter-spacing:0.000000px;}
.ls9_c00453{letter-spacing:0.020400px;}
.lsc_c00453{letter-spacing:0.022800px;}
.ls11_c00453{letter-spacing:0.486600px;}
.ls7_c00453{letter-spacing:0.518400px;}
.ls0_c00453{letter-spacing:0.720000px;}
.ls3_c00453{letter-spacing:0.740056px;}
.ls2_c00453{letter-spacing:0.743158px;}
.ls6_c00453{letter-spacing:3.620160px;}
.ls4_c00453{letter-spacing:5.040000px;}
.ls5_c00453{letter-spacing:5.060160px;}
.ls1_c00453{letter-spacing:12.360000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00453{word-spacing:-60.480000px;}
.ws0_c00453{word-spacing:-18.000000px;}
.ws9_c00453{word-spacing:-15.606600px;}
.ws1_c00453{word-spacing:-15.140400px;}
.ws3_c00453{word-spacing:-15.120000px;}
.ws8_c00453{word-spacing:-14.817600px;}
.ws6_c00453{word-spacing:-14.653200px;}
.ws2_c00453{word-spacing:-13.698000px;}
.ws5_c00453{word-spacing:-13.440000px;}
.ws7_c00453{word-spacing:-13.380000px;}
.wsa_c00453{word-spacing:-12.744000px;}
.wsb_c00453{word-spacing:0.000000px;}
._5_c00453{margin-left:-2.736000px;}
._1_c00453{margin-left:-1.440000px;}
._0_c00453{width:1.296000px;}
._2_c00453{width:2.460024px;}
._8_c00453{width:3.816000px;}
._3_c00453{width:4.896000px;}
._12_c00453{width:5.971176px;}
._4_c00453{width:6.984000px;}
._9_c00453{width:8.352000px;}
._a_c00453{width:9.576000px;}
._b_c00453{width:11.003976px;}
._e_c00453{width:13.176000px;}
._d_c00453{width:14.832000px;}
._10_c00453{width:25.704000px;}
._11_c00453{width:26.712000px;}
._f_c00453{width:27.936000px;}
._7_c00453{width:29.304000px;}
._6_c00453{width:30.600000px;}
._c_c00453{width:31.667976px;}
.fc0_c00453{color:rgb(0,0,0);}
.fs3_c00453{font-size:38.880000px;}
.fs2_c00453{font-size:47.520000px;}
.fs1_c00453{font-size:60.480000px;}
.fs0_c00453{font-size:72.000000px;}
.y0_c00453{bottom:0.000000px;}
.y3_c00453{bottom:57.996000px;}
.y2_c00453{bottom:78.876000px;}
.y26_c00453{bottom:130.716000px;}
.y25_c00453{bottom:147.996000px;}
.y24_c00453{bottom:165.315000px;}
.y23_c00453{bottom:182.595000px;}
.y22_c00453{bottom:189.435000px;}
.y21_c00453{bottom:200.235000px;}
.y20_c00453{bottom:224.715000px;}
.y1f_c00453{bottom:250.635000px;}
.y1e_c00453{bottom:278.745000px;}
.y1d_c00453{bottom:310.065000px;}
.y1c_c00453{bottom:341.025000px;}
.y1b_c00453{bottom:371.985000px;}
.y19_c00453{bottom:402.990000px;}
.y1a_c00453{bottom:411.270000px;}
.y18_c00453{bottom:434.310000px;}
.y17_c00453{bottom:465.270000px;}
.y16_c00453{bottom:496.230000px;}
.y15_c00453{bottom:525.060000px;}
.y14_c00453{bottom:559.980000px;}
.y13_c00453{bottom:594.900000px;}
.y12_c00453{bottom:620.820000px;}
.y11_c00453{bottom:646.410000px;}
.y10_c00453{bottom:674.850000px;}
.yf_c00453{bottom:714.810000px;}
.ye_c00453{bottom:754.770000px;}
.yd_c00453{bottom:785.775000px;}
.yc_c00453{bottom:817.095000px;}
.yb_c00453{bottom:848.055000px;}
.ya_c00453{bottom:879.015000px;}
.y9_c00453{bottom:910.005000px;}
.y8_c00453{bottom:941.325000px;}
.y7_c00453{bottom:972.285000px;}
.y6_c00453{bottom:1003.245000px;}
.y5_c00453{bottom:1034.250000px;}
.y4_c00453{bottom:1065.570000px;}
.y1_c00453{bottom:1117.770000px;}
.h9_c00453{height:34.855313px;}
.h8_c00453{height:46.638281px;}
.h6_c00453{height:59.328281px;}
.h4_c00453{height:59.357813px;}
.h5_c00453{height:60.952500px;}
.h1_c00453{height:64.546875px;}
.h2_c00453{height:70.628906px;}
.h3_c00453{height:70.664062px;}
.h7_c00453{height:1187.995500px;}
.h0_c00453{height:1188.000000px;}
.w1_c00453{width:917.997000px;}
.w0_c00453{width:918.000000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:127.476000px;}
.x9_c00453{left:142.596000px;}
.x5_c00453{left:169.995000px;}
.x3_c00453{left:178.635000px;}
.x4_c00453{left:180.795000px;}
.x8_c00453{left:343.590000px;}
.x6_c00453{left:368.787000px;}
.x7_c00453{left:387.150000px;}
.x2_c00453{left:445.500000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls13_c00453{letter-spacing:-2.112000pt;}
.lsf_c00453{letter-spacing:-1.546667pt;}
.lsd_c00453{letter-spacing:-1.493333pt;}
.lsb_c00453{letter-spacing:-1.344000pt;}
.lsa_c00453{letter-spacing:-1.264000pt;}
.ls14_c00453{letter-spacing:-0.864000pt;}
.ls12_c00453{letter-spacing:-0.640000pt;}
.lse_c00453{letter-spacing:-0.414933pt;}
.ls10_c00453{letter-spacing:-0.268800pt;}
.ls8_c00453{letter-spacing:0.000000pt;}
.ls9_c00453{letter-spacing:0.018133pt;}
.lsc_c00453{letter-spacing:0.020267pt;}
.ls11_c00453{letter-spacing:0.432533pt;}
.ls7_c00453{letter-spacing:0.460800pt;}
.ls0_c00453{letter-spacing:0.640000pt;}
.ls3_c00453{letter-spacing:0.657828pt;}
.ls2_c00453{letter-spacing:0.660585pt;}
.ls6_c00453{letter-spacing:3.217920pt;}
.ls4_c00453{letter-spacing:4.480000pt;}
.ls5_c00453{letter-spacing:4.497920pt;}
.ls1_c00453{letter-spacing:10.986667pt;}
.ws4_c00453{word-spacing:-53.760000pt;}
.ws0_c00453{word-spacing:-16.000000pt;}
.ws9_c00453{word-spacing:-13.872533pt;}
.ws1_c00453{word-spacing:-13.458133pt;}
.ws3_c00453{word-spacing:-13.440000pt;}
.ws8_c00453{word-spacing:-13.171200pt;}
.ws6_c00453{word-spacing:-13.025067pt;}
.ws2_c00453{word-spacing:-12.176000pt;}
.ws5_c00453{word-spacing:-11.946667pt;}
.ws7_c00453{word-spacing:-11.893333pt;}
.wsa_c00453{word-spacing:-11.328000pt;}
.wsb_c00453{word-spacing:0.000000pt;}
._5_c00453{margin-left:-2.432000pt;}
._1_c00453{margin-left:-1.280000pt;}
._0_c00453{width:1.152000pt;}
._2_c00453{width:2.186688pt;}
._8_c00453{width:3.392000pt;}
._3_c00453{width:4.352000pt;}
._12_c00453{width:5.307712pt;}
._4_c00453{width:6.208000pt;}
._9_c00453{width:7.424000pt;}
._a_c00453{width:8.512000pt;}
._b_c00453{width:9.781312pt;}
._e_c00453{width:11.712000pt;}
._d_c00453{width:13.184000pt;}
._10_c00453{width:22.848000pt;}
._11_c00453{width:23.744000pt;}
._f_c00453{width:24.832000pt;}
._7_c00453{width:26.048000pt;}
._6_c00453{width:27.200000pt;}
._c_c00453{width:28.149312pt;}
.fs3_c00453{font-size:34.560000pt;}
.fs2_c00453{font-size:42.240000pt;}
.fs1_c00453{font-size:53.760000pt;}
.fs0_c00453{font-size:64.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y3_c00453{bottom:51.552000pt;}
.y2_c00453{bottom:70.112000pt;}
.y26_c00453{bottom:116.192000pt;}
.y25_c00453{bottom:131.552000pt;}
.y24_c00453{bottom:146.946667pt;}
.y23_c00453{bottom:162.306667pt;}
.y22_c00453{bottom:168.386667pt;}
.y21_c00453{bottom:177.986667pt;}
.y20_c00453{bottom:199.746667pt;}
.y1f_c00453{bottom:222.786667pt;}
.y1e_c00453{bottom:247.773333pt;}
.y1d_c00453{bottom:275.613333pt;}
.y1c_c00453{bottom:303.133333pt;}
.y1b_c00453{bottom:330.653333pt;}
.y19_c00453{bottom:358.213333pt;}
.y1a_c00453{bottom:365.573333pt;}
.y18_c00453{bottom:386.053333pt;}
.y17_c00453{bottom:413.573333pt;}
.y16_c00453{bottom:441.093333pt;}
.y15_c00453{bottom:466.720000pt;}
.y14_c00453{bottom:497.760000pt;}
.y13_c00453{bottom:528.800000pt;}
.y12_c00453{bottom:551.840000pt;}
.y11_c00453{bottom:574.586667pt;}
.y10_c00453{bottom:599.866667pt;}
.yf_c00453{bottom:635.386667pt;}
.ye_c00453{bottom:670.906667pt;}
.yd_c00453{bottom:698.466667pt;}
.yc_c00453{bottom:726.306667pt;}
.yb_c00453{bottom:753.826667pt;}
.ya_c00453{bottom:781.346667pt;}
.y9_c00453{bottom:808.893333pt;}
.y8_c00453{bottom:836.733333pt;}
.y7_c00453{bottom:864.253333pt;}
.y6_c00453{bottom:891.773333pt;}
.y5_c00453{bottom:919.333333pt;}
.y4_c00453{bottom:947.173333pt;}
.y1_c00453{bottom:993.573333pt;}
.h9_c00453{height:30.982500pt;}
.h8_c00453{height:41.456250pt;}
.h6_c00453{height:52.736250pt;}
.h4_c00453{height:52.762500pt;}
.h5_c00453{height:54.180000pt;}
.h1_c00453{height:57.375000pt;}
.h2_c00453{height:62.781250pt;}
.h3_c00453{height:62.812500pt;}
.h7_c00453{height:1055.996000pt;}
.h0_c00453{height:1056.000000pt;}
.w1_c00453{width:815.997333pt;}
.w0_c00453{width:816.000000pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:113.312000pt;}
.x9_c00453{left:126.752000pt;}
.x5_c00453{left:151.106667pt;}
.x3_c00453{left:158.786667pt;}
.x4_c00453{left:160.706667pt;}
.x8_c00453{left:305.413333pt;}
.x6_c00453{left:327.810667pt;}
.x7_c00453{left:344.133333pt;}
.x2_c00453{left:396.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_c00454 {
    display:none;
  }
  .loading-indicator_c00454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00454 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00454 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00454" -> "#page-container .classname_c00454")
 */
.pf_c00454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00454 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00454 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00454 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00454 {overflow:visible;}
  }
}
.c_c00454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00454 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00454:after { /* webkit #35443 */
  content: '';
}
.t_c00454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00454 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00454 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00454 { /* info for Javascript */
  display:none;
}
.l_c00454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00454:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00454 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00454.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00454;src:url('chunks/assets/font_9fd60b70c6def1dc52b81562.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_257987723d1b3516c345c6ed.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_85921955e11d33b4d456e368.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_8f16c8829d070108809b4456.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00454;src:url('chunks/assets/font_36cd70630ada196a855af251.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00454;src:url('chunks/assets/font_e3f61c835dc90a2dc23aaec4.woff2')format("woff");}.ff6_c00454{font-family:ff6_c00454;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls9_c00454{letter-spacing:-0.532800px;}
.ls6_c00454{letter-spacing:0.000000px;}
.ls7_c00454{letter-spacing:0.020400px;}
.ls0_c00454{letter-spacing:0.288000px;}
.ls8_c00454{letter-spacing:0.313800px;}
.ls2_c00454{letter-spacing:0.524160px;}
.ls3_c00454{letter-spacing:0.720000px;}
.ls4_c00454{letter-spacing:0.728640px;}
.ls5_c00454{letter-spacing:0.740278px;}
.ls1_c00454{letter-spacing:0.740381px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:-18.000000px;}
.ws3_c00454{word-spacing:-15.433800px;}
.ws1_c00454{word-spacing:-15.140400px;}
.ws2_c00454{word-spacing:-15.120000px;}
.ws4_c00454{word-spacing:0.000000px;}
._7_c00454{margin-left:-3.672000px;}
._2_c00454{margin-left:-2.479196px;}
._0_c00454{margin-left:-1.451399px;}
._1_c00454{width:1.088398px;}
._d_c00454{width:2.088605px;}
._4_c00454{width:3.096000px;}
._a_c00454{width:4.282802px;}
._b_c00454{width:5.716800px;}
._c_c00454{width:7.314595px;}
._11_c00454{width:8.420417px;}
._8_c00454{width:11.412582px;}
._6_c00454{width:12.819602px;}
._9_c00454{width:13.902002px;}
._5_c00454{width:15.512414px;}
._3_c00454{width:16.807196px;}
._10_c00454{width:24.353983px;}
._e_c00454{width:25.479602px;}
._f_c00454{width:26.559602px;}
.fc0_c00454{color:rgb(0,0,0);}
.fs1_c00454{font-size:60.480000px;}
.fs0_c00454{font-size:72.000000px;}
.y0_c00454{bottom:0.000000px;}
.y3_c00454{bottom:57.996000px;}
.y2_c00454{bottom:78.876000px;}
.y23_c00454{bottom:113.076000px;}
.y22_c00454{bottom:150.915000px;}
.y21_c00454{bottom:176.835000px;}
.y20_c00454{bottom:211.755000px;}
.y1f_c00454{bottom:237.675000px;}
.y1e_c00454{bottom:263.595000px;}
.y1d_c00454{bottom:289.545000px;}
.y1c_c00454{bottom:315.465000px;}
.y1b_c00454{bottom:343.545000px;}
.y1a_c00454{bottom:383.505000px;}
.y19_c00454{bottom:423.510000px;}
.y18_c00454{bottom:454.470000px;}
.y17_c00454{bottom:485.790000px;}
.y16_c00454{bottom:516.750000px;}
.y15_c00454{bottom:547.740000px;}
.y14_c00454{bottom:578.700000px;}
.y13_c00454{bottom:610.020000px;}
.y12_c00454{bottom:641.010000px;}
.y11_c00454{bottom:671.970000px;}
.y10_c00454{bottom:702.930000px;}
.yf_c00454{bottom:734.250000px;}
.ye_c00454{bottom:765.255000px;}
.yd_c00454{bottom:796.215000px;}
.yc_c00454{bottom:827.175000px;}
.yb_c00454{bottom:858.495000px;}
.ya_c00454{bottom:889.485000px;}
.y9_c00454{bottom:920.445000px;}
.y8_c00454{bottom:951.405000px;}
.y7_c00454{bottom:982.725000px;}
.y6_c00454{bottom:1013.730000px;}
.y5_c00454{bottom:1042.530000px;}
.y4_c00454{bottom:1068.450000px;}
.y1_c00454{bottom:1117.770000px;}
.h2_c00454{height:59.328281px;}
.h5_c00454{height:59.357813px;}
.h1_c00454{height:64.546875px;}
.h4_c00454{height:70.628906px;}
.h3_c00454{height:70.664062px;}
.h0_c00454{height:1188.000000px;}
.w0_c00454{width:918.000000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:127.476000px;}
.x3_c00454{left:169.995000px;}
.x4_c00454{left:178.635000px;}
.x5_c00454{left:180.795000px;}
.x2_c00454{left:445.500000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls9_c00454{letter-spacing:-0.473600pt;}
.ls6_c00454{letter-spacing:0.000000pt;}
.ls7_c00454{letter-spacing:0.018133pt;}
.ls0_c00454{letter-spacing:0.256000pt;}
.ls8_c00454{letter-spacing:0.278933pt;}
.ls2_c00454{letter-spacing:0.465920pt;}
.ls3_c00454{letter-spacing:0.640000pt;}
.ls4_c00454{letter-spacing:0.647680pt;}
.ls5_c00454{letter-spacing:0.658025pt;}
.ls1_c00454{letter-spacing:0.658116pt;}
.ws0_c00454{word-spacing:-16.000000pt;}
.ws3_c00454{word-spacing:-13.718933pt;}
.ws1_c00454{word-spacing:-13.458133pt;}
.ws2_c00454{word-spacing:-13.440000pt;}
.ws4_c00454{word-spacing:0.000000pt;}
._7_c00454{margin-left:-3.264000pt;}
._2_c00454{margin-left:-2.203730pt;}
._0_c00454{margin-left:-1.290132pt;}
._1_c00454{width:0.967465pt;}
._d_c00454{width:1.856538pt;}
._4_c00454{width:2.752000pt;}
._a_c00454{width:3.806935pt;}
._b_c00454{width:5.081600pt;}
._c_c00454{width:6.501862pt;}
._11_c00454{width:7.484815pt;}
._8_c00454{width:10.144517pt;}
._6_c00454{width:11.395202pt;}
._9_c00454{width:12.357335pt;}
._5_c00454{width:13.788813pt;}
._3_c00454{width:14.939730pt;}
._10_c00454{width:21.647985pt;}
._e_c00454{width:22.648535pt;}
._f_c00454{width:23.608535pt;}
.fs1_c00454{font-size:53.760000pt;}
.fs0_c00454{font-size:64.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y3_c00454{bottom:51.552000pt;}
.y2_c00454{bottom:70.112000pt;}
.y23_c00454{bottom:100.512000pt;}
.y22_c00454{bottom:134.146667pt;}
.y21_c00454{bottom:157.186667pt;}
.y20_c00454{bottom:188.226667pt;}
.y1f_c00454{bottom:211.266667pt;}
.y1e_c00454{bottom:234.306667pt;}
.y1d_c00454{bottom:257.373333pt;}
.y1c_c00454{bottom:280.413333pt;}
.y1b_c00454{bottom:305.373333pt;}
.y1a_c00454{bottom:340.893333pt;}
.y19_c00454{bottom:376.453333pt;}
.y18_c00454{bottom:403.973333pt;}
.y17_c00454{bottom:431.813333pt;}
.y16_c00454{bottom:459.333333pt;}
.y15_c00454{bottom:486.880000pt;}
.y14_c00454{bottom:514.400000pt;}
.y13_c00454{bottom:542.240000pt;}
.y12_c00454{bottom:569.786667pt;}
.y11_c00454{bottom:597.306667pt;}
.y10_c00454{bottom:624.826667pt;}
.yf_c00454{bottom:652.666667pt;}
.ye_c00454{bottom:680.226667pt;}
.yd_c00454{bottom:707.746667pt;}
.yc_c00454{bottom:735.266667pt;}
.yb_c00454{bottom:763.106667pt;}
.ya_c00454{bottom:790.653333pt;}
.y9_c00454{bottom:818.173333pt;}
.y8_c00454{bottom:845.693333pt;}
.y7_c00454{bottom:873.533333pt;}
.y6_c00454{bottom:901.093333pt;}
.y5_c00454{bottom:926.693333pt;}
.y4_c00454{bottom:949.733333pt;}
.y1_c00454{bottom:993.573333pt;}
.h2_c00454{height:52.736250pt;}
.h5_c00454{height:52.762500pt;}
.h1_c00454{height:57.375000pt;}
.h4_c00454{height:62.781250pt;}
.h3_c00454{height:62.812500pt;}
.h0_c00454{height:1056.000000pt;}
.w0_c00454{width:816.000000pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:113.312000pt;}
.x3_c00454{left:151.106667pt;}
.x4_c00454{left:158.786667pt;}
.x5_c00454{left:160.706667pt;}
.x2_c00454{left:396.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_c00455 {
    display:none;
  }
  .loading-indicator_c00455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00455 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00455 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00455" -> "#page-container .classname_c00455")
 */
.pf_c00455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00455 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00455 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00455 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00455 {overflow:visible;}
  }
}
.c_c00455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00455 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00455:after { /* webkit #35443 */
  content: '';
}
.t_c00455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00455 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00455 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00455 { /* info for Javascript */
  display:none;
}
.l_c00455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00455:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00455 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00455.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00455;src:url('chunks/assets/font_f47258062ec77ec290261f15.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_86f4093ccc62a51d3f742382.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_d43b9ad31834cc78773c03cd.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;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_c00455;src:url('chunks/assets/font_ad5bfc5988236b0c083cac59.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_687bbb003d649b5739cf6e5f.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00455;src:url('chunks/assets/font_f2c3eaf7cb0e9a6b736d138e.woff2')format("woff");}.ff6_c00455{font-family:ff6_c00455;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls9_c00455{letter-spacing:-1.440000px;}
.lsa_c00455{letter-spacing:-0.936000px;}
.ls7_c00455{letter-spacing:-0.792000px;}
.ls3_c00455{letter-spacing:0.000000px;}
.ls6_c00455{letter-spacing:0.020400px;}
.ls8_c00455{letter-spacing:0.072000px;}
.ls4_c00455{letter-spacing:0.504000px;}
.ls5_c00455{letter-spacing:0.576000px;}
.ls1_c00455{letter-spacing:0.720000px;}
.ls2_c00455{letter-spacing:6.480000px;}
.ls0_c00455{letter-spacing:16.560000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00455{word-spacing:-60.480000px;}
.ws2_c00455{word-spacing:-18.576000px;}
.ws1_c00455{word-spacing:-18.504000px;}
.ws7_c00455{word-spacing:-18.072000px;}
.ws0_c00455{word-spacing:-18.000000px;}
.ws6_c00455{word-spacing:-17.208000px;}
.ws3_c00455{word-spacing:-15.140400px;}
.ws4_c00455{word-spacing:-15.120000px;}
.ws9_c00455{word-spacing:-14.184000px;}
.ws8_c00455{word-spacing:-13.680000px;}
.wsa_c00455{word-spacing:0.000000px;}
._3_c00455{margin-left:-2.304000px;}
._1_c00455{margin-left:-1.152000px;}
._0_c00455{width:1.440000px;}
._2_c00455{width:2.712000px;}
._4_c00455{width:4.056000px;}
._e_c00455{width:5.184000px;}
._f_c00455{width:6.504000px;}
._d_c00455{width:7.920000px;}
._c_c00455{width:9.288000px;}
._11_c00455{width:13.104000px;}
._10_c00455{width:14.760000px;}
._5_c00455{width:16.956000px;}
._8_c00455{width:19.392000px;}
._b_c00455{width:21.744000px;}
._9_c00455{width:22.968000px;}
._a_c00455{width:23.976000px;}
._7_c00455{width:30.600000px;}
._6_c00455{width:31.824000px;}
.fc0_c00455{color:rgb(0,0,0);}
.fs3_c00455{font-size:38.880000px;}
.fs2_c00455{font-size:47.520000px;}
.fs1_c00455{font-size:60.480000px;}
.fs0_c00455{font-size:72.000000px;}
.y0_c00455{bottom:0.000000px;}
.y3_c00455{bottom:57.996000px;}
.y2_c00455{bottom:78.876000px;}
.y26_c00455{bottom:130.716000px;}
.y25_c00455{bottom:147.996000px;}
.y24_c00455{bottom:165.315000px;}
.y23_c00455{bottom:182.595000px;}
.y22_c00455{bottom:199.515000px;}
.y21_c00455{bottom:206.355000px;}
.y20_c00455{bottom:217.515000px;}
.y1f_c00455{bottom:260.715000px;}
.y1e_c00455{bottom:291.705000px;}
.y1d_c00455{bottom:322.665000px;}
.y1c_c00455{bottom:353.625000px;}
.y1b_c00455{bottom:384.945000px;}
.y1a_c00455{bottom:415.950000px;}
.y19_c00455{bottom:446.910000px;}
.y18_c00455{bottom:477.870000px;}
.y17_c00455{bottom:509.190000px;}
.y16_c00455{bottom:540.180000px;}
.y14_c00455{bottom:571.140000px;}
.y15_c00455{bottom:579.420000px;}
.y13_c00455{bottom:602.100000px;}
.y12_c00455{bottom:633.420000px;}
.y11_c00455{bottom:664.410000px;}
.y10_c00455{bottom:695.370000px;}
.yf_c00455{bottom:726.330000px;}
.ye_c00455{bottom:755.130000px;}
.yd_c00455{bottom:790.095000px;}
.yc_c00455{bottom:825.015000px;}
.yb_c00455{bottom:850.935000px;}
.ya_c00455{bottom:879.015000px;}
.y9_c00455{bottom:910.005000px;}
.y8_c00455{bottom:941.325000px;}
.y7_c00455{bottom:972.285000px;}
.y6_c00455{bottom:1003.245000px;}
.y5_c00455{bottom:1034.250000px;}
.y4_c00455{bottom:1065.570000px;}
.y1_c00455{bottom:1117.770000px;}
.h8_c00455{height:34.855313px;}
.h6_c00455{height:46.638281px;}
.h4_c00455{height:59.328281px;}
.h3_c00455{height:59.357813px;}
.h1_c00455{height:64.546875px;}
.h7_c00455{height:70.628906px;}
.h2_c00455{height:70.664062px;}
.h5_c00455{height:1187.995500px;}
.h0_c00455{height:1188.000000px;}
.w1_c00455{width:917.997000px;}
.w0_c00455{width:918.000000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:127.476000px;}
.x8_c00455{left:142.596000px;}
.x3_c00455{left:169.995000px;}
.x6_c00455{left:178.635000px;}
.x7_c00455{left:343.590000px;}
.x2_c00455{left:445.500000px;}
.x4_c00455{left:506.337000px;}
.x5_c00455{left:524.700000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls9_c00455{letter-spacing:-1.280000pt;}
.lsa_c00455{letter-spacing:-0.832000pt;}
.ls7_c00455{letter-spacing:-0.704000pt;}
.ls3_c00455{letter-spacing:0.000000pt;}
.ls6_c00455{letter-spacing:0.018133pt;}
.ls8_c00455{letter-spacing:0.064000pt;}
.ls4_c00455{letter-spacing:0.448000pt;}
.ls5_c00455{letter-spacing:0.512000pt;}
.ls1_c00455{letter-spacing:0.640000pt;}
.ls2_c00455{letter-spacing:5.760000pt;}
.ls0_c00455{letter-spacing:14.720000pt;}
.ws5_c00455{word-spacing:-53.760000pt;}
.ws2_c00455{word-spacing:-16.512000pt;}
.ws1_c00455{word-spacing:-16.448000pt;}
.ws7_c00455{word-spacing:-16.064000pt;}
.ws0_c00455{word-spacing:-16.000000pt;}
.ws6_c00455{word-spacing:-15.296000pt;}
.ws3_c00455{word-spacing:-13.458133pt;}
.ws4_c00455{word-spacing:-13.440000pt;}
.ws9_c00455{word-spacing:-12.608000pt;}
.ws8_c00455{word-spacing:-12.160000pt;}
.wsa_c00455{word-spacing:0.000000pt;}
._3_c00455{margin-left:-2.048000pt;}
._1_c00455{margin-left:-1.024000pt;}
._0_c00455{width:1.280000pt;}
._2_c00455{width:2.410667pt;}
._4_c00455{width:3.605333pt;}
._e_c00455{width:4.608000pt;}
._f_c00455{width:5.781333pt;}
._d_c00455{width:7.040000pt;}
._c_c00455{width:8.256000pt;}
._11_c00455{width:11.648000pt;}
._10_c00455{width:13.120000pt;}
._5_c00455{width:15.072000pt;}
._8_c00455{width:17.237333pt;}
._b_c00455{width:19.328000pt;}
._9_c00455{width:20.416000pt;}
._a_c00455{width:21.312000pt;}
._7_c00455{width:27.200000pt;}
._6_c00455{width:28.288000pt;}
.fs3_c00455{font-size:34.560000pt;}
.fs2_c00455{font-size:42.240000pt;}
.fs1_c00455{font-size:53.760000pt;}
.fs0_c00455{font-size:64.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y3_c00455{bottom:51.552000pt;}
.y2_c00455{bottom:70.112000pt;}
.y26_c00455{bottom:116.192000pt;}
.y25_c00455{bottom:131.552000pt;}
.y24_c00455{bottom:146.946667pt;}
.y23_c00455{bottom:162.306667pt;}
.y22_c00455{bottom:177.346667pt;}
.y21_c00455{bottom:183.426667pt;}
.y20_c00455{bottom:193.346667pt;}
.y1f_c00455{bottom:231.746667pt;}
.y1e_c00455{bottom:259.293333pt;}
.y1d_c00455{bottom:286.813333pt;}
.y1c_c00455{bottom:314.333333pt;}
.y1b_c00455{bottom:342.173333pt;}
.y1a_c00455{bottom:369.733333pt;}
.y19_c00455{bottom:397.253333pt;}
.y18_c00455{bottom:424.773333pt;}
.y17_c00455{bottom:452.613333pt;}
.y16_c00455{bottom:480.160000pt;}
.y14_c00455{bottom:507.680000pt;}
.y15_c00455{bottom:515.040000pt;}
.y13_c00455{bottom:535.200000pt;}
.y12_c00455{bottom:563.040000pt;}
.y11_c00455{bottom:590.586667pt;}
.y10_c00455{bottom:618.106667pt;}
.yf_c00455{bottom:645.626667pt;}
.ye_c00455{bottom:671.226667pt;}
.yd_c00455{bottom:702.306667pt;}
.yc_c00455{bottom:733.346667pt;}
.yb_c00455{bottom:756.386667pt;}
.ya_c00455{bottom:781.346667pt;}
.y9_c00455{bottom:808.893333pt;}
.y8_c00455{bottom:836.733333pt;}
.y7_c00455{bottom:864.253333pt;}
.y6_c00455{bottom:891.773333pt;}
.y5_c00455{bottom:919.333333pt;}
.y4_c00455{bottom:947.173333pt;}
.y1_c00455{bottom:993.573333pt;}
.h8_c00455{height:30.982500pt;}
.h6_c00455{height:41.456250pt;}
.h4_c00455{height:52.736250pt;}
.h3_c00455{height:52.762500pt;}
.h1_c00455{height:57.375000pt;}
.h7_c00455{height:62.781250pt;}
.h2_c00455{height:62.812500pt;}
.h5_c00455{height:1055.996000pt;}
.h0_c00455{height:1056.000000pt;}
.w1_c00455{width:815.997333pt;}
.w0_c00455{width:816.000000pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:113.312000pt;}
.x8_c00455{left:126.752000pt;}
.x3_c00455{left:151.106667pt;}
.x6_c00455{left:158.786667pt;}
.x7_c00455{left:305.413333pt;}
.x2_c00455{left:396.000000pt;}
.x4_c00455{left:450.077333pt;}
.x5_c00455{left:466.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_c00456 {
    display:none;
  }
  .loading-indicator_c00456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00456 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00456 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00456" -> "#page-container .classname_c00456")
 */
.pf_c00456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00456 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00456 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00456 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00456 {overflow:visible;}
  }
}
.c_c00456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00456 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00456:after { /* webkit #35443 */
  content: '';
}
.t_c00456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00456 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00456 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00456 { /* info for Javascript */
  display:none;
}
.l_c00456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00456:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00456 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00456.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00456;src:url('chunks/assets/font_f47258062ec77ec290261f15.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_ccc3561d7a24941f21474287.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:0.000000px;}
._5_c00456{margin-left:-3.096000px;}
._1_c00456{margin-left:-1.800000px;}
._8_c00456{width:1.008000px;}
._0_c00456{width:2.016000px;}
._3_c00456{width:3.240000px;}
._2_c00456{width:4.320000px;}
._4_c00456{width:5.760000px;}
._b_c00456{width:7.056000px;}
._9_c00456{width:8.640000px;}
._a_c00456{width:9.936000px;}
._7_c00456{width:19.008000px;}
._6_c00456{width:20.520000px;}
.fc0_c00456{color:rgb(0,0,0);}
.fs0_c00456{font-size:72.000000px;}
.y0_c00456{bottom:0.000000px;}
.y3_c00456{bottom:57.996000px;}
.y2_c00456{bottom:78.876000px;}
.y9_c00456{bottom:910.005000px;}
.y8_c00456{bottom:941.325000px;}
.y7_c00456{bottom:972.285000px;}
.y6_c00456{bottom:1003.245000px;}
.y5_c00456{bottom:1034.250000px;}
.y4_c00456{bottom:1065.570000px;}
.y1_c00456{bottom:1117.770000px;}
.h1_c00456{height:64.546875px;}
.h2_c00456{height:70.664062px;}
.h0_c00456{height:1188.000000px;}
.w0_c00456{width:918.000000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:127.476000px;}
.x3_c00456{left:178.635000px;}
.x2_c00456{left:445.500000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:0.000000pt;}
._5_c00456{margin-left:-2.752000pt;}
._1_c00456{margin-left:-1.600000pt;}
._8_c00456{width:0.896000pt;}
._0_c00456{width:1.792000pt;}
._3_c00456{width:2.880000pt;}
._2_c00456{width:3.840000pt;}
._4_c00456{width:5.120000pt;}
._b_c00456{width:6.272000pt;}
._9_c00456{width:7.680000pt;}
._a_c00456{width:8.832000pt;}
._7_c00456{width:16.896000pt;}
._6_c00456{width:18.240000pt;}
.fs0_c00456{font-size:64.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y3_c00456{bottom:51.552000pt;}
.y2_c00456{bottom:70.112000pt;}
.y9_c00456{bottom:808.893333pt;}
.y8_c00456{bottom:836.733333pt;}
.y7_c00456{bottom:864.253333pt;}
.y6_c00456{bottom:891.773333pt;}
.y5_c00456{bottom:919.333333pt;}
.y4_c00456{bottom:947.173333pt;}
.y1_c00456{bottom:993.573333pt;}
.h1_c00456{height:57.375000pt;}
.h2_c00456{height:62.812500pt;}
.h0_c00456{height:1056.000000pt;}
.w0_c00456{width:816.000000pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:113.312000pt;}
.x3_c00456{left:158.786667pt;}
.x2_c00456{left:396.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_c00457 {
    display:none;
  }
  .loading-indicator_c00457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00457 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00457 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00457" -> "#page-container .classname_c00457")
 */
.pf_c00457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00457 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00457 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00457 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00457 {overflow:visible;}
  }
}
.c_c00457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00457 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00457:after { /* webkit #35443 */
  content: '';
}
.t_c00457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00457 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00457 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00457 { /* info for Javascript */
  display:none;
}
.l_c00457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00457:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00457 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00457.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00457;src:url('chunks/assets/font_82d3bb4cea524cff65151389.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_6348aaea3cb3380b1a629d80.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_1d2f4b69376d249fe8e88208.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;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_c00457;src:url('chunks/assets/font_d4f09c83e0baa4e0d00e630a.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00457;src:url('chunks/assets/font_39dd726c46b43f85e628cc84.woff2')format("woff");}.ff5_c00457{font-family:ff5_c00457;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00457;src:url('chunks/assets/font_d10e59681a4d38b734f10f1c.woff2')format("woff");}.ff6_c00457{font-family:ff6_c00457;line-height:1.117188;font-style:normal;font-weight: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_c00457;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00457{font-family:ff7_c00457;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls1d_c00457{letter-spacing:-1.740000px;}
.ls10_c00457{letter-spacing:-1.680000px;}
.ls18_c00457{letter-spacing:-1.512000px;}
.lsc_c00457{letter-spacing:-1.422000px;}
.ls1e_c00457{letter-spacing:-1.416000px;}
.ls19_c00457{letter-spacing:-1.380000px;}
.ls1c_c00457{letter-spacing:-1.044000px;}
.ls14_c00457{letter-spacing:-0.936000px;}
.ls12_c00457{letter-spacing:-0.912000px;}
.ls15_c00457{letter-spacing:-0.720000px;}
.ls13_c00457{letter-spacing:-0.532800px;}
.lsd_c00457{letter-spacing:-0.302400px;}
.ls16_c00457{letter-spacing:-0.241800px;}
.lsb_c00457{letter-spacing:0.000000px;}
.ls4_c00457{letter-spacing:0.020160px;}
.ls17_c00457{letter-spacing:0.020400px;}
.ls1a_c00457{letter-spacing:0.022800px;}
.ls11_c00457{letter-spacing:0.060600px;}
.ls7_c00457{letter-spacing:0.108480px;}
.ls1f_c00457{letter-spacing:0.121200px;}
.lsf_c00457{letter-spacing:0.166800px;}
.ls0_c00457{letter-spacing:0.302400px;}
.ls20_c00457{letter-spacing:0.313800px;}
.ls6_c00457{letter-spacing:0.518400px;}
.ls5_c00457{letter-spacing:0.524160px;}
.lse_c00457{letter-spacing:0.529800px;}
.ls1b_c00457{letter-spacing:0.702000px;}
.ls2_c00457{letter-spacing:0.720000px;}
.ls3_c00457{letter-spacing:0.840000px;}
.ls8_c00457{letter-spacing:2.160000px;}
.ls9_c00457{letter-spacing:3.600000px;}
.ls1_c00457{letter-spacing:25.200000px;}
.lsa_c00457{letter-spacing:66.960000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00457{word-spacing:-15.822000px;}
.wsf_c00457{word-spacing:-15.433800px;}
.ws3_c00457{word-spacing:-15.286800px;}
.wse_c00457{word-spacing:-15.241200px;}
.ws5_c00457{word-spacing:-15.180600px;}
.wsb_c00457{word-spacing:-15.140400px;}
.ws2_c00457{word-spacing:-15.120000px;}
.wsa_c00457{word-spacing:-14.878200px;}
.ws1_c00457{word-spacing:-14.817600px;}
.ws7_c00457{word-spacing:-14.587200px;}
.ws6_c00457{word-spacing:-14.208000px;}
.ws8_c00457{word-spacing:-14.184000px;}
.wsc_c00457{word-spacing:-14.076000px;}
.ws0_c00457{word-spacing:-13.698000px;}
.ws4_c00457{word-spacing:-13.440000px;}
.wsd_c00457{word-spacing:-13.380000px;}
.ws10_c00457{word-spacing:0.000000px;}
._9_c00457{margin-left:-10.617600px;}
._4_c00457{margin-left:-2.736000px;}
._1_c00457{margin-left:-1.584000px;}
._0_c00457{width:1.440000px;}
._c_c00457{width:2.468160px;}
._2_c00457{width:3.528000px;}
._3_c00457{width:5.328000px;}
._5_c00457{width:24.505081px;}
._6_c00457{width:25.679399px;}
._b_c00457{width:65.587680px;}
._a_c00457{width:67.067280px;}
._7_c00457{width:92.793600px;}
._8_c00457{width:189.360000px;}
.fc0_c00457{color:rgb(0,0,0);}
.fs1_c00457{font-size:60.480000px;}
.fs0_c00457{font-size:72.000000px;}
.y0_c00457{bottom:0.000000px;}
.y1c_c00457{bottom:4.306500px;}
.yc_c00457{bottom:4.665000px;}
.y1b_c00457{bottom:33.109500px;}
.y3_c00457{bottom:57.996000px;}
.y1a_c00457{bottom:59.029500px;}
.y2_c00457{bottom:78.876000px;}
.y19_c00457{bottom:84.979500px;}
.y18_c00457{bottom:110.899500px;}
.yd_c00457{bottom:131.845500px;}
.y17_c00457{bottom:136.459500px;}
.y16_c00457{bottom:162.424500px;}
.y1d_c00457{bottom:187.984500px;}
.y15_c00457{bottom:188.344500px;}
.y14_c00457{bottom:214.264500px;}
.y13_c00457{bottom:240.184500px;}
.y12_c00457{bottom:266.134500px;}
.y11_c00457{bottom:292.054500px;}
.y10_c00457{bottom:317.974500px;}
.yf_c00457{bottom:343.534500px;}
.ye_c00457{bottom:369.484500px;}
.yb_c00457{bottom:515.385000px;}
.ya_c00457{bottom:551.730000px;}
.y9_c00457{bottom:591.735000px;}
.y8_c00457{bottom:632.055000px;}
.y7_c00457{bottom:663.015000px;}
.y6_c00457{bottom:703.005000px;}
.y5_c00457{bottom:742.965000px;}
.y4_c00457{bottom:774.285000px;}
.y1_c00457{bottom:847.770000px;}
.h4_c00457{height:20.865000px;}
.h6_c00457{height:59.357813px;}
.h7_c00457{height:60.952500px;}
.h1_c00457{height:64.546875px;}
.h3_c00457{height:70.628906px;}
.h2_c00457{height:70.664062px;}
.h5_c00457{height:382.815000px;}
.h0_c00457{height:918.000000px;}
.w2_c00457{width:329.835000px;}
.w1_c00457{width:329.850000px;}
.w0_c00457{width:1188.000000px;}
.x0_c00457{left:0.000000px;}
.x6_c00457{left:7.546500px;}
.x5_c00457{left:98.689500px;}
.x1_c00457{left:106.236000px;}
.x4_c00457{left:157.350000px;}
.x3_c00457{left:159.510000px;}
.x7_c00457{left:429.270000px;}
.x2_c00457{left:580.500000px;}
.x8_c00457{left:759.825000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls1d_c00457{letter-spacing:-1.546667pt;}
.ls10_c00457{letter-spacing:-1.493333pt;}
.ls18_c00457{letter-spacing:-1.344000pt;}
.lsc_c00457{letter-spacing:-1.264000pt;}
.ls1e_c00457{letter-spacing:-1.258667pt;}
.ls19_c00457{letter-spacing:-1.226667pt;}
.ls1c_c00457{letter-spacing:-0.928000pt;}
.ls14_c00457{letter-spacing:-0.832000pt;}
.ls12_c00457{letter-spacing:-0.810667pt;}
.ls15_c00457{letter-spacing:-0.640000pt;}
.ls13_c00457{letter-spacing:-0.473600pt;}
.lsd_c00457{letter-spacing:-0.268800pt;}
.ls16_c00457{letter-spacing:-0.214933pt;}
.lsb_c00457{letter-spacing:0.000000pt;}
.ls4_c00457{letter-spacing:0.017920pt;}
.ls17_c00457{letter-spacing:0.018133pt;}
.ls1a_c00457{letter-spacing:0.020267pt;}
.ls11_c00457{letter-spacing:0.053867pt;}
.ls7_c00457{letter-spacing:0.096427pt;}
.ls1f_c00457{letter-spacing:0.107733pt;}
.lsf_c00457{letter-spacing:0.148267pt;}
.ls0_c00457{letter-spacing:0.268800pt;}
.ls20_c00457{letter-spacing:0.278933pt;}
.ls6_c00457{letter-spacing:0.460800pt;}
.ls5_c00457{letter-spacing:0.465920pt;}
.lse_c00457{letter-spacing:0.470933pt;}
.ls1b_c00457{letter-spacing:0.624000pt;}
.ls2_c00457{letter-spacing:0.640000pt;}
.ls3_c00457{letter-spacing:0.746667pt;}
.ls8_c00457{letter-spacing:1.920000pt;}
.ls9_c00457{letter-spacing:3.200000pt;}
.ls1_c00457{letter-spacing:22.400000pt;}
.lsa_c00457{letter-spacing:59.520000pt;}
.ws9_c00457{word-spacing:-14.064000pt;}
.wsf_c00457{word-spacing:-13.718933pt;}
.ws3_c00457{word-spacing:-13.588267pt;}
.wse_c00457{word-spacing:-13.547733pt;}
.ws5_c00457{word-spacing:-13.493867pt;}
.wsb_c00457{word-spacing:-13.458133pt;}
.ws2_c00457{word-spacing:-13.440000pt;}
.wsa_c00457{word-spacing:-13.225067pt;}
.ws1_c00457{word-spacing:-13.171200pt;}
.ws7_c00457{word-spacing:-12.966400pt;}
.ws6_c00457{word-spacing:-12.629333pt;}
.ws8_c00457{word-spacing:-12.608000pt;}
.wsc_c00457{word-spacing:-12.512000pt;}
.ws0_c00457{word-spacing:-12.176000pt;}
.ws4_c00457{word-spacing:-11.946667pt;}
.wsd_c00457{word-spacing:-11.893333pt;}
.ws10_c00457{word-spacing:0.000000pt;}
._9_c00457{margin-left:-9.437867pt;}
._4_c00457{margin-left:-2.432000pt;}
._1_c00457{margin-left:-1.408000pt;}
._0_c00457{width:1.280000pt;}
._c_c00457{width:2.193920pt;}
._2_c00457{width:3.136000pt;}
._3_c00457{width:4.736000pt;}
._5_c00457{width:21.782294pt;}
._6_c00457{width:22.826132pt;}
._b_c00457{width:58.300160pt;}
._a_c00457{width:59.615360pt;}
._7_c00457{width:82.483200pt;}
._8_c00457{width:168.320000pt;}
.fs1_c00457{font-size:53.760000pt;}
.fs0_c00457{font-size:64.000000pt;}
.y0_c00457{bottom:0.000000pt;}
.y1c_c00457{bottom:3.828000pt;}
.yc_c00457{bottom:4.146667pt;}
.y1b_c00457{bottom:29.430667pt;}
.y3_c00457{bottom:51.552000pt;}
.y1a_c00457{bottom:52.470667pt;}
.y2_c00457{bottom:70.112000pt;}
.y19_c00457{bottom:75.537333pt;}
.y18_c00457{bottom:98.577333pt;}
.yd_c00457{bottom:117.196000pt;}
.y17_c00457{bottom:121.297333pt;}
.y16_c00457{bottom:144.377333pt;}
.y1d_c00457{bottom:167.097333pt;}
.y15_c00457{bottom:167.417333pt;}
.y14_c00457{bottom:190.457333pt;}
.y13_c00457{bottom:213.497333pt;}
.y12_c00457{bottom:236.564000pt;}
.y11_c00457{bottom:259.604000pt;}
.y10_c00457{bottom:282.644000pt;}
.yf_c00457{bottom:305.364000pt;}
.ye_c00457{bottom:328.430667pt;}
.yb_c00457{bottom:458.120000pt;}
.ya_c00457{bottom:490.426667pt;}
.y9_c00457{bottom:525.986667pt;}
.y8_c00457{bottom:561.826667pt;}
.y7_c00457{bottom:589.346667pt;}
.y6_c00457{bottom:624.893333pt;}
.y5_c00457{bottom:660.413333pt;}
.y4_c00457{bottom:688.253333pt;}
.y1_c00457{bottom:753.573333pt;}
.h4_c00457{height:18.546667pt;}
.h6_c00457{height:52.762500pt;}
.h7_c00457{height:54.180000pt;}
.h1_c00457{height:57.375000pt;}
.h3_c00457{height:62.781250pt;}
.h2_c00457{height:62.812500pt;}
.h5_c00457{height:340.280000pt;}
.h0_c00457{height:816.000000pt;}
.w2_c00457{width:293.186667pt;}
.w1_c00457{width:293.200000pt;}
.w0_c00457{width:1056.000000pt;}
.x0_c00457{left:0.000000pt;}
.x6_c00457{left:6.708000pt;}
.x5_c00457{left:87.724000pt;}
.x1_c00457{left:94.432000pt;}
.x4_c00457{left:139.866667pt;}
.x3_c00457{left:141.786667pt;}
.x7_c00457{left:381.573333pt;}
.x2_c00457{left:516.000000pt;}
.x8_c00457{left:675.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_c00458 {
    display:none;
  }
  .loading-indicator_c00458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00458 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00458 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00458" -> "#page-container .classname_c00458")
 */
.pf_c00458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00458 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00458 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00458 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00458 {overflow:visible;}
  }
}
.c_c00458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00458 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00458:after { /* webkit #35443 */
  content: '';
}
.t_c00458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00458 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00458 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00458 { /* info for Javascript */
  display:none;
}
.l_c00458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00458:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00458 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00458.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00458;src:url('chunks/assets/font_4bc4bf31c27f0a8b9fe3e5fa.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_0c7f604c127f4af704e9fde5.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_e4c084a7de9340683fad354a.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_90809b826a8f3ed804f35228.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;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_c00458;src:url('chunks/assets/font_690e27906339c4ba4824e31c.woff2')format("woff");}.ff5_c00458{font-family:ff5_c00458;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00458;src:url('chunks/assets/font_1ab914807a2e00b63d52e5a9.woff2')format("woff");}.ff6_c00458{font-family:ff6_c00458;line-height:1.117188;font-style:normal;font-weight: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_c00458;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00458{font-family:ff7_c00458;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00458{vertical-align:-82.200000px;}
.v0_c00458{vertical-align:0.000000px;}
.ls11_c00458{letter-spacing:-1.680000px;}
.ls12_c00458{letter-spacing:-1.422000px;}
.lsf_c00458{letter-spacing:-1.416000px;}
.ls13_c00458{letter-spacing:-1.152000px;}
.ls15_c00458{letter-spacing:-1.044000px;}
.ls10_c00458{letter-spacing:-0.912000px;}
.ls16_c00458{letter-spacing:-0.738000px;}
.ls1b_c00458{letter-spacing:-0.720000px;}
.lse_c00458{letter-spacing:-0.532800px;}
.ls1c_c00458{letter-spacing:-0.302400px;}
.ls17_c00458{letter-spacing:-0.241800px;}
.ls18_c00458{letter-spacing:-0.169800px;}
.lsd_c00458{letter-spacing:0.000000px;}
.ls3_c00458{letter-spacing:0.020160px;}
.ls1d_c00458{letter-spacing:0.020400px;}
.lsc_c00458{letter-spacing:0.022800px;}
.lsb_c00458{letter-spacing:0.048960px;}
.ls9_c00458{letter-spacing:0.108480px;}
.ls1e_c00458{letter-spacing:0.166800px;}
.ls4_c00458{letter-spacing:0.290880px;}
.ls14_c00458{letter-spacing:0.291000px;}
.lsa_c00458{letter-spacing:0.302400px;}
.ls0_c00458{letter-spacing:0.518400px;}
.ls8_c00458{letter-spacing:0.524160px;}
.ls1a_c00458{letter-spacing:0.524400px;}
.ls19_c00458{letter-spacing:0.529800px;}
.ls1_c00458{letter-spacing:0.638400px;}
.ls2_c00458{letter-spacing:0.720000px;}
.ls6_c00458{letter-spacing:2.160000px;}
.ls5_c00458{letter-spacing:3.600000px;}
.ls7_c00458{letter-spacing:186.456000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00458{word-spacing:-15.644400px;}
.ws5_c00458{word-spacing:-15.411000px;}
.wsd_c00458{word-spacing:-15.286800px;}
.wsc_c00458{word-spacing:-15.142800px;}
.wsb_c00458{word-spacing:-15.140400px;}
.ws1_c00458{word-spacing:-15.120000px;}
.ws8_c00458{word-spacing:-14.950200px;}
.ws7_c00458{word-spacing:-14.878200px;}
.wsa_c00458{word-spacing:-14.817600px;}
.ws0_c00458{word-spacing:-14.587200px;}
.ws6_c00458{word-spacing:-14.382000px;}
.ws4_c00458{word-spacing:-13.968000px;}
.ws3_c00458{word-spacing:-13.698000px;}
.ws2_c00458{word-spacing:-13.440000px;}
.wse_c00458{word-spacing:0.000000px;}
._4_c00458{margin-left:-2.183520px;}
._1_c00458{margin-left:-1.137600px;}
._3_c00458{width:1.283520px;}
._2_c00458{width:2.958720px;}
._5_c00458{width:4.093920px;}
._0_c00458{width:189.360000px;}
.fc0_c00458{color:rgb(0,0,0);}
.fs1_c00458{font-size:60.480000px;}
.fs0_c00458{font-size:72.000000px;}
.y0_c00458{bottom:0.000000px;}
.y12_c00458{bottom:4.320000px;}
.yf_c00458{bottom:4.665000px;}
.y20_c00458{bottom:9.706500px;}
.y1f_c00458{bottom:12.586500px;}
.ye_c00458{bottom:33.465000px;}
.y1e_c00458{bottom:38.509500px;}
.y3_c00458{bottom:57.996000px;}
.yd_c00458{bottom:59.385000px;}
.y1d_c00458{bottom:64.459500px;}
.y2_c00458{bottom:78.876000px;}
.yc_c00458{bottom:84.990000px;}
.y1c_c00458{bottom:90.379500px;}
.yb_c00458{bottom:110.910000px;}
.y1b_c00458{bottom:116.299500px;}
.y13_c00458{bottom:135.085500px;}
.ya_c00458{bottom:136.830000px;}
.y1a_c00458{bottom:141.859500px;}
.y9_c00458{bottom:162.750000px;}
.y19_c00458{bottom:167.824500px;}
.y8_c00458{bottom:188.700000px;}
.y18_c00458{bottom:193.744500px;}
.y7_c00458{bottom:214.620000px;}
.y17_c00458{bottom:219.664500px;}
.y6_c00458{bottom:240.540000px;}
.y16_c00458{bottom:245.584500px;}
.y5_c00458{bottom:266.505000px;}
.y15_c00458{bottom:271.534500px;}
.y14_c00458{bottom:297.454500px;}
.y11_c00458{bottom:446.580000px;}
.y10_c00458{bottom:493.050000px;}
.y4_c00458{bottom:509.985000px;}
.y1_c00458{bottom:847.770000px;}
.h7_c00458{height:20.520000px;}
.h6_c00458{height:59.328281px;}
.h3_c00458{height:59.357813px;}
.h5_c00458{height:60.952500px;}
.h1_c00458{height:64.546875px;}
.h4_c00458{height:70.664062px;}
.h2_c00458{height:279.810000px;}
.h8_c00458{height:310.770000px;}
.h0_c00458{height:918.000000px;}
.w1_c00458{width:329.835000px;}
.w2_c00458{width:329.850000px;}
.w4_c00458{width:494.775000px;}
.w3_c00458{width:495.495000px;}
.w0_c00458{width:1188.000000px;}
.x0_c00458{left:0.000000px;}
.x8_c00458{left:4.680000px;}
.x4_c00458{left:7.920000px;}
.x6_c00458{left:98.689500px;}
.x1_c00458{left:106.236000px;}
.x3_c00458{left:429.270000px;}
.x2_c00458{left:580.500000px;}
.x7_c00458{left:594.900000px;}
.x5_c00458{left:759.825000px;}
@media print{
.v1_c00458{vertical-align:-73.066667pt;}
.v0_c00458{vertical-align:0.000000pt;}
.ls11_c00458{letter-spacing:-1.493333pt;}
.ls12_c00458{letter-spacing:-1.264000pt;}
.lsf_c00458{letter-spacing:-1.258667pt;}
.ls13_c00458{letter-spacing:-1.024000pt;}
.ls15_c00458{letter-spacing:-0.928000pt;}
.ls10_c00458{letter-spacing:-0.810667pt;}
.ls16_c00458{letter-spacing:-0.656000pt;}
.ls1b_c00458{letter-spacing:-0.640000pt;}
.lse_c00458{letter-spacing:-0.473600pt;}
.ls1c_c00458{letter-spacing:-0.268800pt;}
.ls17_c00458{letter-spacing:-0.214933pt;}
.ls18_c00458{letter-spacing:-0.150933pt;}
.lsd_c00458{letter-spacing:0.000000pt;}
.ls3_c00458{letter-spacing:0.017920pt;}
.ls1d_c00458{letter-spacing:0.018133pt;}
.lsc_c00458{letter-spacing:0.020267pt;}
.lsb_c00458{letter-spacing:0.043520pt;}
.ls9_c00458{letter-spacing:0.096427pt;}
.ls1e_c00458{letter-spacing:0.148267pt;}
.ls4_c00458{letter-spacing:0.258560pt;}
.ls14_c00458{letter-spacing:0.258667pt;}
.lsa_c00458{letter-spacing:0.268800pt;}
.ls0_c00458{letter-spacing:0.460800pt;}
.ls8_c00458{letter-spacing:0.465920pt;}
.ls1a_c00458{letter-spacing:0.466133pt;}
.ls19_c00458{letter-spacing:0.470933pt;}
.ls1_c00458{letter-spacing:0.567467pt;}
.ls2_c00458{letter-spacing:0.640000pt;}
.ls6_c00458{letter-spacing:1.920000pt;}
.ls5_c00458{letter-spacing:3.200000pt;}
.ls7_c00458{letter-spacing:165.738667pt;}
.ws9_c00458{word-spacing:-13.906133pt;}
.ws5_c00458{word-spacing:-13.698667pt;}
.wsd_c00458{word-spacing:-13.588267pt;}
.wsc_c00458{word-spacing:-13.460267pt;}
.wsb_c00458{word-spacing:-13.458133pt;}
.ws1_c00458{word-spacing:-13.440000pt;}
.ws8_c00458{word-spacing:-13.289067pt;}
.ws7_c00458{word-spacing:-13.225067pt;}
.wsa_c00458{word-spacing:-13.171200pt;}
.ws0_c00458{word-spacing:-12.966400pt;}
.ws6_c00458{word-spacing:-12.784000pt;}
.ws4_c00458{word-spacing:-12.416000pt;}
.ws3_c00458{word-spacing:-12.176000pt;}
.ws2_c00458{word-spacing:-11.946667pt;}
.wse_c00458{word-spacing:0.000000pt;}
._4_c00458{margin-left:-1.940907pt;}
._1_c00458{margin-left:-1.011200pt;}
._3_c00458{width:1.140907pt;}
._2_c00458{width:2.629973pt;}
._5_c00458{width:3.639040pt;}
._0_c00458{width:168.320000pt;}
.fs1_c00458{font-size:53.760000pt;}
.fs0_c00458{font-size:64.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y12_c00458{bottom:3.840000pt;}
.yf_c00458{bottom:4.146667pt;}
.y20_c00458{bottom:8.628000pt;}
.y1f_c00458{bottom:11.188000pt;}
.ye_c00458{bottom:29.746667pt;}
.y1e_c00458{bottom:34.230667pt;}
.y3_c00458{bottom:51.552000pt;}
.yd_c00458{bottom:52.786667pt;}
.y1d_c00458{bottom:57.297333pt;}
.y2_c00458{bottom:70.112000pt;}
.yc_c00458{bottom:75.546667pt;}
.y1c_c00458{bottom:80.337333pt;}
.yb_c00458{bottom:98.586667pt;}
.y1b_c00458{bottom:103.377333pt;}
.y13_c00458{bottom:120.076000pt;}
.ya_c00458{bottom:121.626667pt;}
.y1a_c00458{bottom:126.097333pt;}
.y9_c00458{bottom:144.666667pt;}
.y19_c00458{bottom:149.177333pt;}
.y8_c00458{bottom:167.733333pt;}
.y18_c00458{bottom:172.217333pt;}
.y7_c00458{bottom:190.773333pt;}
.y17_c00458{bottom:195.257333pt;}
.y6_c00458{bottom:213.813333pt;}
.y16_c00458{bottom:218.297333pt;}
.y5_c00458{bottom:236.893333pt;}
.y15_c00458{bottom:241.364000pt;}
.y14_c00458{bottom:264.404000pt;}
.y11_c00458{bottom:396.960000pt;}
.y10_c00458{bottom:438.266667pt;}
.y4_c00458{bottom:453.320000pt;}
.y1_c00458{bottom:753.573333pt;}
.h7_c00458{height:18.240000pt;}
.h6_c00458{height:52.736250pt;}
.h3_c00458{height:52.762500pt;}
.h5_c00458{height:54.180000pt;}
.h1_c00458{height:57.375000pt;}
.h4_c00458{height:62.812500pt;}
.h2_c00458{height:248.720000pt;}
.h8_c00458{height:276.240000pt;}
.h0_c00458{height:816.000000pt;}
.w1_c00458{width:293.186667pt;}
.w2_c00458{width:293.200000pt;}
.w4_c00458{width:439.800000pt;}
.w3_c00458{width:440.440000pt;}
.w0_c00458{width:1056.000000pt;}
.x0_c00458{left:0.000000pt;}
.x8_c00458{left:4.160000pt;}
.x4_c00458{left:7.040000pt;}
.x6_c00458{left:87.724000pt;}
.x1_c00458{left:94.432000pt;}
.x3_c00458{left:381.573333pt;}
.x2_c00458{left:516.000000pt;}
.x7_c00458{left:528.800000pt;}
.x5_c00458{left:675.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_c00459 {
    display:none;
  }
  .loading-indicator_c00459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00459 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00459 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00459" -> "#page-container .classname_c00459")
 */
.pf_c00459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00459 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00459 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00459 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00459 {overflow:visible;}
  }
}
.c_c00459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00459 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00459:after { /* webkit #35443 */
  content: '';
}
.t_c00459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00459 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00459 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00459 { /* info for Javascript */
  display:none;
}
.l_c00459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00459:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00459 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00459.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00459;src:url('chunks/assets/font_6c78142f9ba2b1896450f422.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_287f0446dd64e2e6edd9bad0.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_6d38a833053162108d150ef6.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_e3a3d64fb46be19185b0ca19.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;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_c00459;src:url('chunks/assets/font_4e8d428b66cc8997b2f1743e.woff2')format("woff");}.ff5_c00459{font-family:ff5_c00459;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls2_c00459{letter-spacing:-1.380000px;}
.ls1_c00459{letter-spacing:0.000000px;}
.ls3_c00459{letter-spacing:0.022800px;}
.ls0_c00459{letter-spacing:0.720000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00459{word-spacing:-15.142800px;}
.ws0_c00459{word-spacing:-13.740000px;}
.ws2_c00459{word-spacing:0.000000px;}
._0_c00459{margin-left:-1.624320px;}
._1_c00459{width:1.092000px;}
.fc0_c00459{color:rgb(0,0,0);}
.fs1_c00459{font-size:60.480000px;}
.fs0_c00459{font-size:72.000000px;}
.y0_c00459{bottom:0.000000px;}
.yb_c00459{bottom:4.305000px;}
.ya_c00459{bottom:33.105000px;}
.y3_c00459{bottom:57.996000px;}
.y9_c00459{bottom:59.025000px;}
.y2_c00459{bottom:78.876000px;}
.y8_c00459{bottom:84.975000px;}
.y7_c00459{bottom:110.895000px;}
.y6_c00459{bottom:136.815000px;}
.y5_c00459{bottom:162.780000px;}
.y4_c00459{bottom:613.710000px;}
.y1_c00459{bottom:847.770000px;}
.h3_c00459{height:59.357813px;}
.h1_c00459{height:64.546875px;}
.h4_c00459{height:70.664062px;}
.h2_c00459{height:176.085000px;}
.h0_c00459{height:918.000000px;}
.w1_c00459{width:495.495000px;}
.w0_c00459{width:1188.000000px;}
.x0_c00459{left:0.000000px;}
.x4_c00459{left:7.546500px;}
.x3_c00459{left:98.689500px;}
.x1_c00459{left:106.236000px;}
.x2_c00459{left:580.500000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls2_c00459{letter-spacing:-1.226667pt;}
.ls1_c00459{letter-spacing:0.000000pt;}
.ls3_c00459{letter-spacing:0.020267pt;}
.ls0_c00459{letter-spacing:0.640000pt;}
.ws1_c00459{word-spacing:-13.460267pt;}
.ws0_c00459{word-spacing:-12.213333pt;}
.ws2_c00459{word-spacing:0.000000pt;}
._0_c00459{margin-left:-1.443840pt;}
._1_c00459{width:0.970667pt;}
.fs1_c00459{font-size:53.760000pt;}
.fs0_c00459{font-size:64.000000pt;}
.y0_c00459{bottom:0.000000pt;}
.yb_c00459{bottom:3.826667pt;}
.ya_c00459{bottom:29.426667pt;}
.y3_c00459{bottom:51.552000pt;}
.y9_c00459{bottom:52.466667pt;}
.y2_c00459{bottom:70.112000pt;}
.y8_c00459{bottom:75.533333pt;}
.y7_c00459{bottom:98.573333pt;}
.y6_c00459{bottom:121.613333pt;}
.y5_c00459{bottom:144.693333pt;}
.y4_c00459{bottom:545.520000pt;}
.y1_c00459{bottom:753.573333pt;}
.h3_c00459{height:52.762500pt;}
.h1_c00459{height:57.375000pt;}
.h4_c00459{height:62.812500pt;}
.h2_c00459{height:156.520000pt;}
.h0_c00459{height:816.000000pt;}
.w1_c00459{width:440.440000pt;}
.w0_c00459{width:1056.000000pt;}
.x0_c00459{left:0.000000pt;}
.x4_c00459{left:6.708000pt;}
.x3_c00459{left:87.724000pt;}
.x1_c00459{left:94.432000pt;}
.x2_c00459{left:516.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_c00460 {
    display:none;
  }
  .loading-indicator_c00460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00460 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00460 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00460" -> "#page-container .classname_c00460")
 */
.pf_c00460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00460 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00460 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00460 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00460 {overflow:visible;}
  }
}
.c_c00460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00460 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00460:after { /* webkit #35443 */
  content: '';
}
.t_c00460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00460 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00460 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00460 { /* info for Javascript */
  display:none;
}
.l_c00460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00460:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00460 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00460.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00460;src:url('chunks/assets/font_352d202d7d51e7da498f5782.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_348a140dd3c00d9b00a9aafc.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_0ce2587b8132ac72683c682b.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_4bd1a580335e658c5aba9b46.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00460;src:url('chunks/assets/font_29881403944e75cb8acf6694.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls2_c00460{letter-spacing:-0.360000px;}
.ls0_c00460{letter-spacing:0.000000px;}
.ls1_c00460{letter-spacing:0.576000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00460{word-spacing:-18.576000px;}
.ws0_c00460{word-spacing:-18.000000px;}
.ws2_c00460{word-spacing:0.000000px;}
._6_c00460{margin-left:-2.484000px;}
._1_c00460{margin-left:-1.440000px;}
._0_c00460{width:1.296000px;}
._4_c00460{width:2.340000px;}
._5_c00460{width:4.248000px;}
._7_c00460{width:5.688000px;}
._b_c00460{width:7.344000px;}
._c_c00460{width:8.352000px;}
._2_c00460{width:10.008000px;}
._3_c00460{width:11.304000px;}
._8_c00460{width:12.492000px;}
._9_c00460{width:14.004000px;}
._a_c00460{width:15.516000px;}
._11_c00460{width:16.776000px;}
._10_c00460{width:20.664000px;}
._f_c00460{width:22.644000px;}
._13_c00460{width:25.740000px;}
._12_c00460{width:27.864000px;}
._d_c00460{width:29.160000px;}
._e_c00460{width:30.600000px;}
.fc0_c00460{color:rgb(0,0,0);}
.fs0_c00460{font-size:72.000000px;}
.y0_c00460{bottom:0.000000px;}
.y3_c00460{bottom:57.996000px;}
.y2_c00460{bottom:78.876000px;}
.y20_c00460{bottom:150.915000px;}
.y1f_c00460{bottom:181.875000px;}
.y1e_c00460{bottom:212.835000px;}
.y1d_c00460{bottom:244.155000px;}
.y1c_c00460{bottom:275.145000px;}
.y1b_c00460{bottom:306.105000px;}
.y1a_c00460{bottom:337.065000px;}
.y19_c00460{bottom:368.025000px;}
.y18_c00460{bottom:399.390000px;}
.y17_c00460{bottom:430.350000px;}
.y16_c00460{bottom:461.310000px;}
.y15_c00460{bottom:492.270000px;}
.y14_c00460{bottom:523.620000px;}
.y13_c00460{bottom:554.580000px;}
.y12_c00460{bottom:585.540000px;}
.y11_c00460{bottom:625.500000px;}
.y10_c00460{bottom:665.850000px;}
.yf_c00460{bottom:696.810000px;}
.ye_c00460{bottom:727.770000px;}
.yd_c00460{bottom:758.730000px;}
.yc_c00460{bottom:790.095000px;}
.yb_c00460{bottom:821.055000px;}
.ya_c00460{bottom:852.015000px;}
.y9_c00460{bottom:882.975000px;}
.y8_c00460{bottom:914.325000px;}
.y7_c00460{bottom:945.285000px;}
.y6_c00460{bottom:976.245000px;}
.y5_c00460{bottom:1016.250000px;}
.y4_c00460{bottom:1056.570000px;}
.y1_c00460{bottom:1117.770000px;}
.h1_c00460{height:64.546875px;}
.h2_c00460{height:70.628906px;}
.h3_c00460{height:70.664062px;}
.h0_c00460{height:1188.000000px;}
.w0_c00460{width:918.000000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:127.476000px;}
.x4_c00460{left:178.635000px;}
.x3_c00460{left:180.795000px;}
.x2_c00460{left:445.500000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls2_c00460{letter-spacing:-0.320000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ls1_c00460{letter-spacing:0.512000pt;}
.ws1_c00460{word-spacing:-16.512000pt;}
.ws0_c00460{word-spacing:-16.000000pt;}
.ws2_c00460{word-spacing:0.000000pt;}
._6_c00460{margin-left:-2.208000pt;}
._1_c00460{margin-left:-1.280000pt;}
._0_c00460{width:1.152000pt;}
._4_c00460{width:2.080000pt;}
._5_c00460{width:3.776000pt;}
._7_c00460{width:5.056000pt;}
._b_c00460{width:6.528000pt;}
._c_c00460{width:7.424000pt;}
._2_c00460{width:8.896000pt;}
._3_c00460{width:10.048000pt;}
._8_c00460{width:11.104000pt;}
._9_c00460{width:12.448000pt;}
._a_c00460{width:13.792000pt;}
._11_c00460{width:14.912000pt;}
._10_c00460{width:18.368000pt;}
._f_c00460{width:20.128000pt;}
._13_c00460{width:22.880000pt;}
._12_c00460{width:24.768000pt;}
._d_c00460{width:25.920000pt;}
._e_c00460{width:27.200000pt;}
.fs0_c00460{font-size:64.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y3_c00460{bottom:51.552000pt;}
.y2_c00460{bottom:70.112000pt;}
.y20_c00460{bottom:134.146667pt;}
.y1f_c00460{bottom:161.666667pt;}
.y1e_c00460{bottom:189.186667pt;}
.y1d_c00460{bottom:217.026667pt;}
.y1c_c00460{bottom:244.573333pt;}
.y1b_c00460{bottom:272.093333pt;}
.y1a_c00460{bottom:299.613333pt;}
.y19_c00460{bottom:327.133333pt;}
.y18_c00460{bottom:355.013333pt;}
.y17_c00460{bottom:382.533333pt;}
.y16_c00460{bottom:410.053333pt;}
.y15_c00460{bottom:437.573333pt;}
.y14_c00460{bottom:465.440000pt;}
.y13_c00460{bottom:492.960000pt;}
.y12_c00460{bottom:520.480000pt;}
.y11_c00460{bottom:556.000000pt;}
.y10_c00460{bottom:591.866667pt;}
.yf_c00460{bottom:619.386667pt;}
.ye_c00460{bottom:646.906667pt;}
.yd_c00460{bottom:674.426667pt;}
.yc_c00460{bottom:702.306667pt;}
.yb_c00460{bottom:729.826667pt;}
.ya_c00460{bottom:757.346667pt;}
.y9_c00460{bottom:784.866667pt;}
.y8_c00460{bottom:812.733333pt;}
.y7_c00460{bottom:840.253333pt;}
.y6_c00460{bottom:867.773333pt;}
.y5_c00460{bottom:903.333333pt;}
.y4_c00460{bottom:939.173333pt;}
.y1_c00460{bottom:993.573333pt;}
.h1_c00460{height:57.375000pt;}
.h2_c00460{height:62.781250pt;}
.h3_c00460{height:62.812500pt;}
.h0_c00460{height:1056.000000pt;}
.w0_c00460{width:816.000000pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:113.312000pt;}
.x4_c00460{left:158.786667pt;}
.x3_c00460{left:160.706667pt;}
.x2_c00460{left:396.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_c00461 {
    display:none;
  }
  .loading-indicator_c00461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00461 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00461 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00461" -> "#page-container .classname_c00461")
 */
.pf_c00461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00461 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00461 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00461 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00461 {overflow:visible;}
  }
}
.c_c00461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00461 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00461:after { /* webkit #35443 */
  content: '';
}
.t_c00461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00461 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00461 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00461 { /* info for Javascript */
  display:none;
}
.l_c00461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00461:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00461 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00461.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00461;src:url('chunks/assets/font_12996afcbb0764702fcaf008.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_556346d5c5246617146e820c.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_106ec91670834d430613a7ed.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00461;src:url('chunks/assets/font_c1b3b871742c0887796c2f14.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;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_c00461;src:url('chunks/assets/font_61b054ad687ba8e14943c476.woff2')format("woff");}.ff5_c00461{font-family:ff5_c00461;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.lse_c00461{letter-spacing:-0.432000px;}
.lsf_c00461{letter-spacing:-0.360000px;}
.ls11_c00461{letter-spacing:-0.288000px;}
.lsb_c00461{letter-spacing:0.000000px;}
.lsd_c00461{letter-spacing:0.288000px;}
.ls2_c00461{letter-spacing:0.480000px;}
.ls0_c00461{letter-spacing:0.504000px;}
.ls10_c00461{letter-spacing:0.576000px;}
.lsc_c00461{letter-spacing:0.648000px;}
.ls7_c00461{letter-spacing:0.792000px;}
.ls3_c00461{letter-spacing:1.440000px;}
.ls4_c00461{letter-spacing:2.160000px;}
.ls5_c00461{letter-spacing:2.280000px;}
.ls1_c00461{letter-spacing:9.360000px;}
.ls8_c00461{letter-spacing:9.480000px;}
.ls6_c00461{letter-spacing:10.800000px;}
.lsa_c00461{letter-spacing:13.680000px;}
.ls9_c00461{letter-spacing:15.120000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:-18.648000px;}
.ws2_c00461{word-spacing:-18.288000px;}
.ws1_c00461{word-spacing:-18.000000px;}
.ws3_c00461{word-spacing:-17.640000px;}
.ws4_c00461{word-spacing:0.000000px;}
._4_c00461{margin-left:-3.144000px;}
._1_c00461{margin-left:-1.296000px;}
._3_c00461{width:1.224000px;}
._6_c00461{width:2.232000px;}
._7_c00461{width:3.432000px;}
._a_c00461{width:4.896000px;}
._b_c00461{width:6.168000px;}
._2_c00461{width:7.488000px;}
._5_c00461{width:9.144000px;}
._0_c00461{width:10.236000px;}
._10_c00461{width:11.484000px;}
._15_c00461{width:12.528000px;}
._11_c00461{width:13.727976px;}
._e_c00461{width:14.760000px;}
._f_c00461{width:15.912000px;}
._c_c00461{width:22.104000px;}
._d_c00461{width:23.424000px;}
._8_c00461{width:28.224000px;}
._9_c00461{width:29.712000px;}
._13_c00461{width:38.724000px;}
._12_c00461{width:40.176000px;}
._14_c00461{width:41.184000px;}
.fc0_c00461{color:rgb(0,0,0);}
.fs1_c00461{font-size:60.480000px;}
.fs0_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y3_c00461{bottom:57.996000px;}
.y2_c00461{bottom:78.876000px;}
.y21_c00461{bottom:138.996000px;}
.y20_c00461{bottom:170.355000px;}
.y1f_c00461{bottom:210.315000px;}
.y1e_c00461{bottom:239.835000px;}
.y1d_c00461{bottom:271.155000px;}
.y1c_c00461{bottom:302.145000px;}
.y1b_c00461{bottom:333.105000px;}
.y1a_c00461{bottom:364.065000px;}
.y19_c00461{bottom:395.070000px;}
.y18_c00461{bottom:426.390000px;}
.y17_c00461{bottom:457.350000px;}
.y16_c00461{bottom:488.310000px;}
.y15_c00461{bottom:519.300000px;}
.y14_c00461{bottom:550.620000px;}
.y13_c00461{bottom:581.580000px;}
.y12_c00461{bottom:612.540000px;}
.y11_c00461{bottom:643.530000px;}
.y10_c00461{bottom:674.850000px;}
.yf_c00461{bottom:705.810000px;}
.ye_c00461{bottom:736.770000px;}
.yd_c00461{bottom:767.775000px;}
.yc_c00461{bottom:799.095000px;}
.yb_c00461{bottom:830.055000px;}
.ya_c00461{bottom:861.015000px;}
.y9_c00461{bottom:892.005000px;}
.y8_c00461{bottom:923.325000px;}
.y7_c00461{bottom:963.285000px;}
.y6_c00461{bottom:1003.245000px;}
.y5_c00461{bottom:1034.250000px;}
.y4_c00461{bottom:1065.570000px;}
.y1_c00461{bottom:1117.770000px;}
.h1_c00461{height:64.546875px;}
.h3_c00461{height:70.628906px;}
.h2_c00461{height:70.664062px;}
.h0_c00461{height:1188.000000px;}
.w0_c00461{width:918.000000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:127.476000px;}
.x4_c00461{left:178.635000px;}
.x3_c00461{left:180.795000px;}
.x2_c00461{left:445.500000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.lse_c00461{letter-spacing:-0.384000pt;}
.lsf_c00461{letter-spacing:-0.320000pt;}
.ls11_c00461{letter-spacing:-0.256000pt;}
.lsb_c00461{letter-spacing:0.000000pt;}
.lsd_c00461{letter-spacing:0.256000pt;}
.ls2_c00461{letter-spacing:0.426667pt;}
.ls0_c00461{letter-spacing:0.448000pt;}
.ls10_c00461{letter-spacing:0.512000pt;}
.lsc_c00461{letter-spacing:0.576000pt;}
.ls7_c00461{letter-spacing:0.704000pt;}
.ls3_c00461{letter-spacing:1.280000pt;}
.ls4_c00461{letter-spacing:1.920000pt;}
.ls5_c00461{letter-spacing:2.026667pt;}
.ls1_c00461{letter-spacing:8.320000pt;}
.ls8_c00461{letter-spacing:8.426667pt;}
.ls6_c00461{letter-spacing:9.600000pt;}
.lsa_c00461{letter-spacing:12.160000pt;}
.ls9_c00461{letter-spacing:13.440000pt;}
.ws0_c00461{word-spacing:-16.576000pt;}
.ws2_c00461{word-spacing:-16.256000pt;}
.ws1_c00461{word-spacing:-16.000000pt;}
.ws3_c00461{word-spacing:-15.680000pt;}
.ws4_c00461{word-spacing:0.000000pt;}
._4_c00461{margin-left:-2.794667pt;}
._1_c00461{margin-left:-1.152000pt;}
._3_c00461{width:1.088000pt;}
._6_c00461{width:1.984000pt;}
._7_c00461{width:3.050667pt;}
._a_c00461{width:4.352000pt;}
._b_c00461{width:5.482667pt;}
._2_c00461{width:6.656000pt;}
._5_c00461{width:8.128000pt;}
._0_c00461{width:9.098667pt;}
._10_c00461{width:10.208000pt;}
._15_c00461{width:11.136000pt;}
._11_c00461{width:12.202645pt;}
._e_c00461{width:13.120000pt;}
._f_c00461{width:14.144000pt;}
._c_c00461{width:19.648000pt;}
._d_c00461{width:20.821333pt;}
._8_c00461{width:25.088000pt;}
._9_c00461{width:26.410667pt;}
._13_c00461{width:34.421333pt;}
._12_c00461{width:35.712000pt;}
._14_c00461{width:36.608000pt;}
.fs1_c00461{font-size:53.760000pt;}
.fs0_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y3_c00461{bottom:51.552000pt;}
.y2_c00461{bottom:70.112000pt;}
.y21_c00461{bottom:123.552000pt;}
.y20_c00461{bottom:151.426667pt;}
.y1f_c00461{bottom:186.946667pt;}
.y1e_c00461{bottom:213.186667pt;}
.y1d_c00461{bottom:241.026667pt;}
.y1c_c00461{bottom:268.573333pt;}
.y1b_c00461{bottom:296.093333pt;}
.y1a_c00461{bottom:323.613333pt;}
.y19_c00461{bottom:351.173333pt;}
.y18_c00461{bottom:379.013333pt;}
.y17_c00461{bottom:406.533333pt;}
.y16_c00461{bottom:434.053333pt;}
.y15_c00461{bottom:461.600000pt;}
.y14_c00461{bottom:489.440000pt;}
.y13_c00461{bottom:516.960000pt;}
.y12_c00461{bottom:544.480000pt;}
.y11_c00461{bottom:572.026667pt;}
.y10_c00461{bottom:599.866667pt;}
.yf_c00461{bottom:627.386667pt;}
.ye_c00461{bottom:654.906667pt;}
.yd_c00461{bottom:682.466667pt;}
.yc_c00461{bottom:710.306667pt;}
.yb_c00461{bottom:737.826667pt;}
.ya_c00461{bottom:765.346667pt;}
.y9_c00461{bottom:792.893333pt;}
.y8_c00461{bottom:820.733333pt;}
.y7_c00461{bottom:856.253333pt;}
.y6_c00461{bottom:891.773333pt;}
.y5_c00461{bottom:919.333333pt;}
.y4_c00461{bottom:947.173333pt;}
.y1_c00461{bottom:993.573333pt;}
.h1_c00461{height:57.375000pt;}
.h3_c00461{height:62.781250pt;}
.h2_c00461{height:62.812500pt;}
.h0_c00461{height:1056.000000pt;}
.w0_c00461{width:816.000000pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:113.312000pt;}
.x4_c00461{left:158.786667pt;}
.x3_c00461{left:160.706667pt;}
.x2_c00461{left:396.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_c00462 {
    display:none;
  }
  .loading-indicator_c00462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00462 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00462 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00462" -> "#page-container .classname_c00462")
 */
.pf_c00462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00462 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00462 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00462 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00462 {overflow:visible;}
  }
}
.c_c00462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00462 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00462:after { /* webkit #35443 */
  content: '';
}
.t_c00462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00462 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00462 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00462 { /* info for Javascript */
  display:none;
}
.l_c00462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00462:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00462 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00462.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00462;src:url('chunks/assets/font_e83d6102ae1cdff869240668.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_72997c574e4f567698bab0a5.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_72a83ee89d72cd6271752727.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_a92ddd9b54f1d175ee8bad3f.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00462;src:url('chunks/assets/font_a012e8a965147ea95226fe8b.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;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_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.lsb_c00462{letter-spacing:-1.368000px;}
.ls9_c00462{letter-spacing:-1.152000px;}
.lsa_c00462{letter-spacing:-0.864000px;}
.ls6_c00462{letter-spacing:0.000000px;}
.ls3_c00462{letter-spacing:0.144000px;}
.ls8_c00462{letter-spacing:0.288000px;}
.lsc_c00462{letter-spacing:0.504000px;}
.ls7_c00462{letter-spacing:0.648000px;}
.ls0_c00462{letter-spacing:0.720000px;}
.ls2_c00462{letter-spacing:3.600000px;}
.ls4_c00462{letter-spacing:10.800000px;}
.ls5_c00462{letter-spacing:12.240000px;}
.ls1_c00462{letter-spacing:22.320000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00462{word-spacing:-18.648000px;}
.ws3_c00462{word-spacing:-18.504000px;}
.ws2_c00462{word-spacing:-18.144000px;}
.ws0_c00462{word-spacing:-18.000000px;}
.ws4_c00462{word-spacing:0.000000px;}
._e_c00462{margin-left:-3.492024px;}
._5_c00462{margin-left:-2.232000px;}
._0_c00462{margin-left:-1.224000px;}
._1_c00462{width:1.224000px;}
._3_c00462{width:2.232000px;}
._6_c00462{width:3.312000px;}
._10_c00462{width:4.500024px;}
._b_c00462{width:5.616000px;}
._9_c00462{width:6.984000px;}
._a_c00462{width:8.208000px;}
._c_c00462{width:9.372000px;}
._d_c00462{width:11.148000px;}
._2_c00462{width:13.104000px;}
._4_c00462{width:15.048000px;}
._8_c00462{width:21.276024px;}
._7_c00462{width:22.476000px;}
._f_c00462{width:24.540072px;}
._12_c00462{width:30.672000px;}
._11_c00462{width:32.040000px;}
.fc0_c00462{color:rgb(0,0,0);}
.fs0_c00462{font-size:72.000000px;}
.y0_c00462{bottom:0.000000px;}
.y3_c00462{bottom:57.996000px;}
.y2_c00462{bottom:78.876000px;}
.y21_c00462{bottom:110.916000px;}
.y20_c00462{bottom:141.876000px;}
.y1f_c00462{bottom:172.875000px;}
.y1e_c00462{bottom:203.835000px;}
.y1d_c00462{bottom:235.155000px;}
.y1c_c00462{bottom:266.115000px;}
.y1b_c00462{bottom:306.105000px;}
.y1a_c00462{bottom:346.065000px;}
.y19_c00462{bottom:386.025000px;}
.y18_c00462{bottom:426.390000px;}
.y17_c00462{bottom:457.350000px;}
.y16_c00462{bottom:488.310000px;}
.y15_c00462{bottom:519.300000px;}
.y14_c00462{bottom:550.620000px;}
.y13_c00462{bottom:581.580000px;}
.y12_c00462{bottom:612.540000px;}
.y11_c00462{bottom:643.530000px;}
.y10_c00462{bottom:674.850000px;}
.yf_c00462{bottom:714.810000px;}
.ye_c00462{bottom:754.770000px;}
.yd_c00462{bottom:785.775000px;}
.yc_c00462{bottom:817.095000px;}
.yb_c00462{bottom:848.055000px;}
.ya_c00462{bottom:879.015000px;}
.y9_c00462{bottom:910.005000px;}
.y8_c00462{bottom:941.325000px;}
.y7_c00462{bottom:972.285000px;}
.y6_c00462{bottom:1003.245000px;}
.y5_c00462{bottom:1034.250000px;}
.y4_c00462{bottom:1065.570000px;}
.y1_c00462{bottom:1117.770000px;}
.h1_c00462{height:64.546875px;}
.h3_c00462{height:70.628906px;}
.h2_c00462{height:70.664062px;}
.h0_c00462{height:1188.000000px;}
.w0_c00462{width:918.000000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:127.476000px;}
.x4_c00462{left:178.635000px;}
.x3_c00462{left:180.795000px;}
.x2_c00462{left:445.500000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.lsb_c00462{letter-spacing:-1.216000pt;}
.ls9_c00462{letter-spacing:-1.024000pt;}
.lsa_c00462{letter-spacing:-0.768000pt;}
.ls6_c00462{letter-spacing:0.000000pt;}
.ls3_c00462{letter-spacing:0.128000pt;}
.ls8_c00462{letter-spacing:0.256000pt;}
.lsc_c00462{letter-spacing:0.448000pt;}
.ls7_c00462{letter-spacing:0.576000pt;}
.ls0_c00462{letter-spacing:0.640000pt;}
.ls2_c00462{letter-spacing:3.200000pt;}
.ls4_c00462{letter-spacing:9.600000pt;}
.ls5_c00462{letter-spacing:10.880000pt;}
.ls1_c00462{letter-spacing:19.840000pt;}
.ws1_c00462{word-spacing:-16.576000pt;}
.ws3_c00462{word-spacing:-16.448000pt;}
.ws2_c00462{word-spacing:-16.128000pt;}
.ws0_c00462{word-spacing:-16.000000pt;}
.ws4_c00462{word-spacing:0.000000pt;}
._e_c00462{margin-left:-3.104021pt;}
._5_c00462{margin-left:-1.984000pt;}
._0_c00462{margin-left:-1.088000pt;}
._1_c00462{width:1.088000pt;}
._3_c00462{width:1.984000pt;}
._6_c00462{width:2.944000pt;}
._10_c00462{width:4.000021pt;}
._b_c00462{width:4.992000pt;}
._9_c00462{width:6.208000pt;}
._a_c00462{width:7.296000pt;}
._c_c00462{width:8.330667pt;}
._d_c00462{width:9.909333pt;}
._2_c00462{width:11.648000pt;}
._4_c00462{width:13.376000pt;}
._8_c00462{width:18.912021pt;}
._7_c00462{width:19.978667pt;}
._f_c00462{width:21.813397pt;}
._12_c00462{width:27.264000pt;}
._11_c00462{width:28.480000pt;}
.fs0_c00462{font-size:64.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y3_c00462{bottom:51.552000pt;}
.y2_c00462{bottom:70.112000pt;}
.y21_c00462{bottom:98.592000pt;}
.y20_c00462{bottom:126.112000pt;}
.y1f_c00462{bottom:153.666667pt;}
.y1e_c00462{bottom:181.186667pt;}
.y1d_c00462{bottom:209.026667pt;}
.y1c_c00462{bottom:236.546667pt;}
.y1b_c00462{bottom:272.093333pt;}
.y1a_c00462{bottom:307.613333pt;}
.y19_c00462{bottom:343.133333pt;}
.y18_c00462{bottom:379.013333pt;}
.y17_c00462{bottom:406.533333pt;}
.y16_c00462{bottom:434.053333pt;}
.y15_c00462{bottom:461.600000pt;}
.y14_c00462{bottom:489.440000pt;}
.y13_c00462{bottom:516.960000pt;}
.y12_c00462{bottom:544.480000pt;}
.y11_c00462{bottom:572.026667pt;}
.y10_c00462{bottom:599.866667pt;}
.yf_c00462{bottom:635.386667pt;}
.ye_c00462{bottom:670.906667pt;}
.yd_c00462{bottom:698.466667pt;}
.yc_c00462{bottom:726.306667pt;}
.yb_c00462{bottom:753.826667pt;}
.ya_c00462{bottom:781.346667pt;}
.y9_c00462{bottom:808.893333pt;}
.y8_c00462{bottom:836.733333pt;}
.y7_c00462{bottom:864.253333pt;}
.y6_c00462{bottom:891.773333pt;}
.y5_c00462{bottom:919.333333pt;}
.y4_c00462{bottom:947.173333pt;}
.y1_c00462{bottom:993.573333pt;}
.h1_c00462{height:57.375000pt;}
.h3_c00462{height:62.781250pt;}
.h2_c00462{height:62.812500pt;}
.h0_c00462{height:1056.000000pt;}
.w0_c00462{width:816.000000pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:113.312000pt;}
.x4_c00462{left:158.786667pt;}
.x3_c00462{left:160.706667pt;}
.x2_c00462{left:396.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_c00463 {
    display:none;
  }
  .loading-indicator_c00463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00463 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00463 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00463" -> "#page-container .classname_c00463")
 */
.pf_c00463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00463 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00463 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00463 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00463 {overflow:visible;}
  }
}
.c_c00463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00463 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00463:after { /* webkit #35443 */
  content: '';
}
.t_c00463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00463 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00463 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00463 { /* info for Javascript */
  display:none;
}
.l_c00463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00463:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00463 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00463.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00463;src:url('chunks/assets/font_a2441ce14fa6a56a5162b94a.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_be48cd682337f2c4cff10865.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_0cca57a7db692e8d226822d0.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;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_c00463;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00463;src:url('chunks/assets/font_24dc1094e289a8ed8466e515.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00463;src:url('chunks/assets/font_01f3827faf7f48c2b0c55445.woff2')format("woff");}.ff6_c00463{font-family:ff6_c00463;line-height:1.104004;font-style:normal;font-weight: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_c00463;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00463{font-family:ff7_c00463;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.lsc_c00463{letter-spacing:-1.416000px;}
.lsd_c00463{letter-spacing:-1.380000px;}
.ls13_c00463{letter-spacing:-0.990000px;}
.lsb_c00463{letter-spacing:-0.912000px;}
.ls14_c00463{letter-spacing:-0.532800px;}
.ls10_c00463{letter-spacing:-0.302400px;}
.ls12_c00463{letter-spacing:-0.241800px;}
.ls9_c00463{letter-spacing:0.000000px;}
.ls7_c00463{letter-spacing:0.020160px;}
.lsa_c00463{letter-spacing:0.020400px;}
.lsf_c00463{letter-spacing:0.022800px;}
.ls8_c00463{letter-spacing:0.048960px;}
.lse_c00463{letter-spacing:0.291000px;}
.ls3_c00463{letter-spacing:0.302400px;}
.ls5_c00463{letter-spacing:0.313920px;}
.ls4_c00463{letter-spacing:0.507000px;}
.ls2_c00463{letter-spacing:0.518400px;}
.ls11_c00463{letter-spacing:0.529800px;}
.ls0_c00463{letter-spacing:0.720000px;}
.ls6_c00463{letter-spacing:0.840000px;}
.ls1_c00463{letter-spacing:0.864000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00463{word-spacing:-72.000000px;}
.ws5_c00463{word-spacing:-15.627000px;}
.ws3_c00463{word-spacing:-15.411000px;}
.ws1_c00463{word-spacing:-15.140400px;}
.ws2_c00463{word-spacing:-15.120000px;}
.ws6_c00463{word-spacing:-14.878200px;}
.ws4_c00463{word-spacing:-14.817600px;}
.ws8_c00463{word-spacing:-14.587200px;}
.ws7_c00463{word-spacing:-14.130000px;}
.ws9_c00463{word-spacing:0.000000px;}
._3_c00463{margin-left:-2.383918px;}
._1_c00463{margin-left:-1.368000px;}
._0_c00463{width:1.008000px;}
._2_c00463{width:2.144160px;}
._a_c00463{width:3.960000px;}
._b_c00463{width:5.123274px;}
._8_c00463{width:6.887512px;}
._7_c00463{width:8.064000px;}
._9_c00463{width:9.112328px;}
._6_c00463{width:12.191758px;}
._4_c00463{width:13.692000px;}
._5_c00463{width:15.035754px;}
.fc0_c00463{color:rgb(0,0,0);}
.fs1_c00463{font-size:60.480000px;}
.fs0_c00463{font-size:72.000000px;}
.y0_c00463{bottom:0.000000px;}
.y7_c00463{bottom:12.600000px;}
.y19_c00463{bottom:38.520000px;}
.y3_c00463{bottom:57.996000px;}
.y18_c00463{bottom:64.440000px;}
.y2_c00463{bottom:78.876000px;}
.y17_c00463{bottom:90.360000px;}
.y16_c00463{bottom:116.310000px;}
.y26_c00463{bottom:136.476000px;}
.y15_c00463{bottom:142.230000px;}
.y25_c00463{bottom:167.835000px;}
.y14_c00463{bottom:168.150000px;}
.y13_c00463{bottom:193.710000px;}
.y24_c00463{bottom:198.795000px;}
.y12_c00463{bottom:219.630000px;}
.y23_c00463{bottom:229.755000px;}
.y11_c00463{bottom:245.595000px;}
.y22_c00463{bottom:260.715000px;}
.y10_c00463{bottom:271.515000px;}
.y21_c00463{bottom:292.065000px;}
.yf_c00463{bottom:297.435000px;}
.y20_c00463{bottom:323.025000px;}
.ye_c00463{bottom:323.355000px;}
.yd_c00463{bottom:349.275000px;}
.y1f_c00463{bottom:353.985000px;}
.yc_c00463{bottom:374.865000px;}
.y1e_c00463{bottom:384.945000px;}
.yb_c00463{bottom:400.785000px;}
.y1d_c00463{bottom:416.310000px;}
.ya_c00463{bottom:426.705000px;}
.y1c_c00463{bottom:447.270000px;}
.y9_c00463{bottom:452.625000px;}
.y1b_c00463{bottom:478.230000px;}
.y1a_c00463{bottom:509.190000px;}
.y8_c00463{bottom:526.140000px;}
.y6_c00463{bottom:992.805000px;}
.y5_c00463{bottom:1034.250000px;}
.y4_c00463{bottom:1065.570000px;}
.y1_c00463{bottom:1117.770000px;}
.h4_c00463{height:25.950000px;}
.h5_c00463{height:59.357813px;}
.h7_c00463{height:60.952500px;}
.h1_c00463{height:64.546875px;}
.h3_c00463{height:70.628906px;}
.h2_c00463{height:70.664062px;}
.h6_c00463{height:465.930000px;}
.h0_c00463{height:1188.000000px;}
.w1_c00463{width:323.415000px;}
.w2_c00463{width:323.730000px;}
.w0_c00463{width:918.000000px;}
.x0_c00463{left:0.000000px;}
.x5_c00463{left:7.546500px;}
.x4_c00463{left:119.929500px;}
.x1_c00463{left:127.476000px;}
.x3_c00463{left:178.635000px;}
.x6_c00463{left:444.060000px;}
.x2_c00463{left:445.500000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.lsc_c00463{letter-spacing:-1.258667pt;}
.lsd_c00463{letter-spacing:-1.226667pt;}
.ls13_c00463{letter-spacing:-0.880000pt;}
.lsb_c00463{letter-spacing:-0.810667pt;}
.ls14_c00463{letter-spacing:-0.473600pt;}
.ls10_c00463{letter-spacing:-0.268800pt;}
.ls12_c00463{letter-spacing:-0.214933pt;}
.ls9_c00463{letter-spacing:0.000000pt;}
.ls7_c00463{letter-spacing:0.017920pt;}
.lsa_c00463{letter-spacing:0.018133pt;}
.lsf_c00463{letter-spacing:0.020267pt;}
.ls8_c00463{letter-spacing:0.043520pt;}
.lse_c00463{letter-spacing:0.258667pt;}
.ls3_c00463{letter-spacing:0.268800pt;}
.ls5_c00463{letter-spacing:0.279040pt;}
.ls4_c00463{letter-spacing:0.450667pt;}
.ls2_c00463{letter-spacing:0.460800pt;}
.ls11_c00463{letter-spacing:0.470933pt;}
.ls0_c00463{letter-spacing:0.640000pt;}
.ls6_c00463{letter-spacing:0.746667pt;}
.ls1_c00463{letter-spacing:0.768000pt;}
.ws0_c00463{word-spacing:-64.000000pt;}
.ws5_c00463{word-spacing:-13.890667pt;}
.ws3_c00463{word-spacing:-13.698667pt;}
.ws1_c00463{word-spacing:-13.458133pt;}
.ws2_c00463{word-spacing:-13.440000pt;}
.ws6_c00463{word-spacing:-13.225067pt;}
.ws4_c00463{word-spacing:-13.171200pt;}
.ws8_c00463{word-spacing:-12.966400pt;}
.ws7_c00463{word-spacing:-12.560000pt;}
.ws9_c00463{word-spacing:0.000000pt;}
._3_c00463{margin-left:-2.119038pt;}
._1_c00463{margin-left:-1.216000pt;}
._0_c00463{width:0.896000pt;}
._2_c00463{width:1.905920pt;}
._a_c00463{width:3.520000pt;}
._b_c00463{width:4.554022pt;}
._8_c00463{width:6.122233pt;}
._7_c00463{width:7.168000pt;}
._9_c00463{width:8.099847pt;}
._6_c00463{width:10.837118pt;}
._4_c00463{width:12.170667pt;}
._5_c00463{width:13.365115pt;}
.fs1_c00463{font-size:53.760000pt;}
.fs0_c00463{font-size:64.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y7_c00463{bottom:11.200000pt;}
.y19_c00463{bottom:34.240000pt;}
.y3_c00463{bottom:51.552000pt;}
.y18_c00463{bottom:57.280000pt;}
.y2_c00463{bottom:70.112000pt;}
.y17_c00463{bottom:80.320000pt;}
.y16_c00463{bottom:103.386667pt;}
.y26_c00463{bottom:121.312000pt;}
.y15_c00463{bottom:126.426667pt;}
.y25_c00463{bottom:149.186667pt;}
.y14_c00463{bottom:149.466667pt;}
.y13_c00463{bottom:172.186667pt;}
.y24_c00463{bottom:176.706667pt;}
.y12_c00463{bottom:195.226667pt;}
.y23_c00463{bottom:204.226667pt;}
.y11_c00463{bottom:218.306667pt;}
.y22_c00463{bottom:231.746667pt;}
.y10_c00463{bottom:241.346667pt;}
.y21_c00463{bottom:259.613333pt;}
.yf_c00463{bottom:264.386667pt;}
.y20_c00463{bottom:287.133333pt;}
.ye_c00463{bottom:287.426667pt;}
.yd_c00463{bottom:310.466667pt;}
.y1f_c00463{bottom:314.653333pt;}
.yc_c00463{bottom:333.213333pt;}
.y1e_c00463{bottom:342.173333pt;}
.yb_c00463{bottom:356.253333pt;}
.y1d_c00463{bottom:370.053333pt;}
.ya_c00463{bottom:379.293333pt;}
.y1c_c00463{bottom:397.573333pt;}
.y9_c00463{bottom:402.333333pt;}
.y1b_c00463{bottom:425.093333pt;}
.y1a_c00463{bottom:452.613333pt;}
.y8_c00463{bottom:467.680000pt;}
.y6_c00463{bottom:882.493333pt;}
.y5_c00463{bottom:919.333333pt;}
.y4_c00463{bottom:947.173333pt;}
.y1_c00463{bottom:993.573333pt;}
.h4_c00463{height:23.066667pt;}
.h5_c00463{height:52.762500pt;}
.h7_c00463{height:54.180000pt;}
.h1_c00463{height:57.375000pt;}
.h3_c00463{height:62.781250pt;}
.h2_c00463{height:62.812500pt;}
.h6_c00463{height:414.160000pt;}
.h0_c00463{height:1056.000000pt;}
.w1_c00463{width:287.480000pt;}
.w2_c00463{width:287.760000pt;}
.w0_c00463{width:816.000000pt;}
.x0_c00463{left:0.000000pt;}
.x5_c00463{left:6.708000pt;}
.x4_c00463{left:106.604000pt;}
.x1_c00463{left:113.312000pt;}
.x3_c00463{left:158.786667pt;}
.x6_c00463{left:394.720000pt;}
.x2_c00463{left:396.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_c00464 {
    display:none;
  }
  .loading-indicator_c00464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00464 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00464 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00464" -> "#page-container .classname_c00464")
 */
.pf_c00464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00464 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00464 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00464 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00464 {overflow:visible;}
  }
}
.c_c00464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00464 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00464:after { /* webkit #35443 */
  content: '';
}
.t_c00464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00464 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00464 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00464 { /* info for Javascript */
  display:none;
}
.l_c00464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00464:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00464 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00464.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00464;src:url('chunks/assets/font_3eee2e02f0569a2013fe6f14.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_4bb30729f7887d1ea3f2d0c8.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_6027ed5bac4ea76196a5fe52.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_4f0a951a55b857c52f3e819e.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00464;src:url('chunks/assets/font_0d5f7e661d5a4511b6360f5c.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00464;src:url('chunks/assets/font_b03494546434eedc67a8c296.woff2')format("woff");}.ff6_c00464{font-family:ff6_c00464;line-height:1.311035;font-style:normal;font-weight: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_c00464;src:url('chunks/assets/font_fe4e4931ccf9787b7fe43adf.woff2')format("woff");}.ff7_c00464{font-family:ff7_c00464;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.lsf_c00464{letter-spacing:-1.416000px;}
.ls1b_c00464{letter-spacing:-1.296000px;}
.ls17_c00464{letter-spacing:-0.990000px;}
.lse_c00464{letter-spacing:-0.912000px;}
.ls12_c00464{letter-spacing:-0.720000px;}
.ls18_c00464{letter-spacing:-0.532800px;}
.ls10_c00464{letter-spacing:-0.521400px;}
.ls14_c00464{letter-spacing:-0.302400px;}
.ls1c_c00464{letter-spacing:-0.288000px;}
.ls16_c00464{letter-spacing:-0.241800px;}
.ls1a_c00464{letter-spacing:-0.144000px;}
.lsc_c00464{letter-spacing:0.000000px;}
.lsd_c00464{letter-spacing:0.020400px;}
.ls4_c00464{letter-spacing:0.048960px;}
.lsa_c00464{letter-spacing:0.144000px;}
.ls13_c00464{letter-spacing:0.166800px;}
.ls1e_c00464{letter-spacing:0.288000px;}
.ls11_c00464{letter-spacing:0.291000px;}
.ls2_c00464{letter-spacing:0.302400px;}
.lsb_c00464{letter-spacing:0.360000px;}
.ls6_c00464{letter-spacing:0.504000px;}
.ls15_c00464{letter-spacing:0.529800px;}
.ls1d_c00464{letter-spacing:0.576000px;}
.ls19_c00464{letter-spacing:0.648000px;}
.ls0_c00464{letter-spacing:0.720000px;}
.ls3_c00464{letter-spacing:0.840000px;}
.ls1_c00464{letter-spacing:0.864000px;}
.ls7_c00464{letter-spacing:1.440000px;}
.ls5_c00464{letter-spacing:2.160000px;}
.ls8_c00464{letter-spacing:9.360000px;}
.ls9_c00464{letter-spacing:10.800000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00464{word-spacing:-72.360000px;}
.wsb_c00464{word-spacing:-72.000000px;}
.wsa_c00464{word-spacing:-18.648000px;}
.wsd_c00464{word-spacing:-18.288000px;}
.ws9_c00464{word-spacing:-18.000000px;}
.wsc_c00464{word-spacing:-17.856000px;}
.ws3_c00464{word-spacing:-15.411000px;}
.ws4_c00464{word-spacing:-15.286800px;}
.ws0_c00464{word-spacing:-15.140400px;}
.ws1_c00464{word-spacing:-15.120000px;}
.ws6_c00464{word-spacing:-14.878200px;}
.ws5_c00464{word-spacing:-14.817600px;}
.ws2_c00464{word-spacing:-14.598600px;}
.ws8_c00464{word-spacing:-14.587200px;}
.ws7_c00464{word-spacing:-14.130000px;}
.wsf_c00464{word-spacing:0.000000px;}
._2_c00464{margin-left:-2.335801px;}
._1_c00464{margin-left:-1.051200px;}
._0_c00464{width:1.008000px;}
._3_c00464{width:2.144160px;}
._4_c00464{width:3.359641px;}
._c_c00464{width:4.373522px;}
._5_c00464{width:5.646966px;}
._b_c00464{width:6.831602px;}
._d_c00464{width:8.982814px;}
._10_c00464{width:10.080000px;}
._11_c00464{width:11.318400px;}
._8_c00464{width:13.903442px;}
._9_c00464{width:15.130915px;}
._a_c00464{width:16.200000px;}
._13_c00464{width:23.682482px;}
._12_c00464{width:25.428000px;}
._6_c00464{width:30.888000px;}
._7_c00464{width:34.410486px;}
._e_c00464{width:39.528000px;}
._f_c00464{width:41.061842px;}
.fc0_c00464{color:rgb(0,0,0);}
.fs1_c00464{font-size:60.480000px;}
.fs0_c00464{font-size:72.000000px;}
.y0_c00464{bottom:0.000000px;}
.y6_c00464{bottom:12.600000px;}
.y16_c00464{bottom:14.790000px;}
.y15_c00464{bottom:43.590000px;}
.y3_c00464{bottom:57.996000px;}
.y14_c00464{bottom:69.510000px;}
.y2_c00464{bottom:78.876000px;}
.y13_c00464{bottom:95.430000px;}
.y27_c00464{bottom:115.956000px;}
.y12_c00464{bottom:121.350000px;}
.y26_c00464{bottom:146.916000px;}
.y11_c00464{bottom:146.955000px;}
.y10_c00464{bottom:172.875000px;}
.y25_c00464{bottom:177.915000px;}
.yf_c00464{bottom:198.795000px;}
.y24_c00464{bottom:209.235000px;}
.ye_c00464{bottom:224.715000px;}
.y23_c00464{bottom:240.195000px;}
.yd_c00464{bottom:250.635000px;}
.y22_c00464{bottom:271.155000px;}
.yc_c00464{bottom:276.585000px;}
.y21_c00464{bottom:302.145000px;}
.yb_c00464{bottom:302.505000px;}
.ya_c00464{bottom:328.425000px;}
.y20_c00464{bottom:333.465000px;}
.y9_c00464{bottom:353.985000px;}
.y1f_c00464{bottom:364.425000px;}
.y8_c00464{bottom:379.950000px;}
.y1e_c00464{bottom:395.430000px;}
.y1d_c00464{bottom:426.390000px;}
.y1c_c00464{bottom:457.710000px;}
.y1b_c00464{bottom:488.670000px;}
.y1a_c00464{bottom:519.660000px;}
.y19_c00464{bottom:550.620000px;}
.y18_c00464{bottom:581.940000px;}
.y17_c00464{bottom:612.900000px;}
.y7_c00464{bottom:629.820000px;}
.y5_c00464{bottom:1023.810000px;}
.y4_c00464{bottom:1065.570000px;}
.y1_c00464{bottom:1117.770000px;}
.h3_c00464{height:25.905000px;}
.h6_c00464{height:59.357813px;}
.h7_c00464{height:60.952500px;}
.h1_c00464{height:64.546875px;}
.h2_c00464{height:70.628906px;}
.h4_c00464{height:70.664062px;}
.h8_c00464{height:72.562500px;}
.h5_c00464{height:393.255000px;}
.h0_c00464{height:1188.000000px;}
.w2_c00464{width:335.970000px;}
.w1_c00464{width:336.015000px;}
.w0_c00464{width:918.000000px;}
.x0_c00464{left:0.000000px;}
.x4_c00464{left:7.546500px;}
.x3_c00464{left:119.929500px;}
.x1_c00464{left:127.476000px;}
.x6_c00464{left:178.635000px;}
.x2_c00464{left:445.500000px;}
.x5_c00464{left:456.660000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.lsf_c00464{letter-spacing:-1.258667pt;}
.ls1b_c00464{letter-spacing:-1.152000pt;}
.ls17_c00464{letter-spacing:-0.880000pt;}
.lse_c00464{letter-spacing:-0.810667pt;}
.ls12_c00464{letter-spacing:-0.640000pt;}
.ls18_c00464{letter-spacing:-0.473600pt;}
.ls10_c00464{letter-spacing:-0.463467pt;}
.ls14_c00464{letter-spacing:-0.268800pt;}
.ls1c_c00464{letter-spacing:-0.256000pt;}
.ls16_c00464{letter-spacing:-0.214933pt;}
.ls1a_c00464{letter-spacing:-0.128000pt;}
.lsc_c00464{letter-spacing:0.000000pt;}
.lsd_c00464{letter-spacing:0.018133pt;}
.ls4_c00464{letter-spacing:0.043520pt;}
.lsa_c00464{letter-spacing:0.128000pt;}
.ls13_c00464{letter-spacing:0.148267pt;}
.ls1e_c00464{letter-spacing:0.256000pt;}
.ls11_c00464{letter-spacing:0.258667pt;}
.ls2_c00464{letter-spacing:0.268800pt;}
.lsb_c00464{letter-spacing:0.320000pt;}
.ls6_c00464{letter-spacing:0.448000pt;}
.ls15_c00464{letter-spacing:0.470933pt;}
.ls1d_c00464{letter-spacing:0.512000pt;}
.ls19_c00464{letter-spacing:0.576000pt;}
.ls0_c00464{letter-spacing:0.640000pt;}
.ls3_c00464{letter-spacing:0.746667pt;}
.ls1_c00464{letter-spacing:0.768000pt;}
.ls7_c00464{letter-spacing:1.280000pt;}
.ls5_c00464{letter-spacing:1.920000pt;}
.ls8_c00464{letter-spacing:8.320000pt;}
.ls9_c00464{letter-spacing:9.600000pt;}
.wse_c00464{word-spacing:-64.320000pt;}
.wsb_c00464{word-spacing:-64.000000pt;}
.wsa_c00464{word-spacing:-16.576000pt;}
.wsd_c00464{word-spacing:-16.256000pt;}
.ws9_c00464{word-spacing:-16.000000pt;}
.wsc_c00464{word-spacing:-15.872000pt;}
.ws3_c00464{word-spacing:-13.698667pt;}
.ws4_c00464{word-spacing:-13.588267pt;}
.ws0_c00464{word-spacing:-13.458133pt;}
.ws1_c00464{word-spacing:-13.440000pt;}
.ws6_c00464{word-spacing:-13.225067pt;}
.ws5_c00464{word-spacing:-13.171200pt;}
.ws2_c00464{word-spacing:-12.976533pt;}
.ws8_c00464{word-spacing:-12.966400pt;}
.ws7_c00464{word-spacing:-12.560000pt;}
.wsf_c00464{word-spacing:0.000000pt;}
._2_c00464{margin-left:-2.076268pt;}
._1_c00464{margin-left:-0.934400pt;}
._0_c00464{width:0.896000pt;}
._3_c00464{width:1.905920pt;}
._4_c00464{width:2.986348pt;}
._c_c00464{width:3.887575pt;}
._5_c00464{width:5.019525pt;}
._b_c00464{width:6.072535pt;}
._d_c00464{width:7.984724pt;}
._10_c00464{width:8.960000pt;}
._11_c00464{width:10.060800pt;}
._8_c00464{width:12.358615pt;}
._9_c00464{width:13.449702pt;}
._a_c00464{width:14.400000pt;}
._13_c00464{width:21.051095pt;}
._12_c00464{width:22.602667pt;}
._6_c00464{width:27.456000pt;}
._7_c00464{width:30.587098pt;}
._e_c00464{width:35.136000pt;}
._f_c00464{width:36.499415pt;}
.fs1_c00464{font-size:53.760000pt;}
.fs0_c00464{font-size:64.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y6_c00464{bottom:11.200000pt;}
.y16_c00464{bottom:13.146667pt;}
.y15_c00464{bottom:38.746667pt;}
.y3_c00464{bottom:51.552000pt;}
.y14_c00464{bottom:61.786667pt;}
.y2_c00464{bottom:70.112000pt;}
.y13_c00464{bottom:84.826667pt;}
.y27_c00464{bottom:103.072000pt;}
.y12_c00464{bottom:107.866667pt;}
.y26_c00464{bottom:130.592000pt;}
.y11_c00464{bottom:130.626667pt;}
.y10_c00464{bottom:153.666667pt;}
.y25_c00464{bottom:158.146667pt;}
.yf_c00464{bottom:176.706667pt;}
.y24_c00464{bottom:185.986667pt;}
.ye_c00464{bottom:199.746667pt;}
.y23_c00464{bottom:213.506667pt;}
.yd_c00464{bottom:222.786667pt;}
.y22_c00464{bottom:241.026667pt;}
.yc_c00464{bottom:245.853333pt;}
.y21_c00464{bottom:268.573333pt;}
.yb_c00464{bottom:268.893333pt;}
.ya_c00464{bottom:291.933333pt;}
.y20_c00464{bottom:296.413333pt;}
.y9_c00464{bottom:314.653333pt;}
.y1f_c00464{bottom:323.933333pt;}
.y8_c00464{bottom:337.733333pt;}
.y1e_c00464{bottom:351.493333pt;}
.y1d_c00464{bottom:379.013333pt;}
.y1c_c00464{bottom:406.853333pt;}
.y1b_c00464{bottom:434.373333pt;}
.y1a_c00464{bottom:461.920000pt;}
.y19_c00464{bottom:489.440000pt;}
.y18_c00464{bottom:517.280000pt;}
.y17_c00464{bottom:544.800000pt;}
.y7_c00464{bottom:559.840000pt;}
.y5_c00464{bottom:910.053333pt;}
.y4_c00464{bottom:947.173333pt;}
.y1_c00464{bottom:993.573333pt;}
.h3_c00464{height:23.026667pt;}
.h6_c00464{height:52.762500pt;}
.h7_c00464{height:54.180000pt;}
.h1_c00464{height:57.375000pt;}
.h2_c00464{height:62.781250pt;}
.h4_c00464{height:62.812500pt;}
.h8_c00464{height:64.500000pt;}
.h5_c00464{height:349.560000pt;}
.h0_c00464{height:1056.000000pt;}
.w2_c00464{width:298.640000pt;}
.w1_c00464{width:298.680000pt;}
.w0_c00464{width:816.000000pt;}
.x0_c00464{left:0.000000pt;}
.x4_c00464{left:6.708000pt;}
.x3_c00464{left:106.604000pt;}
.x1_c00464{left:113.312000pt;}
.x6_c00464{left:158.786667pt;}
.x2_c00464{left:396.000000pt;}
.x5_c00464{left:405.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_c00465 {
    display:none;
  }
  .loading-indicator_c00465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00465 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00465 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00465" -> "#page-container .classname_c00465")
 */
.pf_c00465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00465 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00465 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00465 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00465 {overflow:visible;}
  }
}
.c_c00465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00465 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00465:after { /* webkit #35443 */
  content: '';
}
.t_c00465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00465 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00465 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00465 { /* info for Javascript */
  display:none;
}
.l_c00465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00465:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00465 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00465.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00465;src:url('chunks/assets/font_7a64346a1061cd737f7a1130.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_8ce13a86d7e486a469a65e03.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_c149c264c5769280c2decae4.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_5f76d53584f4e1410d57da0f.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00465;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00465{font-family:ff5_c00465;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00465;src:url('chunks/assets/font_d6ab216e7e5e9b5fb9008f00.woff2')format("woff");}.ff6_c00465{font-family:ff6_c00465;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_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.lsb_c00465{letter-spacing:-1.422000px;}
.ls8_c00465{letter-spacing:-0.288000px;}
.ls6_c00465{letter-spacing:0.000000px;}
.lsa_c00465{letter-spacing:0.022800px;}
.ls7_c00465{letter-spacing:0.072000px;}
.ls9_c00465{letter-spacing:0.288000px;}
.ls3_c00465{letter-spacing:0.648000px;}
.ls0_c00465{letter-spacing:0.720000px;}
.ls2_c00465{letter-spacing:2.160000px;}
.ls1_c00465{letter-spacing:3.600000px;}
.ls5_c00465{letter-spacing:7.932000px;}
.ls4_c00465{letter-spacing:8.064000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:-18.000000px;}
.ws1_c00465{word-spacing:-17.712000px;}
.ws2_c00465{word-spacing:-15.120000px;}
.ws3_c00465{word-spacing:-13.698000px;}
.ws4_c00465{word-spacing:0.000000px;}
._3_c00465{margin-left:-2.736000px;}
._1_c00465{margin-left:-1.356024px;}
._0_c00465{width:1.524024px;}
._5_c00465{width:2.700024px;}
._6_c00465{width:3.863976px;}
._8_c00465{width:5.675664px;}
._c_c00465{width:7.368048px;}
._4_c00465{width:8.639976px;}
._2_c00465{width:9.876000px;}
._b_c00465{width:11.328120px;}
._9_c00465{width:12.695952px;}
._a_c00465{width:14.700096px;}
._d_c00465{width:16.523976px;}
._7_c00465{width:19.716000px;}
._e_c00465{width:39.288000px;}
._f_c00465{width:41.003976px;}
.fc0_c00465{color:rgb(0,0,0);}
.fs2_c00465{font-size:38.880000px;}
.fs1_c00465{font-size:47.520000px;}
.fs3_c00465{font-size:60.480000px;}
.fs0_c00465{font-size:72.000000px;}
.y0_c00465{bottom:0.000000px;}
.y3_c00465{bottom:57.996000px;}
.y2_c00465{bottom:78.876000px;}
.y27_c00465{bottom:130.716000px;}
.y26_c00465{bottom:147.996000px;}
.y25_c00465{bottom:154.875000px;}
.y24_c00465{bottom:165.315000px;}
.y23_c00465{bottom:182.595000px;}
.y22_c00465{bottom:189.435000px;}
.y21_c00465{bottom:200.235000px;}
.y20_c00465{bottom:248.835000px;}
.y1f_c00465{bottom:280.185000px;}
.y1e_c00465{bottom:311.145000px;}
.y1d_c00465{bottom:342.105000px;}
.y1c_c00465{bottom:373.065000px;}
.y1b_c00465{bottom:404.070000px;}
.y1a_c00465{bottom:435.390000px;}
.y19_c00465{bottom:466.350000px;}
.y18_c00465{bottom:497.310000px;}
.y17_c00465{bottom:528.300000px;}
.y16_c00465{bottom:568.620000px;}
.y15_c00465{bottom:599.580000px;}
.y14_c00465{bottom:630.540000px;}
.y13_c00465{bottom:661.530000px;}
.y12_c00465{bottom:692.850000px;}
.y10_c00465{bottom:723.810000px;}
.y11_c00465{bottom:732.090000px;}
.yf_c00465{bottom:754.770000px;}
.ye_c00465{bottom:785.775000px;}
.yd_c00465{bottom:817.095000px;}
.yc_c00465{bottom:848.055000px;}
.yb_c00465{bottom:879.015000px;}
.ya_c00465{bottom:910.005000px;}
.y8_c00465{bottom:941.325000px;}
.y9_c00465{bottom:949.605000px;}
.y7_c00465{bottom:972.285000px;}
.y6_c00465{bottom:1003.245000px;}
.y5_c00465{bottom:1034.250000px;}
.y4_c00465{bottom:1065.570000px;}
.y1_c00465{bottom:1117.770000px;}
.h6_c00465{height:34.855313px;}
.h4_c00465{height:46.638281px;}
.h7_c00465{height:59.357813px;}
.h1_c00465{height:64.546875px;}
.h2_c00465{height:70.664062px;}
.h5_c00465{height:72.562500px;}
.h3_c00465{height:1187.995500px;}
.h0_c00465{height:1188.000000px;}
.w1_c00465{width:917.997000px;}
.w0_c00465{width:918.000000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:127.476000px;}
.x9_c00465{left:142.596000px;}
.x7_c00465{left:180.795000px;}
.x3_c00465{left:207.432000px;}
.x4_c00465{left:225.795000px;}
.x8_c00465{left:343.590000px;}
.x5_c00465{left:347.547000px;}
.x6_c00465{left:365.910000px;}
.x2_c00465{left:445.500000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.lsb_c00465{letter-spacing:-1.264000pt;}
.ls8_c00465{letter-spacing:-0.256000pt;}
.ls6_c00465{letter-spacing:0.000000pt;}
.lsa_c00465{letter-spacing:0.020267pt;}
.ls7_c00465{letter-spacing:0.064000pt;}
.ls9_c00465{letter-spacing:0.256000pt;}
.ls3_c00465{letter-spacing:0.576000pt;}
.ls0_c00465{letter-spacing:0.640000pt;}
.ls2_c00465{letter-spacing:1.920000pt;}
.ls1_c00465{letter-spacing:3.200000pt;}
.ls5_c00465{letter-spacing:7.050667pt;}
.ls4_c00465{letter-spacing:7.168000pt;}
.ws0_c00465{word-spacing:-16.000000pt;}
.ws1_c00465{word-spacing:-15.744000pt;}
.ws2_c00465{word-spacing:-13.440000pt;}
.ws3_c00465{word-spacing:-12.176000pt;}
.ws4_c00465{word-spacing:0.000000pt;}
._3_c00465{margin-left:-2.432000pt;}
._1_c00465{margin-left:-1.205355pt;}
._0_c00465{width:1.354688pt;}
._5_c00465{width:2.400021pt;}
._6_c00465{width:3.434645pt;}
._8_c00465{width:5.045035pt;}
._c_c00465{width:6.549376pt;}
._4_c00465{width:7.679979pt;}
._2_c00465{width:8.778667pt;}
._b_c00465{width:10.069440pt;}
._9_c00465{width:11.285291pt;}
._a_c00465{width:13.066752pt;}
._d_c00465{width:14.687979pt;}
._7_c00465{width:17.525333pt;}
._e_c00465{width:34.922667pt;}
._f_c00465{width:36.447979pt;}
.fs2_c00465{font-size:34.560000pt;}
.fs1_c00465{font-size:42.240000pt;}
.fs3_c00465{font-size:53.760000pt;}
.fs0_c00465{font-size:64.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y3_c00465{bottom:51.552000pt;}
.y2_c00465{bottom:70.112000pt;}
.y27_c00465{bottom:116.192000pt;}
.y26_c00465{bottom:131.552000pt;}
.y25_c00465{bottom:137.666667pt;}
.y24_c00465{bottom:146.946667pt;}
.y23_c00465{bottom:162.306667pt;}
.y22_c00465{bottom:168.386667pt;}
.y21_c00465{bottom:177.986667pt;}
.y20_c00465{bottom:221.186667pt;}
.y1f_c00465{bottom:249.053333pt;}
.y1e_c00465{bottom:276.573333pt;}
.y1d_c00465{bottom:304.093333pt;}
.y1c_c00465{bottom:331.613333pt;}
.y1b_c00465{bottom:359.173333pt;}
.y1a_c00465{bottom:387.013333pt;}
.y19_c00465{bottom:414.533333pt;}
.y18_c00465{bottom:442.053333pt;}
.y17_c00465{bottom:469.600000pt;}
.y16_c00465{bottom:505.440000pt;}
.y15_c00465{bottom:532.960000pt;}
.y14_c00465{bottom:560.480000pt;}
.y13_c00465{bottom:588.026667pt;}
.y12_c00465{bottom:615.866667pt;}
.y10_c00465{bottom:643.386667pt;}
.y11_c00465{bottom:650.746667pt;}
.yf_c00465{bottom:670.906667pt;}
.ye_c00465{bottom:698.466667pt;}
.yd_c00465{bottom:726.306667pt;}
.yc_c00465{bottom:753.826667pt;}
.yb_c00465{bottom:781.346667pt;}
.ya_c00465{bottom:808.893333pt;}
.y8_c00465{bottom:836.733333pt;}
.y9_c00465{bottom:844.093333pt;}
.y7_c00465{bottom:864.253333pt;}
.y6_c00465{bottom:891.773333pt;}
.y5_c00465{bottom:919.333333pt;}
.y4_c00465{bottom:947.173333pt;}
.y1_c00465{bottom:993.573333pt;}
.h6_c00465{height:30.982500pt;}
.h4_c00465{height:41.456250pt;}
.h7_c00465{height:52.762500pt;}
.h1_c00465{height:57.375000pt;}
.h2_c00465{height:62.812500pt;}
.h5_c00465{height:64.500000pt;}
.h3_c00465{height:1055.996000pt;}
.h0_c00465{height:1056.000000pt;}
.w1_c00465{width:815.997333pt;}
.w0_c00465{width:816.000000pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:113.312000pt;}
.x9_c00465{left:126.752000pt;}
.x7_c00465{left:160.706667pt;}
.x3_c00465{left:184.384000pt;}
.x4_c00465{left:200.706667pt;}
.x8_c00465{left:305.413333pt;}
.x5_c00465{left:308.930667pt;}
.x6_c00465{left:325.253333pt;}
.x2_c00465{left:396.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_c00466 {
    display:none;
  }
  .loading-indicator_c00466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00466 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00466 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00466" -> "#page-container .classname_c00466")
 */
.pf_c00466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00466 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00466 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00466 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00466 {overflow:visible;}
  }
}
.c_c00466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00466 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00466:after { /* webkit #35443 */
  content: '';
}
.t_c00466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00466 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00466 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00466 { /* info for Javascript */
  display:none;
}
.l_c00466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00466:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00466 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00466.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00466;src:url('chunks/assets/font_a8759e4451c235b4da37794c.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_ceb06456a6c291f5f4d2386b.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_f5556681541011b112c06eb1.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;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_c00466;src:url('chunks/assets/font_3aa58bd323890297f373f9e6.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00466;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00466;src:url('chunks/assets/font_e8a5f3d2bc6926e7ba17119b.woff2')format("woff");}.ff6_c00466{font-family:ff6_c00466;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.lsb_c00466{letter-spacing:0.000000px;}
.lsd_c00466{letter-spacing:0.288000px;}
.ls13_c00466{letter-spacing:0.466800px;}
.ls8_c00466{letter-spacing:0.486600px;}
.ls11_c00466{letter-spacing:0.504000px;}
.ls12_c00466{letter-spacing:0.529800px;}
.lse_c00466{letter-spacing:0.576000px;}
.lsf_c00466{letter-spacing:0.648000px;}
.ls6_c00466{letter-spacing:0.720000px;}
.lsa_c00466{letter-spacing:0.864000px;}
.lsc_c00466{letter-spacing:1.152000px;}
.ls10_c00466{letter-spacing:1.296000px;}
.ls0_c00466{letter-spacing:1.440000px;}
.ls1_c00466{letter-spacing:7.920000px;}
.ls2_c00466{letter-spacing:12.240000px;}
.ls9_c00466{letter-spacing:13.680000px;}
.ls7_c00466{letter-spacing:13.824000px;}
.ls3_c00466{letter-spacing:16.560000px;}
.ls5_c00466{letter-spacing:22.320000px;}
.ls4_c00466{letter-spacing:23.760000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00466{word-spacing:-72.000000px;}
.ws3_c00466{word-spacing:-19.296000px;}
.ws2_c00466{word-spacing:-18.648000px;}
.ws4_c00466{word-spacing:-18.504000px;}
.ws0_c00466{word-spacing:-18.000000px;}
.ws5_c00466{word-spacing:-15.120000px;}
.ws6_c00466{word-spacing:0.000000px;}
._3_c00466{margin-left:-3.672000px;}
._9_c00466{margin-left:-2.592000px;}
._0_c00466{margin-left:-1.584000px;}
._2_c00466{width:1.944000px;}
._7_c00466{width:2.952000px;}
._11_c00466{width:4.032000px;}
._10_c00466{width:5.160000px;}
._13_c00466{width:6.480000px;}
._d_c00466{width:7.992000px;}
._e_c00466{width:10.008000px;}
._f_c00466{width:11.184000px;}
._8_c00466{width:12.744000px;}
._5_c00466{width:13.896000px;}
._6_c00466{width:15.120000px;}
._a_c00466{width:16.188000px;}
._1_c00466{width:19.368000px;}
._4_c00466{width:20.736000px;}
._14_c00466{width:22.019832px;}
._b_c00466{width:23.412024px;}
._12_c00466{width:24.431856px;}
._c_c00466{width:25.583856px;}
._15_c00466{width:26.712000px;}
._16_c00466{width:27.720000px;}
.fc0_c00466{color:rgb(0,0,0);}
.fs2_c00466{font-size:38.880000px;}
.fs1_c00466{font-size:47.520000px;}
.fs3_c00466{font-size:60.480000px;}
.fs0_c00466{font-size:72.000000px;}
.y0_c00466{bottom:0.000000px;}
.y3_c00466{bottom:57.996000px;}
.y2_c00466{bottom:78.876000px;}
.y27_c00466{bottom:130.716000px;}
.y26_c00466{bottom:137.556000px;}
.y25_c00466{bottom:147.996000px;}
.y24_c00466{bottom:165.315000px;}
.y23_c00466{bottom:172.155000px;}
.y22_c00466{bottom:182.955000px;}
.y21_c00466{bottom:217.875000px;}
.y20_c00466{bottom:248.835000px;}
.y1f_c00466{bottom:280.185000px;}
.y1e_c00466{bottom:311.145000px;}
.y1d_c00466{bottom:342.105000px;}
.y1b_c00466{bottom:373.065000px;}
.y1c_c00466{bottom:381.345000px;}
.y1a_c00466{bottom:404.070000px;}
.y19_c00466{bottom:435.390000px;}
.y18_c00466{bottom:466.350000px;}
.y17_c00466{bottom:497.310000px;}
.y16_c00466{bottom:537.300000px;}
.y15_c00466{bottom:568.620000px;}
.y14_c00466{bottom:599.580000px;}
.y13_c00466{bottom:630.540000px;}
.y11_c00466{bottom:661.530000px;}
.y12_c00466{bottom:669.810000px;}
.y10_c00466{bottom:692.850000px;}
.yf_c00466{bottom:723.810000px;}
.ye_c00466{bottom:754.770000px;}
.yd_c00466{bottom:785.775000px;}
.yc_c00466{bottom:817.095000px;}
.yb_c00466{bottom:848.055000px;}
.ya_c00466{bottom:879.015000px;}
.y9_c00466{bottom:910.005000px;}
.y8_c00466{bottom:941.325000px;}
.y7_c00466{bottom:972.285000px;}
.y6_c00466{bottom:1003.245000px;}
.y5_c00466{bottom:1034.250000px;}
.y4_c00466{bottom:1065.570000px;}
.y1_c00466{bottom:1117.770000px;}
.h6_c00466{height:34.855313px;}
.h5_c00466{height:46.638281px;}
.h7_c00466{height:59.357813px;}
.h1_c00466{height:64.546875px;}
.h2_c00466{height:70.664062px;}
.h3_c00466{height:72.562500px;}
.h4_c00466{height:1187.995500px;}
.h0_c00466{height:1188.000000px;}
.w1_c00466{width:917.997000px;}
.w0_c00466{width:918.000000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:127.476000px;}
.x9_c00466{left:142.596000px;}
.x3_c00466{left:180.795000px;}
.x4_c00466{left:310.422000px;}
.x5_c00466{left:328.785000px;}
.x8_c00466{left:343.590000px;}
.x6_c00466{left:442.977000px;}
.x2_c00466{left:445.500000px;}
.x7_c00466{left:461.340000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.lsb_c00466{letter-spacing:0.000000pt;}
.lsd_c00466{letter-spacing:0.256000pt;}
.ls13_c00466{letter-spacing:0.414933pt;}
.ls8_c00466{letter-spacing:0.432533pt;}
.ls11_c00466{letter-spacing:0.448000pt;}
.ls12_c00466{letter-spacing:0.470933pt;}
.lse_c00466{letter-spacing:0.512000pt;}
.lsf_c00466{letter-spacing:0.576000pt;}
.ls6_c00466{letter-spacing:0.640000pt;}
.lsa_c00466{letter-spacing:0.768000pt;}
.lsc_c00466{letter-spacing:1.024000pt;}
.ls10_c00466{letter-spacing:1.152000pt;}
.ls0_c00466{letter-spacing:1.280000pt;}
.ls1_c00466{letter-spacing:7.040000pt;}
.ls2_c00466{letter-spacing:10.880000pt;}
.ls9_c00466{letter-spacing:12.160000pt;}
.ls7_c00466{letter-spacing:12.288000pt;}
.ls3_c00466{letter-spacing:14.720000pt;}
.ls5_c00466{letter-spacing:19.840000pt;}
.ls4_c00466{letter-spacing:21.120000pt;}
.ws1_c00466{word-spacing:-64.000000pt;}
.ws3_c00466{word-spacing:-17.152000pt;}
.ws2_c00466{word-spacing:-16.576000pt;}
.ws4_c00466{word-spacing:-16.448000pt;}
.ws0_c00466{word-spacing:-16.000000pt;}
.ws5_c00466{word-spacing:-13.440000pt;}
.ws6_c00466{word-spacing:0.000000pt;}
._3_c00466{margin-left:-3.264000pt;}
._9_c00466{margin-left:-2.304000pt;}
._0_c00466{margin-left:-1.408000pt;}
._2_c00466{width:1.728000pt;}
._7_c00466{width:2.624000pt;}
._11_c00466{width:3.584000pt;}
._10_c00466{width:4.586667pt;}
._13_c00466{width:5.760000pt;}
._d_c00466{width:7.104000pt;}
._e_c00466{width:8.896000pt;}
._f_c00466{width:9.941333pt;}
._8_c00466{width:11.328000pt;}
._5_c00466{width:12.352000pt;}
._6_c00466{width:13.440000pt;}
._a_c00466{width:14.389333pt;}
._1_c00466{width:17.216000pt;}
._4_c00466{width:18.432000pt;}
._14_c00466{width:19.573184pt;}
._b_c00466{width:20.810688pt;}
._12_c00466{width:21.717205pt;}
._c_c00466{width:22.741205pt;}
._15_c00466{width:23.744000pt;}
._16_c00466{width:24.640000pt;}
.fs2_c00466{font-size:34.560000pt;}
.fs1_c00466{font-size:42.240000pt;}
.fs3_c00466{font-size:53.760000pt;}
.fs0_c00466{font-size:64.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y3_c00466{bottom:51.552000pt;}
.y2_c00466{bottom:70.112000pt;}
.y27_c00466{bottom:116.192000pt;}
.y26_c00466{bottom:122.272000pt;}
.y25_c00466{bottom:131.552000pt;}
.y24_c00466{bottom:146.946667pt;}
.y23_c00466{bottom:153.026667pt;}
.y22_c00466{bottom:162.626667pt;}
.y21_c00466{bottom:193.666667pt;}
.y20_c00466{bottom:221.186667pt;}
.y1f_c00466{bottom:249.053333pt;}
.y1e_c00466{bottom:276.573333pt;}
.y1d_c00466{bottom:304.093333pt;}
.y1b_c00466{bottom:331.613333pt;}
.y1c_c00466{bottom:338.973333pt;}
.y1a_c00466{bottom:359.173333pt;}
.y19_c00466{bottom:387.013333pt;}
.y18_c00466{bottom:414.533333pt;}
.y17_c00466{bottom:442.053333pt;}
.y16_c00466{bottom:477.600000pt;}
.y15_c00466{bottom:505.440000pt;}
.y14_c00466{bottom:532.960000pt;}
.y13_c00466{bottom:560.480000pt;}
.y11_c00466{bottom:588.026667pt;}
.y12_c00466{bottom:595.386667pt;}
.y10_c00466{bottom:615.866667pt;}
.yf_c00466{bottom:643.386667pt;}
.ye_c00466{bottom:670.906667pt;}
.yd_c00466{bottom:698.466667pt;}
.yc_c00466{bottom:726.306667pt;}
.yb_c00466{bottom:753.826667pt;}
.ya_c00466{bottom:781.346667pt;}
.y9_c00466{bottom:808.893333pt;}
.y8_c00466{bottom:836.733333pt;}
.y7_c00466{bottom:864.253333pt;}
.y6_c00466{bottom:891.773333pt;}
.y5_c00466{bottom:919.333333pt;}
.y4_c00466{bottom:947.173333pt;}
.y1_c00466{bottom:993.573333pt;}
.h6_c00466{height:30.982500pt;}
.h5_c00466{height:41.456250pt;}
.h7_c00466{height:52.762500pt;}
.h1_c00466{height:57.375000pt;}
.h2_c00466{height:62.812500pt;}
.h3_c00466{height:64.500000pt;}
.h4_c00466{height:1055.996000pt;}
.h0_c00466{height:1056.000000pt;}
.w1_c00466{width:815.997333pt;}
.w0_c00466{width:816.000000pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:113.312000pt;}
.x9_c00466{left:126.752000pt;}
.x3_c00466{left:160.706667pt;}
.x4_c00466{left:275.930667pt;}
.x5_c00466{left:292.253333pt;}
.x8_c00466{left:305.413333pt;}
.x6_c00466{left:393.757333pt;}
.x2_c00466{left:396.000000pt;}
.x7_c00466{left:410.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_c00467 {
    display:none;
  }
  .loading-indicator_c00467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00467 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00467 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00467" -> "#page-container .classname_c00467")
 */
.pf_c00467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00467 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00467 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00467 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00467 {overflow:visible;}
  }
}
.c_c00467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00467 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00467:after { /* webkit #35443 */
  content: '';
}
.t_c00467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00467 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00467 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00467 { /* info for Javascript */
  display:none;
}
.l_c00467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00467:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00467 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00467.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00467;src:url('chunks/assets/font_5fea58223978dd41ce03cb4f.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_05b3dc55a95656f92312bbec.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_0d853ad9a336d4b63b021d86.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00467;src:url('chunks/assets/font_12cebb60fb63421be67d11c6.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;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_c00467;src:url('chunks/assets/font_0baf48eaeeb0a995ee7fd182.woff2')format("woff");}.ff5_c00467{font-family:ff5_c00467;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00467;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00467{font-family:ff6_c00467;line-height:1.311035;font-style:normal;font-weight: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_c00467;src:url('chunks/assets/font_e4f146d2b86a7317ebe00152.woff2')format("woff");}.ff7_c00467{font-family:ff7_c00467;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.lsb_c00467{letter-spacing:-0.720000px;}
.lsa_c00467{letter-spacing:-0.648000px;}
.ls8_c00467{letter-spacing:-0.288000px;}
.ls7_c00467{letter-spacing:0.000000px;}
.lsc_c00467{letter-spacing:0.020400px;}
.ls5_c00467{letter-spacing:0.486720px;}
.ls1_c00467{letter-spacing:0.504000px;}
.ls6_c00467{letter-spacing:0.524160px;}
.ls9_c00467{letter-spacing:0.576000px;}
.ls4_c00467{letter-spacing:0.720000px;}
.ls2_c00467{letter-spacing:1.440000px;}
.ls0_c00467{letter-spacing:9.360000px;}
.ls3_c00467{letter-spacing:22.320000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00467{word-spacing:-72.000000px;}
.ws7_c00467{word-spacing:-60.480000px;}
.ws3_c00467{word-spacing:-18.504000px;}
.ws0_c00467{word-spacing:-18.000000px;}
.ws2_c00467{word-spacing:-17.712000px;}
.ws4_c00467{word-spacing:-17.352000px;}
.ws5_c00467{word-spacing:-15.140400px;}
.ws6_c00467{word-spacing:-15.120000px;}
.ws8_c00467{word-spacing:0.000000px;}
._3_c00467{margin-left:-3.456000px;}
._5_c00467{margin-left:-2.448000px;}
._1_c00467{margin-left:-1.296000px;}
._0_c00467{width:1.224000px;}
._2_c00467{width:2.736000px;}
._8_c00467{width:4.320000px;}
._a_c00467{width:6.120000px;}
._9_c00467{width:7.200000px;}
._b_c00467{width:8.424000px;}
._7_c00467{width:9.432000px;}
._4_c00467{width:10.800000px;}
._6_c00467{width:12.371976px;}
._f_c00467{width:13.608000px;}
._10_c00467{width:15.024096px;}
._13_c00467{width:19.488000px;}
._12_c00467{width:21.144000px;}
._11_c00467{width:22.908000px;}
._c_c00467{width:38.748000px;}
._d_c00467{width:39.804000px;}
._e_c00467{width:41.172000px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs1_c00467{font-size:60.480000px;}
.fs0_c00467{font-size:72.000000px;}
.y0_c00467{bottom:0.000000px;}
.y21_c00467{bottom:12.585000px;}
.y24_c00467{bottom:12.595500px;}
.y23_c00467{bottom:38.554500px;}
.y3_c00467{bottom:57.996000px;}
.y2_c00467{bottom:78.876000px;}
.y22_c00467{bottom:123.880500px;}
.y20_c00467{bottom:176.490000px;}
.y1f_c00467{bottom:217.875000px;}
.y1e_c00467{bottom:248.835000px;}
.y1d_c00467{bottom:280.185000px;}
.y1c_c00467{bottom:311.145000px;}
.y1b_c00467{bottom:342.105000px;}
.y1a_c00467{bottom:373.065000px;}
.y19_c00467{bottom:404.070000px;}
.y18_c00467{bottom:435.390000px;}
.y17_c00467{bottom:466.350000px;}
.y16_c00467{bottom:497.310000px;}
.y15_c00467{bottom:528.300000px;}
.y14_c00467{bottom:559.620000px;}
.y13_c00467{bottom:590.580000px;}
.y12_c00467{bottom:621.540000px;}
.y11_c00467{bottom:652.530000px;}
.y10_c00467{bottom:683.850000px;}
.yf_c00467{bottom:714.810000px;}
.ye_c00467{bottom:745.770000px;}
.yd_c00467{bottom:776.775000px;}
.yc_c00467{bottom:808.095000px;}
.yb_c00467{bottom:839.055000px;}
.ya_c00467{bottom:870.015000px;}
.y9_c00467{bottom:901.005000px;}
.y8_c00467{bottom:941.325000px;}
.y7_c00467{bottom:972.285000px;}
.y6_c00467{bottom:1003.245000px;}
.y5_c00467{bottom:1034.250000px;}
.y4_c00467{bottom:1065.570000px;}
.y1_c00467{bottom:1117.770000px;}
.h3_c00467{height:25.905000px;}
.h5_c00467{height:51.871500px;}
.h4_c00467{height:59.357813px;}
.h6_c00467{height:60.952500px;}
.h1_c00467{height:64.546875px;}
.h2_c00467{height:70.664062px;}
.h0_c00467{height:1188.000000px;}
.w1_c00467{width:323.415000px;}
.w2_c00467{width:323.730000px;}
.w0_c00467{width:918.000000px;}
.x0_c00467{left:0.000000px;}
.x5_c00467{left:7.546500px;}
.x4_c00467{left:119.929500px;}
.x1_c00467{left:127.476000px;}
.x3_c00467{left:178.635000px;}
.x6_c00467{left:444.060000px;}
.x2_c00467{left:445.500000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.lsb_c00467{letter-spacing:-0.640000pt;}
.lsa_c00467{letter-spacing:-0.576000pt;}
.ls8_c00467{letter-spacing:-0.256000pt;}
.ls7_c00467{letter-spacing:0.000000pt;}
.lsc_c00467{letter-spacing:0.018133pt;}
.ls5_c00467{letter-spacing:0.432640pt;}
.ls1_c00467{letter-spacing:0.448000pt;}
.ls6_c00467{letter-spacing:0.465920pt;}
.ls9_c00467{letter-spacing:0.512000pt;}
.ls4_c00467{letter-spacing:0.640000pt;}
.ls2_c00467{letter-spacing:1.280000pt;}
.ls0_c00467{letter-spacing:8.320000pt;}
.ls3_c00467{letter-spacing:19.840000pt;}
.ws1_c00467{word-spacing:-64.000000pt;}
.ws7_c00467{word-spacing:-53.760000pt;}
.ws3_c00467{word-spacing:-16.448000pt;}
.ws0_c00467{word-spacing:-16.000000pt;}
.ws2_c00467{word-spacing:-15.744000pt;}
.ws4_c00467{word-spacing:-15.424000pt;}
.ws5_c00467{word-spacing:-13.458133pt;}
.ws6_c00467{word-spacing:-13.440000pt;}
.ws8_c00467{word-spacing:0.000000pt;}
._3_c00467{margin-left:-3.072000pt;}
._5_c00467{margin-left:-2.176000pt;}
._1_c00467{margin-left:-1.152000pt;}
._0_c00467{width:1.088000pt;}
._2_c00467{width:2.432000pt;}
._8_c00467{width:3.840000pt;}
._a_c00467{width:5.440000pt;}
._9_c00467{width:6.400000pt;}
._b_c00467{width:7.488000pt;}
._7_c00467{width:8.384000pt;}
._4_c00467{width:9.600000pt;}
._6_c00467{width:10.997312pt;}
._f_c00467{width:12.096000pt;}
._10_c00467{width:13.354752pt;}
._13_c00467{width:17.322667pt;}
._12_c00467{width:18.794667pt;}
._11_c00467{width:20.362667pt;}
._c_c00467{width:34.442667pt;}
._d_c00467{width:35.381333pt;}
._e_c00467{width:36.597333pt;}
.fs1_c00467{font-size:53.760000pt;}
.fs0_c00467{font-size:64.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y21_c00467{bottom:11.186667pt;}
.y24_c00467{bottom:11.196000pt;}
.y23_c00467{bottom:34.270667pt;}
.y3_c00467{bottom:51.552000pt;}
.y2_c00467{bottom:70.112000pt;}
.y22_c00467{bottom:110.116000pt;}
.y20_c00467{bottom:156.880000pt;}
.y1f_c00467{bottom:193.666667pt;}
.y1e_c00467{bottom:221.186667pt;}
.y1d_c00467{bottom:249.053333pt;}
.y1c_c00467{bottom:276.573333pt;}
.y1b_c00467{bottom:304.093333pt;}
.y1a_c00467{bottom:331.613333pt;}
.y19_c00467{bottom:359.173333pt;}
.y18_c00467{bottom:387.013333pt;}
.y17_c00467{bottom:414.533333pt;}
.y16_c00467{bottom:442.053333pt;}
.y15_c00467{bottom:469.600000pt;}
.y14_c00467{bottom:497.440000pt;}
.y13_c00467{bottom:524.960000pt;}
.y12_c00467{bottom:552.480000pt;}
.y11_c00467{bottom:580.026667pt;}
.y10_c00467{bottom:607.866667pt;}
.yf_c00467{bottom:635.386667pt;}
.ye_c00467{bottom:662.906667pt;}
.yd_c00467{bottom:690.466667pt;}
.yc_c00467{bottom:718.306667pt;}
.yb_c00467{bottom:745.826667pt;}
.ya_c00467{bottom:773.346667pt;}
.y9_c00467{bottom:800.893333pt;}
.y8_c00467{bottom:836.733333pt;}
.y7_c00467{bottom:864.253333pt;}
.y6_c00467{bottom:891.773333pt;}
.y5_c00467{bottom:919.333333pt;}
.y4_c00467{bottom:947.173333pt;}
.y1_c00467{bottom:993.573333pt;}
.h3_c00467{height:23.026667pt;}
.h5_c00467{height:46.108000pt;}
.h4_c00467{height:52.762500pt;}
.h6_c00467{height:54.180000pt;}
.h1_c00467{height:57.375000pt;}
.h2_c00467{height:62.812500pt;}
.h0_c00467{height:1056.000000pt;}
.w1_c00467{width:287.480000pt;}
.w2_c00467{width:287.760000pt;}
.w0_c00467{width:816.000000pt;}
.x0_c00467{left:0.000000pt;}
.x5_c00467{left:6.708000pt;}
.x4_c00467{left:106.604000pt;}
.x1_c00467{left:113.312000pt;}
.x3_c00467{left:158.786667pt;}
.x6_c00467{left:394.720000pt;}
.x2_c00467{left:396.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_c00468 {
    display:none;
  }
  .loading-indicator_c00468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00468 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00468 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00468" -> "#page-container .classname_c00468")
 */
.pf_c00468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00468 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00468 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00468 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00468 {overflow:visible;}
  }
}
.c_c00468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00468 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00468:after { /* webkit #35443 */
  content: '';
}
.t_c00468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00468 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00468 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00468 { /* info for Javascript */
  display:none;
}
.l_c00468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00468:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00468 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00468.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00468;src:url('chunks/assets/font_0e92a4b4668338bdb745daa5.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_36af6dcbb0003060eb811aee.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_1219ce12dff29791fe92ae9d.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00468;src:url('chunks/assets/font_126d0d3b7b65fe81014f3e38.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00468;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00468;src:url('chunks/assets/font_fd8d2d79bf2d94fd9ef588f0.woff2')format("woff");}.ff6_c00468{font-family:ff6_c00468;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_c00468;src:url('chunks/assets/font_cfdb48dc4c59019257a806d5.woff2')format("woff");}.ff7_c00468{font-family:ff7_c00468;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.lsd_c00468{letter-spacing:-1.440000px;}
.ls18_c00468{letter-spacing:-1.422000px;}
.ls9_c00468{letter-spacing:-1.152000px;}
.lsc_c00468{letter-spacing:-1.128000px;}
.lsb_c00468{letter-spacing:-0.738000px;}
.ls12_c00468{letter-spacing:-0.720000px;}
.ls13_c00468{letter-spacing:-0.648000px;}
.lsf_c00468{letter-spacing:-0.360000px;}
.ls10_c00468{letter-spacing:-0.288000px;}
.lse_c00468{letter-spacing:-0.144000px;}
.ls8_c00468{letter-spacing:0.000000px;}
.ls1_c00468{letter-spacing:0.020160px;}
.ls17_c00468{letter-spacing:0.020400px;}
.ls11_c00468{letter-spacing:0.072000px;}
.lsa_c00468{letter-spacing:0.291000px;}
.ls15_c00468{letter-spacing:0.313800px;}
.ls14_c00468{letter-spacing:0.466800px;}
.ls16_c00468{letter-spacing:0.486600px;}
.ls0_c00468{letter-spacing:0.720000px;}
.ls2_c00468{letter-spacing:0.792000px;}
.ls7_c00468{letter-spacing:0.864000px;}
.ls6_c00468{letter-spacing:2.160000px;}
.ls4_c00468{letter-spacing:12.240000px;}
.ls5_c00468{letter-spacing:12.360000px;}
.ls3_c00468{letter-spacing:18.120000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00468{word-spacing:-72.000000px;}
.wsa_c00468{word-spacing:-71.712000px;}
.ws3_c00468{word-spacing:-60.771000px;}
.ws2_c00468{word-spacing:-60.480000px;}
.ws1_c00468{word-spacing:-59.328000px;}
.wsb_c00468{word-spacing:-18.072000px;}
.ws6_c00468{word-spacing:-18.000000px;}
.ws8_c00468{word-spacing:-17.856000px;}
.ws9_c00468{word-spacing:-17.640000px;}
.wsd_c00468{word-spacing:-15.606600px;}
.wsc_c00468{word-spacing:-15.433800px;}
.wse_c00468{word-spacing:-15.140400px;}
.ws0_c00468{word-spacing:-15.120000px;}
.ws4_c00468{word-spacing:-14.382000px;}
.ws5_c00468{word-spacing:-13.992000px;}
.wsf_c00468{word-spacing:-13.698000px;}
.ws10_c00468{word-spacing:0.000000px;}
._11_c00468{margin-left:-3.545760px;}
._1_c00468{margin-left:-2.122318px;}
._2_c00468{margin-left:-1.014002px;}
._0_c00468{width:1.097760px;}
._5_c00468{width:2.147040px;}
._b_c00468{width:3.591836px;}
._3_c00468{width:5.544000px;}
._4_c00468{width:7.216558px;}
._6_c00468{width:8.740292px;}
._13_c00468{width:9.776863px;}
._10_c00468{width:11.085608px;}
._e_c00468{width:12.086634px;}
._f_c00468{width:13.094404px;}
._d_c00468{width:14.694002px;}
._c_c00468{width:15.696000px;}
._9_c00468{width:16.845596px;}
._a_c00468{width:19.732078px;}
._12_c00468{width:20.771278px;}
._14_c00468{width:22.624558px;}
._7_c00468{width:23.742240px;}
._8_c00468{width:25.394876px;}
.fc0_c00468{color:rgb(0,0,0);}
.fs3_c00468{font-size:38.880000px;}
.fs2_c00468{font-size:47.520000px;}
.fs1_c00468{font-size:60.480000px;}
.fs0_c00468{font-size:72.000000px;}
.y0_c00468{bottom:0.000000px;}
.y9_c00468{bottom:12.600000px;}
.y8_c00468{bottom:38.520000px;}
.y3_c00468{bottom:57.996000px;}
.y7_c00468{bottom:64.485000px;}
.y2_c00468{bottom:78.876000px;}
.y6_c00468{bottom:90.405000px;}
.y5_c00468{bottom:116.325000px;}
.y28_c00468{bottom:130.716000px;}
.y27_c00468{bottom:137.556000px;}
.y26_c00468{bottom:147.996000px;}
.y25_c00468{bottom:165.315000px;}
.y24_c00468{bottom:172.155000px;}
.y23_c00468{bottom:182.955000px;}
.y22_c00468{bottom:233.355000px;}
.y21_c00468{bottom:264.315000px;}
.y20_c00468{bottom:295.305000px;}
.y1f_c00468{bottom:335.265000px;}
.y1e_c00468{bottom:366.585000px;}
.y1d_c00468{bottom:397.590000px;}
.y1c_c00468{bottom:428.550000px;}
.y1b_c00468{bottom:459.510000px;}
.y1a_c00468{bottom:490.830000px;}
.y19_c00468{bottom:521.820000px;}
.y18_c00468{bottom:552.780000px;}
.y17_c00468{bottom:583.740000px;}
.y16_c00468{bottom:615.060000px;}
.y15_c00468{bottom:655.050000px;}
.y14_c00468{bottom:686.010000px;}
.y13_c00468{bottom:716.970000px;}
.y11_c00468{bottom:748.290000px;}
.y12_c00468{bottom:756.570000px;}
.y10_c00468{bottom:779.295000px;}
.yf_c00468{bottom:810.255000px;}
.ye_c00468{bottom:841.215000px;}
.yc_c00468{bottom:872.535000px;}
.yd_c00468{bottom:880.815000px;}
.yb_c00468{bottom:903.525000px;}
.ya_c00468{bottom:934.485000px;}
.y4_c00468{bottom:951.405000px;}
.y1_c00468{bottom:1117.770000px;}
.h9_c00468{height:34.855313px;}
.h7_c00468{height:46.638281px;}
.h3_c00468{height:59.357813px;}
.h4_c00468{height:60.952500px;}
.h1_c00468{height:64.546875px;}
.h5_c00468{height:70.664062px;}
.h8_c00468{height:72.562500px;}
.h2_c00468{height:129.630000px;}
.h6_c00468{height:1187.995500px;}
.h0_c00468{height:1188.000000px;}
.w1_c00468{width:323.415000px;}
.w2_c00468{width:323.730000px;}
.w3_c00468{width:917.997000px;}
.w0_c00468{width:918.000000px;}
.x0_c00468{left:0.000000px;}
.x4_c00468{left:7.546500px;}
.x3_c00468{left:119.929500px;}
.x1_c00468{left:127.476000px;}
.xd_c00468{left:142.596000px;}
.x6_c00468{left:178.635000px;}
.xb_c00468{left:180.795000px;}
.x9_c00468{left:187.632000px;}
.xa_c00468{left:205.995000px;}
.xc_c00468{left:343.590000px;}
.x5_c00468{left:444.060000px;}
.x2_c00468{left:445.500000px;}
.x7_c00468{left:556.047000px;}
.x8_c00468{left:574.410000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.lsd_c00468{letter-spacing:-1.280000pt;}
.ls18_c00468{letter-spacing:-1.264000pt;}
.ls9_c00468{letter-spacing:-1.024000pt;}
.lsc_c00468{letter-spacing:-1.002667pt;}
.lsb_c00468{letter-spacing:-0.656000pt;}
.ls12_c00468{letter-spacing:-0.640000pt;}
.ls13_c00468{letter-spacing:-0.576000pt;}
.lsf_c00468{letter-spacing:-0.320000pt;}
.ls10_c00468{letter-spacing:-0.256000pt;}
.lse_c00468{letter-spacing:-0.128000pt;}
.ls8_c00468{letter-spacing:0.000000pt;}
.ls1_c00468{letter-spacing:0.017920pt;}
.ls17_c00468{letter-spacing:0.018133pt;}
.ls11_c00468{letter-spacing:0.064000pt;}
.lsa_c00468{letter-spacing:0.258667pt;}
.ls15_c00468{letter-spacing:0.278933pt;}
.ls14_c00468{letter-spacing:0.414933pt;}
.ls16_c00468{letter-spacing:0.432533pt;}
.ls0_c00468{letter-spacing:0.640000pt;}
.ls2_c00468{letter-spacing:0.704000pt;}
.ls7_c00468{letter-spacing:0.768000pt;}
.ls6_c00468{letter-spacing:1.920000pt;}
.ls4_c00468{letter-spacing:10.880000pt;}
.ls5_c00468{letter-spacing:10.986667pt;}
.ls3_c00468{letter-spacing:16.106667pt;}
.ws7_c00468{word-spacing:-64.000000pt;}
.wsa_c00468{word-spacing:-63.744000pt;}
.ws3_c00468{word-spacing:-54.018667pt;}
.ws2_c00468{word-spacing:-53.760000pt;}
.ws1_c00468{word-spacing:-52.736000pt;}
.wsb_c00468{word-spacing:-16.064000pt;}
.ws6_c00468{word-spacing:-16.000000pt;}
.ws8_c00468{word-spacing:-15.872000pt;}
.ws9_c00468{word-spacing:-15.680000pt;}
.wsd_c00468{word-spacing:-13.872533pt;}
.wsc_c00468{word-spacing:-13.718933pt;}
.wse_c00468{word-spacing:-13.458133pt;}
.ws0_c00468{word-spacing:-13.440000pt;}
.ws4_c00468{word-spacing:-12.784000pt;}
.ws5_c00468{word-spacing:-12.437333pt;}
.wsf_c00468{word-spacing:-12.176000pt;}
.ws10_c00468{word-spacing:0.000000pt;}
._11_c00468{margin-left:-3.151787pt;}
._1_c00468{margin-left:-1.886505pt;}
._2_c00468{margin-left:-0.901335pt;}
._0_c00468{width:0.975787pt;}
._5_c00468{width:1.908480pt;}
._b_c00468{width:3.192743pt;}
._3_c00468{width:4.928000pt;}
._4_c00468{width:6.414718pt;}
._6_c00468{width:7.769149pt;}
._13_c00468{width:8.690545pt;}
._10_c00468{width:9.853873pt;}
._e_c00468{width:10.743675pt;}
._f_c00468{width:11.639470pt;}
._d_c00468{width:13.061335pt;}
._c_c00468{width:13.952000pt;}
._9_c00468{width:14.973863pt;}
._a_c00468{width:17.539625pt;}
._12_c00468{width:18.463358pt;}
._14_c00468{width:20.110718pt;}
._7_c00468{width:21.104213pt;}
._8_c00468{width:22.573223pt;}
.fs3_c00468{font-size:34.560000pt;}
.fs2_c00468{font-size:42.240000pt;}
.fs1_c00468{font-size:53.760000pt;}
.fs0_c00468{font-size:64.000000pt;}
.y0_c00468{bottom:0.000000pt;}
.y9_c00468{bottom:11.200000pt;}
.y8_c00468{bottom:34.240000pt;}
.y3_c00468{bottom:51.552000pt;}
.y7_c00468{bottom:57.320000pt;}
.y2_c00468{bottom:70.112000pt;}
.y6_c00468{bottom:80.360000pt;}
.y5_c00468{bottom:103.400000pt;}
.y28_c00468{bottom:116.192000pt;}
.y27_c00468{bottom:122.272000pt;}
.y26_c00468{bottom:131.552000pt;}
.y25_c00468{bottom:146.946667pt;}
.y24_c00468{bottom:153.026667pt;}
.y23_c00468{bottom:162.626667pt;}
.y22_c00468{bottom:207.426667pt;}
.y21_c00468{bottom:234.946667pt;}
.y20_c00468{bottom:262.493333pt;}
.y1f_c00468{bottom:298.013333pt;}
.y1e_c00468{bottom:325.853333pt;}
.y1d_c00468{bottom:353.413333pt;}
.y1c_c00468{bottom:380.933333pt;}
.y1b_c00468{bottom:408.453333pt;}
.y1a_c00468{bottom:436.293333pt;}
.y19_c00468{bottom:463.840000pt;}
.y18_c00468{bottom:491.360000pt;}
.y17_c00468{bottom:518.880000pt;}
.y16_c00468{bottom:546.720000pt;}
.y15_c00468{bottom:582.266667pt;}
.y14_c00468{bottom:609.786667pt;}
.y13_c00468{bottom:637.306667pt;}
.y11_c00468{bottom:665.146667pt;}
.y12_c00468{bottom:672.506667pt;}
.y10_c00468{bottom:692.706667pt;}
.yf_c00468{bottom:720.226667pt;}
.ye_c00468{bottom:747.746667pt;}
.yc_c00468{bottom:775.586667pt;}
.yd_c00468{bottom:782.946667pt;}
.yb_c00468{bottom:803.133333pt;}
.ya_c00468{bottom:830.653333pt;}
.y4_c00468{bottom:845.693333pt;}
.y1_c00468{bottom:993.573333pt;}
.h9_c00468{height:30.982500pt;}
.h7_c00468{height:41.456250pt;}
.h3_c00468{height:52.762500pt;}
.h4_c00468{height:54.180000pt;}
.h1_c00468{height:57.375000pt;}
.h5_c00468{height:62.812500pt;}
.h8_c00468{height:64.500000pt;}
.h2_c00468{height:115.226667pt;}
.h6_c00468{height:1055.996000pt;}
.h0_c00468{height:1056.000000pt;}
.w1_c00468{width:287.480000pt;}
.w2_c00468{width:287.760000pt;}
.w3_c00468{width:815.997333pt;}
.w0_c00468{width:816.000000pt;}
.x0_c00468{left:0.000000pt;}
.x4_c00468{left:6.708000pt;}
.x3_c00468{left:106.604000pt;}
.x1_c00468{left:113.312000pt;}
.xd_c00468{left:126.752000pt;}
.x6_c00468{left:158.786667pt;}
.xb_c00468{left:160.706667pt;}
.x9_c00468{left:166.784000pt;}
.xa_c00468{left:183.106667pt;}
.xc_c00468{left:305.413333pt;}
.x5_c00468{left:394.720000pt;}
.x2_c00468{left:396.000000pt;}
.x7_c00468{left:494.264000pt;}
.x8_c00468{left:510.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00469 {
    display:none;
  }
  .loading-indicator_c00469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00469 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00469 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00469" -> "#page-container .classname_c00469")
 */
.pf_c00469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00469 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00469 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00469 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00469 {overflow:visible;}
  }
}
.c_c00469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00469 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00469:after { /* webkit #35443 */
  content: '';
}
.t_c00469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00469 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00469 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00469 { /* info for Javascript */
  display:none;
}
.l_c00469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00469:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00469 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00469.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00469;src:url('chunks/assets/font_ab2fa4800e0ba7b3cbce77f4.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_b6bcb7ff5d7a3c7726db4f92.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_dd611cff0d924a9f4218fc3a.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;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_c00469;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls3_c00469{letter-spacing:-0.648000px;}
.ls2_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:0.180000px;}
.ls4_c00469{letter-spacing:0.720000px;}
.ls1_c00469{letter-spacing:15.120000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00469{word-spacing:-72.000000px;}
.ws0_c00469{word-spacing:-18.000000px;}
.ws2_c00469{word-spacing:-17.352000px;}
.ws3_c00469{word-spacing:0.000000px;}
._1_c00469{margin-left:-2.736000px;}
._4_c00469{margin-left:-1.296000px;}
._0_c00469{width:1.080000px;}
._5_c00469{width:2.160000px;}
._6_c00469{width:3.600000px;}
._b_c00469{width:4.884000px;}
._d_c00469{width:5.940000px;}
._c_c00469{width:6.996000px;}
._f_c00469{width:9.000000px;}
._e_c00469{width:10.152000px;}
._10_c00469{width:11.160000px;}
._2_c00469{width:12.456000px;}
._3_c00469{width:13.608000px;}
._8_c00469{width:15.552000px;}
._7_c00469{width:16.776000px;}
._a_c00469{width:19.008000px;}
._9_c00469{width:20.088000px;}
._13_c00469{width:21.096000px;}
._14_c00469{width:22.248000px;}
._11_c00469{width:28.296000px;}
._19_c00469{width:40.320000px;}
._18_c00469{width:41.544000px;}
._16_c00469{width:44.592000px;}
._15_c00469{width:46.224000px;}
._17_c00469{width:47.304000px;}
._12_c00469{width:186.636024px;}
.fc0_c00469{color:rgb(0,0,0);}
.fs0_c00469{font-size:72.000000px;}
.y0_c00469{bottom:0.000000px;}
.y3_c00469{bottom:57.996000px;}
.y2_c00469{bottom:78.876000px;}
.y1f_c00469{bottom:208.875000px;}
.y1e_c00469{bottom:239.835000px;}
.y1d_c00469{bottom:271.155000px;}
.y1c_c00469{bottom:302.145000px;}
.y1b_c00469{bottom:333.105000px;}
.y1a_c00469{bottom:364.065000px;}
.y19_c00469{bottom:404.070000px;}
.y18_c00469{bottom:435.390000px;}
.y17_c00469{bottom:466.350000px;}
.y16_c00469{bottom:497.310000px;}
.y15_c00469{bottom:528.300000px;}
.y14_c00469{bottom:559.620000px;}
.y13_c00469{bottom:590.580000px;}
.y12_c00469{bottom:621.540000px;}
.y11_c00469{bottom:652.530000px;}
.y10_c00469{bottom:683.850000px;}
.yf_c00469{bottom:714.810000px;}
.ye_c00469{bottom:745.770000px;}
.yd_c00469{bottom:785.775000px;}
.yc_c00469{bottom:817.095000px;}
.yb_c00469{bottom:848.055000px;}
.ya_c00469{bottom:879.015000px;}
.y9_c00469{bottom:910.005000px;}
.y8_c00469{bottom:941.325000px;}
.y7_c00469{bottom:972.285000px;}
.y6_c00469{bottom:1003.245000px;}
.y5_c00469{bottom:1034.250000px;}
.y4_c00469{bottom:1065.570000px;}
.y1_c00469{bottom:1117.770000px;}
.h1_c00469{height:64.546875px;}
.h3_c00469{height:70.628906px;}
.h2_c00469{height:70.664062px;}
.h0_c00469{height:1188.000000px;}
.w0_c00469{width:918.000000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:127.476000px;}
.x4_c00469{left:178.635000px;}
.x3_c00469{left:180.795000px;}
.x2_c00469{left:445.500000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls3_c00469{letter-spacing:-0.576000pt;}
.ls2_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:0.160000pt;}
.ls4_c00469{letter-spacing:0.640000pt;}
.ls1_c00469{letter-spacing:13.440000pt;}
.ws1_c00469{word-spacing:-64.000000pt;}
.ws0_c00469{word-spacing:-16.000000pt;}
.ws2_c00469{word-spacing:-15.424000pt;}
.ws3_c00469{word-spacing:0.000000pt;}
._1_c00469{margin-left:-2.432000pt;}
._4_c00469{margin-left:-1.152000pt;}
._0_c00469{width:0.960000pt;}
._5_c00469{width:1.920000pt;}
._6_c00469{width:3.200000pt;}
._b_c00469{width:4.341333pt;}
._d_c00469{width:5.280000pt;}
._c_c00469{width:6.218667pt;}
._f_c00469{width:8.000000pt;}
._e_c00469{width:9.024000pt;}
._10_c00469{width:9.920000pt;}
._2_c00469{width:11.072000pt;}
._3_c00469{width:12.096000pt;}
._8_c00469{width:13.824000pt;}
._7_c00469{width:14.912000pt;}
._a_c00469{width:16.896000pt;}
._9_c00469{width:17.856000pt;}
._13_c00469{width:18.752000pt;}
._14_c00469{width:19.776000pt;}
._11_c00469{width:25.152000pt;}
._19_c00469{width:35.840000pt;}
._18_c00469{width:36.928000pt;}
._16_c00469{width:39.637333pt;}
._15_c00469{width:41.088000pt;}
._17_c00469{width:42.048000pt;}
._12_c00469{width:165.898688pt;}
.fs0_c00469{font-size:64.000000pt;}
.y0_c00469{bottom:0.000000pt;}
.y3_c00469{bottom:51.552000pt;}
.y2_c00469{bottom:70.112000pt;}
.y1f_c00469{bottom:185.666667pt;}
.y1e_c00469{bottom:213.186667pt;}
.y1d_c00469{bottom:241.026667pt;}
.y1c_c00469{bottom:268.573333pt;}
.y1b_c00469{bottom:296.093333pt;}
.y1a_c00469{bottom:323.613333pt;}
.y19_c00469{bottom:359.173333pt;}
.y18_c00469{bottom:387.013333pt;}
.y17_c00469{bottom:414.533333pt;}
.y16_c00469{bottom:442.053333pt;}
.y15_c00469{bottom:469.600000pt;}
.y14_c00469{bottom:497.440000pt;}
.y13_c00469{bottom:524.960000pt;}
.y12_c00469{bottom:552.480000pt;}
.y11_c00469{bottom:580.026667pt;}
.y10_c00469{bottom:607.866667pt;}
.yf_c00469{bottom:635.386667pt;}
.ye_c00469{bottom:662.906667pt;}
.yd_c00469{bottom:698.466667pt;}
.yc_c00469{bottom:726.306667pt;}
.yb_c00469{bottom:753.826667pt;}
.ya_c00469{bottom:781.346667pt;}
.y9_c00469{bottom:808.893333pt;}
.y8_c00469{bottom:836.733333pt;}
.y7_c00469{bottom:864.253333pt;}
.y6_c00469{bottom:891.773333pt;}
.y5_c00469{bottom:919.333333pt;}
.y4_c00469{bottom:947.173333pt;}
.y1_c00469{bottom:993.573333pt;}
.h1_c00469{height:57.375000pt;}
.h3_c00469{height:62.781250pt;}
.h2_c00469{height:62.812500pt;}
.h0_c00469{height:1056.000000pt;}
.w0_c00469{width:816.000000pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:113.312000pt;}
.x4_c00469{left:158.786667pt;}
.x3_c00469{left:160.706667pt;}
.x2_c00469{left:396.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_c00470 {
    display:none;
  }
  .loading-indicator_c00470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00470 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00470 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00470" -> "#page-container .classname_c00470")
 */
.pf_c00470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00470 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00470 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00470 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00470 {overflow:visible;}
  }
}
.c_c00470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00470 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00470:after { /* webkit #35443 */
  content: '';
}
.t_c00470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00470 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00470 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00470 { /* info for Javascript */
  display:none;
}
.l_c00470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00470:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00470 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00470.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00470;src:url('chunks/assets/font_20477c62a4c35730a856512b.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_c2f114261bf50a724058f6d2.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_52d40c588a68f45fe7f728ab.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;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_c00470;src:url('chunks/assets/font_148140dd334ae630300c3367.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00470;src:url('chunks/assets/font_09257b4de993321e58f71133.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00470;src:url('chunks/assets/font_c05524449ce70907c5ade0e9.woff2')format("woff");}.ff6_c00470{font-family:ff6_c00470;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls7_c00470{letter-spacing:-0.720000px;}
.lsb_c00470{letter-spacing:-0.507000px;}
.ls5_c00470{letter-spacing:0.000000px;}
.lsa_c00470{letter-spacing:0.020400px;}
.ls8_c00470{letter-spacing:0.072000px;}
.ls0_c00470{letter-spacing:0.144000px;}
.ls9_c00470{letter-spacing:0.486600px;}
.ls6_c00470{letter-spacing:0.504000px;}
.ls3_c00470{letter-spacing:0.506880px;}
.ls1_c00470{letter-spacing:0.720000px;}
.ls4_c00470{letter-spacing:0.864000px;}
.ls2_c00470{letter-spacing:3.744000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00470{word-spacing:-72.000000px;}
.ws0_c00470{word-spacing:-18.504000px;}
.ws1_c00470{word-spacing:-18.144000px;}
.ws4_c00470{word-spacing:-18.072000px;}
.ws3_c00470{word-spacing:-18.000000px;}
.ws6_c00470{word-spacing:-15.140400px;}
.ws5_c00470{word-spacing:-15.120000px;}
.ws7_c00470{word-spacing:-14.613000px;}
.ws8_c00470{word-spacing:0.000000px;}
._4_c00470{margin-left:-2.880000px;}
._0_c00470{margin-left:-1.728000px;}
._3_c00470{width:1.368000px;}
._5_c00470{width:3.312000px;}
._f_c00470{width:4.379976px;}
._8_c00470{width:5.412024px;}
._b_c00470{width:7.043808px;}
._2_c00470{width:8.352000px;}
._1_c00470{width:9.360000px;}
._6_c00470{width:10.944000px;}
._c_c00470{width:12.024000px;}
._7_c00470{width:13.104000px;}
._10_c00470{width:15.336000px;}
._d_c00470{width:16.344000px;}
._e_c00470{width:20.292000px;}
._9_c00470{width:32.040000px;}
._a_c00470{width:33.912000px;}
.fc0_c00470{color:rgb(0,0,0);}
.fs2_c00470{font-size:38.880000px;}
.fs1_c00470{font-size:47.520000px;}
.fs3_c00470{font-size:60.480000px;}
.fs0_c00470{font-size:72.000000px;}
.y0_c00470{bottom:0.000000px;}
.y3_c00470{bottom:57.996000px;}
.y2_c00470{bottom:78.876000px;}
.y2f_c00470{bottom:130.716000px;}
.y2e_c00470{bottom:147.996000px;}
.y2d_c00470{bottom:165.315000px;}
.y2c_c00470{bottom:182.595000px;}
.y2b_c00470{bottom:199.515000px;}
.y2a_c00470{bottom:206.355000px;}
.y29_c00470{bottom:216.795000px;}
.y28_c00470{bottom:223.635000px;}
.y27_c00470{bottom:234.075000px;}
.y26_c00470{bottom:251.355000px;}
.y25_c00470{bottom:258.195000px;}
.y24_c00470{bottom:268.635000px;}
.y23_c00470{bottom:285.945000px;}
.y22_c00470{bottom:292.785000px;}
.y21_c00470{bottom:303.225000px;}
.y20_c00470{bottom:310.065000px;}
.y1f_c00470{bottom:320.865000px;}
.y1e_c00470{bottom:404.070000px;}
.y1c_c00470{bottom:435.390000px;}
.y1d_c00470{bottom:443.670000px;}
.y1b_c00470{bottom:466.350000px;}
.y1a_c00470{bottom:497.310000px;}
.y18_c00470{bottom:528.300000px;}
.y19_c00470{bottom:536.580000px;}
.y16_c00470{bottom:559.620000px;}
.y17_c00470{bottom:567.900000px;}
.y15_c00470{bottom:590.580000px;}
.y14_c00470{bottom:621.540000px;}
.y13_c00470{bottom:652.530000px;}
.y12_c00470{bottom:683.850000px;}
.y11_c00470{bottom:714.810000px;}
.y10_c00470{bottom:745.770000px;}
.yf_c00470{bottom:776.775000px;}
.ye_c00470{bottom:817.095000px;}
.yd_c00470{bottom:848.055000px;}
.yc_c00470{bottom:879.015000px;}
.yb_c00470{bottom:910.005000px;}
.ya_c00470{bottom:941.325000px;}
.y8_c00470{bottom:972.285000px;}
.y9_c00470{bottom:980.565000px;}
.y7_c00470{bottom:1003.245000px;}
.y6_c00470{bottom:1034.250000px;}
.y4_c00470{bottom:1065.570000px;}
.y5_c00470{bottom:1073.850000px;}
.y1_c00470{bottom:1117.770000px;}
.h5_c00470{height:34.855313px;}
.h4_c00470{height:46.638281px;}
.h6_c00470{height:54.219375px;}
.h7_c00470{height:59.357813px;}
.h1_c00470{height:64.546875px;}
.h2_c00470{height:70.664062px;}
.h3_c00470{height:1187.995500px;}
.h0_c00470{height:1188.000000px;}
.w1_c00470{width:917.997000px;}
.w0_c00470{width:918.000000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:127.476000px;}
.xf_c00470{left:142.596000px;}
.x3_c00470{left:178.272000px;}
.x7_c00470{left:180.795000px;}
.x4_c00470{left:196.635000px;}
.xc_c00470{left:268.302000px;}
.xd_c00470{left:286.665000px;}
.xe_c00470{left:343.590000px;}
.x2_c00470{left:445.500000px;}
.x8_c00470{left:459.897000px;}
.x9_c00470{left:478.260000px;}
.x5_c00470{left:619.407000px;}
.x6_c00470{left:637.815000px;}
.xa_c00470{left:656.532000px;}
.xb_c00470{left:674.895000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls7_c00470{letter-spacing:-0.640000pt;}
.lsb_c00470{letter-spacing:-0.450667pt;}
.ls5_c00470{letter-spacing:0.000000pt;}
.lsa_c00470{letter-spacing:0.018133pt;}
.ls8_c00470{letter-spacing:0.064000pt;}
.ls0_c00470{letter-spacing:0.128000pt;}
.ls9_c00470{letter-spacing:0.432533pt;}
.ls6_c00470{letter-spacing:0.448000pt;}
.ls3_c00470{letter-spacing:0.450560pt;}
.ls1_c00470{letter-spacing:0.640000pt;}
.ls4_c00470{letter-spacing:0.768000pt;}
.ls2_c00470{letter-spacing:3.328000pt;}
.ws2_c00470{word-spacing:-64.000000pt;}
.ws0_c00470{word-spacing:-16.448000pt;}
.ws1_c00470{word-spacing:-16.128000pt;}
.ws4_c00470{word-spacing:-16.064000pt;}
.ws3_c00470{word-spacing:-16.000000pt;}
.ws6_c00470{word-spacing:-13.458133pt;}
.ws5_c00470{word-spacing:-13.440000pt;}
.ws7_c00470{word-spacing:-12.989333pt;}
.ws8_c00470{word-spacing:0.000000pt;}
._4_c00470{margin-left:-2.560000pt;}
._0_c00470{margin-left:-1.536000pt;}
._3_c00470{width:1.216000pt;}
._5_c00470{width:2.944000pt;}
._f_c00470{width:3.893312pt;}
._8_c00470{width:4.810688pt;}
._b_c00470{width:6.261163pt;}
._2_c00470{width:7.424000pt;}
._1_c00470{width:8.320000pt;}
._6_c00470{width:9.728000pt;}
._c_c00470{width:10.688000pt;}
._7_c00470{width:11.648000pt;}
._10_c00470{width:13.632000pt;}
._d_c00470{width:14.528000pt;}
._e_c00470{width:18.037333pt;}
._9_c00470{width:28.480000pt;}
._a_c00470{width:30.144000pt;}
.fs2_c00470{font-size:34.560000pt;}
.fs1_c00470{font-size:42.240000pt;}
.fs3_c00470{font-size:53.760000pt;}
.fs0_c00470{font-size:64.000000pt;}
.y0_c00470{bottom:0.000000pt;}
.y3_c00470{bottom:51.552000pt;}
.y2_c00470{bottom:70.112000pt;}
.y2f_c00470{bottom:116.192000pt;}
.y2e_c00470{bottom:131.552000pt;}
.y2d_c00470{bottom:146.946667pt;}
.y2c_c00470{bottom:162.306667pt;}
.y2b_c00470{bottom:177.346667pt;}
.y2a_c00470{bottom:183.426667pt;}
.y29_c00470{bottom:192.706667pt;}
.y28_c00470{bottom:198.786667pt;}
.y27_c00470{bottom:208.066667pt;}
.y26_c00470{bottom:223.426667pt;}
.y25_c00470{bottom:229.506667pt;}
.y24_c00470{bottom:238.786667pt;}
.y23_c00470{bottom:254.173333pt;}
.y22_c00470{bottom:260.253333pt;}
.y21_c00470{bottom:269.533333pt;}
.y20_c00470{bottom:275.613333pt;}
.y1f_c00470{bottom:285.213333pt;}
.y1e_c00470{bottom:359.173333pt;}
.y1c_c00470{bottom:387.013333pt;}
.y1d_c00470{bottom:394.373333pt;}
.y1b_c00470{bottom:414.533333pt;}
.y1a_c00470{bottom:442.053333pt;}
.y18_c00470{bottom:469.600000pt;}
.y19_c00470{bottom:476.960000pt;}
.y16_c00470{bottom:497.440000pt;}
.y17_c00470{bottom:504.800000pt;}
.y15_c00470{bottom:524.960000pt;}
.y14_c00470{bottom:552.480000pt;}
.y13_c00470{bottom:580.026667pt;}
.y12_c00470{bottom:607.866667pt;}
.y11_c00470{bottom:635.386667pt;}
.y10_c00470{bottom:662.906667pt;}
.yf_c00470{bottom:690.466667pt;}
.ye_c00470{bottom:726.306667pt;}
.yd_c00470{bottom:753.826667pt;}
.yc_c00470{bottom:781.346667pt;}
.yb_c00470{bottom:808.893333pt;}
.ya_c00470{bottom:836.733333pt;}
.y8_c00470{bottom:864.253333pt;}
.y9_c00470{bottom:871.613333pt;}
.y7_c00470{bottom:891.773333pt;}
.y6_c00470{bottom:919.333333pt;}
.y4_c00470{bottom:947.173333pt;}
.y5_c00470{bottom:954.533333pt;}
.y1_c00470{bottom:993.573333pt;}
.h5_c00470{height:30.982500pt;}
.h4_c00470{height:41.456250pt;}
.h6_c00470{height:48.195000pt;}
.h7_c00470{height:52.762500pt;}
.h1_c00470{height:57.375000pt;}
.h2_c00470{height:62.812500pt;}
.h3_c00470{height:1055.996000pt;}
.h0_c00470{height:1056.000000pt;}
.w1_c00470{width:815.997333pt;}
.w0_c00470{width:816.000000pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:113.312000pt;}
.xf_c00470{left:126.752000pt;}
.x3_c00470{left:158.464000pt;}
.x7_c00470{left:160.706667pt;}
.x4_c00470{left:174.786667pt;}
.xc_c00470{left:238.490667pt;}
.xd_c00470{left:254.813333pt;}
.xe_c00470{left:305.413333pt;}
.x2_c00470{left:396.000000pt;}
.x8_c00470{left:408.797333pt;}
.x9_c00470{left:425.120000pt;}
.x5_c00470{left:550.584000pt;}
.x6_c00470{left:566.946667pt;}
.xa_c00470{left:583.584000pt;}
.xb_c00470{left:599.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00471 {
    display:none;
  }
  .loading-indicator_c00471.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00471 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00471 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00471" -> "#page-container .classname_c00471")
 */
.pf_c00471 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00471 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00471 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00471 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00471 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00471 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00471 {overflow:visible;}
  }
}
.c_c00471 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00471 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00471:after { /* webkit #35443 */
  content: '';
}
.t_c00471:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00471 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00471 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00471 { /* info for Javascript */
  display:none;
}
.l_c00471 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00471 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00471 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00471:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00471 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00471.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00471 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00471;src:url('chunks/assets/font_d1904607a2fcad6ca4f06a50.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_7d11e01f443a096e02863f2a.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_cee71b71627f7e4b81b601c6.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;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_c00471;src:url('chunks/assets/font_3f934d6840c5d2ae6b9c2045.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00471;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00471{font-family:ff5_c00471;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.lsd_c00471{letter-spacing:-1.416000px;}
.ls16_c00471{letter-spacing:-0.972000px;}
.lsb_c00471{letter-spacing:-0.720000px;}
.ls11_c00471{letter-spacing:-0.360000px;}
.ls17_c00471{letter-spacing:-0.241800px;}
.lsa_c00471{letter-spacing:0.000000px;}
.lsf_c00471{letter-spacing:0.020400px;}
.ls13_c00471{letter-spacing:0.121200px;}
.lsc_c00471{letter-spacing:0.166800px;}
.ls15_c00471{letter-spacing:0.466800px;}
.ls10_c00471{letter-spacing:0.482400px;}
.ls3_c00471{letter-spacing:0.486720px;}
.ls8_c00471{letter-spacing:0.518400px;}
.lse_c00471{letter-spacing:0.576000px;}
.ls1_c00471{letter-spacing:0.720000px;}
.ls0_c00471{letter-spacing:0.840000px;}
.ls2_c00471{letter-spacing:0.900000px;}
.ls4_c00471{letter-spacing:1.080000px;}
.ls14_c00471{letter-spacing:1.344000px;}
.ls12_c00471{letter-spacing:1.560000px;}
.ls6_c00471{letter-spacing:2.160000px;}
.ls5_c00471{letter-spacing:3.600000px;}
.ls9_c00471{letter-spacing:7.913159px;}
.ls7_c00471{letter-spacing:7.920000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00471{word-spacing:-72.000000px;}
.ws0_c00471{word-spacing:-18.000000px;}
.wsa_c00471{word-spacing:-15.586800px;}
.ws1_c00471{word-spacing:-15.286800px;}
.ws5_c00471{word-spacing:-15.140400px;}
.ws2_c00471{word-spacing:-15.120000px;}
.wsb_c00471{word-spacing:-14.878200px;}
.ws3_c00471{word-spacing:-13.704000px;}
.ws8_c00471{word-spacing:-13.440000px;}
.ws7_c00471{word-spacing:-12.362400px;}
.ws9_c00471{word-spacing:-12.001200px;}
.ws6_c00471{word-spacing:-11.880000px;}
.wsc_c00471{word-spacing:0.000000px;}
._3_c00471{margin-left:-2.495952px;}
._1_c00471{margin-left:-1.440000px;}
._2_c00471{width:1.283976px;}
._4_c00471{width:2.939976px;}
._d_c00471{width:4.560048px;}
._13_c00471{width:6.262609px;}
._11_c00471{width:7.352398px;}
._12_c00471{width:8.482181px;}
._15_c00471{width:12.099027px;}
._14_c00471{width:13.823974px;}
._c_c00471{width:16.475976px;}
._9_c00471{width:19.571976px;}
._b_c00471{width:21.360024px;}
._a_c00471{width:22.464000px;}
._0_c00471{width:24.264000px;}
._5_c00471{width:25.428024px;}
._7_c00471{width:32.616000px;}
._6_c00471{width:34.488000px;}
._8_c00471{width:35.664000px;}
._10_c00471{width:37.139928px;}
._e_c00471{width:38.148024px;}
._f_c00471{width:39.647904px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs3_c00471{font-size:38.880000px;}
.fs1_c00471{font-size:47.520000px;}
.fs2_c00471{font-size:60.480000px;}
.fs0_c00471{font-size:72.000000px;}
.y0_c00471{bottom:0.000000px;}
.y23_c00471{bottom:10.065000px;}
.ye_c00471{bottom:12.585000px;}
.y21_c00471{bottom:12.615000px;}
.y3_c00471{bottom:57.996000px;}
.y2_c00471{bottom:78.876000px;}
.y2b_c00471{bottom:130.716000px;}
.y2a_c00471{bottom:147.996000px;}
.y29_c00471{bottom:154.875000px;}
.y28_c00471{bottom:165.315000px;}
.y27_c00471{bottom:182.595000px;}
.y26_c00471{bottom:199.515000px;}
.y25_c00471{bottom:206.355000px;}
.y24_c00471{bottom:217.515000px;}
.y22_c00471{bottom:238.050000px;}
.y20_c00471{bottom:259.650000px;}
.y1f_c00471{bottom:301.065000px;}
.y1e_c00471{bottom:332.025000px;}
.y1d_c00471{bottom:362.985000px;}
.y1c_c00471{bottom:394.350000px;}
.y1b_c00471{bottom:434.310000px;}
.y1a_c00471{bottom:474.270000px;}
.y19_c00471{bottom:514.230000px;}
.y17_c00471{bottom:545.580000px;}
.y18_c00471{bottom:553.860000px;}
.y16_c00471{bottom:576.540000px;}
.y15_c00471{bottom:607.500000px;}
.y14_c00471{bottom:638.460000px;}
.y13_c00471{bottom:669.810000px;}
.y12_c00471{bottom:700.770000px;}
.y11_c00471{bottom:717.705000px;}
.y10_c00471{bottom:744.345000px;}
.yf_c00471{bottom:771.030000px;}
.yd_c00471{bottom:797.670000px;}
.yc_c00471{bottom:839.055000px;}
.yb_c00471{bottom:879.015000px;}
.ya_c00471{bottom:910.005000px;}
.y9_c00471{bottom:941.325000px;}
.y8_c00471{bottom:972.285000px;}
.y7_c00471{bottom:1003.245000px;}
.y6_c00471{bottom:1034.250000px;}
.y4_c00471{bottom:1065.570000px;}
.y5_c00471{bottom:1073.850000px;}
.y1_c00471{bottom:1117.770000px;}
.ha_c00471{height:20.865000px;}
.h6_c00471{height:25.905000px;}
.h9_c00471{height:25.920000px;}
.h8_c00471{height:25.941000px;}
.hb_c00471{height:34.855313px;}
.h4_c00471{height:46.638281px;}
.hc_c00471{height:54.219375px;}
.h7_c00471{height:59.357813px;}
.h1_c00471{height:64.546875px;}
.h5_c00471{height:70.628906px;}
.h2_c00471{height:70.664062px;}
.h3_c00471{height:1187.995500px;}
.h0_c00471{height:1188.000000px;}
.w2_c00471{width:323.415000px;}
.w3_c00471{width:323.730000px;}
.w1_c00471{width:917.997000px;}
.w0_c00471{width:918.000000px;}
.x0_c00471{left:0.000000px;}
.x7_c00471{left:7.546500px;}
.x6_c00471{left:119.929500px;}
.x1_c00471{left:127.476000px;}
.xd_c00471{left:142.596000px;}
.x5_c00471{left:178.635000px;}
.x9_c00471{left:180.795000px;}
.xc_c00471{left:343.590000px;}
.x8_c00471{left:444.060000px;}
.x2_c00471{left:445.500000px;}
.xa_c00471{left:456.297000px;}
.xb_c00471{left:474.660000px;}
.x3_c00471{left:767.802000px;}
.x4_c00471{left:786.165000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.lsd_c00471{letter-spacing:-1.258667pt;}
.ls16_c00471{letter-spacing:-0.864000pt;}
.lsb_c00471{letter-spacing:-0.640000pt;}
.ls11_c00471{letter-spacing:-0.320000pt;}
.ls17_c00471{letter-spacing:-0.214933pt;}
.lsa_c00471{letter-spacing:0.000000pt;}
.lsf_c00471{letter-spacing:0.018133pt;}
.ls13_c00471{letter-spacing:0.107733pt;}
.lsc_c00471{letter-spacing:0.148267pt;}
.ls15_c00471{letter-spacing:0.414933pt;}
.ls10_c00471{letter-spacing:0.428800pt;}
.ls3_c00471{letter-spacing:0.432640pt;}
.ls8_c00471{letter-spacing:0.460800pt;}
.lse_c00471{letter-spacing:0.512000pt;}
.ls1_c00471{letter-spacing:0.640000pt;}
.ls0_c00471{letter-spacing:0.746667pt;}
.ls2_c00471{letter-spacing:0.800000pt;}
.ls4_c00471{letter-spacing:0.960000pt;}
.ls14_c00471{letter-spacing:1.194667pt;}
.ls12_c00471{letter-spacing:1.386667pt;}
.ls6_c00471{letter-spacing:1.920000pt;}
.ls5_c00471{letter-spacing:3.200000pt;}
.ls9_c00471{letter-spacing:7.033919pt;}
.ls7_c00471{letter-spacing:7.040000pt;}
.ws4_c00471{word-spacing:-64.000000pt;}
.ws0_c00471{word-spacing:-16.000000pt;}
.wsa_c00471{word-spacing:-13.854933pt;}
.ws1_c00471{word-spacing:-13.588267pt;}
.ws5_c00471{word-spacing:-13.458133pt;}
.ws2_c00471{word-spacing:-13.440000pt;}
.wsb_c00471{word-spacing:-13.225067pt;}
.ws3_c00471{word-spacing:-12.181333pt;}
.ws8_c00471{word-spacing:-11.946667pt;}
.ws7_c00471{word-spacing:-10.988800pt;}
.ws9_c00471{word-spacing:-10.667733pt;}
.ws6_c00471{word-spacing:-10.560000pt;}
.wsc_c00471{word-spacing:0.000000pt;}
._3_c00471{margin-left:-2.218624pt;}
._1_c00471{margin-left:-1.280000pt;}
._2_c00471{width:1.141312pt;}
._4_c00471{width:2.613312pt;}
._d_c00471{width:4.053376pt;}
._13_c00471{width:5.566764pt;}
._11_c00471{width:6.535465pt;}
._12_c00471{width:7.539716pt;}
._15_c00471{width:10.754691pt;}
._14_c00471{width:12.287977pt;}
._c_c00471{width:14.645312pt;}
._9_c00471{width:17.397312pt;}
._b_c00471{width:18.986688pt;}
._a_c00471{width:19.968000pt;}
._0_c00471{width:21.568000pt;}
._5_c00471{width:22.602688pt;}
._7_c00471{width:28.992000pt;}
._6_c00471{width:30.656000pt;}
._8_c00471{width:31.701333pt;}
._10_c00471{width:33.013269pt;}
._e_c00471{width:33.909355pt;}
._f_c00471{width:35.242581pt;}
.fs3_c00471{font-size:34.560000pt;}
.fs1_c00471{font-size:42.240000pt;}
.fs2_c00471{font-size:53.760000pt;}
.fs0_c00471{font-size:64.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y23_c00471{bottom:8.946667pt;}
.ye_c00471{bottom:11.186667pt;}
.y21_c00471{bottom:11.213333pt;}
.y3_c00471{bottom:51.552000pt;}
.y2_c00471{bottom:70.112000pt;}
.y2b_c00471{bottom:116.192000pt;}
.y2a_c00471{bottom:131.552000pt;}
.y29_c00471{bottom:137.666667pt;}
.y28_c00471{bottom:146.946667pt;}
.y27_c00471{bottom:162.306667pt;}
.y26_c00471{bottom:177.346667pt;}
.y25_c00471{bottom:183.426667pt;}
.y24_c00471{bottom:193.346667pt;}
.y22_c00471{bottom:211.600000pt;}
.y20_c00471{bottom:230.800000pt;}
.y1f_c00471{bottom:267.613333pt;}
.y1e_c00471{bottom:295.133333pt;}
.y1d_c00471{bottom:322.653333pt;}
.y1c_c00471{bottom:350.533333pt;}
.y1b_c00471{bottom:386.053333pt;}
.y1a_c00471{bottom:421.573333pt;}
.y19_c00471{bottom:457.093333pt;}
.y17_c00471{bottom:484.960000pt;}
.y18_c00471{bottom:492.320000pt;}
.y16_c00471{bottom:512.480000pt;}
.y15_c00471{bottom:540.000000pt;}
.y14_c00471{bottom:567.520000pt;}
.y13_c00471{bottom:595.386667pt;}
.y12_c00471{bottom:622.906667pt;}
.y11_c00471{bottom:637.960000pt;}
.y10_c00471{bottom:661.640000pt;}
.yf_c00471{bottom:685.360000pt;}
.yd_c00471{bottom:709.040000pt;}
.yc_c00471{bottom:745.826667pt;}
.yb_c00471{bottom:781.346667pt;}
.ya_c00471{bottom:808.893333pt;}
.y9_c00471{bottom:836.733333pt;}
.y8_c00471{bottom:864.253333pt;}
.y7_c00471{bottom:891.773333pt;}
.y6_c00471{bottom:919.333333pt;}
.y4_c00471{bottom:947.173333pt;}
.y5_c00471{bottom:954.533333pt;}
.y1_c00471{bottom:993.573333pt;}
.ha_c00471{height:18.546667pt;}
.h6_c00471{height:23.026667pt;}
.h9_c00471{height:23.040000pt;}
.h8_c00471{height:23.058667pt;}
.hb_c00471{height:30.982500pt;}
.h4_c00471{height:41.456250pt;}
.hc_c00471{height:48.195000pt;}
.h7_c00471{height:52.762500pt;}
.h1_c00471{height:57.375000pt;}
.h5_c00471{height:62.781250pt;}
.h2_c00471{height:62.812500pt;}
.h3_c00471{height:1055.996000pt;}
.h0_c00471{height:1056.000000pt;}
.w2_c00471{width:287.480000pt;}
.w3_c00471{width:287.760000pt;}
.w1_c00471{width:815.997333pt;}
.w0_c00471{width:816.000000pt;}
.x0_c00471{left:0.000000pt;}
.x7_c00471{left:6.708000pt;}
.x6_c00471{left:106.604000pt;}
.x1_c00471{left:113.312000pt;}
.xd_c00471{left:126.752000pt;}
.x5_c00471{left:158.786667pt;}
.x9_c00471{left:160.706667pt;}
.xc_c00471{left:305.413333pt;}
.x8_c00471{left:394.720000pt;}
.x2_c00471{left:396.000000pt;}
.xa_c00471{left:405.597333pt;}
.xb_c00471{left:421.920000pt;}
.x3_c00471{left:682.490667pt;}
.x4_c00471{left:698.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00472 {
    display:none;
  }
  .loading-indicator_c00472.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00472 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00472 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00472" -> "#page-container .classname_c00472")
 */
.pf_c00472 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00472 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00472 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00472 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00472 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00472 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00472 {overflow:visible;}
  }
}
.c_c00472 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00472 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00472:after { /* webkit #35443 */
  content: '';
}
.t_c00472:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00472 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00472 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00472 { /* info for Javascript */
  display:none;
}
.l_c00472 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00472 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00472 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00472:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00472 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00472.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00472 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00472;src:url('chunks/assets/font_f9ac088fe324db3602d378de.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_a8b023407d72230faf1652d9.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_1fa66234ba6e8531436f3711.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_42fc4df1b6b7f057f6739284.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00472;src:url('chunks/assets/font_ef562ffb7871154349ca5bba.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls1c_c00472{letter-spacing:-1.356000px;}
.ls15_c00472{letter-spacing:-0.672000px;}
.ls28_c00472{letter-spacing:-0.482400px;}
.ls1b_c00472{letter-spacing:-0.382800px;}
.ls1e_c00472{letter-spacing:-0.360000px;}
.ls16_c00472{letter-spacing:-0.250800px;}
.ls13_c00472{letter-spacing:-0.097800px;}
.ls10_c00472{letter-spacing:-0.007200px;}
.lse_c00472{letter-spacing:0.000000px;}
.ls27_c00472{letter-spacing:0.015600px;}
.ls3_c00472{letter-spacing:0.015840px;}
.lsb_c00472{letter-spacing:0.121200px;}
.ls7_c00472{letter-spacing:0.177120px;}
.ls4_c00472{letter-spacing:0.201600px;}
.ls19_c00472{letter-spacing:0.277800px;}
.ls23_c00472{letter-spacing:0.292200px;}
.lsd_c00472{letter-spacing:0.306600px;}
.ls5_c00472{letter-spacing:0.321120px;}
.ls26_c00472{letter-spacing:0.358800px;}
.ls12_c00472{letter-spacing:0.449400px;}
.ls20_c00472{letter-spacing:0.482400px;}
.ls1f_c00472{letter-spacing:0.501000px;}
.ls14_c00472{letter-spacing:0.529800px;}
.ls21_c00472{letter-spacing:0.558600px;}
.ls25_c00472{letter-spacing:0.660000px;}
.ls18_c00472{letter-spacing:0.768000px;}
.lsa_c00472{letter-spacing:1.019520px;}
.ls24_c00472{letter-spacing:1.056000px;}
.ls6_c00472{letter-spacing:1.067040px;}
.ls2_c00472{letter-spacing:1.080000px;}
.ls0_c00472{letter-spacing:1.200000px;}
.ls1_c00472{letter-spacing:1.224000px;}
.ls8_c00472{letter-spacing:1.260000px;}
.ls22_c00472{letter-spacing:1.344000px;}
.ls1a_c00472{letter-spacing:1.434000px;}
.ls11_c00472{letter-spacing:1.458000px;}
.ls17_c00472{letter-spacing:1.560000px;}
.lsc_c00472{letter-spacing:1.575840px;}
.ls9_c00472{letter-spacing:1.617120px;}
.lsf_c00472{letter-spacing:1.920000px;}
.ls1d_c00472{letter-spacing:1.968000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00472{word-spacing:-13.848000px;}
.ws1_c00472{word-spacing:-13.800000px;}
.ws7_c00472{word-spacing:-13.440000px;}
.ws9_c00472{word-spacing:-13.314000px;}
.ws4_c00472{word-spacing:-13.140000px;}
.ws13_c00472{word-spacing:-12.936000px;}
.ws14_c00472{word-spacing:-12.540000px;}
.ws6_c00472{word-spacing:-12.409800px;}
.ws10_c00472{word-spacing:-12.381000px;}
.ws11_c00472{word-spacing:-12.362400px;}
.ws5_c00472{word-spacing:-12.329400px;}
.ws15_c00472{word-spacing:-12.238800px;}
.wsf_c00472{word-spacing:-12.186600px;}
.ws12_c00472{word-spacing:-12.172200px;}
.ws8_c00472{word-spacing:-12.157800px;}
.ws3_c00472{word-spacing:-12.001200px;}
.ws0_c00472{word-spacing:-11.880000px;}
.ws2_c00472{word-spacing:-11.872800px;}
.wse_c00472{word-spacing:-11.782200px;}
.wsa_c00472{word-spacing:-11.497200px;}
.ws16_c00472{word-spacing:-11.397600px;}
.wsd_c00472{word-spacing:-11.208000px;}
.wsb_c00472{word-spacing:-10.524000px;}
.ws17_c00472{word-spacing:0.000000px;}
._0_c00472{margin-left:-2.439840px;}
._2_c00472{margin-left:-1.028160px;}
._1_c00472{width:1.319040px;}
._3_c00472{width:2.364720px;}
._4_c00472{width:3.400080px;}
.fc0_c00472{color:rgb(0,0,0);}
.fs1_c00472{font-size:47.520000px;}
.fs0_c00472{font-size:72.000000px;}
.y0_c00472{bottom:0.000000px;}
.y2d_c00472{bottom:10.065000px;}
.y2c_c00472{bottom:30.585000px;}
.y2b_c00472{bottom:51.495000px;}
.y3_c00472{bottom:57.996000px;}
.y2a_c00472{bottom:72.015000px;}
.y2_c00472{bottom:78.876000px;}
.y29_c00472{bottom:92.895000px;}
.y28_c00472{bottom:113.415000px;}
.y27_c00472{bottom:134.295000px;}
.y26_c00472{bottom:154.815000px;}
.y25_c00472{bottom:175.740000px;}
.y24_c00472{bottom:196.260000px;}
.y2e_c00472{bottom:214.995000px;}
.y23_c00472{bottom:217.140000px;}
.y4_c00472{bottom:231.930000px;}
.y22_c00472{bottom:237.660000px;}
.y21_c00472{bottom:258.540000px;}
.y20_c00472{bottom:279.060000px;}
.y1f_c00472{bottom:299.970000px;}
.y1e_c00472{bottom:320.490000px;}
.y1d_c00472{bottom:341.370000px;}
.y1c_c00472{bottom:361.890000px;}
.y1b_c00472{bottom:382.770000px;}
.y1a_c00472{bottom:403.290000px;}
.y19_c00472{bottom:424.200000px;}
.y18_c00472{bottom:444.720000px;}
.y17_c00472{bottom:465.600000px;}
.y16_c00472{bottom:486.120000px;}
.y15_c00472{bottom:507.000000px;}
.y14_c00472{bottom:527.520000px;}
.y13_c00472{bottom:548.445000px;}
.y12_c00472{bottom:568.965000px;}
.y11_c00472{bottom:589.845000px;}
.y10_c00472{bottom:610.365000px;}
.yf_c00472{bottom:631.245000px;}
.ye_c00472{bottom:651.765000px;}
.yd_c00472{bottom:672.675000px;}
.yc_c00472{bottom:693.195000px;}
.yb_c00472{bottom:714.075000px;}
.ya_c00472{bottom:734.595000px;}
.y9_c00472{bottom:755.475000px;}
.y8_c00472{bottom:776.040000px;}
.y7_c00472{bottom:796.920000px;}
.y6_c00472{bottom:817.440000px;}
.y5_c00472{bottom:838.320000px;}
.y1_c00472{bottom:1117.770000px;}
.h3_c00472{height:46.638281px;}
.h4_c00472{height:47.891250px;}
.h1_c00472{height:64.546875px;}
.h5_c00472{height:70.664062px;}
.h2_c00472{height:849.105000px;}
.h0_c00472{height:1188.000000px;}
.w1_c00472{width:323.415000px;}
.w2_c00472{width:323.730000px;}
.w0_c00472{width:918.000000px;}
.x0_c00472{left:0.000000px;}
.x4_c00472{left:7.546500px;}
.x3_c00472{left:119.929500px;}
.x1_c00472{left:127.476000px;}
.x5_c00472{left:444.060000px;}
.x2_c00472{left:445.500000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls1c_c00472{letter-spacing:-1.205333pt;}
.ls15_c00472{letter-spacing:-0.597333pt;}
.ls28_c00472{letter-spacing:-0.428800pt;}
.ls1b_c00472{letter-spacing:-0.340267pt;}
.ls1e_c00472{letter-spacing:-0.320000pt;}
.ls16_c00472{letter-spacing:-0.222933pt;}
.ls13_c00472{letter-spacing:-0.086933pt;}
.ls10_c00472{letter-spacing:-0.006400pt;}
.lse_c00472{letter-spacing:0.000000pt;}
.ls27_c00472{letter-spacing:0.013867pt;}
.ls3_c00472{letter-spacing:0.014080pt;}
.lsb_c00472{letter-spacing:0.107733pt;}
.ls7_c00472{letter-spacing:0.157440pt;}
.ls4_c00472{letter-spacing:0.179200pt;}
.ls19_c00472{letter-spacing:0.246933pt;}
.ls23_c00472{letter-spacing:0.259733pt;}
.lsd_c00472{letter-spacing:0.272533pt;}
.ls5_c00472{letter-spacing:0.285440pt;}
.ls26_c00472{letter-spacing:0.318933pt;}
.ls12_c00472{letter-spacing:0.399467pt;}
.ls20_c00472{letter-spacing:0.428800pt;}
.ls1f_c00472{letter-spacing:0.445333pt;}
.ls14_c00472{letter-spacing:0.470933pt;}
.ls21_c00472{letter-spacing:0.496533pt;}
.ls25_c00472{letter-spacing:0.586667pt;}
.ls18_c00472{letter-spacing:0.682667pt;}
.lsa_c00472{letter-spacing:0.906240pt;}
.ls24_c00472{letter-spacing:0.938667pt;}
.ls6_c00472{letter-spacing:0.948480pt;}
.ls2_c00472{letter-spacing:0.960000pt;}
.ls0_c00472{letter-spacing:1.066667pt;}
.ls1_c00472{letter-spacing:1.088000pt;}
.ls8_c00472{letter-spacing:1.120000pt;}
.ls22_c00472{letter-spacing:1.194667pt;}
.ls1a_c00472{letter-spacing:1.274667pt;}
.ls11_c00472{letter-spacing:1.296000pt;}
.ls17_c00472{letter-spacing:1.386667pt;}
.lsc_c00472{letter-spacing:1.400747pt;}
.ls9_c00472{letter-spacing:1.437440pt;}
.lsf_c00472{letter-spacing:1.706667pt;}
.ls1d_c00472{letter-spacing:1.749333pt;}
.wsc_c00472{word-spacing:-12.309333pt;}
.ws1_c00472{word-spacing:-12.266667pt;}
.ws7_c00472{word-spacing:-11.946667pt;}
.ws9_c00472{word-spacing:-11.834667pt;}
.ws4_c00472{word-spacing:-11.680000pt;}
.ws13_c00472{word-spacing:-11.498667pt;}
.ws14_c00472{word-spacing:-11.146667pt;}
.ws6_c00472{word-spacing:-11.030933pt;}
.ws10_c00472{word-spacing:-11.005333pt;}
.ws11_c00472{word-spacing:-10.988800pt;}
.ws5_c00472{word-spacing:-10.959467pt;}
.ws15_c00472{word-spacing:-10.878933pt;}
.wsf_c00472{word-spacing:-10.832533pt;}
.ws12_c00472{word-spacing:-10.819733pt;}
.ws8_c00472{word-spacing:-10.806933pt;}
.ws3_c00472{word-spacing:-10.667733pt;}
.ws0_c00472{word-spacing:-10.560000pt;}
.ws2_c00472{word-spacing:-10.553600pt;}
.wse_c00472{word-spacing:-10.473067pt;}
.wsa_c00472{word-spacing:-10.219733pt;}
.ws16_c00472{word-spacing:-10.131200pt;}
.wsd_c00472{word-spacing:-9.962667pt;}
.wsb_c00472{word-spacing:-9.354667pt;}
.ws17_c00472{word-spacing:0.000000pt;}
._0_c00472{margin-left:-2.168747pt;}
._2_c00472{margin-left:-0.913920pt;}
._1_c00472{width:1.172480pt;}
._3_c00472{width:2.101973pt;}
._4_c00472{width:3.022293pt;}
.fs1_c00472{font-size:42.240000pt;}
.fs0_c00472{font-size:64.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y2d_c00472{bottom:8.946667pt;}
.y2c_c00472{bottom:27.186667pt;}
.y2b_c00472{bottom:45.773333pt;}
.y3_c00472{bottom:51.552000pt;}
.y2a_c00472{bottom:64.013333pt;}
.y2_c00472{bottom:70.112000pt;}
.y29_c00472{bottom:82.573333pt;}
.y28_c00472{bottom:100.813333pt;}
.y27_c00472{bottom:119.373333pt;}
.y26_c00472{bottom:137.613333pt;}
.y25_c00472{bottom:156.213333pt;}
.y24_c00472{bottom:174.453333pt;}
.y2e_c00472{bottom:191.106667pt;}
.y23_c00472{bottom:193.013333pt;}
.y4_c00472{bottom:206.160000pt;}
.y22_c00472{bottom:211.253333pt;}
.y21_c00472{bottom:229.813333pt;}
.y20_c00472{bottom:248.053333pt;}
.y1f_c00472{bottom:266.640000pt;}
.y1e_c00472{bottom:284.880000pt;}
.y1d_c00472{bottom:303.440000pt;}
.y1c_c00472{bottom:321.680000pt;}
.y1b_c00472{bottom:340.240000pt;}
.y1a_c00472{bottom:358.480000pt;}
.y19_c00472{bottom:377.066667pt;}
.y18_c00472{bottom:395.306667pt;}
.y17_c00472{bottom:413.866667pt;}
.y16_c00472{bottom:432.106667pt;}
.y15_c00472{bottom:450.666667pt;}
.y14_c00472{bottom:468.906667pt;}
.y13_c00472{bottom:487.506667pt;}
.y12_c00472{bottom:505.746667pt;}
.y11_c00472{bottom:524.306667pt;}
.y10_c00472{bottom:542.546667pt;}
.yf_c00472{bottom:561.106667pt;}
.ye_c00472{bottom:579.346667pt;}
.yd_c00472{bottom:597.933333pt;}
.yc_c00472{bottom:616.173333pt;}
.yb_c00472{bottom:634.733333pt;}
.ya_c00472{bottom:652.973333pt;}
.y9_c00472{bottom:671.533333pt;}
.y8_c00472{bottom:689.813333pt;}
.y7_c00472{bottom:708.373333pt;}
.y6_c00472{bottom:726.613333pt;}
.y5_c00472{bottom:745.173333pt;}
.y1_c00472{bottom:993.573333pt;}
.h3_c00472{height:41.456250pt;}
.h4_c00472{height:42.570000pt;}
.h1_c00472{height:57.375000pt;}
.h5_c00472{height:62.812500pt;}
.h2_c00472{height:754.760000pt;}
.h0_c00472{height:1056.000000pt;}
.w1_c00472{width:287.480000pt;}
.w2_c00472{width:287.760000pt;}
.w0_c00472{width:816.000000pt;}
.x0_c00472{left:0.000000pt;}
.x4_c00472{left:6.708000pt;}
.x3_c00472{left:106.604000pt;}
.x1_c00472{left:113.312000pt;}
.x5_c00472{left:394.720000pt;}
.x2_c00472{left:396.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_c00473 {
    display:none;
  }
  .loading-indicator_c00473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00473 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00473 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00473" -> "#page-container .classname_c00473")
 */
.pf_c00473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00473 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00473 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00473 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00473 {overflow:visible;}
  }
}
.c_c00473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00473 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00473:after { /* webkit #35443 */
  content: '';
}
.t_c00473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00473 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00473 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00473 { /* info for Javascript */
  display:none;
}
.l_c00473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00473:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00473 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00473.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00473;src:url('chunks/assets/font_981efde80858398442fa2882.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_38d8dc1503c950cdbc58ba76.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_5f7e8c59b9f4b5f6f69d8da7.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;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_c00473;src:url('chunks/assets/font_857635d5bb27b1f7c857d6d6.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls4_c00473{letter-spacing:0.000000px;}
.ls1_c00473{letter-spacing:0.012000px;}
.ls2_c00473{letter-spacing:0.720000px;}
.ls3_c00473{letter-spacing:0.864000px;}
.ls0_c00473{letter-spacing:10.800000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00473{word-spacing:-40.608000px;}
.ws0_c00473{word-spacing:-18.000000px;}
.ws2_c00473{word-spacing:0.000000px;}
._2_c00473{margin-left:-2.736000px;}
._5_c00473{margin-left:-1.296000px;}
._1_c00473{width:1.080000px;}
._6_c00473{width:2.808000px;}
._10_c00473{width:4.044024px;}
._11_c00473{width:5.832000px;}
._d_c00473{width:6.912000px;}
._c_c00473{width:8.712000px;}
._b_c00473{width:10.296000px;}
._a_c00473{width:11.664000px;}
._9_c00473{width:12.888000px;}
._8_c00473{width:14.040000px;}
._14_c00473{width:15.768000px;}
._15_c00473{width:16.992000px;}
._e_c00473{width:19.872000px;}
._f_c00473{width:21.000000px;}
._0_c00473{width:22.824000px;}
._3_c00473{width:24.624000px;}
._4_c00473{width:25.704000px;}
._7_c00473{width:27.192000px;}
._13_c00473{width:28.800000px;}
._12_c00473{width:30.240000px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs2_c00473{font-size:38.880000px;}
.fs1_c00473{font-size:47.520000px;}
.fs3_c00473{font-size:60.480000px;}
.fs0_c00473{font-size:72.000000px;}
.y0_c00473{bottom:0.000000px;}
.y3_c00473{bottom:57.996000px;}
.y2_c00473{bottom:78.876000px;}
.y24_c00473{bottom:130.716000px;}
.y23_c00473{bottom:137.556000px;}
.y22_c00473{bottom:148.356000px;}
.y21_c00473{bottom:186.915000px;}
.y20_c00473{bottom:217.875000px;}
.y1f_c00473{bottom:248.835000px;}
.y1e_c00473{bottom:280.185000px;}
.y1d_c00473{bottom:311.145000px;}
.y1c_c00473{bottom:342.105000px;}
.y1b_c00473{bottom:373.065000px;}
.y1a_c00473{bottom:404.070000px;}
.y19_c00473{bottom:435.390000px;}
.y18_c00473{bottom:466.350000px;}
.y17_c00473{bottom:506.310000px;}
.y16_c00473{bottom:537.300000px;}
.y15_c00473{bottom:568.620000px;}
.y14_c00473{bottom:599.580000px;}
.y13_c00473{bottom:630.540000px;}
.y12_c00473{bottom:661.530000px;}
.y11_c00473{bottom:692.850000px;}
.y10_c00473{bottom:723.810000px;}
.yf_c00473{bottom:754.770000px;}
.ye_c00473{bottom:785.775000px;}
.yd_c00473{bottom:817.095000px;}
.yc_c00473{bottom:848.055000px;}
.yb_c00473{bottom:879.015000px;}
.ya_c00473{bottom:910.005000px;}
.y9_c00473{bottom:941.325000px;}
.y8_c00473{bottom:972.285000px;}
.y7_c00473{bottom:1003.245000px;}
.y5_c00473{bottom:1034.250000px;}
.y6_c00473{bottom:1042.530000px;}
.y4_c00473{bottom:1065.570000px;}
.y1_c00473{bottom:1117.770000px;}
.h5_c00473{height:34.855313px;}
.h4_c00473{height:46.638281px;}
.h6_c00473{height:59.357813px;}
.h1_c00473{height:64.546875px;}
.h2_c00473{height:70.664062px;}
.h3_c00473{height:1187.995500px;}
.h0_c00473{height:1188.000000px;}
.w1_c00473{width:917.997000px;}
.w0_c00473{width:918.000000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:127.476000px;}
.x8_c00473{left:142.596000px;}
.x3_c00473{left:178.635000px;}
.x6_c00473{left:180.795000px;}
.x4_c00473{left:340.707000px;}
.x7_c00473{left:343.590000px;}
.x5_c00473{left:359.070000px;}
.x2_c00473{left:445.500000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls4_c00473{letter-spacing:0.000000pt;}
.ls1_c00473{letter-spacing:0.010667pt;}
.ls2_c00473{letter-spacing:0.640000pt;}
.ls3_c00473{letter-spacing:0.768000pt;}
.ls0_c00473{letter-spacing:9.600000pt;}
.ws1_c00473{word-spacing:-36.096000pt;}
.ws0_c00473{word-spacing:-16.000000pt;}
.ws2_c00473{word-spacing:0.000000pt;}
._2_c00473{margin-left:-2.432000pt;}
._5_c00473{margin-left:-1.152000pt;}
._1_c00473{width:0.960000pt;}
._6_c00473{width:2.496000pt;}
._10_c00473{width:3.594688pt;}
._11_c00473{width:5.184000pt;}
._d_c00473{width:6.144000pt;}
._c_c00473{width:7.744000pt;}
._b_c00473{width:9.152000pt;}
._a_c00473{width:10.368000pt;}
._9_c00473{width:11.456000pt;}
._8_c00473{width:12.480000pt;}
._14_c00473{width:14.016000pt;}
._15_c00473{width:15.104000pt;}
._e_c00473{width:17.664000pt;}
._f_c00473{width:18.666667pt;}
._0_c00473{width:20.288000pt;}
._3_c00473{width:21.888000pt;}
._4_c00473{width:22.848000pt;}
._7_c00473{width:24.170667pt;}
._13_c00473{width:25.600000pt;}
._12_c00473{width:26.880000pt;}
.fs2_c00473{font-size:34.560000pt;}
.fs1_c00473{font-size:42.240000pt;}
.fs3_c00473{font-size:53.760000pt;}
.fs0_c00473{font-size:64.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y3_c00473{bottom:51.552000pt;}
.y2_c00473{bottom:70.112000pt;}
.y24_c00473{bottom:116.192000pt;}
.y23_c00473{bottom:122.272000pt;}
.y22_c00473{bottom:131.872000pt;}
.y21_c00473{bottom:166.146667pt;}
.y20_c00473{bottom:193.666667pt;}
.y1f_c00473{bottom:221.186667pt;}
.y1e_c00473{bottom:249.053333pt;}
.y1d_c00473{bottom:276.573333pt;}
.y1c_c00473{bottom:304.093333pt;}
.y1b_c00473{bottom:331.613333pt;}
.y1a_c00473{bottom:359.173333pt;}
.y19_c00473{bottom:387.013333pt;}
.y18_c00473{bottom:414.533333pt;}
.y17_c00473{bottom:450.053333pt;}
.y16_c00473{bottom:477.600000pt;}
.y15_c00473{bottom:505.440000pt;}
.y14_c00473{bottom:532.960000pt;}
.y13_c00473{bottom:560.480000pt;}
.y12_c00473{bottom:588.026667pt;}
.y11_c00473{bottom:615.866667pt;}
.y10_c00473{bottom:643.386667pt;}
.yf_c00473{bottom:670.906667pt;}
.ye_c00473{bottom:698.466667pt;}
.yd_c00473{bottom:726.306667pt;}
.yc_c00473{bottom:753.826667pt;}
.yb_c00473{bottom:781.346667pt;}
.ya_c00473{bottom:808.893333pt;}
.y9_c00473{bottom:836.733333pt;}
.y8_c00473{bottom:864.253333pt;}
.y7_c00473{bottom:891.773333pt;}
.y5_c00473{bottom:919.333333pt;}
.y6_c00473{bottom:926.693333pt;}
.y4_c00473{bottom:947.173333pt;}
.y1_c00473{bottom:993.573333pt;}
.h5_c00473{height:30.982500pt;}
.h4_c00473{height:41.456250pt;}
.h6_c00473{height:52.762500pt;}
.h1_c00473{height:57.375000pt;}
.h2_c00473{height:62.812500pt;}
.h3_c00473{height:1055.996000pt;}
.h0_c00473{height:1056.000000pt;}
.w1_c00473{width:815.997333pt;}
.w0_c00473{width:816.000000pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:113.312000pt;}
.x8_c00473{left:126.752000pt;}
.x3_c00473{left:158.786667pt;}
.x6_c00473{left:160.706667pt;}
.x4_c00473{left:302.850667pt;}
.x7_c00473{left:305.413333pt;}
.x5_c00473{left:319.173333pt;}
.x2_c00473{left:396.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_c00474 {
    display:none;
  }
  .loading-indicator_c00474.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00474 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00474 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00474" -> "#page-container .classname_c00474")
 */
.pf_c00474 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00474 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00474 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00474 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00474 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00474 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00474 {overflow:visible;}
  }
}
.c_c00474 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00474 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00474:after { /* webkit #35443 */
  content: '';
}
.t_c00474:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00474 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00474 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00474 { /* info for Javascript */
  display:none;
}
.l_c00474 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00474 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00474 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00474:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00474 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00474.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00474 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00474;src:url('chunks/assets/font_dc4ff1db7941c6ce59281253.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_f2ce4dd5ad2295f666b406d5.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_16404da3fe1074e5679eb6cf.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;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_c00474;src:url('chunks/assets/font_706a65115029fcb404d51b27.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls5_c00474{letter-spacing:-0.912000px;}
.ls6_c00474{letter-spacing:-0.288000px;}
.ls3_c00474{letter-spacing:0.000000px;}
.ls4_c00474{letter-spacing:0.022800px;}
.ls0_c00474{letter-spacing:0.180000px;}
.ls1_c00474{letter-spacing:0.720000px;}
.ls2_c00474{letter-spacing:6.480000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:-18.000000px;}
.ws3_c00474{word-spacing:-17.712000px;}
.ws2_c00474{word-spacing:-15.142800px;}
.ws1_c00474{word-spacing:-15.120000px;}
.ws4_c00474{word-spacing:0.000000px;}
._1_c00474{margin-left:-2.736000px;}
._3_c00474{margin-left:-1.728000px;}
._0_c00474{width:1.368000px;}
._6_c00474{width:3.156000px;}
._12_c00474{width:5.017202px;}
._5_c00474{width:6.179976px;}
._2_c00474{width:7.560000px;}
._4_c00474{width:9.000000px;}
._b_c00474{width:10.261198px;}
._7_c00474{width:11.880000px;}
._9_c00474{width:13.116000px;}
._8_c00474{width:14.124000px;}
._a_c00474{width:16.200000px;}
._f_c00474{width:17.271602px;}
._c_c00474{width:18.388800px;}
._11_c00474{width:26.004004px;}
._10_c00474{width:27.475200px;}
._d_c00474{width:28.667399px;}
._e_c00474{width:30.301924px;}
._13_c00474{width:32.974677px;}
.fc0_c00474{color:rgb(0,0,0);}
.fs1_c00474{font-size:60.480000px;}
.fs0_c00474{font-size:72.000000px;}
.y0_c00474{bottom:0.000000px;}
.y12_c00474{bottom:12.585000px;}
.y21_c00474{bottom:12.600000px;}
.y20_c00474{bottom:38.520000px;}
.y3_c00474{bottom:57.996000px;}
.y1f_c00474{bottom:64.440000px;}
.y2_c00474{bottom:78.876000px;}
.y1e_c00474{bottom:90.360000px;}
.y1d_c00474{bottom:116.325000px;}
.y26_c00474{bottom:119.916000px;}
.y1c_c00474{bottom:141.885000px;}
.y25_c00474{bottom:150.915000px;}
.y1b_c00474{bottom:167.805000px;}
.y24_c00474{bottom:191.235000px;}
.y1a_c00474{bottom:193.725000px;}
.y19_c00474{bottom:219.645000px;}
.y23_c00474{bottom:231.195000px;}
.y18_c00474{bottom:245.595000px;}
.y22_c00474{bottom:262.155000px;}
.y17_c00474{bottom:271.515000px;}
.y13_c00474{bottom:279.105000px;}
.y16_c00474{bottom:297.435000px;}
.y15_c00474{bottom:323.355000px;}
.y14_c00474{bottom:348.915000px;}
.y11_c00474{bottom:642.105000px;}
.y10_c00474{bottom:683.850000px;}
.yf_c00474{bottom:714.810000px;}
.ye_c00474{bottom:745.770000px;}
.yd_c00474{bottom:776.775000px;}
.yc_c00474{bottom:808.095000px;}
.yb_c00474{bottom:839.055000px;}
.ya_c00474{bottom:879.015000px;}
.y9_c00474{bottom:910.005000px;}
.y8_c00474{bottom:941.325000px;}
.y7_c00474{bottom:972.285000px;}
.y6_c00474{bottom:1003.245000px;}
.y5_c00474{bottom:1034.250000px;}
.y4_c00474{bottom:1065.570000px;}
.y1_c00474{bottom:1117.770000px;}
.h4_c00474{height:25.905000px;}
.h5_c00474{height:59.357813px;}
.h1_c00474{height:64.546875px;}
.h3_c00474{height:70.628906px;}
.h2_c00474{height:70.664062px;}
.h6_c00474{height:362.265000px;}
.h0_c00474{height:1188.000000px;}
.w1_c00474{width:323.415000px;}
.w2_c00474{width:323.730000px;}
.w0_c00474{width:918.000000px;}
.x0_c00474{left:0.000000px;}
.x6_c00474{left:7.546500px;}
.x5_c00474{left:119.929500px;}
.x1_c00474{left:127.476000px;}
.x4_c00474{left:178.635000px;}
.x3_c00474{left:180.795000px;}
.x7_c00474{left:444.060000px;}
.x2_c00474{left:445.500000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls5_c00474{letter-spacing:-0.810667pt;}
.ls6_c00474{letter-spacing:-0.256000pt;}
.ls3_c00474{letter-spacing:0.000000pt;}
.ls4_c00474{letter-spacing:0.020267pt;}
.ls0_c00474{letter-spacing:0.160000pt;}
.ls1_c00474{letter-spacing:0.640000pt;}
.ls2_c00474{letter-spacing:5.760000pt;}
.ws0_c00474{word-spacing:-16.000000pt;}
.ws3_c00474{word-spacing:-15.744000pt;}
.ws2_c00474{word-spacing:-13.460267pt;}
.ws1_c00474{word-spacing:-13.440000pt;}
.ws4_c00474{word-spacing:0.000000pt;}
._1_c00474{margin-left:-2.432000pt;}
._3_c00474{margin-left:-1.536000pt;}
._0_c00474{width:1.216000pt;}
._6_c00474{width:2.805333pt;}
._12_c00474{width:4.459735pt;}
._5_c00474{width:5.493312pt;}
._2_c00474{width:6.720000pt;}
._4_c00474{width:8.000000pt;}
._b_c00474{width:9.121065pt;}
._7_c00474{width:10.560000pt;}
._9_c00474{width:11.658667pt;}
._8_c00474{width:12.554667pt;}
._a_c00474{width:14.400000pt;}
._f_c00474{width:15.352535pt;}
._c_c00474{width:16.345600pt;}
._11_c00474{width:23.114670pt;}
._10_c00474{width:24.422400pt;}
._d_c00474{width:25.482132pt;}
._e_c00474{width:26.935043pt;}
._13_c00474{width:29.310824pt;}
.fs1_c00474{font-size:53.760000pt;}
.fs0_c00474{font-size:64.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y12_c00474{bottom:11.186667pt;}
.y21_c00474{bottom:11.200000pt;}
.y20_c00474{bottom:34.240000pt;}
.y3_c00474{bottom:51.552000pt;}
.y1f_c00474{bottom:57.280000pt;}
.y2_c00474{bottom:70.112000pt;}
.y1e_c00474{bottom:80.320000pt;}
.y1d_c00474{bottom:103.400000pt;}
.y26_c00474{bottom:106.592000pt;}
.y1c_c00474{bottom:126.120000pt;}
.y25_c00474{bottom:134.146667pt;}
.y1b_c00474{bottom:149.160000pt;}
.y24_c00474{bottom:169.986667pt;}
.y1a_c00474{bottom:172.200000pt;}
.y19_c00474{bottom:195.240000pt;}
.y23_c00474{bottom:205.506667pt;}
.y18_c00474{bottom:218.306667pt;}
.y22_c00474{bottom:233.026667pt;}
.y17_c00474{bottom:241.346667pt;}
.y13_c00474{bottom:248.093333pt;}
.y16_c00474{bottom:264.386667pt;}
.y15_c00474{bottom:287.426667pt;}
.y14_c00474{bottom:310.146667pt;}
.y11_c00474{bottom:570.760000pt;}
.y10_c00474{bottom:607.866667pt;}
.yf_c00474{bottom:635.386667pt;}
.ye_c00474{bottom:662.906667pt;}
.yd_c00474{bottom:690.466667pt;}
.yc_c00474{bottom:718.306667pt;}
.yb_c00474{bottom:745.826667pt;}
.ya_c00474{bottom:781.346667pt;}
.y9_c00474{bottom:808.893333pt;}
.y8_c00474{bottom:836.733333pt;}
.y7_c00474{bottom:864.253333pt;}
.y6_c00474{bottom:891.773333pt;}
.y5_c00474{bottom:919.333333pt;}
.y4_c00474{bottom:947.173333pt;}
.y1_c00474{bottom:993.573333pt;}
.h4_c00474{height:23.026667pt;}
.h5_c00474{height:52.762500pt;}
.h1_c00474{height:57.375000pt;}
.h3_c00474{height:62.781250pt;}
.h2_c00474{height:62.812500pt;}
.h6_c00474{height:322.013333pt;}
.h0_c00474{height:1056.000000pt;}
.w1_c00474{width:287.480000pt;}
.w2_c00474{width:287.760000pt;}
.w0_c00474{width:816.000000pt;}
.x0_c00474{left:0.000000pt;}
.x6_c00474{left:6.708000pt;}
.x5_c00474{left:106.604000pt;}
.x1_c00474{left:113.312000pt;}
.x4_c00474{left:158.786667pt;}
.x3_c00474{left:160.706667pt;}
.x7_c00474{left:394.720000pt;}
.x2_c00474{left:396.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_c00475 {
    display:none;
  }
  .loading-indicator_c00475.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00475 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00475 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00475" -> "#page-container .classname_c00475")
 */
.pf_c00475 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00475 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00475 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00475 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00475 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00475 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00475 {overflow:visible;}
  }
}
.c_c00475 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00475 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00475:after { /* webkit #35443 */
  content: '';
}
.t_c00475:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00475 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00475 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00475 { /* info for Javascript */
  display:none;
}
.l_c00475 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00475 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00475 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00475:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00475 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00475.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00475 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00475{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00475;src:url('chunks/assets/font_82d3bb4cea524cff65151389.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_5cefc7103ca48dbea64a40cc.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_02c3963b67295f327fd28410.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;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_c00475;src:url('chunks/assets/font_0ad3b1eee8b03a7fa618c539.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00475;src:url('chunks/assets/font_230cd2ead312ade7c8036d80.woff2')format("woff");}.ff5_c00475{font-family:ff5_c00475;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls12_c00475{letter-spacing:-1.740000px;}
.ls1c_c00475{letter-spacing:-1.680000px;}
.lse_c00475{letter-spacing:-1.440000px;}
.lsf_c00475{letter-spacing:-1.416000px;}
.ls11_c00475{letter-spacing:-1.380000px;}
.ls1e_c00475{letter-spacing:-0.990000px;}
.ls10_c00475{letter-spacing:-0.918000px;}
.ls13_c00475{letter-spacing:-0.720000px;}
.ls19_c00475{letter-spacing:-0.532800px;}
.lsa_c00475{letter-spacing:-0.302400px;}
.ls1a_c00475{letter-spacing:-0.241800px;}
.lsb_c00475{letter-spacing:-0.169800px;}
.ls8_c00475{letter-spacing:0.000000px;}
.ls5_c00475{letter-spacing:0.020160px;}
.ls9_c00475{letter-spacing:0.020400px;}
.lsc_c00475{letter-spacing:0.022800px;}
.ls7_c00475{letter-spacing:0.032160px;}
.ls6_c00475{letter-spacing:0.048960px;}
.ls1d_c00475{letter-spacing:0.060600px;}
.ls14_c00475{letter-spacing:0.291000px;}
.ls1b_c00475{letter-spacing:0.313800px;}
.ls16_c00475{letter-spacing:0.385800px;}
.ls18_c00475{letter-spacing:0.449400px;}
.ls3_c00475{letter-spacing:0.518400px;}
.ls2_c00475{letter-spacing:0.521400px;}
.ls15_c00475{letter-spacing:0.524400px;}
.lsd_c00475{letter-spacing:0.529800px;}
.ls17_c00475{letter-spacing:0.702000px;}
.ls0_c00475{letter-spacing:0.720000px;}
.ls1_c00475{letter-spacing:0.840000px;}
.ls4_c00475{letter-spacing:0.900000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00475{word-spacing:-60.771000px;}
.wsa_c00475{word-spacing:-60.480000px;}
.wse_c00475{word-spacing:-15.822000px;}
.wsd_c00475{word-spacing:-15.649800px;}
.wsc_c00475{word-spacing:-15.644400px;}
.ws7_c00475{word-spacing:-15.641400px;}
.ws10_c00475{word-spacing:-15.433800px;}
.ws5_c00475{word-spacing:-15.142800px;}
.ws0_c00475{word-spacing:-15.140400px;}
.ws2_c00475{word-spacing:-15.120000px;}
.ws3_c00475{word-spacing:-14.950200px;}
.ws11_c00475{word-spacing:-14.878200px;}
.ws1_c00475{word-spacing:-14.817600px;}
.wsf_c00475{word-spacing:-14.587200px;}
.ws6_c00475{word-spacing:-14.202000px;}
.ws8_c00475{word-spacing:-13.740000px;}
.ws4_c00475{word-spacing:-13.680000px;}
.ws12_c00475{word-spacing:-13.440000px;}
.ws9_c00475{word-spacing:-13.380000px;}
.ws13_c00475{word-spacing:0.000000px;}
._3_c00475{margin-left:-2.253719px;}
._1_c00475{margin-left:-1.092000px;}
._0_c00475{width:1.008000px;}
._2_c00475{width:2.736000px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs1_c00475{font-size:60.480000px;}
.fs0_c00475{font-size:72.000000px;}
.y0_c00475{bottom:0.000000px;}
.y2a_c00475{bottom:12.235500px;}
.y7_c00475{bottom:12.600000px;}
.y29_c00475{bottom:38.194500px;}
.y3_c00475{bottom:57.996000px;}
.y28_c00475{bottom:64.114500px;}
.y2_c00475{bottom:78.876000px;}
.y27_c00475{bottom:90.034500px;}
.y8_c00475{bottom:112.360500px;}
.y26_c00475{bottom:115.954500px;}
.y25_c00475{bottom:141.874500px;}
.y24_c00475{bottom:167.824500px;}
.y23_c00475{bottom:193.384500px;}
.y22_c00475{bottom:219.304500px;}
.y21_c00475{bottom:245.224500px;}
.y20_c00475{bottom:271.144500px;}
.y1f_c00475{bottom:297.109500px;}
.y1e_c00475{bottom:323.029500px;}
.y1d_c00475{bottom:348.949500px;}
.y1c_c00475{bottom:374.869500px;}
.y1b_c00475{bottom:400.429500px;}
.y1a_c00475{bottom:426.379500px;}
.y19_c00475{bottom:452.299500px;}
.y18_c00475{bottom:478.219500px;}
.y17_c00475{bottom:504.139500px;}
.y16_c00475{bottom:530.089500px;}
.y15_c00475{bottom:556.009500px;}
.y14_c00475{bottom:581.929500px;}
.y13_c00475{bottom:607.489500px;}
.y12_c00475{bottom:633.409500px;}
.y11_c00475{bottom:659.374500px;}
.y10_c00475{bottom:685.294500px;}
.yf_c00475{bottom:711.214500px;}
.ye_c00475{bottom:737.134500px;}
.yd_c00475{bottom:763.054500px;}
.yc_c00475{bottom:788.644500px;}
.yb_c00475{bottom:814.564500px;}
.ya_c00475{bottom:840.484500px;}
.y9_c00475{bottom:866.404500px;}
.y6_c00475{bottom:992.805000px;}
.y5_c00475{bottom:1034.250000px;}
.y4_c00475{bottom:1065.570000px;}
.y1_c00475{bottom:1117.770000px;}
.h4_c00475{height:25.950000px;}
.h5_c00475{height:59.357813px;}
.h1_c00475{height:64.546875px;}
.h3_c00475{height:70.628906px;}
.h2_c00475{height:70.664062px;}
.h6_c00475{height:879.705000px;}
.h0_c00475{height:1188.000000px;}
.w1_c00475{width:647.865000px;}
.w0_c00475{width:918.000000px;}
.x0_c00475{left:0.000000px;}
.x4_c00475{left:7.546500px;}
.x3_c00475{left:119.929500px;}
.x1_c00475{left:127.476000px;}
.x2_c00475{left:445.500000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls12_c00475{letter-spacing:-1.546667pt;}
.ls1c_c00475{letter-spacing:-1.493333pt;}
.lse_c00475{letter-spacing:-1.280000pt;}
.lsf_c00475{letter-spacing:-1.258667pt;}
.ls11_c00475{letter-spacing:-1.226667pt;}
.ls1e_c00475{letter-spacing:-0.880000pt;}
.ls10_c00475{letter-spacing:-0.816000pt;}
.ls13_c00475{letter-spacing:-0.640000pt;}
.ls19_c00475{letter-spacing:-0.473600pt;}
.lsa_c00475{letter-spacing:-0.268800pt;}
.ls1a_c00475{letter-spacing:-0.214933pt;}
.lsb_c00475{letter-spacing:-0.150933pt;}
.ls8_c00475{letter-spacing:0.000000pt;}
.ls5_c00475{letter-spacing:0.017920pt;}
.ls9_c00475{letter-spacing:0.018133pt;}
.lsc_c00475{letter-spacing:0.020267pt;}
.ls7_c00475{letter-spacing:0.028587pt;}
.ls6_c00475{letter-spacing:0.043520pt;}
.ls1d_c00475{letter-spacing:0.053867pt;}
.ls14_c00475{letter-spacing:0.258667pt;}
.ls1b_c00475{letter-spacing:0.278933pt;}
.ls16_c00475{letter-spacing:0.342933pt;}
.ls18_c00475{letter-spacing:0.399467pt;}
.ls3_c00475{letter-spacing:0.460800pt;}
.ls2_c00475{letter-spacing:0.463467pt;}
.ls15_c00475{letter-spacing:0.466133pt;}
.lsd_c00475{letter-spacing:0.470933pt;}
.ls17_c00475{letter-spacing:0.624000pt;}
.ls0_c00475{letter-spacing:0.640000pt;}
.ls1_c00475{letter-spacing:0.746667pt;}
.ls4_c00475{letter-spacing:0.800000pt;}
.wsb_c00475{word-spacing:-54.018667pt;}
.wsa_c00475{word-spacing:-53.760000pt;}
.wse_c00475{word-spacing:-14.064000pt;}
.wsd_c00475{word-spacing:-13.910933pt;}
.wsc_c00475{word-spacing:-13.906133pt;}
.ws7_c00475{word-spacing:-13.903467pt;}
.ws10_c00475{word-spacing:-13.718933pt;}
.ws5_c00475{word-spacing:-13.460267pt;}
.ws0_c00475{word-spacing:-13.458133pt;}
.ws2_c00475{word-spacing:-13.440000pt;}
.ws3_c00475{word-spacing:-13.289067pt;}
.ws11_c00475{word-spacing:-13.225067pt;}
.ws1_c00475{word-spacing:-13.171200pt;}
.wsf_c00475{word-spacing:-12.966400pt;}
.ws6_c00475{word-spacing:-12.624000pt;}
.ws8_c00475{word-spacing:-12.213333pt;}
.ws4_c00475{word-spacing:-12.160000pt;}
.ws12_c00475{word-spacing:-11.946667pt;}
.ws9_c00475{word-spacing:-11.893333pt;}
.ws13_c00475{word-spacing:0.000000pt;}
._3_c00475{margin-left:-2.003306pt;}
._1_c00475{margin-left:-0.970667pt;}
._0_c00475{width:0.896000pt;}
._2_c00475{width:2.432000pt;}
.fs1_c00475{font-size:53.760000pt;}
.fs0_c00475{font-size:64.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y2a_c00475{bottom:10.876000pt;}
.y7_c00475{bottom:11.200000pt;}
.y29_c00475{bottom:33.950667pt;}
.y3_c00475{bottom:51.552000pt;}
.y28_c00475{bottom:56.990667pt;}
.y2_c00475{bottom:70.112000pt;}
.y27_c00475{bottom:80.030667pt;}
.y8_c00475{bottom:99.876000pt;}
.y26_c00475{bottom:103.070667pt;}
.y25_c00475{bottom:126.110667pt;}
.y24_c00475{bottom:149.177333pt;}
.y23_c00475{bottom:171.897333pt;}
.y22_c00475{bottom:194.937333pt;}
.y21_c00475{bottom:217.977333pt;}
.y20_c00475{bottom:241.017333pt;}
.y1f_c00475{bottom:264.097333pt;}
.y1e_c00475{bottom:287.137333pt;}
.y1d_c00475{bottom:310.177333pt;}
.y1c_c00475{bottom:333.217333pt;}
.y1b_c00475{bottom:355.937333pt;}
.y1a_c00475{bottom:379.004000pt;}
.y19_c00475{bottom:402.044000pt;}
.y18_c00475{bottom:425.084000pt;}
.y17_c00475{bottom:448.124000pt;}
.y16_c00475{bottom:471.190667pt;}
.y15_c00475{bottom:494.230667pt;}
.y14_c00475{bottom:517.270667pt;}
.y13_c00475{bottom:539.990667pt;}
.y12_c00475{bottom:563.030667pt;}
.y11_c00475{bottom:586.110667pt;}
.y10_c00475{bottom:609.150667pt;}
.yf_c00475{bottom:632.190667pt;}
.ye_c00475{bottom:655.230667pt;}
.yd_c00475{bottom:678.270667pt;}
.yc_c00475{bottom:701.017333pt;}
.yb_c00475{bottom:724.057333pt;}
.ya_c00475{bottom:747.097333pt;}
.y9_c00475{bottom:770.137333pt;}
.y6_c00475{bottom:882.493333pt;}
.y5_c00475{bottom:919.333333pt;}
.y4_c00475{bottom:947.173333pt;}
.y1_c00475{bottom:993.573333pt;}
.h4_c00475{height:23.066667pt;}
.h5_c00475{height:52.762500pt;}
.h1_c00475{height:57.375000pt;}
.h3_c00475{height:62.781250pt;}
.h2_c00475{height:62.812500pt;}
.h6_c00475{height:781.960000pt;}
.h0_c00475{height:1056.000000pt;}
.w1_c00475{width:575.880000pt;}
.w0_c00475{width:816.000000pt;}
.x0_c00475{left:0.000000pt;}
.x4_c00475{left:6.708000pt;}
.x3_c00475{left:106.604000pt;}
.x1_c00475{left:113.312000pt;}
.x2_c00475{left:396.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_c00476 {
    display:none;
  }
  .loading-indicator_c00476.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00476 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00476 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00476" -> "#page-container .classname_c00476")
 */
.pf_c00476 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00476 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00476 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00476 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00476 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00476 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00476 {overflow:visible;}
  }
}
.c_c00476 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00476 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00476:after { /* webkit #35443 */
  content: '';
}
.t_c00476:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00476 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00476 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00476 { /* info for Javascript */
  display:none;
}
.l_c00476 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00476 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00476 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00476:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00476 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00476.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00476 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00476;src:url('chunks/assets/font_5fea58223978dd41ce03cb4f.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_6b1a09a5782ee901453e86f3.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_97f663d84025c5ae10ec7f7a.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_9a2e0af8d709f9511f9189d1.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;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_c00476;src:url('chunks/assets/font_4309940480161d17abb905a9.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00476;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00476{font-family:ff6_c00476;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls9_c00476{letter-spacing:-1.728000px;}
.ls5_c00476{letter-spacing:-1.416000px;}
.ls8_c00476{letter-spacing:-0.648000px;}
.ls3_c00476{letter-spacing:0.000000px;}
.ls6_c00476{letter-spacing:0.385800px;}
.ls1_c00476{letter-spacing:0.518400px;}
.ls4_c00476{letter-spacing:0.521400px;}
.ls7_c00476{letter-spacing:0.702000px;}
.ls0_c00476{letter-spacing:0.720000px;}
.ls2_c00476{letter-spacing:1.440000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00476{word-spacing:-72.000000px;}
.ws3_c00476{word-spacing:-18.000000px;}
.ws2_c00476{word-spacing:-15.822000px;}
.ws0_c00476{word-spacing:-15.641400px;}
.ws1_c00476{word-spacing:-15.120000px;}
.ws5_c00476{word-spacing:0.000000px;}
._2_c00476{margin-left:-2.962320px;}
._0_c00476{margin-left:-1.206240px;}
._3_c00476{width:1.021079px;}
._1_c00476{width:2.045280px;}
._4_c00476{width:3.149403px;}
._5_c00476{width:5.135401px;}
._8_c00476{width:6.737038px;}
._6_c00476{width:7.923237px;}
._9_c00476{width:12.226921px;}
._a_c00476{width:13.523042px;}
._7_c00476{width:19.537474px;}
._b_c00476{width:21.960000px;}
._c_c00476{width:24.606127px;}
.fc0_c00476{color:rgb(0,0,0);}
.fs1_c00476{font-size:60.480000px;}
.fs0_c00476{font-size:72.000000px;}
.y0_c00476{bottom:0.000000px;}
.y6_c00476{bottom:12.600000px;}
.y5_c00476{bottom:38.520000px;}
.y3_c00476{bottom:57.996000px;}
.y2_c00476{bottom:78.876000px;}
.y23_c00476{bottom:124.596000px;}
.y22_c00476{bottom:155.595000px;}
.y21_c00476{bottom:186.555000px;}
.y20_c00476{bottom:217.515000px;}
.y1f_c00476{bottom:248.835000px;}
.y1e_c00476{bottom:288.825000px;}
.y1d_c00476{bottom:319.785000px;}
.y1c_c00476{bottom:351.105000px;}
.y1b_c00476{bottom:382.065000px;}
.y1a_c00476{bottom:413.070000px;}
.y19_c00476{bottom:444.030000px;}
.y18_c00476{bottom:475.350000px;}
.y17_c00476{bottom:506.310000px;}
.y16_c00476{bottom:537.300000px;}
.y15_c00476{bottom:568.260000px;}
.y14_c00476{bottom:608.580000px;}
.y13_c00476{bottom:639.540000px;}
.y12_c00476{bottom:670.530000px;}
.y11_c00476{bottom:701.490000px;}
.y10_c00476{bottom:732.450000px;}
.yf_c00476{bottom:763.815000px;}
.ye_c00476{bottom:794.775000px;}
.yd_c00476{bottom:825.735000px;}
.yc_c00476{bottom:856.695000px;}
.yb_c00476{bottom:888.045000px;}
.ya_c00476{bottom:919.005000px;}
.y9_c00476{bottom:949.965000px;}
.y8_c00476{bottom:980.925000px;}
.y7_c00476{bottom:1012.290000px;}
.y4_c00476{bottom:1029.210000px;}
.y1_c00476{bottom:1117.770000px;}
.h2_c00476{height:51.825000px;}
.h3_c00476{height:59.357813px;}
.h1_c00476{height:64.546875px;}
.h4_c00476{height:70.664062px;}
.h5_c00476{height:72.562500px;}
.h0_c00476{height:1188.000000px;}
.w1_c00476{width:647.865000px;}
.w0_c00476{width:918.000000px;}
.x0_c00476{left:0.000000px;}
.x4_c00476{left:7.546500px;}
.x3_c00476{left:119.929500px;}
.x1_c00476{left:127.476000px;}
.x5_c00476{left:178.635000px;}
.x6_c00476{left:180.795000px;}
.x2_c00476{left:445.500000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls9_c00476{letter-spacing:-1.536000pt;}
.ls5_c00476{letter-spacing:-1.258667pt;}
.ls8_c00476{letter-spacing:-0.576000pt;}
.ls3_c00476{letter-spacing:0.000000pt;}
.ls6_c00476{letter-spacing:0.342933pt;}
.ls1_c00476{letter-spacing:0.460800pt;}
.ls4_c00476{letter-spacing:0.463467pt;}
.ls7_c00476{letter-spacing:0.624000pt;}
.ls0_c00476{letter-spacing:0.640000pt;}
.ls2_c00476{letter-spacing:1.280000pt;}
.ws4_c00476{word-spacing:-64.000000pt;}
.ws3_c00476{word-spacing:-16.000000pt;}
.ws2_c00476{word-spacing:-14.064000pt;}
.ws0_c00476{word-spacing:-13.903467pt;}
.ws1_c00476{word-spacing:-13.440000pt;}
.ws5_c00476{word-spacing:0.000000pt;}
._2_c00476{margin-left:-2.633173pt;}
._0_c00476{margin-left:-1.072213pt;}
._3_c00476{width:0.907626pt;}
._1_c00476{width:1.818027pt;}
._4_c00476{width:2.799469pt;}
._5_c00476{width:4.564801pt;}
._8_c00476{width:5.988478pt;}
._6_c00476{width:7.042877pt;}
._9_c00476{width:10.868374pt;}
._a_c00476{width:12.020482pt;}
._7_c00476{width:17.366643pt;}
._b_c00476{width:19.520000pt;}
._c_c00476{width:21.872113pt;}
.fs1_c00476{font-size:53.760000pt;}
.fs0_c00476{font-size:64.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y6_c00476{bottom:11.200000pt;}
.y5_c00476{bottom:34.240000pt;}
.y3_c00476{bottom:51.552000pt;}
.y2_c00476{bottom:70.112000pt;}
.y23_c00476{bottom:110.752000pt;}
.y22_c00476{bottom:138.306667pt;}
.y21_c00476{bottom:165.826667pt;}
.y20_c00476{bottom:193.346667pt;}
.y1f_c00476{bottom:221.186667pt;}
.y1e_c00476{bottom:256.733333pt;}
.y1d_c00476{bottom:284.253333pt;}
.y1c_c00476{bottom:312.093333pt;}
.y1b_c00476{bottom:339.613333pt;}
.y1a_c00476{bottom:367.173333pt;}
.y19_c00476{bottom:394.693333pt;}
.y18_c00476{bottom:422.533333pt;}
.y17_c00476{bottom:450.053333pt;}
.y16_c00476{bottom:477.600000pt;}
.y15_c00476{bottom:505.120000pt;}
.y14_c00476{bottom:540.960000pt;}
.y13_c00476{bottom:568.480000pt;}
.y12_c00476{bottom:596.026667pt;}
.y11_c00476{bottom:623.546667pt;}
.y10_c00476{bottom:651.066667pt;}
.yf_c00476{bottom:678.946667pt;}
.ye_c00476{bottom:706.466667pt;}
.yd_c00476{bottom:733.986667pt;}
.yc_c00476{bottom:761.506667pt;}
.yb_c00476{bottom:789.373333pt;}
.ya_c00476{bottom:816.893333pt;}
.y9_c00476{bottom:844.413333pt;}
.y8_c00476{bottom:871.933333pt;}
.y7_c00476{bottom:899.813333pt;}
.y4_c00476{bottom:914.853333pt;}
.y1_c00476{bottom:993.573333pt;}
.h2_c00476{height:46.066667pt;}
.h3_c00476{height:52.762500pt;}
.h1_c00476{height:57.375000pt;}
.h4_c00476{height:62.812500pt;}
.h5_c00476{height:64.500000pt;}
.h0_c00476{height:1056.000000pt;}
.w1_c00476{width:575.880000pt;}
.w0_c00476{width:816.000000pt;}
.x0_c00476{left:0.000000pt;}
.x4_c00476{left:6.708000pt;}
.x3_c00476{left:106.604000pt;}
.x1_c00476{left:113.312000pt;}
.x5_c00476{left:158.786667pt;}
.x6_c00476{left:160.706667pt;}
.x2_c00476{left:396.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_c00477 {
    display:none;
  }
  .loading-indicator_c00477.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00477 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00477 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00477" -> "#page-container .classname_c00477")
 */
.pf_c00477 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00477 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00477 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00477 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00477 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00477 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00477 {overflow:visible;}
  }
}
.c_c00477 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00477 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00477:after { /* webkit #35443 */
  content: '';
}
.t_c00477:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00477 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00477 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00477 { /* info for Javascript */
  display:none;
}
.l_c00477 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00477 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00477 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00477:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00477 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00477.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00477 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00477;src:url('chunks/assets/font_dc4ff1db7941c6ce59281253.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls0_c00477{letter-spacing:0.000000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:0.000000px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs0_c00477{font-size:72.000000px;}
.y0_c00477{bottom:0.000000px;}
.y3_c00477{bottom:57.996000px;}
.y2_c00477{bottom:78.876000px;}
.y22_c00477{bottom:133.596000px;}
.y21_c00477{bottom:164.955000px;}
.y20_c00477{bottom:195.915000px;}
.y1f_c00477{bottom:226.875000px;}
.y1e_c00477{bottom:257.835000px;}
.y1d_c00477{bottom:289.185000px;}
.y1c_c00477{bottom:320.145000px;}
.y1b_c00477{bottom:351.105000px;}
.y1a_c00477{bottom:382.065000px;}
.y19_c00477{bottom:413.070000px;}
.y18_c00477{bottom:444.390000px;}
.y17_c00477{bottom:475.350000px;}
.y16_c00477{bottom:506.310000px;}
.y15_c00477{bottom:537.300000px;}
.y14_c00477{bottom:568.620000px;}
.y13_c00477{bottom:599.580000px;}
.y12_c00477{bottom:630.540000px;}
.y11_c00477{bottom:661.530000px;}
.y10_c00477{bottom:692.850000px;}
.yf_c00477{bottom:723.810000px;}
.ye_c00477{bottom:754.770000px;}
.yd_c00477{bottom:785.775000px;}
.yc_c00477{bottom:817.095000px;}
.yb_c00477{bottom:848.055000px;}
.ya_c00477{bottom:879.015000px;}
.y9_c00477{bottom:910.005000px;}
.y8_c00477{bottom:941.325000px;}
.y7_c00477{bottom:972.285000px;}
.y6_c00477{bottom:1003.245000px;}
.y5_c00477{bottom:1034.250000px;}
.y4_c00477{bottom:1065.570000px;}
.y1_c00477{bottom:1117.770000px;}
.h1_c00477{height:64.546875px;}
.h2_c00477{height:70.664062px;}
.h0_c00477{height:1188.000000px;}
.w0_c00477{width:918.000000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:127.476000px;}
.x2_c00477{left:445.500000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
.fs0_c00477{font-size:64.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y3_c00477{bottom:51.552000pt;}
.y2_c00477{bottom:70.112000pt;}
.y22_c00477{bottom:118.752000pt;}
.y21_c00477{bottom:146.626667pt;}
.y20_c00477{bottom:174.146667pt;}
.y1f_c00477{bottom:201.666667pt;}
.y1e_c00477{bottom:229.186667pt;}
.y1d_c00477{bottom:257.053333pt;}
.y1c_c00477{bottom:284.573333pt;}
.y1b_c00477{bottom:312.093333pt;}
.y1a_c00477{bottom:339.613333pt;}
.y19_c00477{bottom:367.173333pt;}
.y18_c00477{bottom:395.013333pt;}
.y17_c00477{bottom:422.533333pt;}
.y16_c00477{bottom:450.053333pt;}
.y15_c00477{bottom:477.600000pt;}
.y14_c00477{bottom:505.440000pt;}
.y13_c00477{bottom:532.960000pt;}
.y12_c00477{bottom:560.480000pt;}
.y11_c00477{bottom:588.026667pt;}
.y10_c00477{bottom:615.866667pt;}
.yf_c00477{bottom:643.386667pt;}
.ye_c00477{bottom:670.906667pt;}
.yd_c00477{bottom:698.466667pt;}
.yc_c00477{bottom:726.306667pt;}
.yb_c00477{bottom:753.826667pt;}
.ya_c00477{bottom:781.346667pt;}
.y9_c00477{bottom:808.893333pt;}
.y8_c00477{bottom:836.733333pt;}
.y7_c00477{bottom:864.253333pt;}
.y6_c00477{bottom:891.773333pt;}
.y5_c00477{bottom:919.333333pt;}
.y4_c00477{bottom:947.173333pt;}
.y1_c00477{bottom:993.573333pt;}
.h1_c00477{height:57.375000pt;}
.h2_c00477{height:62.812500pt;}
.h0_c00477{height:1056.000000pt;}
.w0_c00477{width:816.000000pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:113.312000pt;}
.x2_c00477{left:396.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_c00478 {
    display:none;
  }
  .loading-indicator_c00478.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00478 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00478 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00478" -> "#page-container .classname_c00478")
 */
.pf_c00478 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00478 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00478 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00478 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00478 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00478 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00478 {overflow:visible;}
  }
}
.c_c00478 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00478 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00478:after { /* webkit #35443 */
  content: '';
}
.t_c00478:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00478 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00478 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00478 { /* info for Javascript */
  display:none;
}
.l_c00478 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00478 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00478 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00478:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00478 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00478.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00478 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00478;src:url('chunks/assets/font_3be3b2b511e05c0bb3738f68.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_3a41ee7e486254785be3e4f3.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls0_c00478{letter-spacing:0.000000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:0.000000px;}
._0_c00478{margin-left:-1.253951px;}
.fc0_c00478{color:rgb(0,0,0);}
.fs0_c00478{font-size:72.000000px;}
.fs1_c00478{font-size:96.480000px;}
.y0_c00478{bottom:0.000000px;}
.y3_c00478{bottom:57.996000px;}
.y2_c00478{bottom:78.876000px;}
.y22_c00478{bottom:123.516000px;}
.y21_c00478{bottom:154.515000px;}
.y20_c00478{bottom:185.475000px;}
.y1f_c00478{bottom:216.435000px;}
.y1e_c00478{bottom:247.755000px;}
.y1d_c00478{bottom:278.745000px;}
.y1c_c00478{bottom:309.705000px;}
.y1b_c00478{bottom:340.665000px;}
.y1a_c00478{bottom:371.625000px;}
.y19_c00478{bottom:402.990000px;}
.y18_c00478{bottom:433.950000px;}
.y17_c00478{bottom:464.910000px;}
.y16_c00478{bottom:500.550000px;}
.y15_c00478{bottom:537.300000px;}
.y14_c00478{bottom:568.620000px;}
.y13_c00478{bottom:599.580000px;}
.y12_c00478{bottom:630.540000px;}
.y11_c00478{bottom:661.530000px;}
.y10_c00478{bottom:692.850000px;}
.yf_c00478{bottom:723.810000px;}
.ye_c00478{bottom:754.770000px;}
.yd_c00478{bottom:785.775000px;}
.yc_c00478{bottom:817.095000px;}
.yb_c00478{bottom:848.055000px;}
.ya_c00478{bottom:879.015000px;}
.y9_c00478{bottom:910.005000px;}
.y8_c00478{bottom:941.325000px;}
.y7_c00478{bottom:972.285000px;}
.y6_c00478{bottom:1003.245000px;}
.y5_c00478{bottom:1034.250000px;}
.y4_c00478{bottom:1065.570000px;}
.y1_c00478{bottom:1117.770000px;}
.h1_c00478{height:64.546875px;}
.h2_c00478{height:70.664062px;}
.h3_c00478{height:97.233750px;}
.h0_c00478{height:1188.000000px;}
.w0_c00478{width:918.000000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:127.476000px;}
.x3_c00478{left:363.030000px;}
.x2_c00478{left:445.500000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
._0_c00478{margin-left:-1.114623pt;}
.fs0_c00478{font-size:64.000000pt;}
.fs1_c00478{font-size:85.760000pt;}
.y0_c00478{bottom:0.000000pt;}
.y3_c00478{bottom:51.552000pt;}
.y2_c00478{bottom:70.112000pt;}
.y22_c00478{bottom:109.792000pt;}
.y21_c00478{bottom:137.346667pt;}
.y20_c00478{bottom:164.866667pt;}
.y1f_c00478{bottom:192.386667pt;}
.y1e_c00478{bottom:220.226667pt;}
.y1d_c00478{bottom:247.773333pt;}
.y1c_c00478{bottom:275.293333pt;}
.y1b_c00478{bottom:302.813333pt;}
.y1a_c00478{bottom:330.333333pt;}
.y19_c00478{bottom:358.213333pt;}
.y18_c00478{bottom:385.733333pt;}
.y17_c00478{bottom:413.253333pt;}
.y16_c00478{bottom:444.933333pt;}
.y15_c00478{bottom:477.600000pt;}
.y14_c00478{bottom:505.440000pt;}
.y13_c00478{bottom:532.960000pt;}
.y12_c00478{bottom:560.480000pt;}
.y11_c00478{bottom:588.026667pt;}
.y10_c00478{bottom:615.866667pt;}
.yf_c00478{bottom:643.386667pt;}
.ye_c00478{bottom:670.906667pt;}
.yd_c00478{bottom:698.466667pt;}
.yc_c00478{bottom:726.306667pt;}
.yb_c00478{bottom:753.826667pt;}
.ya_c00478{bottom:781.346667pt;}
.y9_c00478{bottom:808.893333pt;}
.y8_c00478{bottom:836.733333pt;}
.y7_c00478{bottom:864.253333pt;}
.y6_c00478{bottom:891.773333pt;}
.y5_c00478{bottom:919.333333pt;}
.y4_c00478{bottom:947.173333pt;}
.y1_c00478{bottom:993.573333pt;}
.h1_c00478{height:57.375000pt;}
.h2_c00478{height:62.812500pt;}
.h3_c00478{height:86.430000pt;}
.h0_c00478{height:1056.000000pt;}
.w0_c00478{width:816.000000pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:113.312000pt;}
.x3_c00478{left:322.693333pt;}
.x2_c00478{left:396.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_c00479 {
    display:none;
  }
  .loading-indicator_c00479.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00479 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00479 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00479" -> "#page-container .classname_c00479")
 */
.pf_c00479 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00479 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00479 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00479 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00479 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00479 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00479 {overflow:visible;}
  }
}
.c_c00479 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00479 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00479:after { /* webkit #35443 */
  content: '';
}
.t_c00479:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00479 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00479 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00479 { /* info for Javascript */
  display:none;
}
.l_c00479 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00479 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00479 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00479:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00479 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00479.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00479 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00479;src:url('chunks/assets/font_02da3bb96ac47d399ec3c7a2.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_bc10457bc93a4cd43dd3f43f.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_0353d1127748faa02012c76f.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00479;src:url('chunks/assets/font_ae6138f00b686ee4699b9ec6.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;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_c00479;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff5_c00479{font-family:ff5_c00479;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00479{vertical-align:-85.080000px;}
.v0_c00479{vertical-align:0.000000px;}
.ls7_c00479{letter-spacing:-2.880000px;}
.ls9_c00479{letter-spacing:-1.440000px;}
.ls6_c00479{letter-spacing:0.000000px;}
.ls4_c00479{letter-spacing:0.120000px;}
.ls8_c00479{letter-spacing:0.720000px;}
.ls5_c00479{letter-spacing:0.792000px;}
.ls2_c00479{letter-spacing:1.440000px;}
.ls3_c00479{letter-spacing:9.360000px;}
.ls1_c00479{letter-spacing:10.800000px;}
.ls0_c00479{letter-spacing:195.276000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-18.000000px;}
.ws1_c00479{word-spacing:0.000000px;}
._f_c00479{margin-left:-3.623976px;}
._6_c00479{margin-left:-2.376000px;}
._1_c00479{margin-left:-1.296000px;}
._0_c00479{width:1.296000px;}
._8_c00479{width:2.304000px;}
._a_c00479{width:3.359976px;}
._c_c00479{width:4.608000px;}
._b_c00479{width:6.432000px;}
._2_c00479{width:8.424000px;}
._3_c00479{width:9.432000px;}
._4_c00479{width:11.268000px;}
._7_c00479{width:12.276000px;}
._5_c00479{width:13.500000px;}
._9_c00479{width:14.592000px;}
._d_c00479{width:16.560000px;}
._e_c00479{width:19.272000px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs0_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y3_c00479{bottom:57.996000px;}
.y2_c00479{bottom:78.876000px;}
.y21_c00479{bottom:121.716000px;}
.y20_c00479{bottom:152.715000px;}
.y1f_c00479{bottom:183.675000px;}
.y1e_c00479{bottom:214.635000px;}
.y1d_c00479{bottom:245.955000px;}
.y1c_c00479{bottom:276.945000px;}
.y1b_c00479{bottom:307.905000px;}
.y1a_c00479{bottom:338.865000px;}
.y19_c00479{bottom:369.825000px;}
.y18_c00479{bottom:401.190000px;}
.y17_c00479{bottom:431.790000px;}
.y16_c00479{bottom:463.110000px;}
.y15_c00479{bottom:494.070000px;}
.y14_c00479{bottom:525.420000px;}
.y13_c00479{bottom:556.380000px;}
.y12_c00479{bottom:587.340000px;}
.y11_c00479{bottom:618.300000px;}
.y10_c00479{bottom:649.650000px;}
.yf_c00479{bottom:680.610000px;}
.ye_c00479{bottom:711.570000px;}
.yd_c00479{bottom:742.530000px;}
.yc_c00479{bottom:773.895000px;}
.yb_c00479{bottom:804.855000px;}
.ya_c00479{bottom:835.815000px;}
.y9_c00479{bottom:887.685000px;}
.y8_c00479{bottom:923.325000px;}
.y7_c00479{bottom:972.285000px;}
.y6_c00479{bottom:1003.245000px;}
.y5_c00479{bottom:1034.250000px;}
.y4_c00479{bottom:1065.570000px;}
.y1_c00479{bottom:1117.770000px;}
.h1_c00479{height:64.546875px;}
.h2_c00479{height:70.664062px;}
.h3_c00479{height:72.562500px;}
.h0_c00479{height:1188.000000px;}
.w0_c00479{width:918.000000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:127.476000px;}
.x4_c00479{left:180.795000px;}
.x3_c00479{left:373.470000px;}
.x2_c00479{left:445.500000px;}
@media print{
.v1_c00479{vertical-align:-75.626667pt;}
.v0_c00479{vertical-align:0.000000pt;}
.ls7_c00479{letter-spacing:-2.560000pt;}
.ls9_c00479{letter-spacing:-1.280000pt;}
.ls6_c00479{letter-spacing:0.000000pt;}
.ls4_c00479{letter-spacing:0.106667pt;}
.ls8_c00479{letter-spacing:0.640000pt;}
.ls5_c00479{letter-spacing:0.704000pt;}
.ls2_c00479{letter-spacing:1.280000pt;}
.ls3_c00479{letter-spacing:8.320000pt;}
.ls1_c00479{letter-spacing:9.600000pt;}
.ls0_c00479{letter-spacing:173.578667pt;}
.ws0_c00479{word-spacing:-16.000000pt;}
.ws1_c00479{word-spacing:0.000000pt;}
._f_c00479{margin-left:-3.221312pt;}
._6_c00479{margin-left:-2.112000pt;}
._1_c00479{margin-left:-1.152000pt;}
._0_c00479{width:1.152000pt;}
._8_c00479{width:2.048000pt;}
._a_c00479{width:2.986645pt;}
._c_c00479{width:4.096000pt;}
._b_c00479{width:5.717333pt;}
._2_c00479{width:7.488000pt;}
._3_c00479{width:8.384000pt;}
._4_c00479{width:10.016000pt;}
._7_c00479{width:10.912000pt;}
._5_c00479{width:12.000000pt;}
._9_c00479{width:12.970667pt;}
._d_c00479{width:14.720000pt;}
._e_c00479{width:17.130667pt;}
.fs0_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y3_c00479{bottom:51.552000pt;}
.y2_c00479{bottom:70.112000pt;}
.y21_c00479{bottom:108.192000pt;}
.y20_c00479{bottom:135.746667pt;}
.y1f_c00479{bottom:163.266667pt;}
.y1e_c00479{bottom:190.786667pt;}
.y1d_c00479{bottom:218.626667pt;}
.y1c_c00479{bottom:246.173333pt;}
.y1b_c00479{bottom:273.693333pt;}
.y1a_c00479{bottom:301.213333pt;}
.y19_c00479{bottom:328.733333pt;}
.y18_c00479{bottom:356.613333pt;}
.y17_c00479{bottom:383.813333pt;}
.y16_c00479{bottom:411.653333pt;}
.y15_c00479{bottom:439.173333pt;}
.y14_c00479{bottom:467.040000pt;}
.y13_c00479{bottom:494.560000pt;}
.y12_c00479{bottom:522.080000pt;}
.y11_c00479{bottom:549.600000pt;}
.y10_c00479{bottom:577.466667pt;}
.yf_c00479{bottom:604.986667pt;}
.ye_c00479{bottom:632.506667pt;}
.yd_c00479{bottom:660.026667pt;}
.yc_c00479{bottom:687.906667pt;}
.yb_c00479{bottom:715.426667pt;}
.ya_c00479{bottom:742.946667pt;}
.y9_c00479{bottom:789.053333pt;}
.y8_c00479{bottom:820.733333pt;}
.y7_c00479{bottom:864.253333pt;}
.y6_c00479{bottom:891.773333pt;}
.y5_c00479{bottom:919.333333pt;}
.y4_c00479{bottom:947.173333pt;}
.y1_c00479{bottom:993.573333pt;}
.h1_c00479{height:57.375000pt;}
.h2_c00479{height:62.812500pt;}
.h3_c00479{height:64.500000pt;}
.h0_c00479{height:1056.000000pt;}
.w0_c00479{width:816.000000pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:113.312000pt;}
.x4_c00479{left:160.706667pt;}
.x3_c00479{left:331.973333pt;}
.x2_c00479{left:396.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_c00480 {
    display:none;
  }
  .loading-indicator_c00480.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00480 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00480 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00480" -> "#page-container .classname_c00480")
 */
.pf_c00480 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00480 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00480 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00480 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00480 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00480 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00480 {overflow:visible;}
  }
}
.c_c00480 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00480 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00480:after { /* webkit #35443 */
  content: '';
}
.t_c00480:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00480 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00480 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00480 { /* info for Javascript */
  display:none;
}
.l_c00480 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00480 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00480 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00480:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00480 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00480.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00480 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00480;src:url('chunks/assets/font_07425fa0e5bcfe6acb91dda0.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_327997db3bb7e6c2e2d34e5c.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_630506f0254fab030c002715.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_ca40ed8e2a7a60878bea24b5.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;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_c00480;src:url('chunks/assets/font_8cbf2083092ede37496213a5.woff2')format("woff");}.ff5_c00480{font-family:ff5_c00480;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00480{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.lsd_c00480{letter-spacing:-0.936000px;}
.lsa_c00480{letter-spacing:-0.864000px;}
.lsb_c00480{letter-spacing:-0.288000px;}
.ls8_c00480{letter-spacing:-0.144000px;}
.ls7_c00480{letter-spacing:0.000000px;}
.ls9_c00480{letter-spacing:0.216000px;}
.ls0_c00480{letter-spacing:0.504000px;}
.lsc_c00480{letter-spacing:0.576000px;}
.ls2_c00480{letter-spacing:0.720000px;}
.ls4_c00480{letter-spacing:1.440000px;}
.ls1_c00480{letter-spacing:3.600000px;}
.ls6_c00480{letter-spacing:6.480000px;}
.ls5_c00480{letter-spacing:10.800000px;}
.ls3_c00480{letter-spacing:22.320000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00480{word-spacing:-18.504000px;}
.ws0_c00480{word-spacing:-18.000000px;}
.ws1_c00480{word-spacing:-17.856000px;}
.ws2_c00480{word-spacing:-17.712000px;}
.ws3_c00480{word-spacing:-17.064000px;}
.ws5_c00480{word-spacing:0.000000px;}
._3_c00480{margin-left:-2.736000px;}
._0_c00480{margin-left:-1.008000px;}
._1_c00480{width:1.512000px;}
._4_c00480{width:2.664000px;}
._e_c00480{width:3.744000px;}
._5_c00480{width:4.824000px;}
._6_c00480{width:5.832000px;}
._2_c00480{width:6.984000px;}
._7_c00480{width:8.724000px;}
._8_c00480{width:10.212000px;}
._11_c00480{width:11.232000px;}
._f_c00480{width:12.240000px;}
._10_c00480{width:14.184000px;}
._15_c00480{width:16.272000px;}
._c_c00480{width:19.368000px;}
._d_c00480{width:21.288000px;}
._17_c00480{width:22.824000px;}
._18_c00480{width:24.216000px;}
._16_c00480{width:27.144000px;}
._13_c00480{width:28.944000px;}
._12_c00480{width:30.024000px;}
._14_c00480{width:31.680000px;}
._b_c00480{width:33.120000px;}
._9_c00480{width:34.920000px;}
._a_c00480{width:35.928000px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs0_c00480{font-size:72.000000px;}
.y0_c00480{bottom:0.000000px;}
.y3_c00480{bottom:57.996000px;}
.y2_c00480{bottom:78.876000px;}
.y22_c00480{bottom:133.596000px;}
.y21_c00480{bottom:164.955000px;}
.y20_c00480{bottom:195.915000px;}
.y1f_c00480{bottom:226.875000px;}
.y1e_c00480{bottom:257.835000px;}
.y1d_c00480{bottom:289.185000px;}
.y1c_c00480{bottom:320.145000px;}
.y1b_c00480{bottom:351.105000px;}
.y1a_c00480{bottom:382.065000px;}
.y19_c00480{bottom:413.070000px;}
.y18_c00480{bottom:444.390000px;}
.y17_c00480{bottom:475.350000px;}
.y16_c00480{bottom:506.310000px;}
.y15_c00480{bottom:537.300000px;}
.y14_c00480{bottom:568.620000px;}
.y13_c00480{bottom:599.580000px;}
.y12_c00480{bottom:630.540000px;}
.y11_c00480{bottom:661.530000px;}
.y10_c00480{bottom:692.850000px;}
.yf_c00480{bottom:723.810000px;}
.ye_c00480{bottom:754.770000px;}
.yd_c00480{bottom:785.775000px;}
.yc_c00480{bottom:817.095000px;}
.yb_c00480{bottom:848.055000px;}
.ya_c00480{bottom:879.015000px;}
.y9_c00480{bottom:910.005000px;}
.y8_c00480{bottom:941.325000px;}
.y7_c00480{bottom:972.285000px;}
.y6_c00480{bottom:1003.245000px;}
.y5_c00480{bottom:1034.250000px;}
.y4_c00480{bottom:1065.570000px;}
.y1_c00480{bottom:1117.770000px;}
.h1_c00480{height:64.546875px;}
.h2_c00480{height:70.664062px;}
.h0_c00480{height:1188.000000px;}
.w0_c00480{width:918.000000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:127.476000px;}
.x3_c00480{left:180.795000px;}
.x2_c00480{left:445.500000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.lsd_c00480{letter-spacing:-0.832000pt;}
.lsa_c00480{letter-spacing:-0.768000pt;}
.lsb_c00480{letter-spacing:-0.256000pt;}
.ls8_c00480{letter-spacing:-0.128000pt;}
.ls7_c00480{letter-spacing:0.000000pt;}
.ls9_c00480{letter-spacing:0.192000pt;}
.ls0_c00480{letter-spacing:0.448000pt;}
.lsc_c00480{letter-spacing:0.512000pt;}
.ls2_c00480{letter-spacing:0.640000pt;}
.ls4_c00480{letter-spacing:1.280000pt;}
.ls1_c00480{letter-spacing:3.200000pt;}
.ls6_c00480{letter-spacing:5.760000pt;}
.ls5_c00480{letter-spacing:9.600000pt;}
.ls3_c00480{letter-spacing:19.840000pt;}
.ws4_c00480{word-spacing:-16.448000pt;}
.ws0_c00480{word-spacing:-16.000000pt;}
.ws1_c00480{word-spacing:-15.872000pt;}
.ws2_c00480{word-spacing:-15.744000pt;}
.ws3_c00480{word-spacing:-15.168000pt;}
.ws5_c00480{word-spacing:0.000000pt;}
._3_c00480{margin-left:-2.432000pt;}
._0_c00480{margin-left:-0.896000pt;}
._1_c00480{width:1.344000pt;}
._4_c00480{width:2.368000pt;}
._e_c00480{width:3.328000pt;}
._5_c00480{width:4.288000pt;}
._6_c00480{width:5.184000pt;}
._2_c00480{width:6.208000pt;}
._7_c00480{width:7.754667pt;}
._8_c00480{width:9.077333pt;}
._11_c00480{width:9.984000pt;}
._f_c00480{width:10.880000pt;}
._10_c00480{width:12.608000pt;}
._15_c00480{width:14.464000pt;}
._c_c00480{width:17.216000pt;}
._d_c00480{width:18.922667pt;}
._17_c00480{width:20.288000pt;}
._18_c00480{width:21.525333pt;}
._16_c00480{width:24.128000pt;}
._13_c00480{width:25.728000pt;}
._12_c00480{width:26.688000pt;}
._14_c00480{width:28.160000pt;}
._b_c00480{width:29.440000pt;}
._9_c00480{width:31.040000pt;}
._a_c00480{width:31.936000pt;}
.fs0_c00480{font-size:64.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y3_c00480{bottom:51.552000pt;}
.y2_c00480{bottom:70.112000pt;}
.y22_c00480{bottom:118.752000pt;}
.y21_c00480{bottom:146.626667pt;}
.y20_c00480{bottom:174.146667pt;}
.y1f_c00480{bottom:201.666667pt;}
.y1e_c00480{bottom:229.186667pt;}
.y1d_c00480{bottom:257.053333pt;}
.y1c_c00480{bottom:284.573333pt;}
.y1b_c00480{bottom:312.093333pt;}
.y1a_c00480{bottom:339.613333pt;}
.y19_c00480{bottom:367.173333pt;}
.y18_c00480{bottom:395.013333pt;}
.y17_c00480{bottom:422.533333pt;}
.y16_c00480{bottom:450.053333pt;}
.y15_c00480{bottom:477.600000pt;}
.y14_c00480{bottom:505.440000pt;}
.y13_c00480{bottom:532.960000pt;}
.y12_c00480{bottom:560.480000pt;}
.y11_c00480{bottom:588.026667pt;}
.y10_c00480{bottom:615.866667pt;}
.yf_c00480{bottom:643.386667pt;}
.ye_c00480{bottom:670.906667pt;}
.yd_c00480{bottom:698.466667pt;}
.yc_c00480{bottom:726.306667pt;}
.yb_c00480{bottom:753.826667pt;}
.ya_c00480{bottom:781.346667pt;}
.y9_c00480{bottom:808.893333pt;}
.y8_c00480{bottom:836.733333pt;}
.y7_c00480{bottom:864.253333pt;}
.y6_c00480{bottom:891.773333pt;}
.y5_c00480{bottom:919.333333pt;}
.y4_c00480{bottom:947.173333pt;}
.y1_c00480{bottom:993.573333pt;}
.h1_c00480{height:57.375000pt;}
.h2_c00480{height:62.812500pt;}
.h0_c00480{height:1056.000000pt;}
.w0_c00480{width:816.000000pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:113.312000pt;}
.x3_c00480{left:160.706667pt;}
.x2_c00480{left:396.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_c00481 {
    display:none;
  }
  .loading-indicator_c00481.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00481 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00481 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00481" -> "#page-container .classname_c00481")
 */
.pf_c00481 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00481 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00481 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00481 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00481 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00481 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00481 {overflow:visible;}
  }
}
.c_c00481 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00481 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00481:after { /* webkit #35443 */
  content: '';
}
.t_c00481:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00481 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00481 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00481 { /* info for Javascript */
  display:none;
}
.l_c00481 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00481 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00481 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00481:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00481 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00481.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00481 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00481{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00481;src:url('chunks/assets/font_bac79b473b2339b1eaa8fa55.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_bb97293caf094f8e7782555f.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_ce7733b1cabeb67668deb371.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00481;src:url('chunks/assets/font_f8ff01d5bde551fd126dd186.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00481;src:url('chunks/assets/font_f379dcea75df4ef2e993463a.woff2')format("woff");}.ff5_c00481{font-family:ff5_c00481;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_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls8_c00481{letter-spacing:-2.880000px;}
.ls7_c00481{letter-spacing:-1.728000px;}
.ls6_c00481{letter-spacing:0.000000px;}
.ls5_c00481{letter-spacing:0.504000px;}
.ls9_c00481{letter-spacing:1.440000px;}
.ls4_c00481{letter-spacing:2.160000px;}
.ls0_c00481{letter-spacing:3.600000px;}
.ls2_c00481{letter-spacing:5.040000px;}
.ls1_c00481{letter-spacing:9.372000px;}
.ls3_c00481{letter-spacing:10.800000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:-18.000000px;}
.ws1_c00481{word-spacing:0.000000px;}
._3_c00481{margin-left:-2.736000px;}
._2_c00481{margin-left:-1.440000px;}
._1_c00481{width:1.080000px;}
._6_c00481{width:2.448000px;}
._b_c00481{width:3.672000px;}
._15_c00481{width:4.896000px;}
._16_c00481{width:6.624000px;}
._11_c00481{width:7.644000px;}
._10_c00481{width:9.432000px;}
._13_c00481{width:11.712000px;}
._12_c00481{width:13.116000px;}
._14_c00481{width:14.256000px;}
._17_c00481{width:15.336000px;}
._18_c00481{width:16.416000px;}
._19_c00481{width:21.384000px;}
._c_c00481{width:22.752000px;}
._d_c00481{width:23.904000px;}
._e_c00481{width:25.344000px;}
._a_c00481{width:30.096000px;}
._8_c00481{width:31.176000px;}
._9_c00481{width:32.316000px;}
._f_c00481{width:33.852000px;}
._0_c00481{width:58.824000px;}
._4_c00481{width:59.976000px;}
._5_c00481{width:61.128000px;}
._7_c00481{width:62.424000px;}
.fc0_c00481{color:rgb(0,0,0);}
.fs0_c00481{font-size:72.000000px;}
.y0_c00481{bottom:0.000000px;}
.y3_c00481{bottom:57.996000px;}
.y2_c00481{bottom:78.876000px;}
.y22_c00481{bottom:133.596000px;}
.y21_c00481{bottom:164.955000px;}
.y20_c00481{bottom:195.915000px;}
.y1f_c00481{bottom:226.875000px;}
.y1e_c00481{bottom:257.835000px;}
.y1d_c00481{bottom:289.185000px;}
.y1c_c00481{bottom:320.145000px;}
.y1b_c00481{bottom:351.105000px;}
.y1a_c00481{bottom:382.065000px;}
.y19_c00481{bottom:413.070000px;}
.y18_c00481{bottom:444.390000px;}
.y17_c00481{bottom:475.350000px;}
.y16_c00481{bottom:506.310000px;}
.y15_c00481{bottom:537.300000px;}
.y14_c00481{bottom:568.620000px;}
.y13_c00481{bottom:599.580000px;}
.y12_c00481{bottom:630.540000px;}
.y11_c00481{bottom:661.530000px;}
.y10_c00481{bottom:692.850000px;}
.yf_c00481{bottom:723.810000px;}
.ye_c00481{bottom:754.770000px;}
.yd_c00481{bottom:785.775000px;}
.yc_c00481{bottom:817.095000px;}
.yb_c00481{bottom:848.055000px;}
.ya_c00481{bottom:879.015000px;}
.y9_c00481{bottom:910.005000px;}
.y8_c00481{bottom:941.325000px;}
.y7_c00481{bottom:972.285000px;}
.y6_c00481{bottom:1003.245000px;}
.y5_c00481{bottom:1034.250000px;}
.y4_c00481{bottom:1065.570000px;}
.y1_c00481{bottom:1117.770000px;}
.h1_c00481{height:64.546875px;}
.h2_c00481{height:70.664062px;}
.h0_c00481{height:1188.000000px;}
.w0_c00481{width:918.000000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:127.476000px;}
.x3_c00481{left:180.795000px;}
.x2_c00481{left:445.500000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls8_c00481{letter-spacing:-2.560000pt;}
.ls7_c00481{letter-spacing:-1.536000pt;}
.ls6_c00481{letter-spacing:0.000000pt;}
.ls5_c00481{letter-spacing:0.448000pt;}
.ls9_c00481{letter-spacing:1.280000pt;}
.ls4_c00481{letter-spacing:1.920000pt;}
.ls0_c00481{letter-spacing:3.200000pt;}
.ls2_c00481{letter-spacing:4.480000pt;}
.ls1_c00481{letter-spacing:8.330667pt;}
.ls3_c00481{letter-spacing:9.600000pt;}
.ws0_c00481{word-spacing:-16.000000pt;}
.ws1_c00481{word-spacing:0.000000pt;}
._3_c00481{margin-left:-2.432000pt;}
._2_c00481{margin-left:-1.280000pt;}
._1_c00481{width:0.960000pt;}
._6_c00481{width:2.176000pt;}
._b_c00481{width:3.264000pt;}
._15_c00481{width:4.352000pt;}
._16_c00481{width:5.888000pt;}
._11_c00481{width:6.794667pt;}
._10_c00481{width:8.384000pt;}
._13_c00481{width:10.410667pt;}
._12_c00481{width:11.658667pt;}
._14_c00481{width:12.672000pt;}
._17_c00481{width:13.632000pt;}
._18_c00481{width:14.592000pt;}
._19_c00481{width:19.008000pt;}
._c_c00481{width:20.224000pt;}
._d_c00481{width:21.248000pt;}
._e_c00481{width:22.528000pt;}
._a_c00481{width:26.752000pt;}
._8_c00481{width:27.712000pt;}
._9_c00481{width:28.725333pt;}
._f_c00481{width:30.090667pt;}
._0_c00481{width:52.288000pt;}
._4_c00481{width:53.312000pt;}
._5_c00481{width:54.336000pt;}
._7_c00481{width:55.488000pt;}
.fs0_c00481{font-size:64.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y3_c00481{bottom:51.552000pt;}
.y2_c00481{bottom:70.112000pt;}
.y22_c00481{bottom:118.752000pt;}
.y21_c00481{bottom:146.626667pt;}
.y20_c00481{bottom:174.146667pt;}
.y1f_c00481{bottom:201.666667pt;}
.y1e_c00481{bottom:229.186667pt;}
.y1d_c00481{bottom:257.053333pt;}
.y1c_c00481{bottom:284.573333pt;}
.y1b_c00481{bottom:312.093333pt;}
.y1a_c00481{bottom:339.613333pt;}
.y19_c00481{bottom:367.173333pt;}
.y18_c00481{bottom:395.013333pt;}
.y17_c00481{bottom:422.533333pt;}
.y16_c00481{bottom:450.053333pt;}
.y15_c00481{bottom:477.600000pt;}
.y14_c00481{bottom:505.440000pt;}
.y13_c00481{bottom:532.960000pt;}
.y12_c00481{bottom:560.480000pt;}
.y11_c00481{bottom:588.026667pt;}
.y10_c00481{bottom:615.866667pt;}
.yf_c00481{bottom:643.386667pt;}
.ye_c00481{bottom:670.906667pt;}
.yd_c00481{bottom:698.466667pt;}
.yc_c00481{bottom:726.306667pt;}
.yb_c00481{bottom:753.826667pt;}
.ya_c00481{bottom:781.346667pt;}
.y9_c00481{bottom:808.893333pt;}
.y8_c00481{bottom:836.733333pt;}
.y7_c00481{bottom:864.253333pt;}
.y6_c00481{bottom:891.773333pt;}
.y5_c00481{bottom:919.333333pt;}
.y4_c00481{bottom:947.173333pt;}
.y1_c00481{bottom:993.573333pt;}
.h1_c00481{height:57.375000pt;}
.h2_c00481{height:62.812500pt;}
.h0_c00481{height:1056.000000pt;}
.w0_c00481{width:816.000000pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:113.312000pt;}
.x3_c00481{left:160.706667pt;}
.x2_c00481{left:396.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_c00482 {
    display:none;
  }
  .loading-indicator_c00482.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00482 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00482 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00482" -> "#page-container .classname_c00482")
 */
.pf_c00482 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00482 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00482 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00482 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00482 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00482 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00482 {overflow:visible;}
  }
}
.c_c00482 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00482 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00482:after { /* webkit #35443 */
  content: '';
}
.t_c00482:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00482 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00482 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00482 { /* info for Javascript */
  display:none;
}
.l_c00482 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00482 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00482 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00482:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00482 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00482.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00482 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00482;src:url('chunks/assets/font_75f1f7eb8120c5a4ea727220.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_1a91534f4fc728da3fe5da94.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_2ebb70a6fd2197111adc9a8f.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_582177888afaf1f1acf211d3.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;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_c00482;src:url('chunks/assets/font_13afcf7dd9f28909b0202b8d.woff2')format("woff");}.ff5_c00482{font-family:ff5_c00482;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.lsc_c00482{letter-spacing:-1.296000px;}
.ls9_c00482{letter-spacing:-0.864000px;}
.lsb_c00482{letter-spacing:-0.288000px;}
.ls7_c00482{letter-spacing:0.000000px;}
.ls4_c00482{letter-spacing:0.504000px;}
.lsa_c00482{letter-spacing:0.576000px;}
.ls1_c00482{letter-spacing:0.720000px;}
.ls8_c00482{letter-spacing:1.944000px;}
.ls6_c00482{letter-spacing:3.600000px;}
.ls5_c00482{letter-spacing:3.780000px;}
.ls2_c00482{letter-spacing:5.040000px;}
.ls0_c00482{letter-spacing:13.680000px;}
.ls3_c00482{letter-spacing:22.320000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:-18.000000px;}
.ws1_c00482{word-spacing:-17.712000px;}
.ws2_c00482{word-spacing:0.000000px;}
._3_c00482{margin-left:-3.072000px;}
._0_c00482{margin-left:-1.728000px;}
._1_c00482{width:1.800000px;}
._6_c00482{width:3.696000px;}
._7_c00482{width:5.292000px;}
._f_c00482{width:6.348000px;}
._4_c00482{width:7.536000px;}
._5_c00482{width:8.568000px;}
._8_c00482{width:10.152000px;}
._9_c00482{width:11.616000px;}
._a_c00482{width:12.936000px;}
._2_c00482{width:14.616000px;}
._b_c00482{width:15.672000px;}
._d_c00482{width:16.728000px;}
._e_c00482{width:20.220000px;}
._10_c00482{width:21.312000px;}
._11_c00482{width:22.584000px;}
._c_c00482{width:23.832000px;}
._12_c00482{width:25.512000px;}
.fc0_c00482{color:rgb(0,0,0);}
.fs0_c00482{font-size:72.000000px;}
.y0_c00482{bottom:0.000000px;}
.y3_c00482{bottom:57.996000px;}
.y2_c00482{bottom:78.876000px;}
.y22_c00482{bottom:124.596000px;}
.y21_c00482{bottom:155.955000px;}
.y20_c00482{bottom:186.915000px;}
.y1f_c00482{bottom:217.875000px;}
.y1e_c00482{bottom:248.835000px;}
.y1d_c00482{bottom:280.185000px;}
.y1c_c00482{bottom:311.145000px;}
.y1b_c00482{bottom:342.105000px;}
.y1a_c00482{bottom:373.065000px;}
.y19_c00482{bottom:404.070000px;}
.y18_c00482{bottom:435.390000px;}
.y17_c00482{bottom:466.350000px;}
.y16_c00482{bottom:497.310000px;}
.y15_c00482{bottom:528.300000px;}
.y14_c00482{bottom:559.620000px;}
.y13_c00482{bottom:590.580000px;}
.y12_c00482{bottom:621.540000px;}
.y11_c00482{bottom:652.530000px;}
.y10_c00482{bottom:683.850000px;}
.yf_c00482{bottom:714.810000px;}
.ye_c00482{bottom:745.770000px;}
.yd_c00482{bottom:785.775000px;}
.yc_c00482{bottom:817.095000px;}
.yb_c00482{bottom:848.055000px;}
.ya_c00482{bottom:879.015000px;}
.y9_c00482{bottom:910.005000px;}
.y8_c00482{bottom:941.325000px;}
.y7_c00482{bottom:972.285000px;}
.y6_c00482{bottom:1003.245000px;}
.y5_c00482{bottom:1034.250000px;}
.y4_c00482{bottom:1065.570000px;}
.y1_c00482{bottom:1117.770000px;}
.h1_c00482{height:64.546875px;}
.h2_c00482{height:70.664062px;}
.h0_c00482{height:1188.000000px;}
.w0_c00482{width:918.000000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:127.476000px;}
.x3_c00482{left:180.795000px;}
.x2_c00482{left:445.500000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.lsc_c00482{letter-spacing:-1.152000pt;}
.ls9_c00482{letter-spacing:-0.768000pt;}
.lsb_c00482{letter-spacing:-0.256000pt;}
.ls7_c00482{letter-spacing:0.000000pt;}
.ls4_c00482{letter-spacing:0.448000pt;}
.lsa_c00482{letter-spacing:0.512000pt;}
.ls1_c00482{letter-spacing:0.640000pt;}
.ls8_c00482{letter-spacing:1.728000pt;}
.ls6_c00482{letter-spacing:3.200000pt;}
.ls5_c00482{letter-spacing:3.360000pt;}
.ls2_c00482{letter-spacing:4.480000pt;}
.ls0_c00482{letter-spacing:12.160000pt;}
.ls3_c00482{letter-spacing:19.840000pt;}
.ws0_c00482{word-spacing:-16.000000pt;}
.ws1_c00482{word-spacing:-15.744000pt;}
.ws2_c00482{word-spacing:0.000000pt;}
._3_c00482{margin-left:-2.730667pt;}
._0_c00482{margin-left:-1.536000pt;}
._1_c00482{width:1.600000pt;}
._6_c00482{width:3.285333pt;}
._7_c00482{width:4.704000pt;}
._f_c00482{width:5.642667pt;}
._4_c00482{width:6.698667pt;}
._5_c00482{width:7.616000pt;}
._8_c00482{width:9.024000pt;}
._9_c00482{width:10.325333pt;}
._a_c00482{width:11.498667pt;}
._2_c00482{width:12.992000pt;}
._b_c00482{width:13.930667pt;}
._d_c00482{width:14.869333pt;}
._e_c00482{width:17.973333pt;}
._10_c00482{width:18.944000pt;}
._11_c00482{width:20.074667pt;}
._c_c00482{width:21.184000pt;}
._12_c00482{width:22.677333pt;}
.fs0_c00482{font-size:64.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y3_c00482{bottom:51.552000pt;}
.y2_c00482{bottom:70.112000pt;}
.y22_c00482{bottom:110.752000pt;}
.y21_c00482{bottom:138.626667pt;}
.y20_c00482{bottom:166.146667pt;}
.y1f_c00482{bottom:193.666667pt;}
.y1e_c00482{bottom:221.186667pt;}
.y1d_c00482{bottom:249.053333pt;}
.y1c_c00482{bottom:276.573333pt;}
.y1b_c00482{bottom:304.093333pt;}
.y1a_c00482{bottom:331.613333pt;}
.y19_c00482{bottom:359.173333pt;}
.y18_c00482{bottom:387.013333pt;}
.y17_c00482{bottom:414.533333pt;}
.y16_c00482{bottom:442.053333pt;}
.y15_c00482{bottom:469.600000pt;}
.y14_c00482{bottom:497.440000pt;}
.y13_c00482{bottom:524.960000pt;}
.y12_c00482{bottom:552.480000pt;}
.y11_c00482{bottom:580.026667pt;}
.y10_c00482{bottom:607.866667pt;}
.yf_c00482{bottom:635.386667pt;}
.ye_c00482{bottom:662.906667pt;}
.yd_c00482{bottom:698.466667pt;}
.yc_c00482{bottom:726.306667pt;}
.yb_c00482{bottom:753.826667pt;}
.ya_c00482{bottom:781.346667pt;}
.y9_c00482{bottom:808.893333pt;}
.y8_c00482{bottom:836.733333pt;}
.y7_c00482{bottom:864.253333pt;}
.y6_c00482{bottom:891.773333pt;}
.y5_c00482{bottom:919.333333pt;}
.y4_c00482{bottom:947.173333pt;}
.y1_c00482{bottom:993.573333pt;}
.h1_c00482{height:57.375000pt;}
.h2_c00482{height:62.812500pt;}
.h0_c00482{height:1056.000000pt;}
.w0_c00482{width:816.000000pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:113.312000pt;}
.x3_c00482{left:160.706667pt;}
.x2_c00482{left:396.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_c00483 {
    display:none;
  }
  .loading-indicator_c00483.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00483 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00483 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00483" -> "#page-container .classname_c00483")
 */
.pf_c00483 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00483 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00483 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00483 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00483 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00483 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00483 {overflow:visible;}
  }
}
.c_c00483 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00483 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00483:after { /* webkit #35443 */
  content: '';
}
.t_c00483:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00483 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00483 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00483 { /* info for Javascript */
  display:none;
}
.l_c00483 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00483 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00483 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00483:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00483 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00483.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00483 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00483;src:url('chunks/assets/font_8ec95844743b9b579f2de26e.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_7477a6461674b9fe30c7b1c8.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_62420fe80071fcc63d66ef12.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;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_c00483;src:url('chunks/assets/font_6430047354b0defd83027fb6.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00483;src:url('chunks/assets/font_92a5265bc145f1d805bf4e1f.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00483;src:url('chunks/assets/font_133b60b103936d1fe3435d15.woff2')format("woff");}.ff6_c00483{font-family:ff6_c00483;line-height:1.117188;font-style:normal;font-weight: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_c00483;src:url('chunks/assets/font_02c3d5e087a348c65198065c.woff2')format("woff");}.ff7_c00483{font-family:ff7_c00483;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls4_c00483{letter-spacing:-2.880000px;}
.ls3_c00483{letter-spacing:-0.648000px;}
.ls2_c00483{letter-spacing:0.000000px;}
.ls1_c00483{letter-spacing:0.720000px;}
.ls0_c00483{letter-spacing:12.240000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00483{word-spacing:-60.480000px;}
.ws0_c00483{word-spacing:-18.000000px;}
.ws2_c00483{word-spacing:0.000000px;}
._1_c00483{margin-left:-2.736000px;}
._4_c00483{margin-left:-1.248000px;}
._2_c00483{width:1.368000px;}
._5_c00483{width:2.628024px;}
._6_c00483{width:3.635928px;}
._7_c00483{width:5.592000px;}
._3_c00483{width:6.984000px;}
._0_c00483{width:8.424000px;}
._a_c00483{width:9.696048px;}
._b_c00483{width:10.727904px;}
._c_c00483{width:12.336000px;}
._8_c00483{width:13.488000px;}
._9_c00483{width:14.999952px;}
._d_c00483{width:19.080000px;}
._e_c00483{width:20.400000px;}
._f_c00483{width:21.456024px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs2_c00483{font-size:38.880000px;}
.fs1_c00483{font-size:47.520000px;}
.fs3_c00483{font-size:60.480000px;}
.fs0_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y3_c00483{bottom:57.996000px;}
.y2_c00483{bottom:78.876000px;}
.y24_c00483{bottom:130.716000px;}
.y23_c00483{bottom:137.556000px;}
.y22_c00483{bottom:148.356000px;}
.y21_c00483{bottom:186.915000px;}
.y1f_c00483{bottom:217.875000px;}
.y20_c00483{bottom:226.155000px;}
.y1e_c00483{bottom:257.475000px;}
.y1d_c00483{bottom:288.825000px;}
.y1c_c00483{bottom:320.145000px;}
.y1b_c00483{bottom:351.105000px;}
.y1a_c00483{bottom:382.065000px;}
.y19_c00483{bottom:413.070000px;}
.y18_c00483{bottom:444.390000px;}
.y17_c00483{bottom:475.350000px;}
.y16_c00483{bottom:506.310000px;}
.y15_c00483{bottom:537.300000px;}
.y14_c00483{bottom:568.620000px;}
.y13_c00483{bottom:599.580000px;}
.y12_c00483{bottom:630.540000px;}
.y11_c00483{bottom:661.530000px;}
.y10_c00483{bottom:692.850000px;}
.yf_c00483{bottom:723.810000px;}
.ye_c00483{bottom:754.770000px;}
.yd_c00483{bottom:785.775000px;}
.yc_c00483{bottom:817.095000px;}
.yb_c00483{bottom:848.055000px;}
.ya_c00483{bottom:879.015000px;}
.y9_c00483{bottom:910.005000px;}
.y8_c00483{bottom:941.325000px;}
.y7_c00483{bottom:972.285000px;}
.y6_c00483{bottom:1003.245000px;}
.y5_c00483{bottom:1034.250000px;}
.y4_c00483{bottom:1065.570000px;}
.y1_c00483{bottom:1117.770000px;}
.h6_c00483{height:34.855313px;}
.h5_c00483{height:46.638281px;}
.h7_c00483{height:54.514688px;}
.h1_c00483{height:64.546875px;}
.h2_c00483{height:70.664062px;}
.h3_c00483{height:72.562500px;}
.h4_c00483{height:1187.995500px;}
.h0_c00483{height:1188.000000px;}
.w1_c00483{width:917.997000px;}
.w0_c00483{width:918.000000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:127.476000px;}
.x7_c00483{left:142.596000px;}
.x3_c00483{left:180.795000px;}
.x6_c00483{left:343.590000px;}
.x2_c00483{left:445.500000px;}
.x4_c00483{left:650.772000px;}
.x5_c00483{left:669.135000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls4_c00483{letter-spacing:-2.560000pt;}
.ls3_c00483{letter-spacing:-0.576000pt;}
.ls2_c00483{letter-spacing:0.000000pt;}
.ls1_c00483{letter-spacing:0.640000pt;}
.ls0_c00483{letter-spacing:10.880000pt;}
.ws1_c00483{word-spacing:-53.760000pt;}
.ws0_c00483{word-spacing:-16.000000pt;}
.ws2_c00483{word-spacing:0.000000pt;}
._1_c00483{margin-left:-2.432000pt;}
._4_c00483{margin-left:-1.109333pt;}
._2_c00483{width:1.216000pt;}
._5_c00483{width:2.336021pt;}
._6_c00483{width:3.231936pt;}
._7_c00483{width:4.970667pt;}
._3_c00483{width:6.208000pt;}
._0_c00483{width:7.488000pt;}
._a_c00483{width:8.618709pt;}
._b_c00483{width:9.535915pt;}
._c_c00483{width:10.965333pt;}
._8_c00483{width:11.989333pt;}
._9_c00483{width:13.333291pt;}
._d_c00483{width:16.960000pt;}
._e_c00483{width:18.133333pt;}
._f_c00483{width:19.072021pt;}
.fs2_c00483{font-size:34.560000pt;}
.fs1_c00483{font-size:42.240000pt;}
.fs3_c00483{font-size:53.760000pt;}
.fs0_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y3_c00483{bottom:51.552000pt;}
.y2_c00483{bottom:70.112000pt;}
.y24_c00483{bottom:116.192000pt;}
.y23_c00483{bottom:122.272000pt;}
.y22_c00483{bottom:131.872000pt;}
.y21_c00483{bottom:166.146667pt;}
.y1f_c00483{bottom:193.666667pt;}
.y20_c00483{bottom:201.026667pt;}
.y1e_c00483{bottom:228.866667pt;}
.y1d_c00483{bottom:256.733333pt;}
.y1c_c00483{bottom:284.573333pt;}
.y1b_c00483{bottom:312.093333pt;}
.y1a_c00483{bottom:339.613333pt;}
.y19_c00483{bottom:367.173333pt;}
.y18_c00483{bottom:395.013333pt;}
.y17_c00483{bottom:422.533333pt;}
.y16_c00483{bottom:450.053333pt;}
.y15_c00483{bottom:477.600000pt;}
.y14_c00483{bottom:505.440000pt;}
.y13_c00483{bottom:532.960000pt;}
.y12_c00483{bottom:560.480000pt;}
.y11_c00483{bottom:588.026667pt;}
.y10_c00483{bottom:615.866667pt;}
.yf_c00483{bottom:643.386667pt;}
.ye_c00483{bottom:670.906667pt;}
.yd_c00483{bottom:698.466667pt;}
.yc_c00483{bottom:726.306667pt;}
.yb_c00483{bottom:753.826667pt;}
.ya_c00483{bottom:781.346667pt;}
.y9_c00483{bottom:808.893333pt;}
.y8_c00483{bottom:836.733333pt;}
.y7_c00483{bottom:864.253333pt;}
.y6_c00483{bottom:891.773333pt;}
.y5_c00483{bottom:919.333333pt;}
.y4_c00483{bottom:947.173333pt;}
.y1_c00483{bottom:993.573333pt;}
.h6_c00483{height:30.982500pt;}
.h5_c00483{height:41.456250pt;}
.h7_c00483{height:48.457500pt;}
.h1_c00483{height:57.375000pt;}
.h2_c00483{height:62.812500pt;}
.h3_c00483{height:64.500000pt;}
.h4_c00483{height:1055.996000pt;}
.h0_c00483{height:1056.000000pt;}
.w1_c00483{width:815.997333pt;}
.w0_c00483{width:816.000000pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:113.312000pt;}
.x7_c00483{left:126.752000pt;}
.x3_c00483{left:160.706667pt;}
.x6_c00483{left:305.413333pt;}
.x2_c00483{left:396.000000pt;}
.x4_c00483{left:578.464000pt;}
.x5_c00483{left:594.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00484 {
    display:none;
  }
  .loading-indicator_c00484.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00484 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00484 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00484" -> "#page-container .classname_c00484")
 */
.pf_c00484 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00484 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00484 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00484 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00484 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00484 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00484 {overflow:visible;}
  }
}
.c_c00484 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00484 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00484:after { /* webkit #35443 */
  content: '';
}
.t_c00484:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00484 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00484 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00484 { /* info for Javascript */
  display:none;
}
.l_c00484 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00484 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00484 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00484:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00484 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00484.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00484 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00484;src:url('chunks/assets/font_bc130e05f631f17d79a19011.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_3ebc670f57792a253942841e.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_1e4adaa869ce05ee6cf93a80.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00484;src:url('chunks/assets/font_5f8179a2450b7f4bfcbfac13.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;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_c00484;src:url('chunks/assets/font_55c24a1d98eeb5fdbb42c400.woff2')format("woff");}.ff5_c00484{font-family:ff5_c00484;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00484;src:url('chunks/assets/font_fcab96fef85e25435cf79fd0.woff2')format("woff");}.ff6_c00484{font-family:ff6_c00484;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls8_c00484{letter-spacing:-0.466800px;}
.ls5_c00484{letter-spacing:-0.288000px;}
.ls4_c00484{letter-spacing:0.000000px;}
.ls9_c00484{letter-spacing:0.466800px;}
.lsa_c00484{letter-spacing:0.486600px;}
.ls3_c00484{letter-spacing:0.506880px;}
.ls1_c00484{letter-spacing:0.720000px;}
.ls6_c00484{letter-spacing:0.792000px;}
.ls2_c00484{letter-spacing:0.864000px;}
.ls7_c00484{letter-spacing:1.440000px;}
.ls0_c00484{letter-spacing:9.360000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00484{word-spacing:-60.480000px;}
.ws0_c00484{word-spacing:-18.000000px;}
.ws3_c00484{word-spacing:-15.606600px;}
.ws2_c00484{word-spacing:-15.586800px;}
.ws1_c00484{word-spacing:-15.120000px;}
.ws5_c00484{word-spacing:0.000000px;}
._3_c00484{margin-left:-2.736000px;}
._0_c00484{margin-left:-1.224000px;}
._2_c00484{width:1.080000px;}
._5_c00484{width:2.952000px;}
._8_c00484{width:4.032000px;}
._7_c00484{width:5.184000px;}
._1_c00484{width:6.408000px;}
._4_c00484{width:7.848000px;}
._c_c00484{width:8.928000px;}
._b_c00484{width:10.080000px;}
._10_c00484{width:11.664000px;}
._11_c00484{width:13.032000px;}
._d_c00484{width:15.036000px;}
._6_c00484{width:16.272000px;}
._12_c00484{width:17.384380px;}
._f_c00484{width:19.056000px;}
._a_c00484{width:20.088000px;}
._e_c00484{width:21.096000px;}
._9_c00484{width:22.248000px;}
.fc0_c00484{color:rgb(0,0,0);}
.fs2_c00484{font-size:38.880000px;}
.fs1_c00484{font-size:47.520000px;}
.fs3_c00484{font-size:60.480000px;}
.fs0_c00484{font-size:72.000000px;}
.y0_c00484{bottom:0.000000px;}
.y3_c00484{bottom:57.996000px;}
.y2_c00484{bottom:78.876000px;}
.y27_c00484{bottom:130.716000px;}
.y26_c00484{bottom:147.996000px;}
.y25_c00484{bottom:165.315000px;}
.y24_c00484{bottom:172.155000px;}
.y23_c00484{bottom:182.595000px;}
.y22_c00484{bottom:189.435000px;}
.y21_c00484{bottom:200.235000px;}
.y20_c00484{bottom:239.835000px;}
.y1f_c00484{bottom:271.155000px;}
.y1e_c00484{bottom:302.145000px;}
.y1d_c00484{bottom:333.105000px;}
.y1b_c00484{bottom:364.065000px;}
.y1c_c00484{bottom:372.345000px;}
.y1a_c00484{bottom:395.070000px;}
.y19_c00484{bottom:426.390000px;}
.y18_c00484{bottom:466.350000px;}
.y17_c00484{bottom:497.310000px;}
.y16_c00484{bottom:528.300000px;}
.y15_c00484{bottom:559.620000px;}
.y14_c00484{bottom:599.580000px;}
.y13_c00484{bottom:630.540000px;}
.y12_c00484{bottom:661.530000px;}
.y11_c00484{bottom:692.850000px;}
.y10_c00484{bottom:723.810000px;}
.yf_c00484{bottom:754.770000px;}
.ye_c00484{bottom:785.775000px;}
.yd_c00484{bottom:817.095000px;}
.yc_c00484{bottom:848.055000px;}
.yb_c00484{bottom:879.015000px;}
.ya_c00484{bottom:910.005000px;}
.y9_c00484{bottom:941.325000px;}
.y8_c00484{bottom:972.285000px;}
.y6_c00484{bottom:1003.245000px;}
.y7_c00484{bottom:1011.570000px;}
.y5_c00484{bottom:1034.250000px;}
.y4_c00484{bottom:1065.570000px;}
.y1_c00484{bottom:1117.770000px;}
.h7_c00484{height:34.855313px;}
.h5_c00484{height:46.615078px;}
.h6_c00484{height:46.638281px;}
.h9_c00484{height:54.219375px;}
.h8_c00484{height:54.514688px;}
.h1_c00484{height:64.546875px;}
.h3_c00484{height:70.628906px;}
.h2_c00484{height:70.664062px;}
.h4_c00484{height:1187.995500px;}
.h0_c00484{height:1188.000000px;}
.w1_c00484{width:917.997000px;}
.w0_c00484{width:918.000000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:127.476000px;}
.x9_c00484{left:142.596000px;}
.x5_c00484{left:180.795000px;}
.x3_c00484{left:230.832000px;}
.x4_c00484{left:249.225000px;}
.x6_c00484{left:310.062000px;}
.x7_c00484{left:328.425000px;}
.x8_c00484{left:343.590000px;}
.x2_c00484{left:445.500000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls8_c00484{letter-spacing:-0.414933pt;}
.ls5_c00484{letter-spacing:-0.256000pt;}
.ls4_c00484{letter-spacing:0.000000pt;}
.ls9_c00484{letter-spacing:0.414933pt;}
.lsa_c00484{letter-spacing:0.432533pt;}
.ls3_c00484{letter-spacing:0.450560pt;}
.ls1_c00484{letter-spacing:0.640000pt;}
.ls6_c00484{letter-spacing:0.704000pt;}
.ls2_c00484{letter-spacing:0.768000pt;}
.ls7_c00484{letter-spacing:1.280000pt;}
.ls0_c00484{letter-spacing:8.320000pt;}
.ws4_c00484{word-spacing:-53.760000pt;}
.ws0_c00484{word-spacing:-16.000000pt;}
.ws3_c00484{word-spacing:-13.872533pt;}
.ws2_c00484{word-spacing:-13.854933pt;}
.ws1_c00484{word-spacing:-13.440000pt;}
.ws5_c00484{word-spacing:0.000000pt;}
._3_c00484{margin-left:-2.432000pt;}
._0_c00484{margin-left:-1.088000pt;}
._2_c00484{width:0.960000pt;}
._5_c00484{width:2.624000pt;}
._8_c00484{width:3.584000pt;}
._7_c00484{width:4.608000pt;}
._1_c00484{width:5.696000pt;}
._4_c00484{width:6.976000pt;}
._c_c00484{width:7.936000pt;}
._b_c00484{width:8.960000pt;}
._10_c00484{width:10.368000pt;}
._11_c00484{width:11.584000pt;}
._d_c00484{width:13.365333pt;}
._6_c00484{width:14.464000pt;}
._12_c00484{width:15.452782pt;}
._f_c00484{width:16.938667pt;}
._a_c00484{width:17.856000pt;}
._e_c00484{width:18.752000pt;}
._9_c00484{width:19.776000pt;}
.fs2_c00484{font-size:34.560000pt;}
.fs1_c00484{font-size:42.240000pt;}
.fs3_c00484{font-size:53.760000pt;}
.fs0_c00484{font-size:64.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y3_c00484{bottom:51.552000pt;}
.y2_c00484{bottom:70.112000pt;}
.y27_c00484{bottom:116.192000pt;}
.y26_c00484{bottom:131.552000pt;}
.y25_c00484{bottom:146.946667pt;}
.y24_c00484{bottom:153.026667pt;}
.y23_c00484{bottom:162.306667pt;}
.y22_c00484{bottom:168.386667pt;}
.y21_c00484{bottom:177.986667pt;}
.y20_c00484{bottom:213.186667pt;}
.y1f_c00484{bottom:241.026667pt;}
.y1e_c00484{bottom:268.573333pt;}
.y1d_c00484{bottom:296.093333pt;}
.y1b_c00484{bottom:323.613333pt;}
.y1c_c00484{bottom:330.973333pt;}
.y1a_c00484{bottom:351.173333pt;}
.y19_c00484{bottom:379.013333pt;}
.y18_c00484{bottom:414.533333pt;}
.y17_c00484{bottom:442.053333pt;}
.y16_c00484{bottom:469.600000pt;}
.y15_c00484{bottom:497.440000pt;}
.y14_c00484{bottom:532.960000pt;}
.y13_c00484{bottom:560.480000pt;}
.y12_c00484{bottom:588.026667pt;}
.y11_c00484{bottom:615.866667pt;}
.y10_c00484{bottom:643.386667pt;}
.yf_c00484{bottom:670.906667pt;}
.ye_c00484{bottom:698.466667pt;}
.yd_c00484{bottom:726.306667pt;}
.yc_c00484{bottom:753.826667pt;}
.yb_c00484{bottom:781.346667pt;}
.ya_c00484{bottom:808.893333pt;}
.y9_c00484{bottom:836.733333pt;}
.y8_c00484{bottom:864.253333pt;}
.y6_c00484{bottom:891.773333pt;}
.y7_c00484{bottom:899.173333pt;}
.y5_c00484{bottom:919.333333pt;}
.y4_c00484{bottom:947.173333pt;}
.y1_c00484{bottom:993.573333pt;}
.h7_c00484{height:30.982500pt;}
.h5_c00484{height:41.435625pt;}
.h6_c00484{height:41.456250pt;}
.h9_c00484{height:48.195000pt;}
.h8_c00484{height:48.457500pt;}
.h1_c00484{height:57.375000pt;}
.h3_c00484{height:62.781250pt;}
.h2_c00484{height:62.812500pt;}
.h4_c00484{height:1055.996000pt;}
.h0_c00484{height:1056.000000pt;}
.w1_c00484{width:815.997333pt;}
.w0_c00484{width:816.000000pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:113.312000pt;}
.x9_c00484{left:126.752000pt;}
.x5_c00484{left:160.706667pt;}
.x3_c00484{left:205.184000pt;}
.x4_c00484{left:221.533333pt;}
.x6_c00484{left:275.610667pt;}
.x7_c00484{left:291.933333pt;}
.x8_c00484{left:305.413333pt;}
.x2_c00484{left:396.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_c00485 {
    display:none;
  }
  .loading-indicator_c00485.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00485 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00485 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00485" -> "#page-container .classname_c00485")
 */
.pf_c00485 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00485 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00485 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00485 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00485 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00485 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00485 {overflow:visible;}
  }
}
.c_c00485 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00485 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00485:after { /* webkit #35443 */
  content: '';
}
.t_c00485:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00485 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00485 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00485 { /* info for Javascript */
  display:none;
}
.l_c00485 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00485 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00485 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00485:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00485 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00485.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00485 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00485{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00485;src:url('chunks/assets/font_4bc4bf31c27f0a8b9fe3e5fa.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_e30cd9ddea23c49dfa69057c.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_e766128e41a572efe425fb9a.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;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_c00485;src:url('chunks/assets/font_fa147641fc606ee4730f36a1.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00485;src:url('chunks/assets/font_b0d814f9b45100258259875d.woff2')format("woff");}.ff5_c00485{font-family:ff5_c00485;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls3_c00485{letter-spacing:-1.440000px;}
.ls1_c00485{letter-spacing:0.000000px;}
.ls2_c00485{letter-spacing:0.504000px;}
.ls0_c00485{letter-spacing:25.200000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00485{word-spacing:-18.504000px;}
.ws0_c00485{word-spacing:-18.000000px;}
.ws2_c00485{word-spacing:0.000000px;}
._1_c00485{margin-left:-2.736000px;}
._3_c00485{margin-left:-1.440000px;}
._0_c00485{width:1.512000px;}
._12_c00485{width:2.592000px;}
._2_c00485{width:3.600000px;}
._13_c00485{width:5.040000px;}
._15_c00485{width:6.996000px;}
._14_c00485{width:8.076000px;}
._4_c00485{width:9.216000px;}
._6_c00485{width:10.296000px;}
._5_c00485{width:11.616000px;}
._c_c00485{width:12.888000px;}
._d_c00485{width:14.472000px;}
._a_c00485{width:15.552000px;}
._b_c00485{width:16.776000px;}
._10_c00485{width:19.512000px;}
._11_c00485{width:20.676000px;}
._f_c00485{width:23.328000px;}
._e_c00485{width:24.803976px;}
._8_c00485{width:26.172024px;}
._7_c00485{width:27.228000px;}
._9_c00485{width:29.291928px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs0_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y3_c00485{bottom:57.996000px;}
.y2_c00485{bottom:78.876000px;}
.y22_c00485{bottom:115.236000px;}
.y21_c00485{bottom:146.556000px;}
.y20_c00485{bottom:177.915000px;}
.y1f_c00485{bottom:217.875000px;}
.y1e_c00485{bottom:248.835000px;}
.y1d_c00485{bottom:280.185000px;}
.y1c_c00485{bottom:311.145000px;}
.y1b_c00485{bottom:342.105000px;}
.y1a_c00485{bottom:373.065000px;}
.y19_c00485{bottom:404.070000px;}
.y18_c00485{bottom:435.390000px;}
.y17_c00485{bottom:466.350000px;}
.y16_c00485{bottom:497.310000px;}
.y15_c00485{bottom:528.300000px;}
.y14_c00485{bottom:559.620000px;}
.y13_c00485{bottom:590.580000px;}
.y12_c00485{bottom:621.540000px;}
.y11_c00485{bottom:652.530000px;}
.y10_c00485{bottom:683.850000px;}
.yf_c00485{bottom:714.810000px;}
.ye_c00485{bottom:745.770000px;}
.yd_c00485{bottom:785.775000px;}
.yc_c00485{bottom:817.095000px;}
.yb_c00485{bottom:848.055000px;}
.ya_c00485{bottom:879.015000px;}
.y9_c00485{bottom:910.005000px;}
.y8_c00485{bottom:941.325000px;}
.y7_c00485{bottom:972.285000px;}
.y6_c00485{bottom:1003.245000px;}
.y5_c00485{bottom:1034.250000px;}
.y4_c00485{bottom:1065.570000px;}
.y1_c00485{bottom:1117.770000px;}
.h1_c00485{height:64.546875px;}
.h2_c00485{height:70.664062px;}
.h3_c00485{height:72.562500px;}
.h0_c00485{height:1188.000000px;}
.w0_c00485{width:918.000000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:127.476000px;}
.x3_c00485{left:180.795000px;}
.x2_c00485{left:445.500000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls3_c00485{letter-spacing:-1.280000pt;}
.ls1_c00485{letter-spacing:0.000000pt;}
.ls2_c00485{letter-spacing:0.448000pt;}
.ls0_c00485{letter-spacing:22.400000pt;}
.ws1_c00485{word-spacing:-16.448000pt;}
.ws0_c00485{word-spacing:-16.000000pt;}
.ws2_c00485{word-spacing:0.000000pt;}
._1_c00485{margin-left:-2.432000pt;}
._3_c00485{margin-left:-1.280000pt;}
._0_c00485{width:1.344000pt;}
._12_c00485{width:2.304000pt;}
._2_c00485{width:3.200000pt;}
._13_c00485{width:4.480000pt;}
._15_c00485{width:6.218667pt;}
._14_c00485{width:7.178667pt;}
._4_c00485{width:8.192000pt;}
._6_c00485{width:9.152000pt;}
._5_c00485{width:10.325333pt;}
._c_c00485{width:11.456000pt;}
._d_c00485{width:12.864000pt;}
._a_c00485{width:13.824000pt;}
._b_c00485{width:14.912000pt;}
._10_c00485{width:17.344000pt;}
._11_c00485{width:18.378667pt;}
._f_c00485{width:20.736000pt;}
._e_c00485{width:22.047979pt;}
._8_c00485{width:23.264021pt;}
._7_c00485{width:24.202667pt;}
._9_c00485{width:26.037269pt;}
.fs0_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y3_c00485{bottom:51.552000pt;}
.y2_c00485{bottom:70.112000pt;}
.y22_c00485{bottom:102.432000pt;}
.y21_c00485{bottom:130.272000pt;}
.y20_c00485{bottom:158.146667pt;}
.y1f_c00485{bottom:193.666667pt;}
.y1e_c00485{bottom:221.186667pt;}
.y1d_c00485{bottom:249.053333pt;}
.y1c_c00485{bottom:276.573333pt;}
.y1b_c00485{bottom:304.093333pt;}
.y1a_c00485{bottom:331.613333pt;}
.y19_c00485{bottom:359.173333pt;}
.y18_c00485{bottom:387.013333pt;}
.y17_c00485{bottom:414.533333pt;}
.y16_c00485{bottom:442.053333pt;}
.y15_c00485{bottom:469.600000pt;}
.y14_c00485{bottom:497.440000pt;}
.y13_c00485{bottom:524.960000pt;}
.y12_c00485{bottom:552.480000pt;}
.y11_c00485{bottom:580.026667pt;}
.y10_c00485{bottom:607.866667pt;}
.yf_c00485{bottom:635.386667pt;}
.ye_c00485{bottom:662.906667pt;}
.yd_c00485{bottom:698.466667pt;}
.yc_c00485{bottom:726.306667pt;}
.yb_c00485{bottom:753.826667pt;}
.ya_c00485{bottom:781.346667pt;}
.y9_c00485{bottom:808.893333pt;}
.y8_c00485{bottom:836.733333pt;}
.y7_c00485{bottom:864.253333pt;}
.y6_c00485{bottom:891.773333pt;}
.y5_c00485{bottom:919.333333pt;}
.y4_c00485{bottom:947.173333pt;}
.y1_c00485{bottom:993.573333pt;}
.h1_c00485{height:57.375000pt;}
.h2_c00485{height:62.812500pt;}
.h3_c00485{height:64.500000pt;}
.h0_c00485{height:1056.000000pt;}
.w0_c00485{width:816.000000pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:113.312000pt;}
.x3_c00485{left:160.706667pt;}
.x2_c00485{left:396.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_c00486 {
    display:none;
  }
  .loading-indicator_c00486.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00486 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00486 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00486" -> "#page-container .classname_c00486")
 */
.pf_c00486 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00486 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00486 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00486 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00486 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00486 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00486 {overflow:visible;}
  }
}
.c_c00486 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00486 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00486:after { /* webkit #35443 */
  content: '';
}
.t_c00486:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00486 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00486 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00486 { /* info for Javascript */
  display:none;
}
.l_c00486 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00486 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00486 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00486:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00486 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00486.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00486 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00486;src:url('chunks/assets/font_ad444a5a51fcad87ac307697.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_35b4084ceec80da6e3697984.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_054158f6631236e0ff5930d4.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_b82fa54874c5bdba553f09e7.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00486;src:url('chunks/assets/font_c32fc4c280f0f05d1c25ce6b.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;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_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls2_c00486{letter-spacing:-2.880000px;}
.ls3_c00486{letter-spacing:-1.296000px;}
.ls1_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:13.680000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:-18.000000px;}
.ws1_c00486{word-spacing:0.000000px;}
._c_c00486{margin-left:-3.732000px;}
._2_c00486{margin-left:-2.304000px;}
._3_c00486{margin-left:-1.080000px;}
._1_c00486{width:1.224000px;}
._6_c00486{width:2.376000px;}
._8_c00486{width:3.528000px;}
._0_c00486{width:4.896000px;}
._5_c00486{width:6.336000px;}
._4_c00486{width:7.344000px;}
._7_c00486{width:8.352000px;}
._b_c00486{width:11.304000px;}
._a_c00486{width:13.020000px;}
._d_c00486{width:14.868000px;}
._f_c00486{width:15.912000px;}
._9_c00486{width:19.944000px;}
._e_c00486{width:21.384000px;}
._14_c00486{width:22.668000px;}
._12_c00486{width:24.408000px;}
._13_c00486{width:25.848000px;}
._10_c00486{width:29.892000px;}
._11_c00486{width:31.872000px;}
.fc0_c00486{color:rgb(0,0,0);}
.fs0_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y3_c00486{bottom:57.996000px;}
.y2_c00486{bottom:78.876000px;}
.y22_c00486{bottom:133.596000px;}
.y21_c00486{bottom:164.955000px;}
.y20_c00486{bottom:195.915000px;}
.y1f_c00486{bottom:226.875000px;}
.y1e_c00486{bottom:257.835000px;}
.y1d_c00486{bottom:289.185000px;}
.y1c_c00486{bottom:320.145000px;}
.y1b_c00486{bottom:351.105000px;}
.y1a_c00486{bottom:382.065000px;}
.y19_c00486{bottom:413.070000px;}
.y18_c00486{bottom:444.390000px;}
.y17_c00486{bottom:475.350000px;}
.y16_c00486{bottom:506.310000px;}
.y15_c00486{bottom:537.300000px;}
.y14_c00486{bottom:568.620000px;}
.y13_c00486{bottom:599.580000px;}
.y12_c00486{bottom:630.540000px;}
.y11_c00486{bottom:661.530000px;}
.y10_c00486{bottom:692.850000px;}
.yf_c00486{bottom:723.810000px;}
.ye_c00486{bottom:754.770000px;}
.yd_c00486{bottom:785.775000px;}
.yc_c00486{bottom:817.095000px;}
.yb_c00486{bottom:848.055000px;}
.ya_c00486{bottom:879.015000px;}
.y9_c00486{bottom:910.005000px;}
.y8_c00486{bottom:941.325000px;}
.y7_c00486{bottom:972.285000px;}
.y6_c00486{bottom:1003.245000px;}
.y5_c00486{bottom:1034.250000px;}
.y4_c00486{bottom:1065.570000px;}
.y1_c00486{bottom:1117.770000px;}
.h1_c00486{height:64.546875px;}
.h2_c00486{height:70.664062px;}
.h0_c00486{height:1188.000000px;}
.w0_c00486{width:918.000000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:127.476000px;}
.x3_c00486{left:180.795000px;}
.x2_c00486{left:445.500000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls2_c00486{letter-spacing:-2.560000pt;}
.ls3_c00486{letter-spacing:-1.152000pt;}
.ls1_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:12.160000pt;}
.ws0_c00486{word-spacing:-16.000000pt;}
.ws1_c00486{word-spacing:0.000000pt;}
._c_c00486{margin-left:-3.317333pt;}
._2_c00486{margin-left:-2.048000pt;}
._3_c00486{margin-left:-0.960000pt;}
._1_c00486{width:1.088000pt;}
._6_c00486{width:2.112000pt;}
._8_c00486{width:3.136000pt;}
._0_c00486{width:4.352000pt;}
._5_c00486{width:5.632000pt;}
._4_c00486{width:6.528000pt;}
._7_c00486{width:7.424000pt;}
._b_c00486{width:10.048000pt;}
._a_c00486{width:11.573333pt;}
._d_c00486{width:13.216000pt;}
._f_c00486{width:14.144000pt;}
._9_c00486{width:17.728000pt;}
._e_c00486{width:19.008000pt;}
._14_c00486{width:20.149333pt;}
._12_c00486{width:21.696000pt;}
._13_c00486{width:22.976000pt;}
._10_c00486{width:26.570667pt;}
._11_c00486{width:28.330667pt;}
.fs0_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y3_c00486{bottom:51.552000pt;}
.y2_c00486{bottom:70.112000pt;}
.y22_c00486{bottom:118.752000pt;}
.y21_c00486{bottom:146.626667pt;}
.y20_c00486{bottom:174.146667pt;}
.y1f_c00486{bottom:201.666667pt;}
.y1e_c00486{bottom:229.186667pt;}
.y1d_c00486{bottom:257.053333pt;}
.y1c_c00486{bottom:284.573333pt;}
.y1b_c00486{bottom:312.093333pt;}
.y1a_c00486{bottom:339.613333pt;}
.y19_c00486{bottom:367.173333pt;}
.y18_c00486{bottom:395.013333pt;}
.y17_c00486{bottom:422.533333pt;}
.y16_c00486{bottom:450.053333pt;}
.y15_c00486{bottom:477.600000pt;}
.y14_c00486{bottom:505.440000pt;}
.y13_c00486{bottom:532.960000pt;}
.y12_c00486{bottom:560.480000pt;}
.y11_c00486{bottom:588.026667pt;}
.y10_c00486{bottom:615.866667pt;}
.yf_c00486{bottom:643.386667pt;}
.ye_c00486{bottom:670.906667pt;}
.yd_c00486{bottom:698.466667pt;}
.yc_c00486{bottom:726.306667pt;}
.yb_c00486{bottom:753.826667pt;}
.ya_c00486{bottom:781.346667pt;}
.y9_c00486{bottom:808.893333pt;}
.y8_c00486{bottom:836.733333pt;}
.y7_c00486{bottom:864.253333pt;}
.y6_c00486{bottom:891.773333pt;}
.y5_c00486{bottom:919.333333pt;}
.y4_c00486{bottom:947.173333pt;}
.y1_c00486{bottom:993.573333pt;}
.h1_c00486{height:57.375000pt;}
.h2_c00486{height:62.812500pt;}
.h0_c00486{height:1056.000000pt;}
.w0_c00486{width:816.000000pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:113.312000pt;}
.x3_c00486{left:160.706667pt;}
.x2_c00486{left:396.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_c00487 {
    display:none;
  }
  .loading-indicator_c00487.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00487 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00487 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00487" -> "#page-container .classname_c00487")
 */
.pf_c00487 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00487 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00487 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00487 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00487 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00487 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00487 {overflow:visible;}
  }
}
.c_c00487 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00487 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00487:after { /* webkit #35443 */
  content: '';
}
.t_c00487:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00487 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00487 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00487 { /* info for Javascript */
  display:none;
}
.l_c00487 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00487 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00487 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00487:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00487 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00487.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00487 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00487;src:url('chunks/assets/font_3be3b2b511e05c0bb3738f68.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_9875e219ec22c6bf8c526464.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_a1a8b0bd40e5bf93f531cce8.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;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_c00487;src:url('chunks/assets/font_b54e0bb2b14ad0620474b029.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00487;src:url('chunks/assets/font_212c9bcdf0cca17cbe2a1b3e.woff2')format("woff");}.ff5_c00487{font-family:ff5_c00487;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00487;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00487{font-family:ff6_c00487;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls4_c00487{letter-spacing:-2.880000px;}
.ls1_c00487{letter-spacing:0.000000px;}
.ls0_c00487{letter-spacing:0.144000px;}
.ls2_c00487{letter-spacing:0.720000px;}
.ls3_c00487{letter-spacing:1.440000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:-18.000000px;}
.ws1_c00487{word-spacing:0.000000px;}
._12_c00487{margin-left:-3.600000px;}
._3_c00487{margin-left:-2.592000px;}
._1_c00487{margin-left:-1.296000px;}
._0_c00487{width:1.080000px;}
._2_c00487{width:2.880000px;}
._8_c00487{width:4.824000px;}
._14_c00487{width:6.840000px;}
._15_c00487{width:8.784000px;}
._e_c00487{width:10.308000px;}
._4_c00487{width:11.448000px;}
._f_c00487{width:12.852000px;}
._6_c00487{width:14.328000px;}
._5_c00487{width:15.336000px;}
._7_c00487{width:16.392024px;}
._c_c00487{width:19.368000px;}
._d_c00487{width:20.592000px;}
._13_c00487{width:21.660000px;}
._9_c00487{width:23.184000px;}
._a_c00487{width:24.192000px;}
._b_c00487{width:25.272000px;}
._10_c00487{width:27.216000px;}
._11_c00487{width:28.884000px;}
.fc0_c00487{color:rgb(0,0,0);}
.fs0_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y3_c00487{bottom:57.996000px;}
.y2_c00487{bottom:78.876000px;}
.y22_c00487{bottom:115.596000px;}
.y21_c00487{bottom:155.595000px;}
.y20_c00487{bottom:195.915000px;}
.y1f_c00487{bottom:226.875000px;}
.y1e_c00487{bottom:257.835000px;}
.y1d_c00487{bottom:289.185000px;}
.y1c_c00487{bottom:320.145000px;}
.y1b_c00487{bottom:351.105000px;}
.y1a_c00487{bottom:382.065000px;}
.y19_c00487{bottom:413.070000px;}
.y18_c00487{bottom:444.390000px;}
.y17_c00487{bottom:475.350000px;}
.y16_c00487{bottom:506.310000px;}
.y15_c00487{bottom:537.300000px;}
.y14_c00487{bottom:568.620000px;}
.y13_c00487{bottom:599.580000px;}
.y12_c00487{bottom:630.540000px;}
.y11_c00487{bottom:661.530000px;}
.y10_c00487{bottom:692.850000px;}
.yf_c00487{bottom:723.810000px;}
.ye_c00487{bottom:754.770000px;}
.yd_c00487{bottom:785.775000px;}
.yc_c00487{bottom:817.095000px;}
.yb_c00487{bottom:848.055000px;}
.ya_c00487{bottom:879.015000px;}
.y9_c00487{bottom:910.005000px;}
.y8_c00487{bottom:941.325000px;}
.y7_c00487{bottom:972.285000px;}
.y6_c00487{bottom:1003.245000px;}
.y5_c00487{bottom:1034.250000px;}
.y4_c00487{bottom:1065.570000px;}
.y1_c00487{bottom:1117.770000px;}
.h1_c00487{height:64.546875px;}
.h2_c00487{height:70.664062px;}
.h3_c00487{height:72.562500px;}
.h0_c00487{height:1188.000000px;}
.w0_c00487{width:918.000000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:127.476000px;}
.x3_c00487{left:180.795000px;}
.x2_c00487{left:445.500000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls4_c00487{letter-spacing:-2.560000pt;}
.ls1_c00487{letter-spacing:0.000000pt;}
.ls0_c00487{letter-spacing:0.128000pt;}
.ls2_c00487{letter-spacing:0.640000pt;}
.ls3_c00487{letter-spacing:1.280000pt;}
.ws0_c00487{word-spacing:-16.000000pt;}
.ws1_c00487{word-spacing:0.000000pt;}
._12_c00487{margin-left:-3.200000pt;}
._3_c00487{margin-left:-2.304000pt;}
._1_c00487{margin-left:-1.152000pt;}
._0_c00487{width:0.960000pt;}
._2_c00487{width:2.560000pt;}
._8_c00487{width:4.288000pt;}
._14_c00487{width:6.080000pt;}
._15_c00487{width:7.808000pt;}
._e_c00487{width:9.162667pt;}
._4_c00487{width:10.176000pt;}
._f_c00487{width:11.424000pt;}
._6_c00487{width:12.736000pt;}
._5_c00487{width:13.632000pt;}
._7_c00487{width:14.570688pt;}
._c_c00487{width:17.216000pt;}
._d_c00487{width:18.304000pt;}
._13_c00487{width:19.253333pt;}
._9_c00487{width:20.608000pt;}
._a_c00487{width:21.504000pt;}
._b_c00487{width:22.464000pt;}
._10_c00487{width:24.192000pt;}
._11_c00487{width:25.674667pt;}
.fs0_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y3_c00487{bottom:51.552000pt;}
.y2_c00487{bottom:70.112000pt;}
.y22_c00487{bottom:102.752000pt;}
.y21_c00487{bottom:138.306667pt;}
.y20_c00487{bottom:174.146667pt;}
.y1f_c00487{bottom:201.666667pt;}
.y1e_c00487{bottom:229.186667pt;}
.y1d_c00487{bottom:257.053333pt;}
.y1c_c00487{bottom:284.573333pt;}
.y1b_c00487{bottom:312.093333pt;}
.y1a_c00487{bottom:339.613333pt;}
.y19_c00487{bottom:367.173333pt;}
.y18_c00487{bottom:395.013333pt;}
.y17_c00487{bottom:422.533333pt;}
.y16_c00487{bottom:450.053333pt;}
.y15_c00487{bottom:477.600000pt;}
.y14_c00487{bottom:505.440000pt;}
.y13_c00487{bottom:532.960000pt;}
.y12_c00487{bottom:560.480000pt;}
.y11_c00487{bottom:588.026667pt;}
.y10_c00487{bottom:615.866667pt;}
.yf_c00487{bottom:643.386667pt;}
.ye_c00487{bottom:670.906667pt;}
.yd_c00487{bottom:698.466667pt;}
.yc_c00487{bottom:726.306667pt;}
.yb_c00487{bottom:753.826667pt;}
.ya_c00487{bottom:781.346667pt;}
.y9_c00487{bottom:808.893333pt;}
.y8_c00487{bottom:836.733333pt;}
.y7_c00487{bottom:864.253333pt;}
.y6_c00487{bottom:891.773333pt;}
.y5_c00487{bottom:919.333333pt;}
.y4_c00487{bottom:947.173333pt;}
.y1_c00487{bottom:993.573333pt;}
.h1_c00487{height:57.375000pt;}
.h2_c00487{height:62.812500pt;}
.h3_c00487{height:64.500000pt;}
.h0_c00487{height:1056.000000pt;}
.w0_c00487{width:816.000000pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:113.312000pt;}
.x3_c00487{left:160.706667pt;}
.x2_c00487{left:396.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_c00488 {
    display:none;
  }
  .loading-indicator_c00488.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00488 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00488 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00488" -> "#page-container .classname_c00488")
 */
.pf_c00488 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00488 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00488 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00488 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00488 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00488 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00488 {overflow:visible;}
  }
}
.c_c00488 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00488 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00488:after { /* webkit #35443 */
  content: '';
}
.t_c00488:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00488 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00488 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00488 { /* info for Javascript */
  display:none;
}
.l_c00488 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00488 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00488 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00488:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00488 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00488.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00488 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00488;src:url('chunks/assets/font_0b782e0b68f2e40e37aa740b.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_4f43f459dbd6e0de886763bc.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:-24.120000px;}
.ws1_c00488{word-spacing:0.000000px;}
._0_c00488{margin-left:-1.157953px;}
.fc0_c00488{color:rgb(0,0,0);}
.fs0_c00488{font-size:72.000000px;}
.fs1_c00488{font-size:96.480000px;}
.y0_c00488{bottom:0.000000px;}
.y3_c00488{bottom:57.996000px;}
.y2_c00488{bottom:78.876000px;}
.y22_c00488{bottom:123.516000px;}
.y21_c00488{bottom:154.515000px;}
.y20_c00488{bottom:185.475000px;}
.y1f_c00488{bottom:216.435000px;}
.y1e_c00488{bottom:247.755000px;}
.y1d_c00488{bottom:278.745000px;}
.y1c_c00488{bottom:309.705000px;}
.y1b_c00488{bottom:340.665000px;}
.y1a_c00488{bottom:371.625000px;}
.y19_c00488{bottom:402.990000px;}
.y18_c00488{bottom:433.950000px;}
.y17_c00488{bottom:464.910000px;}
.y16_c00488{bottom:495.870000px;}
.y15_c00488{bottom:531.540000px;}
.y14_c00488{bottom:568.620000px;}
.y13_c00488{bottom:599.580000px;}
.y12_c00488{bottom:630.540000px;}
.y11_c00488{bottom:661.530000px;}
.y10_c00488{bottom:692.850000px;}
.yf_c00488{bottom:723.810000px;}
.ye_c00488{bottom:754.770000px;}
.yd_c00488{bottom:785.775000px;}
.yc_c00488{bottom:817.095000px;}
.yb_c00488{bottom:848.055000px;}
.ya_c00488{bottom:879.015000px;}
.y9_c00488{bottom:910.005000px;}
.y8_c00488{bottom:941.325000px;}
.y7_c00488{bottom:972.285000px;}
.y6_c00488{bottom:1003.245000px;}
.y5_c00488{bottom:1034.250000px;}
.y4_c00488{bottom:1065.570000px;}
.y1_c00488{bottom:1117.770000px;}
.h1_c00488{height:64.546875px;}
.h2_c00488{height:70.664062px;}
.h3_c00488{height:97.233750px;}
.h0_c00488{height:1188.000000px;}
.w0_c00488{width:918.000000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:127.476000px;}
.x3_c00488{left:400.110000px;}
.x2_c00488{left:445.500000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:-21.440000pt;}
.ws1_c00488{word-spacing:0.000000pt;}
._0_c00488{margin-left:-1.029292pt;}
.fs0_c00488{font-size:64.000000pt;}
.fs1_c00488{font-size:85.760000pt;}
.y0_c00488{bottom:0.000000pt;}
.y3_c00488{bottom:51.552000pt;}
.y2_c00488{bottom:70.112000pt;}
.y22_c00488{bottom:109.792000pt;}
.y21_c00488{bottom:137.346667pt;}
.y20_c00488{bottom:164.866667pt;}
.y1f_c00488{bottom:192.386667pt;}
.y1e_c00488{bottom:220.226667pt;}
.y1d_c00488{bottom:247.773333pt;}
.y1c_c00488{bottom:275.293333pt;}
.y1b_c00488{bottom:302.813333pt;}
.y1a_c00488{bottom:330.333333pt;}
.y19_c00488{bottom:358.213333pt;}
.y18_c00488{bottom:385.733333pt;}
.y17_c00488{bottom:413.253333pt;}
.y16_c00488{bottom:440.773333pt;}
.y15_c00488{bottom:472.480000pt;}
.y14_c00488{bottom:505.440000pt;}
.y13_c00488{bottom:532.960000pt;}
.y12_c00488{bottom:560.480000pt;}
.y11_c00488{bottom:588.026667pt;}
.y10_c00488{bottom:615.866667pt;}
.yf_c00488{bottom:643.386667pt;}
.ye_c00488{bottom:670.906667pt;}
.yd_c00488{bottom:698.466667pt;}
.yc_c00488{bottom:726.306667pt;}
.yb_c00488{bottom:753.826667pt;}
.ya_c00488{bottom:781.346667pt;}
.y9_c00488{bottom:808.893333pt;}
.y8_c00488{bottom:836.733333pt;}
.y7_c00488{bottom:864.253333pt;}
.y6_c00488{bottom:891.773333pt;}
.y5_c00488{bottom:919.333333pt;}
.y4_c00488{bottom:947.173333pt;}
.y1_c00488{bottom:993.573333pt;}
.h1_c00488{height:57.375000pt;}
.h2_c00488{height:62.812500pt;}
.h3_c00488{height:86.430000pt;}
.h0_c00488{height:1056.000000pt;}
.w0_c00488{width:816.000000pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:113.312000pt;}
.x3_c00488{left:355.653333pt;}
.x2_c00488{left:396.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_c00489 {
    display:none;
  }
  .loading-indicator_c00489.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00489 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00489 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00489" -> "#page-container .classname_c00489")
 */
.pf_c00489 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00489 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00489 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00489 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00489 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00489 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00489 {overflow:visible;}
  }
}
.c_c00489 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00489 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00489:after { /* webkit #35443 */
  content: '';
}
.t_c00489:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00489 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00489 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00489 { /* info for Javascript */
  display:none;
}
.l_c00489 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00489 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00489 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00489:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00489 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00489.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00489 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00489{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00489;src:url('chunks/assets/font_d513c25628979f9c158db29d.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_194482032e1bcd1800bc45de.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_8134b69f9c37077657224056.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00489;src:url('chunks/assets/font_ea37ded99fde912603f76c9e.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;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_c00489;src:url('chunks/assets/font_f13c37c18421c0fa2b0ca25c.woff2')format("woff");}.ff5_c00489{font-family:ff5_c00489;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls1_c00489{letter-spacing:0.000000px;}
.ls2_c00489{letter-spacing:0.720000px;}
.ls0_c00489{letter-spacing:0.792000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:-18.000000px;}
.ws1_c00489{word-spacing:0.000000px;}
._4_c00489{margin-left:-3.672000px;}
._7_c00489{margin-left:-2.616000px;}
._0_c00489{margin-left:-1.440000px;}
._1_c00489{width:1.080000px;}
._3_c00489{width:2.808000px;}
._2_c00489{width:3.816000px;}
._6_c00489{width:5.784000px;}
._5_c00489{width:6.840000px;}
._e_c00489{width:8.592000px;}
._d_c00489{width:10.008000px;}
._c_c00489{width:11.448000px;}
._b_c00489{width:12.600000px;}
._a_c00489{width:14.520000px;}
._8_c00489{width:15.720000px;}
._9_c00489{width:16.824000px;}
._f_c00489{width:19.704000px;}
.fc0_c00489{color:rgb(0,0,0);}
.fs0_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y3_c00489{bottom:57.996000px;}
.y2_c00489{bottom:78.876000px;}
.y22_c00489{bottom:111.276000px;}
.y21_c00489{bottom:142.236000px;}
.y20_c00489{bottom:173.235000px;}
.y1f_c00489{bottom:204.555000px;}
.y1e_c00489{bottom:235.515000px;}
.y1d_c00489{bottom:266.475000px;}
.y1c_c00489{bottom:297.465000px;}
.y1b_c00489{bottom:328.785000px;}
.y1a_c00489{bottom:359.385000px;}
.y19_c00489{bottom:390.705000px;}
.y18_c00489{bottom:421.710000px;}
.y17_c00489{bottom:452.670000px;}
.y16_c00489{bottom:483.990000px;}
.y15_c00489{bottom:514.950000px;}
.y14_c00489{bottom:545.940000px;}
.y13_c00489{bottom:576.900000px;}
.y12_c00489{bottom:608.220000px;}
.y11_c00489{bottom:639.180000px;}
.y10_c00489{bottom:670.170000px;}
.yf_c00489{bottom:701.130000px;}
.ye_c00489{bottom:732.450000px;}
.yd_c00489{bottom:763.455000px;}
.yc_c00489{bottom:794.055000px;}
.yb_c00489{bottom:825.015000px;}
.ya_c00489{bottom:856.335000px;}
.y9_c00489{bottom:887.325000px;}
.y8_c00489{bottom:923.325000px;}
.y7_c00489{bottom:972.285000px;}
.y6_c00489{bottom:1003.245000px;}
.y5_c00489{bottom:1034.250000px;}
.y4_c00489{bottom:1065.570000px;}
.y1_c00489{bottom:1117.770000px;}
.h1_c00489{height:64.546875px;}
.h2_c00489{height:70.664062px;}
.h3_c00489{height:72.562500px;}
.h0_c00489{height:1188.000000px;}
.w0_c00489{width:918.000000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:127.476000px;}
.x4_c00489{left:180.795000px;}
.x3_c00489{left:414.870000px;}
.x2_c00489{left:445.500000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls1_c00489{letter-spacing:0.000000pt;}
.ls2_c00489{letter-spacing:0.640000pt;}
.ls0_c00489{letter-spacing:0.704000pt;}
.ws0_c00489{word-spacing:-16.000000pt;}
.ws1_c00489{word-spacing:0.000000pt;}
._4_c00489{margin-left:-3.264000pt;}
._7_c00489{margin-left:-2.325333pt;}
._0_c00489{margin-left:-1.280000pt;}
._1_c00489{width:0.960000pt;}
._3_c00489{width:2.496000pt;}
._2_c00489{width:3.392000pt;}
._6_c00489{width:5.141333pt;}
._5_c00489{width:6.080000pt;}
._e_c00489{width:7.637333pt;}
._d_c00489{width:8.896000pt;}
._c_c00489{width:10.176000pt;}
._b_c00489{width:11.200000pt;}
._a_c00489{width:12.906667pt;}
._8_c00489{width:13.973333pt;}
._9_c00489{width:14.954667pt;}
._f_c00489{width:17.514667pt;}
.fs0_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y3_c00489{bottom:51.552000pt;}
.y2_c00489{bottom:70.112000pt;}
.y22_c00489{bottom:98.912000pt;}
.y21_c00489{bottom:126.432000pt;}
.y20_c00489{bottom:153.986667pt;}
.y1f_c00489{bottom:181.826667pt;}
.y1e_c00489{bottom:209.346667pt;}
.y1d_c00489{bottom:236.866667pt;}
.y1c_c00489{bottom:264.413333pt;}
.y1b_c00489{bottom:292.253333pt;}
.y1a_c00489{bottom:319.453333pt;}
.y19_c00489{bottom:347.293333pt;}
.y18_c00489{bottom:374.853333pt;}
.y17_c00489{bottom:402.373333pt;}
.y16_c00489{bottom:430.213333pt;}
.y15_c00489{bottom:457.733333pt;}
.y14_c00489{bottom:485.280000pt;}
.y13_c00489{bottom:512.800000pt;}
.y12_c00489{bottom:540.640000pt;}
.y11_c00489{bottom:568.160000pt;}
.y10_c00489{bottom:595.706667pt;}
.yf_c00489{bottom:623.226667pt;}
.ye_c00489{bottom:651.066667pt;}
.yd_c00489{bottom:678.626667pt;}
.yc_c00489{bottom:705.826667pt;}
.yb_c00489{bottom:733.346667pt;}
.ya_c00489{bottom:761.186667pt;}
.y9_c00489{bottom:788.733333pt;}
.y8_c00489{bottom:820.733333pt;}
.y7_c00489{bottom:864.253333pt;}
.y6_c00489{bottom:891.773333pt;}
.y5_c00489{bottom:919.333333pt;}
.y4_c00489{bottom:947.173333pt;}
.y1_c00489{bottom:993.573333pt;}
.h1_c00489{height:57.375000pt;}
.h2_c00489{height:62.812500pt;}
.h3_c00489{height:64.500000pt;}
.h0_c00489{height:1056.000000pt;}
.w0_c00489{width:816.000000pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:113.312000pt;}
.x4_c00489{left:160.706667pt;}
.x3_c00489{left:368.773333pt;}
.x2_c00489{left:396.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_c00490 {
    display:none;
  }
  .loading-indicator_c00490.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00490 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00490 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00490" -> "#page-container .classname_c00490")
 */
.pf_c00490 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00490 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00490 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00490 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00490 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00490 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00490 {overflow:visible;}
  }
}
.c_c00490 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00490 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00490:after { /* webkit #35443 */
  content: '';
}
.t_c00490:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00490 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00490 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00490 { /* info for Javascript */
  display:none;
}
.l_c00490 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00490 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00490 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00490:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00490 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00490.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00490 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00490;src:url('chunks/assets/font_397985641c04c152300130e1.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_c60be51f4e8f7994ded869d5.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_87a87e3c1c084f2cec40d5cb.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00490;src:url('chunks/assets/font_34bb47068b10c7f21b36142b.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00490;src:url('chunks/assets/font_45a633eaf680b812cb8a3ed8.woff2')format("woff");}.ff5_c00490{font-family:ff5_c00490;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_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls6_c00490{letter-spacing:0.000000px;}
.ls5_c00490{letter-spacing:0.504000px;}
.ls0_c00490{letter-spacing:0.720000px;}
.ls2_c00490{letter-spacing:1.440000px;}
.ls7_c00490{letter-spacing:1.944000px;}
.ls1_c00490{letter-spacing:7.920000px;}
.ls3_c00490{letter-spacing:16.560000px;}
.ls4_c00490{letter-spacing:18.000000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:-72.000000px;}
.ws2_c00490{word-spacing:-18.504000px;}
.ws1_c00490{word-spacing:-18.000000px;}
.ws3_c00490{word-spacing:0.000000px;}
._2_c00490{margin-left:-2.736000px;}
._0_c00490{margin-left:-1.728000px;}
._5_c00490{width:1.296000px;}
._1_c00490{width:2.952000px;}
._7_c00490{width:4.836024px;}
._3_c00490{width:6.264000px;}
._6_c00490{width:7.344000px;}
._4_c00490{width:8.424000px;}
._a_c00490{width:9.876000px;}
._8_c00490{width:11.952000px;}
._9_c00490{width:13.896000px;}
._e_c00490{width:15.552000px;}
._f_c00490{width:16.776000px;}
._12_c00490{width:19.080000px;}
._10_c00490{width:20.244000px;}
._11_c00490{width:21.336000px;}
._c_c00490{width:23.040000px;}
._b_c00490{width:24.192000px;}
._d_c00490{width:25.704000px;}
.fc0_c00490{color:rgb(0,0,0);}
.fs0_c00490{font-size:72.000000px;}
.y0_c00490{bottom:0.000000px;}
.y3_c00490{bottom:57.996000px;}
.y2_c00490{bottom:78.876000px;}
.y22_c00490{bottom:124.596000px;}
.y21_c00490{bottom:155.955000px;}
.y20_c00490{bottom:186.915000px;}
.y1f_c00490{bottom:217.875000px;}
.y1e_c00490{bottom:248.835000px;}
.y1d_c00490{bottom:280.185000px;}
.y1c_c00490{bottom:311.145000px;}
.y1b_c00490{bottom:342.105000px;}
.y1a_c00490{bottom:373.065000px;}
.y19_c00490{bottom:404.070000px;}
.y18_c00490{bottom:435.390000px;}
.y17_c00490{bottom:466.350000px;}
.y16_c00490{bottom:497.310000px;}
.y15_c00490{bottom:528.300000px;}
.y14_c00490{bottom:559.620000px;}
.y13_c00490{bottom:590.580000px;}
.y12_c00490{bottom:630.540000px;}
.y11_c00490{bottom:661.530000px;}
.y10_c00490{bottom:692.850000px;}
.yf_c00490{bottom:723.810000px;}
.ye_c00490{bottom:754.770000px;}
.yd_c00490{bottom:785.775000px;}
.yc_c00490{bottom:817.095000px;}
.yb_c00490{bottom:848.055000px;}
.ya_c00490{bottom:879.015000px;}
.y9_c00490{bottom:910.005000px;}
.y8_c00490{bottom:941.325000px;}
.y7_c00490{bottom:972.285000px;}
.y6_c00490{bottom:1003.245000px;}
.y5_c00490{bottom:1034.250000px;}
.y4_c00490{bottom:1065.570000px;}
.y1_c00490{bottom:1117.770000px;}
.h1_c00490{height:64.546875px;}
.h2_c00490{height:70.664062px;}
.h0_c00490{height:1188.000000px;}
.w0_c00490{width:918.000000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:127.476000px;}
.x3_c00490{left:180.795000px;}
.x2_c00490{left:445.500000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls6_c00490{letter-spacing:0.000000pt;}
.ls5_c00490{letter-spacing:0.448000pt;}
.ls0_c00490{letter-spacing:0.640000pt;}
.ls2_c00490{letter-spacing:1.280000pt;}
.ls7_c00490{letter-spacing:1.728000pt;}
.ls1_c00490{letter-spacing:7.040000pt;}
.ls3_c00490{letter-spacing:14.720000pt;}
.ls4_c00490{letter-spacing:16.000000pt;}
.ws0_c00490{word-spacing:-64.000000pt;}
.ws2_c00490{word-spacing:-16.448000pt;}
.ws1_c00490{word-spacing:-16.000000pt;}
.ws3_c00490{word-spacing:0.000000pt;}
._2_c00490{margin-left:-2.432000pt;}
._0_c00490{margin-left:-1.536000pt;}
._5_c00490{width:1.152000pt;}
._1_c00490{width:2.624000pt;}
._7_c00490{width:4.298688pt;}
._3_c00490{width:5.568000pt;}
._6_c00490{width:6.528000pt;}
._4_c00490{width:7.488000pt;}
._a_c00490{width:8.778667pt;}
._8_c00490{width:10.624000pt;}
._9_c00490{width:12.352000pt;}
._e_c00490{width:13.824000pt;}
._f_c00490{width:14.912000pt;}
._12_c00490{width:16.960000pt;}
._10_c00490{width:17.994667pt;}
._11_c00490{width:18.965333pt;}
._c_c00490{width:20.480000pt;}
._b_c00490{width:21.504000pt;}
._d_c00490{width:22.848000pt;}
.fs0_c00490{font-size:64.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y3_c00490{bottom:51.552000pt;}
.y2_c00490{bottom:70.112000pt;}
.y22_c00490{bottom:110.752000pt;}
.y21_c00490{bottom:138.626667pt;}
.y20_c00490{bottom:166.146667pt;}
.y1f_c00490{bottom:193.666667pt;}
.y1e_c00490{bottom:221.186667pt;}
.y1d_c00490{bottom:249.053333pt;}
.y1c_c00490{bottom:276.573333pt;}
.y1b_c00490{bottom:304.093333pt;}
.y1a_c00490{bottom:331.613333pt;}
.y19_c00490{bottom:359.173333pt;}
.y18_c00490{bottom:387.013333pt;}
.y17_c00490{bottom:414.533333pt;}
.y16_c00490{bottom:442.053333pt;}
.y15_c00490{bottom:469.600000pt;}
.y14_c00490{bottom:497.440000pt;}
.y13_c00490{bottom:524.960000pt;}
.y12_c00490{bottom:560.480000pt;}
.y11_c00490{bottom:588.026667pt;}
.y10_c00490{bottom:615.866667pt;}
.yf_c00490{bottom:643.386667pt;}
.ye_c00490{bottom:670.906667pt;}
.yd_c00490{bottom:698.466667pt;}
.yc_c00490{bottom:726.306667pt;}
.yb_c00490{bottom:753.826667pt;}
.ya_c00490{bottom:781.346667pt;}
.y9_c00490{bottom:808.893333pt;}
.y8_c00490{bottom:836.733333pt;}
.y7_c00490{bottom:864.253333pt;}
.y6_c00490{bottom:891.773333pt;}
.y5_c00490{bottom:919.333333pt;}
.y4_c00490{bottom:947.173333pt;}
.y1_c00490{bottom:993.573333pt;}
.h1_c00490{height:57.375000pt;}
.h2_c00490{height:62.812500pt;}
.h0_c00490{height:1056.000000pt;}
.w0_c00490{width:816.000000pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:113.312000pt;}
.x3_c00490{left:160.706667pt;}
.x2_c00490{left:396.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_c00491 {
    display:none;
  }
  .loading-indicator_c00491.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00491 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00491 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00491" -> "#page-container .classname_c00491")
 */
.pf_c00491 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00491 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00491 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00491 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00491 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00491 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00491 {overflow:visible;}
  }
}
.c_c00491 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00491 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00491:after { /* webkit #35443 */
  content: '';
}
.t_c00491:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00491 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00491 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00491 { /* info for Javascript */
  display:none;
}
.l_c00491 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00491 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00491 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00491:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00491 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00491.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00491 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00491{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00491;src:url('chunks/assets/font_292e1be0c03fc817d0352a28.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_ff4fed6d861582d2f1518667.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_e00eb790442501144aa80781.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00491;src:url('chunks/assets/font_54c294b7a6dc6e94c117baf0.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;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_c00491;src:url('chunks/assets/font_e35f8462cc45e8d780e6c5e1.woff2')format("woff");}.ff5_c00491{font-family:ff5_c00491;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls8_c00491{letter-spacing:0.000000px;}
.ls9_c00491{letter-spacing:0.288000px;}
.ls5_c00491{letter-spacing:0.504000px;}
.lsa_c00491{letter-spacing:0.720000px;}
.ls3_c00491{letter-spacing:2.160000px;}
.ls7_c00491{letter-spacing:6.480000px;}
.ls6_c00491{letter-spacing:8.040000px;}
.ls0_c00491{letter-spacing:9.360000px;}
.ls4_c00491{letter-spacing:19.440000px;}
.ls1_c00491{letter-spacing:26.640000px;}
.ls2_c00491{letter-spacing:26.820000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:-18.000000px;}
.ws1_c00491{word-spacing:0.000000px;}
._4_c00491{margin-left:-2.736000px;}
._0_c00491{margin-left:-1.008000px;}
._2_c00491{width:1.080000px;}
._3_c00491{width:2.232000px;}
._1_c00491{width:3.528000px;}
._5_c00491{width:4.680000px;}
._9_c00491{width:5.688000px;}
._16_c00491{width:6.696000px;}
._6_c00491{width:7.704000px;}
._8_c00491{width:8.784000px;}
._7_c00491{width:10.224000px;}
._15_c00491{width:11.448000px;}
._14_c00491{width:13.104000px;}
._13_c00491{width:14.112000px;}
._10_c00491{width:15.324000px;}
._f_c00491{width:16.848000px;}
._b_c00491{width:19.080000px;}
._a_c00491{width:20.160000px;}
._c_c00491{width:21.672000px;}
._d_c00491{width:26.292000px;}
._e_c00491{width:28.032000px;}
._11_c00491{width:33.696000px;}
._12_c00491{width:35.352000px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs0_c00491{font-size:72.000000px;}
.y0_c00491{bottom:0.000000px;}
.y3_c00491{bottom:57.996000px;}
.y2_c00491{bottom:78.876000px;}
.y22_c00491{bottom:133.596000px;}
.y21_c00491{bottom:164.955000px;}
.y20_c00491{bottom:195.915000px;}
.y1f_c00491{bottom:226.875000px;}
.y1e_c00491{bottom:257.835000px;}
.y1d_c00491{bottom:289.185000px;}
.y1c_c00491{bottom:320.145000px;}
.y1b_c00491{bottom:351.105000px;}
.y1a_c00491{bottom:382.065000px;}
.y19_c00491{bottom:413.070000px;}
.y18_c00491{bottom:444.390000px;}
.y17_c00491{bottom:475.350000px;}
.y16_c00491{bottom:506.310000px;}
.y15_c00491{bottom:537.300000px;}
.y14_c00491{bottom:568.620000px;}
.y13_c00491{bottom:599.580000px;}
.y12_c00491{bottom:630.540000px;}
.y11_c00491{bottom:661.530000px;}
.y10_c00491{bottom:692.850000px;}
.yf_c00491{bottom:723.810000px;}
.ye_c00491{bottom:754.770000px;}
.yd_c00491{bottom:785.775000px;}
.yc_c00491{bottom:817.095000px;}
.yb_c00491{bottom:848.055000px;}
.ya_c00491{bottom:879.015000px;}
.y9_c00491{bottom:910.005000px;}
.y8_c00491{bottom:941.325000px;}
.y7_c00491{bottom:972.285000px;}
.y6_c00491{bottom:1003.245000px;}
.y5_c00491{bottom:1034.250000px;}
.y4_c00491{bottom:1065.570000px;}
.y1_c00491{bottom:1117.770000px;}
.h1_c00491{height:64.546875px;}
.h2_c00491{height:70.664062px;}
.h0_c00491{height:1188.000000px;}
.w0_c00491{width:918.000000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:127.476000px;}
.x3_c00491{left:180.795000px;}
.x2_c00491{left:445.500000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls8_c00491{letter-spacing:0.000000pt;}
.ls9_c00491{letter-spacing:0.256000pt;}
.ls5_c00491{letter-spacing:0.448000pt;}
.lsa_c00491{letter-spacing:0.640000pt;}
.ls3_c00491{letter-spacing:1.920000pt;}
.ls7_c00491{letter-spacing:5.760000pt;}
.ls6_c00491{letter-spacing:7.146667pt;}
.ls0_c00491{letter-spacing:8.320000pt;}
.ls4_c00491{letter-spacing:17.280000pt;}
.ls1_c00491{letter-spacing:23.680000pt;}
.ls2_c00491{letter-spacing:23.840000pt;}
.ws0_c00491{word-spacing:-16.000000pt;}
.ws1_c00491{word-spacing:0.000000pt;}
._4_c00491{margin-left:-2.432000pt;}
._0_c00491{margin-left:-0.896000pt;}
._2_c00491{width:0.960000pt;}
._3_c00491{width:1.984000pt;}
._1_c00491{width:3.136000pt;}
._5_c00491{width:4.160000pt;}
._9_c00491{width:5.056000pt;}
._16_c00491{width:5.952000pt;}
._6_c00491{width:6.848000pt;}
._8_c00491{width:7.808000pt;}
._7_c00491{width:9.088000pt;}
._15_c00491{width:10.176000pt;}
._14_c00491{width:11.648000pt;}
._13_c00491{width:12.544000pt;}
._10_c00491{width:13.621333pt;}
._f_c00491{width:14.976000pt;}
._b_c00491{width:16.960000pt;}
._a_c00491{width:17.920000pt;}
._c_c00491{width:19.264000pt;}
._d_c00491{width:23.370667pt;}
._e_c00491{width:24.917333pt;}
._11_c00491{width:29.952000pt;}
._12_c00491{width:31.424000pt;}
.fs0_c00491{font-size:64.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y3_c00491{bottom:51.552000pt;}
.y2_c00491{bottom:70.112000pt;}
.y22_c00491{bottom:118.752000pt;}
.y21_c00491{bottom:146.626667pt;}
.y20_c00491{bottom:174.146667pt;}
.y1f_c00491{bottom:201.666667pt;}
.y1e_c00491{bottom:229.186667pt;}
.y1d_c00491{bottom:257.053333pt;}
.y1c_c00491{bottom:284.573333pt;}
.y1b_c00491{bottom:312.093333pt;}
.y1a_c00491{bottom:339.613333pt;}
.y19_c00491{bottom:367.173333pt;}
.y18_c00491{bottom:395.013333pt;}
.y17_c00491{bottom:422.533333pt;}
.y16_c00491{bottom:450.053333pt;}
.y15_c00491{bottom:477.600000pt;}
.y14_c00491{bottom:505.440000pt;}
.y13_c00491{bottom:532.960000pt;}
.y12_c00491{bottom:560.480000pt;}
.y11_c00491{bottom:588.026667pt;}
.y10_c00491{bottom:615.866667pt;}
.yf_c00491{bottom:643.386667pt;}
.ye_c00491{bottom:670.906667pt;}
.yd_c00491{bottom:698.466667pt;}
.yc_c00491{bottom:726.306667pt;}
.yb_c00491{bottom:753.826667pt;}
.ya_c00491{bottom:781.346667pt;}
.y9_c00491{bottom:808.893333pt;}
.y8_c00491{bottom:836.733333pt;}
.y7_c00491{bottom:864.253333pt;}
.y6_c00491{bottom:891.773333pt;}
.y5_c00491{bottom:919.333333pt;}
.y4_c00491{bottom:947.173333pt;}
.y1_c00491{bottom:993.573333pt;}
.h1_c00491{height:57.375000pt;}
.h2_c00491{height:62.812500pt;}
.h0_c00491{height:1056.000000pt;}
.w0_c00491{width:816.000000pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:113.312000pt;}
.x3_c00491{left:160.706667pt;}
.x2_c00491{left:396.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_c00492 {
    display:none;
  }
  .loading-indicator_c00492.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00492 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00492 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00492" -> "#page-container .classname_c00492")
 */
.pf_c00492 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00492 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00492 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00492 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00492 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00492 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00492 {overflow:visible;}
  }
}
.c_c00492 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00492 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00492:after { /* webkit #35443 */
  content: '';
}
.t_c00492:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00492 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00492 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00492 { /* info for Javascript */
  display:none;
}
.l_c00492 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00492 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00492 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00492:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00492 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00492.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00492 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00492;src:url('chunks/assets/font_4116fadecb73039e0128f2af.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_29b809a6cd65ff37af325478.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_d9fa9cdf5660766ab604179e.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_ccccf7532377fd0ab39b0ede.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00492;src:url('chunks/assets/font_86c27413b3aa31d3ac155c1c.woff2')format("woff");}.ff5_c00492{font-family:ff5_c00492;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_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls6_c00492{letter-spacing:-1.296000px;}
.ls5_c00492{letter-spacing:-0.864000px;}
.ls4_c00492{letter-spacing:0.000000px;}
.ls2_c00492{letter-spacing:0.504000px;}
.ls0_c00492{letter-spacing:0.720000px;}
.ls3_c00492{letter-spacing:1.440000px;}
.ls1_c00492{letter-spacing:13.680000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-18.000000px;}
.ws1_c00492{word-spacing:-16.704000px;}
.ws2_c00492{word-spacing:0.000000px;}
._5_c00492{margin-left:-2.664000px;}
._1_c00492{margin-left:-1.440000px;}
._0_c00492{width:1.512000px;}
._2_c00492{width:2.592000px;}
._c_c00492{width:3.816000px;}
._10_c00492{width:4.896000px;}
._7_c00492{width:5.904000px;}
._6_c00492{width:7.560000px;}
._e_c00492{width:8.640000px;}
._f_c00492{width:9.816000px;}
._d_c00492{width:11.832000px;}
._8_c00492{width:13.260000px;}
._4_c00492{width:14.988000px;}
._3_c00492{width:16.416000px;}
._9_c00492{width:19.368000px;}
._a_c00492{width:20.736000px;}
._b_c00492{width:22.596000px;}
._12_c00492{width:28.152000px;}
._11_c00492{width:29.232000px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs0_c00492{font-size:72.000000px;}
.y0_c00492{bottom:0.000000px;}
.y3_c00492{bottom:57.996000px;}
.y2_c00492{bottom:78.876000px;}
.y22_c00492{bottom:115.596000px;}
.y21_c00492{bottom:146.916000px;}
.y20_c00492{bottom:177.915000px;}
.y1f_c00492{bottom:208.875000px;}
.y1e_c00492{bottom:248.835000px;}
.y1d_c00492{bottom:280.185000px;}
.y1c_c00492{bottom:311.145000px;}
.y1b_c00492{bottom:342.105000px;}
.y1a_c00492{bottom:373.065000px;}
.y19_c00492{bottom:404.070000px;}
.y18_c00492{bottom:435.390000px;}
.y17_c00492{bottom:466.350000px;}
.y16_c00492{bottom:497.310000px;}
.y15_c00492{bottom:528.300000px;}
.y14_c00492{bottom:559.620000px;}
.y13_c00492{bottom:590.580000px;}
.y12_c00492{bottom:621.540000px;}
.y11_c00492{bottom:652.530000px;}
.y10_c00492{bottom:683.850000px;}
.yf_c00492{bottom:714.810000px;}
.ye_c00492{bottom:745.770000px;}
.yd_c00492{bottom:776.775000px;}
.yc_c00492{bottom:808.095000px;}
.yb_c00492{bottom:839.055000px;}
.ya_c00492{bottom:879.015000px;}
.y9_c00492{bottom:910.005000px;}
.y8_c00492{bottom:941.325000px;}
.y7_c00492{bottom:972.285000px;}
.y6_c00492{bottom:1003.245000px;}
.y5_c00492{bottom:1034.250000px;}
.y4_c00492{bottom:1065.570000px;}
.y1_c00492{bottom:1117.770000px;}
.h1_c00492{height:64.546875px;}
.h2_c00492{height:70.664062px;}
.h0_c00492{height:1188.000000px;}
.w0_c00492{width:918.000000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:127.476000px;}
.x3_c00492{left:180.795000px;}
.x2_c00492{left:445.500000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls6_c00492{letter-spacing:-1.152000pt;}
.ls5_c00492{letter-spacing:-0.768000pt;}
.ls4_c00492{letter-spacing:0.000000pt;}
.ls2_c00492{letter-spacing:0.448000pt;}
.ls0_c00492{letter-spacing:0.640000pt;}
.ls3_c00492{letter-spacing:1.280000pt;}
.ls1_c00492{letter-spacing:12.160000pt;}
.ws0_c00492{word-spacing:-16.000000pt;}
.ws1_c00492{word-spacing:-14.848000pt;}
.ws2_c00492{word-spacing:0.000000pt;}
._5_c00492{margin-left:-2.368000pt;}
._1_c00492{margin-left:-1.280000pt;}
._0_c00492{width:1.344000pt;}
._2_c00492{width:2.304000pt;}
._c_c00492{width:3.392000pt;}
._10_c00492{width:4.352000pt;}
._7_c00492{width:5.248000pt;}
._6_c00492{width:6.720000pt;}
._e_c00492{width:7.680000pt;}
._f_c00492{width:8.725333pt;}
._d_c00492{width:10.517333pt;}
._8_c00492{width:11.786667pt;}
._4_c00492{width:13.322667pt;}
._3_c00492{width:14.592000pt;}
._9_c00492{width:17.216000pt;}
._a_c00492{width:18.432000pt;}
._b_c00492{width:20.085333pt;}
._12_c00492{width:25.024000pt;}
._11_c00492{width:25.984000pt;}
.fs0_c00492{font-size:64.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y3_c00492{bottom:51.552000pt;}
.y2_c00492{bottom:70.112000pt;}
.y22_c00492{bottom:102.752000pt;}
.y21_c00492{bottom:130.592000pt;}
.y20_c00492{bottom:158.146667pt;}
.y1f_c00492{bottom:185.666667pt;}
.y1e_c00492{bottom:221.186667pt;}
.y1d_c00492{bottom:249.053333pt;}
.y1c_c00492{bottom:276.573333pt;}
.y1b_c00492{bottom:304.093333pt;}
.y1a_c00492{bottom:331.613333pt;}
.y19_c00492{bottom:359.173333pt;}
.y18_c00492{bottom:387.013333pt;}
.y17_c00492{bottom:414.533333pt;}
.y16_c00492{bottom:442.053333pt;}
.y15_c00492{bottom:469.600000pt;}
.y14_c00492{bottom:497.440000pt;}
.y13_c00492{bottom:524.960000pt;}
.y12_c00492{bottom:552.480000pt;}
.y11_c00492{bottom:580.026667pt;}
.y10_c00492{bottom:607.866667pt;}
.yf_c00492{bottom:635.386667pt;}
.ye_c00492{bottom:662.906667pt;}
.yd_c00492{bottom:690.466667pt;}
.yc_c00492{bottom:718.306667pt;}
.yb_c00492{bottom:745.826667pt;}
.ya_c00492{bottom:781.346667pt;}
.y9_c00492{bottom:808.893333pt;}
.y8_c00492{bottom:836.733333pt;}
.y7_c00492{bottom:864.253333pt;}
.y6_c00492{bottom:891.773333pt;}
.y5_c00492{bottom:919.333333pt;}
.y4_c00492{bottom:947.173333pt;}
.y1_c00492{bottom:993.573333pt;}
.h1_c00492{height:57.375000pt;}
.h2_c00492{height:62.812500pt;}
.h0_c00492{height:1056.000000pt;}
.w0_c00492{width:816.000000pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:113.312000pt;}
.x3_c00492{left:160.706667pt;}
.x2_c00492{left:396.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_c00493 {
    display:none;
  }
  .loading-indicator_c00493.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00493 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00493 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00493" -> "#page-container .classname_c00493")
 */
.pf_c00493 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00493 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00493 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00493 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00493 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00493 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00493 {overflow:visible;}
  }
}
.c_c00493 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00493 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00493:after { /* webkit #35443 */
  content: '';
}
.t_c00493:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00493 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00493 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00493 { /* info for Javascript */
  display:none;
}
.l_c00493 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00493 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00493 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00493:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00493 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00493.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00493 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00493{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00493;src:url('chunks/assets/font_6968c6eef167e5b69e7c7f55.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_8615711398d99a26b84c8850.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_618c0095c64a7e8332418451.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;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_c00493;src:url('chunks/assets/font_526c20bcab1bc2623f776f61.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00493;src:url('chunks/assets/font_6114255717d1b8be5ae76546.woff2')format("woff");}.ff5_c00493{font-family:ff5_c00493;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00493;src:url('chunks/assets/font_133b60b103936d1fe3435d15.woff2')format("woff");}.ff6_c00493{font-family:ff6_c00493;line-height:1.117188;font-style:normal;font-weight: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_c00493;src:url('chunks/assets/font_449479699680ae8991fc4255.woff2')format("woff");}.ff7_c00493{font-family:ff7_c00493;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls4_c00493{letter-spacing:-0.648000px;}
.ls5_c00493{letter-spacing:-0.466800px;}
.ls3_c00493{letter-spacing:0.000000px;}
.ls6_c00493{letter-spacing:0.486600px;}
.ls1_c00493{letter-spacing:0.720000px;}
.ls2_c00493{letter-spacing:0.864000px;}
.ls0_c00493{letter-spacing:1.440000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00493{word-spacing:-60.480000px;}
.ws0_c00493{word-spacing:-18.000000px;}
.ws3_c00493{word-spacing:-15.606600px;}
.ws2_c00493{word-spacing:-15.120000px;}
.ws4_c00493{word-spacing:0.000000px;}
._10_c00493{margin-left:-3.984000px;}
._3_c00493{margin-left:-2.736000px;}
._0_c00493{margin-left:-1.152000px;}
._1_c00493{width:1.368000px;}
._2_c00493{width:2.736000px;}
._7_c00493{width:3.960000px;}
._8_c00493{width:5.388000px;}
._9_c00493{width:6.972000px;}
._5_c00493{width:8.352000px;}
._4_c00493{width:9.864000px;}
._6_c00493{width:10.872000px;}
._b_c00493{width:12.960000px;}
._11_c00493{width:14.112000px;}
._12_c00493{width:15.192000px;}
._c_c00493{width:16.416000px;}
._a_c00493{width:20.004000px;}
._e_c00493{width:22.440000px;}
._d_c00493{width:24.204000px;}
._f_c00493{width:25.704000px;}
.fc0_c00493{color:rgb(0,0,0);}
.fs2_c00493{font-size:38.880000px;}
.fs1_c00493{font-size:47.520000px;}
.fs3_c00493{font-size:60.480000px;}
.fs0_c00493{font-size:72.000000px;}
.y0_c00493{bottom:0.000000px;}
.y3_c00493{bottom:57.996000px;}
.y2_c00493{bottom:78.876000px;}
.y27_c00493{bottom:130.716000px;}
.y26_c00493{bottom:137.556000px;}
.y25_c00493{bottom:147.996000px;}
.y24_c00493{bottom:154.875000px;}
.y23_c00493{bottom:165.675000px;}
.y22_c00493{bottom:186.915000px;}
.y21_c00493{bottom:217.875000px;}
.y1f_c00493{bottom:248.835000px;}
.y20_c00493{bottom:257.115000px;}
.y1e_c00493{bottom:280.185000px;}
.y1d_c00493{bottom:311.145000px;}
.y1c_c00493{bottom:342.105000px;}
.y1a_c00493{bottom:373.065000px;}
.y1b_c00493{bottom:381.345000px;}
.y19_c00493{bottom:412.710000px;}
.y18_c00493{bottom:444.030000px;}
.y17_c00493{bottom:475.350000px;}
.y16_c00493{bottom:506.310000px;}
.y15_c00493{bottom:537.300000px;}
.y14_c00493{bottom:568.620000px;}
.y13_c00493{bottom:599.580000px;}
.y12_c00493{bottom:630.540000px;}
.y11_c00493{bottom:661.530000px;}
.y10_c00493{bottom:692.850000px;}
.yf_c00493{bottom:723.810000px;}
.ye_c00493{bottom:754.770000px;}
.yd_c00493{bottom:785.775000px;}
.yc_c00493{bottom:817.095000px;}
.yb_c00493{bottom:848.055000px;}
.ya_c00493{bottom:879.015000px;}
.y9_c00493{bottom:910.005000px;}
.y8_c00493{bottom:941.325000px;}
.y7_c00493{bottom:972.285000px;}
.y6_c00493{bottom:1003.245000px;}
.y5_c00493{bottom:1034.250000px;}
.y4_c00493{bottom:1065.570000px;}
.y1_c00493{bottom:1117.770000px;}
.h8_c00493{height:34.855313px;}
.h7_c00493{height:46.615078px;}
.h5_c00493{height:46.638281px;}
.h9_c00493{height:54.514688px;}
.h1_c00493{height:64.546875px;}
.h6_c00493{height:70.628906px;}
.h2_c00493{height:70.664062px;}
.h3_c00493{height:72.562500px;}
.h4_c00493{height:1187.995500px;}
.h0_c00493{height:1188.000000px;}
.w1_c00493{width:917.997000px;}
.w0_c00493{width:918.000000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:127.476000px;}
.x9_c00493{left:142.596000px;}
.x3_c00493{left:180.795000px;}
.x6_c00493{left:229.032000px;}
.x7_c00493{left:247.425000px;}
.x8_c00493{left:343.590000px;}
.x2_c00493{left:445.500000px;}
.x4_c00493{left:637.092000px;}
.x5_c00493{left:655.455000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls4_c00493{letter-spacing:-0.576000pt;}
.ls5_c00493{letter-spacing:-0.414933pt;}
.ls3_c00493{letter-spacing:0.000000pt;}
.ls6_c00493{letter-spacing:0.432533pt;}
.ls1_c00493{letter-spacing:0.640000pt;}
.ls2_c00493{letter-spacing:0.768000pt;}
.ls0_c00493{letter-spacing:1.280000pt;}
.ws1_c00493{word-spacing:-53.760000pt;}
.ws0_c00493{word-spacing:-16.000000pt;}
.ws3_c00493{word-spacing:-13.872533pt;}
.ws2_c00493{word-spacing:-13.440000pt;}
.ws4_c00493{word-spacing:0.000000pt;}
._10_c00493{margin-left:-3.541333pt;}
._3_c00493{margin-left:-2.432000pt;}
._0_c00493{margin-left:-1.024000pt;}
._1_c00493{width:1.216000pt;}
._2_c00493{width:2.432000pt;}
._7_c00493{width:3.520000pt;}
._8_c00493{width:4.789333pt;}
._9_c00493{width:6.197333pt;}
._5_c00493{width:7.424000pt;}
._4_c00493{width:8.768000pt;}
._6_c00493{width:9.664000pt;}
._b_c00493{width:11.520000pt;}
._11_c00493{width:12.544000pt;}
._12_c00493{width:13.504000pt;}
._c_c00493{width:14.592000pt;}
._a_c00493{width:17.781333pt;}
._e_c00493{width:19.946667pt;}
._d_c00493{width:21.514667pt;}
._f_c00493{width:22.848000pt;}
.fs2_c00493{font-size:34.560000pt;}
.fs1_c00493{font-size:42.240000pt;}
.fs3_c00493{font-size:53.760000pt;}
.fs0_c00493{font-size:64.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y3_c00493{bottom:51.552000pt;}
.y2_c00493{bottom:70.112000pt;}
.y27_c00493{bottom:116.192000pt;}
.y26_c00493{bottom:122.272000pt;}
.y25_c00493{bottom:131.552000pt;}
.y24_c00493{bottom:137.666667pt;}
.y23_c00493{bottom:147.266667pt;}
.y22_c00493{bottom:166.146667pt;}
.y21_c00493{bottom:193.666667pt;}
.y1f_c00493{bottom:221.186667pt;}
.y20_c00493{bottom:228.546667pt;}
.y1e_c00493{bottom:249.053333pt;}
.y1d_c00493{bottom:276.573333pt;}
.y1c_c00493{bottom:304.093333pt;}
.y1a_c00493{bottom:331.613333pt;}
.y1b_c00493{bottom:338.973333pt;}
.y19_c00493{bottom:366.853333pt;}
.y18_c00493{bottom:394.693333pt;}
.y17_c00493{bottom:422.533333pt;}
.y16_c00493{bottom:450.053333pt;}
.y15_c00493{bottom:477.600000pt;}
.y14_c00493{bottom:505.440000pt;}
.y13_c00493{bottom:532.960000pt;}
.y12_c00493{bottom:560.480000pt;}
.y11_c00493{bottom:588.026667pt;}
.y10_c00493{bottom:615.866667pt;}
.yf_c00493{bottom:643.386667pt;}
.ye_c00493{bottom:670.906667pt;}
.yd_c00493{bottom:698.466667pt;}
.yc_c00493{bottom:726.306667pt;}
.yb_c00493{bottom:753.826667pt;}
.ya_c00493{bottom:781.346667pt;}
.y9_c00493{bottom:808.893333pt;}
.y8_c00493{bottom:836.733333pt;}
.y7_c00493{bottom:864.253333pt;}
.y6_c00493{bottom:891.773333pt;}
.y5_c00493{bottom:919.333333pt;}
.y4_c00493{bottom:947.173333pt;}
.y1_c00493{bottom:993.573333pt;}
.h8_c00493{height:30.982500pt;}
.h7_c00493{height:41.435625pt;}
.h5_c00493{height:41.456250pt;}
.h9_c00493{height:48.457500pt;}
.h1_c00493{height:57.375000pt;}
.h6_c00493{height:62.781250pt;}
.h2_c00493{height:62.812500pt;}
.h3_c00493{height:64.500000pt;}
.h4_c00493{height:1055.996000pt;}
.h0_c00493{height:1056.000000pt;}
.w1_c00493{width:815.997333pt;}
.w0_c00493{width:816.000000pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:113.312000pt;}
.x9_c00493{left:126.752000pt;}
.x3_c00493{left:160.706667pt;}
.x6_c00493{left:203.584000pt;}
.x7_c00493{left:219.933333pt;}
.x8_c00493{left:305.413333pt;}
.x2_c00493{left:396.000000pt;}
.x4_c00493{left:566.304000pt;}
.x5_c00493{left:582.626667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00494 {
    display:none;
  }
  .loading-indicator_c00494.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00494 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00494 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00494" -> "#page-container .classname_c00494")
 */
.pf_c00494 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00494 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00494 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00494 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00494 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00494 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00494 {overflow:visible;}
  }
}
.c_c00494 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00494 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00494:after { /* webkit #35443 */
  content: '';
}
.t_c00494:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00494 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00494 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00494 { /* info for Javascript */
  display:none;
}
.l_c00494 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00494 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00494 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00494:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00494 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00494.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00494 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00494;src:url('chunks/assets/font_a7ce459dae0b0d6a97e250f5.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_c28c712e9cb969ddf77de60c.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_f1253c6a5eb043475f470409.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_36169dea6f7c4a45ac786368.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;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_c00494;src:url('chunks/assets/font_fcab96fef85e25435cf79fd0.woff2')format("woff");}.ff5_c00494{font-family:ff5_c00494;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00494;src:url('chunks/assets/font_e4dff31d2932948f09022d60.woff2')format("woff");}.ff6_c00494{font-family:ff6_c00494;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls3_c00494{letter-spacing:0.000000px;}
.ls4_c00494{letter-spacing:0.504000px;}
.ls2_c00494{letter-spacing:0.506880px;}
.ls1_c00494{letter-spacing:0.720000px;}
.ls0_c00494{letter-spacing:3.600000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00494{word-spacing:-60.480000px;}
.ws1_c00494{word-spacing:-18.504000px;}
.ws0_c00494{word-spacing:-18.000000px;}
.ws3_c00494{word-spacing:-15.120000px;}
.ws4_c00494{word-spacing:0.000000px;}
._3_c00494{margin-left:-2.736000px;}
._1_c00494{margin-left:-1.440000px;}
._0_c00494{width:1.512000px;}
._13_c00494{width:2.520000px;}
._4_c00494{width:3.528000px;}
._2_c00494{width:4.680000px;}
._a_c00494{width:5.760000px;}
._c_c00494{width:6.792048px;}
._b_c00494{width:7.835976px;}
._8_c00494{width:8.940024px;}
._9_c00494{width:10.955904px;}
._10_c00494{width:11.988504px;}
._14_c00494{width:13.680000px;}
._12_c00494{width:15.264000px;}
._11_c00494{width:16.776000px;}
._f_c00494{width:21.528000px;}
._d_c00494{width:22.536000px;}
._e_c00494{width:24.120000px;}
._15_c00494{width:25.488000px;}
._6_c00494{width:35.352000px;}
._7_c00494{width:36.432000px;}
._5_c00494{width:37.512000px;}
.fc0_c00494{color:rgb(0,0,0);}
.fs2_c00494{font-size:38.880000px;}
.fs1_c00494{font-size:47.520000px;}
.fs3_c00494{font-size:60.480000px;}
.fs0_c00494{font-size:72.000000px;}
.y0_c00494{bottom:0.000000px;}
.y3_c00494{bottom:57.996000px;}
.y2_c00494{bottom:78.876000px;}
.y25_c00494{bottom:130.716000px;}
.y24_c00494{bottom:147.996000px;}
.y23_c00494{bottom:165.315000px;}
.y22_c00494{bottom:172.155000px;}
.y21_c00494{bottom:182.955000px;}
.y20_c00494{bottom:208.875000px;}
.y1f_c00494{bottom:239.835000px;}
.y1e_c00494{bottom:271.155000px;}
.y1d_c00494{bottom:302.145000px;}
.y1c_c00494{bottom:333.105000px;}
.y1b_c00494{bottom:364.065000px;}
.y1a_c00494{bottom:395.070000px;}
.y19_c00494{bottom:426.390000px;}
.y18_c00494{bottom:457.350000px;}
.y17_c00494{bottom:488.310000px;}
.y15_c00494{bottom:519.300000px;}
.y16_c00494{bottom:527.580000px;}
.y14_c00494{bottom:550.620000px;}
.y13_c00494{bottom:581.580000px;}
.y12_c00494{bottom:621.540000px;}
.y11_c00494{bottom:652.530000px;}
.y10_c00494{bottom:683.850000px;}
.yf_c00494{bottom:714.810000px;}
.ye_c00494{bottom:754.770000px;}
.yd_c00494{bottom:785.775000px;}
.yc_c00494{bottom:817.095000px;}
.yb_c00494{bottom:848.055000px;}
.ya_c00494{bottom:879.015000px;}
.y9_c00494{bottom:910.005000px;}
.y8_c00494{bottom:941.325000px;}
.y7_c00494{bottom:972.285000px;}
.y6_c00494{bottom:1003.245000px;}
.y5_c00494{bottom:1034.250000px;}
.y4_c00494{bottom:1065.570000px;}
.y1_c00494{bottom:1117.770000px;}
.h5_c00494{height:34.855313px;}
.h4_c00494{height:46.638281px;}
.h7_c00494{height:54.219375px;}
.h6_c00494{height:54.514688px;}
.h1_c00494{height:64.546875px;}
.h2_c00494{height:70.664062px;}
.h3_c00494{height:1187.995500px;}
.h0_c00494{height:1188.000000px;}
.w1_c00494{width:917.997000px;}
.w0_c00494{width:918.000000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:127.476000px;}
.x7_c00494{left:142.596000px;}
.x3_c00494{left:180.795000px;}
.x4_c00494{left:297.102000px;}
.x5_c00494{left:315.465000px;}
.x6_c00494{left:343.590000px;}
.x2_c00494{left:445.500000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls3_c00494{letter-spacing:0.000000pt;}
.ls4_c00494{letter-spacing:0.448000pt;}
.ls2_c00494{letter-spacing:0.450560pt;}
.ls1_c00494{letter-spacing:0.640000pt;}
.ls0_c00494{letter-spacing:3.200000pt;}
.ws2_c00494{word-spacing:-53.760000pt;}
.ws1_c00494{word-spacing:-16.448000pt;}
.ws0_c00494{word-spacing:-16.000000pt;}
.ws3_c00494{word-spacing:-13.440000pt;}
.ws4_c00494{word-spacing:0.000000pt;}
._3_c00494{margin-left:-2.432000pt;}
._1_c00494{margin-left:-1.280000pt;}
._0_c00494{width:1.344000pt;}
._13_c00494{width:2.240000pt;}
._4_c00494{width:3.136000pt;}
._2_c00494{width:4.160000pt;}
._a_c00494{width:5.120000pt;}
._c_c00494{width:6.037376pt;}
._b_c00494{width:6.965312pt;}
._8_c00494{width:7.946688pt;}
._9_c00494{width:9.738581pt;}
._10_c00494{width:10.656448pt;}
._14_c00494{width:12.160000pt;}
._12_c00494{width:13.568000pt;}
._11_c00494{width:14.912000pt;}
._f_c00494{width:19.136000pt;}
._d_c00494{width:20.032000pt;}
._e_c00494{width:21.440000pt;}
._15_c00494{width:22.656000pt;}
._6_c00494{width:31.424000pt;}
._7_c00494{width:32.384000pt;}
._5_c00494{width:33.344000pt;}
.fs2_c00494{font-size:34.560000pt;}
.fs1_c00494{font-size:42.240000pt;}
.fs3_c00494{font-size:53.760000pt;}
.fs0_c00494{font-size:64.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y3_c00494{bottom:51.552000pt;}
.y2_c00494{bottom:70.112000pt;}
.y25_c00494{bottom:116.192000pt;}
.y24_c00494{bottom:131.552000pt;}
.y23_c00494{bottom:146.946667pt;}
.y22_c00494{bottom:153.026667pt;}
.y21_c00494{bottom:162.626667pt;}
.y20_c00494{bottom:185.666667pt;}
.y1f_c00494{bottom:213.186667pt;}
.y1e_c00494{bottom:241.026667pt;}
.y1d_c00494{bottom:268.573333pt;}
.y1c_c00494{bottom:296.093333pt;}
.y1b_c00494{bottom:323.613333pt;}
.y1a_c00494{bottom:351.173333pt;}
.y19_c00494{bottom:379.013333pt;}
.y18_c00494{bottom:406.533333pt;}
.y17_c00494{bottom:434.053333pt;}
.y15_c00494{bottom:461.600000pt;}
.y16_c00494{bottom:468.960000pt;}
.y14_c00494{bottom:489.440000pt;}
.y13_c00494{bottom:516.960000pt;}
.y12_c00494{bottom:552.480000pt;}
.y11_c00494{bottom:580.026667pt;}
.y10_c00494{bottom:607.866667pt;}
.yf_c00494{bottom:635.386667pt;}
.ye_c00494{bottom:670.906667pt;}
.yd_c00494{bottom:698.466667pt;}
.yc_c00494{bottom:726.306667pt;}
.yb_c00494{bottom:753.826667pt;}
.ya_c00494{bottom:781.346667pt;}
.y9_c00494{bottom:808.893333pt;}
.y8_c00494{bottom:836.733333pt;}
.y7_c00494{bottom:864.253333pt;}
.y6_c00494{bottom:891.773333pt;}
.y5_c00494{bottom:919.333333pt;}
.y4_c00494{bottom:947.173333pt;}
.y1_c00494{bottom:993.573333pt;}
.h5_c00494{height:30.982500pt;}
.h4_c00494{height:41.456250pt;}
.h7_c00494{height:48.195000pt;}
.h6_c00494{height:48.457500pt;}
.h1_c00494{height:57.375000pt;}
.h2_c00494{height:62.812500pt;}
.h3_c00494{height:1055.996000pt;}
.h0_c00494{height:1056.000000pt;}
.w1_c00494{width:815.997333pt;}
.w0_c00494{width:816.000000pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:113.312000pt;}
.x7_c00494{left:126.752000pt;}
.x3_c00494{left:160.706667pt;}
.x4_c00494{left:264.090667pt;}
.x5_c00494{left:280.413333pt;}
.x6_c00494{left:305.413333pt;}
.x2_c00494{left:396.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_c00495 {
    display:none;
  }
  .loading-indicator_c00495.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00495 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00495 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00495" -> "#page-container .classname_c00495")
 */
.pf_c00495 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00495 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00495 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00495 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00495 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00495 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00495 {overflow:visible;}
  }
}
.c_c00495 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00495 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00495:after { /* webkit #35443 */
  content: '';
}
.t_c00495:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00495 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00495 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00495 { /* info for Javascript */
  display:none;
}
.l_c00495 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00495 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00495 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00495:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00495 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00495.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00495 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00495{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00495;src:url('chunks/assets/font_6c78142f9ba2b1896450f422.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_257c98334b4ff9b640ef74a1.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_99d13b992f38b447ee78b1c0.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00495;src:url('chunks/assets/font_f9f81fd552a5bf835158e4e3.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;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_c00495;src:url('chunks/assets/font_bfc943802662d43bf7c83047.woff2')format("woff");}.ff5_c00495{font-family:ff5_c00495;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls2_c00495{letter-spacing:-0.288000px;}
.ls1_c00495{letter-spacing:0.000000px;}
.ls0_c00495{letter-spacing:0.504000px;}
.ls3_c00495{letter-spacing:2.160000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:-18.000000px;}
.ws1_c00495{word-spacing:-17.712000px;}
.ws2_c00495{word-spacing:0.000000px;}
._10_c00495{margin-left:-3.780000px;}
._6_c00495{margin-left:-2.759976px;}
._1_c00495{margin-left:-1.440000px;}
._0_c00495{width:1.080000px;}
._4_c00495{width:2.292000px;}
._c_c00495{width:3.335976px;}
._2_c00495{width:4.464000px;}
._3_c00495{width:6.276000px;}
._5_c00495{width:8.207976px;}
._a_c00495{width:9.959976px;}
._9_c00495{width:11.016000px;}
._b_c00495{width:12.864024px;}
._d_c00495{width:14.207976px;}
._e_c00495{width:15.947976px;}
._f_c00495{width:16.967952px;}
._7_c00495{width:19.800000px;}
._8_c00495{width:21.240000px;}
._13_c00495{width:22.823976px;}
._12_c00495{width:23.832000px;}
._11_c00495{width:24.912000px;}
._14_c00495{width:26.111928px;}
.fc0_c00495{color:rgb(0,0,0);}
.fs0_c00495{font-size:72.000000px;}
.y0_c00495{bottom:0.000000px;}
.y3_c00495{bottom:57.996000px;}
.y2_c00495{bottom:78.876000px;}
.y22_c00495{bottom:115.596000px;}
.y21_c00495{bottom:146.916000px;}
.y20_c00495{bottom:177.915000px;}
.y1f_c00495{bottom:208.875000px;}
.y1e_c00495{bottom:239.835000px;}
.y1d_c00495{bottom:271.155000px;}
.y1c_c00495{bottom:302.145000px;}
.y1b_c00495{bottom:332.745000px;}
.y1a_c00495{bottom:364.065000px;}
.y19_c00495{bottom:404.070000px;}
.y18_c00495{bottom:435.390000px;}
.y17_c00495{bottom:466.350000px;}
.y16_c00495{bottom:497.310000px;}
.y15_c00495{bottom:528.300000px;}
.y14_c00495{bottom:559.620000px;}
.y13_c00495{bottom:590.580000px;}
.y12_c00495{bottom:621.540000px;}
.y11_c00495{bottom:652.530000px;}
.y10_c00495{bottom:683.850000px;}
.yf_c00495{bottom:714.810000px;}
.ye_c00495{bottom:745.770000px;}
.yd_c00495{bottom:776.775000px;}
.yc_c00495{bottom:808.095000px;}
.yb_c00495{bottom:839.055000px;}
.ya_c00495{bottom:870.015000px;}
.y9_c00495{bottom:901.005000px;}
.y8_c00495{bottom:932.325000px;}
.y7_c00495{bottom:972.285000px;}
.y6_c00495{bottom:1003.245000px;}
.y5_c00495{bottom:1034.250000px;}
.y4_c00495{bottom:1065.570000px;}
.y1_c00495{bottom:1117.770000px;}
.h1_c00495{height:64.546875px;}
.h2_c00495{height:70.664062px;}
.h3_c00495{height:72.562500px;}
.h0_c00495{height:1188.000000px;}
.w0_c00495{width:918.000000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:127.476000px;}
.x3_c00495{left:180.795000px;}
.x2_c00495{left:445.500000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls2_c00495{letter-spacing:-0.256000pt;}
.ls1_c00495{letter-spacing:0.000000pt;}
.ls0_c00495{letter-spacing:0.448000pt;}
.ls3_c00495{letter-spacing:1.920000pt;}
.ws0_c00495{word-spacing:-16.000000pt;}
.ws1_c00495{word-spacing:-15.744000pt;}
.ws2_c00495{word-spacing:0.000000pt;}
._10_c00495{margin-left:-3.360000pt;}
._6_c00495{margin-left:-2.453312pt;}
._1_c00495{margin-left:-1.280000pt;}
._0_c00495{width:0.960000pt;}
._4_c00495{width:2.037333pt;}
._c_c00495{width:2.965312pt;}
._2_c00495{width:3.968000pt;}
._3_c00495{width:5.578667pt;}
._5_c00495{width:7.295979pt;}
._a_c00495{width:8.853312pt;}
._9_c00495{width:9.792000pt;}
._b_c00495{width:11.434688pt;}
._d_c00495{width:12.629312pt;}
._e_c00495{width:14.175979pt;}
._f_c00495{width:15.082624pt;}
._7_c00495{width:17.600000pt;}
._8_c00495{width:18.880000pt;}
._13_c00495{width:20.287979pt;}
._12_c00495{width:21.184000pt;}
._11_c00495{width:22.144000pt;}
._14_c00495{width:23.210603pt;}
.fs0_c00495{font-size:64.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y3_c00495{bottom:51.552000pt;}
.y2_c00495{bottom:70.112000pt;}
.y22_c00495{bottom:102.752000pt;}
.y21_c00495{bottom:130.592000pt;}
.y20_c00495{bottom:158.146667pt;}
.y1f_c00495{bottom:185.666667pt;}
.y1e_c00495{bottom:213.186667pt;}
.y1d_c00495{bottom:241.026667pt;}
.y1c_c00495{bottom:268.573333pt;}
.y1b_c00495{bottom:295.773333pt;}
.y1a_c00495{bottom:323.613333pt;}
.y19_c00495{bottom:359.173333pt;}
.y18_c00495{bottom:387.013333pt;}
.y17_c00495{bottom:414.533333pt;}
.y16_c00495{bottom:442.053333pt;}
.y15_c00495{bottom:469.600000pt;}
.y14_c00495{bottom:497.440000pt;}
.y13_c00495{bottom:524.960000pt;}
.y12_c00495{bottom:552.480000pt;}
.y11_c00495{bottom:580.026667pt;}
.y10_c00495{bottom:607.866667pt;}
.yf_c00495{bottom:635.386667pt;}
.ye_c00495{bottom:662.906667pt;}
.yd_c00495{bottom:690.466667pt;}
.yc_c00495{bottom:718.306667pt;}
.yb_c00495{bottom:745.826667pt;}
.ya_c00495{bottom:773.346667pt;}
.y9_c00495{bottom:800.893333pt;}
.y8_c00495{bottom:828.733333pt;}
.y7_c00495{bottom:864.253333pt;}
.y6_c00495{bottom:891.773333pt;}
.y5_c00495{bottom:919.333333pt;}
.y4_c00495{bottom:947.173333pt;}
.y1_c00495{bottom:993.573333pt;}
.h1_c00495{height:57.375000pt;}
.h2_c00495{height:62.812500pt;}
.h3_c00495{height:64.500000pt;}
.h0_c00495{height:1056.000000pt;}
.w0_c00495{width:816.000000pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:113.312000pt;}
.x3_c00495{left:160.706667pt;}
.x2_c00495{left:396.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_c00496 {
    display:none;
  }
  .loading-indicator_c00496.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00496 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00496 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00496" -> "#page-container .classname_c00496")
 */
.pf_c00496 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00496 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00496 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00496 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00496 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00496 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00496 {overflow:visible;}
  }
}
.c_c00496 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00496 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00496:after { /* webkit #35443 */
  content: '';
}
.t_c00496:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00496 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00496 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00496 { /* info for Javascript */
  display:none;
}
.l_c00496 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00496 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00496 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00496:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00496 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00496.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00496 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00496;src:url('chunks/assets/font_ab2fa4800e0ba7b3cbce77f4.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_8459b9b19766951af76c1337.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_6430047354b0defd83027fb6.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_26eba74ab690d3b4d0b7f8de.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;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_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:-18.000000px;}
.ws1_c00496{word-spacing:0.000000px;}
._16_c00496{margin-left:-3.876000px;}
._1_c00496{margin-left:-2.736000px;}
._2_c00496{margin-left:-1.152000px;}
._0_c00496{width:1.224000px;}
._4_c00496{width:2.592000px;}
._6_c00496{width:3.600000px;}
._10_c00496{width:4.620000px;}
._15_c00496{width:5.832000px;}
._d_c00496{width:7.212000px;}
._c_c00496{width:8.712000px;}
._b_c00496{width:10.224000px;}
._3_c00496{width:12.168000px;}
._5_c00496{width:14.400000px;}
._11_c00496{width:15.984000px;}
._12_c00496{width:16.992000px;}
._a_c00496{width:19.008000px;}
._9_c00496{width:20.088000px;}
._e_c00496{width:21.096000px;}
._f_c00496{width:22.464000px;}
._18_c00496{width:25.980000px;}
._17_c00496{width:28.008000px;}
._14_c00496{width:29.304000px;}
._13_c00496{width:30.888000px;}
._8_c00496{width:34.848000px;}
._7_c00496{width:36.648000px;}
._1a_c00496{width:38.004000px;}
._19_c00496{width:39.312000px;}
.fc0_c00496{color:rgb(0,0,0);}
.fs0_c00496{font-size:72.000000px;}
.y0_c00496{bottom:0.000000px;}
.y3_c00496{bottom:57.996000px;}
.y2_c00496{bottom:78.876000px;}
.y22_c00496{bottom:124.596000px;}
.y21_c00496{bottom:155.955000px;}
.y20_c00496{bottom:186.915000px;}
.y1f_c00496{bottom:217.875000px;}
.y1e_c00496{bottom:248.835000px;}
.y1d_c00496{bottom:280.185000px;}
.y1c_c00496{bottom:311.145000px;}
.y1b_c00496{bottom:342.105000px;}
.y1a_c00496{bottom:373.065000px;}
.y19_c00496{bottom:404.070000px;}
.y18_c00496{bottom:435.390000px;}
.y17_c00496{bottom:466.350000px;}
.y16_c00496{bottom:497.310000px;}
.y15_c00496{bottom:528.300000px;}
.y14_c00496{bottom:559.620000px;}
.y13_c00496{bottom:590.580000px;}
.y12_c00496{bottom:621.540000px;}
.y11_c00496{bottom:652.530000px;}
.y10_c00496{bottom:683.850000px;}
.yf_c00496{bottom:714.810000px;}
.ye_c00496{bottom:745.770000px;}
.yd_c00496{bottom:776.775000px;}
.yc_c00496{bottom:808.095000px;}
.yb_c00496{bottom:839.055000px;}
.ya_c00496{bottom:879.015000px;}
.y9_c00496{bottom:910.005000px;}
.y8_c00496{bottom:941.325000px;}
.y7_c00496{bottom:972.285000px;}
.y6_c00496{bottom:1003.245000px;}
.y5_c00496{bottom:1034.250000px;}
.y4_c00496{bottom:1065.570000px;}
.y1_c00496{bottom:1117.770000px;}
.h1_c00496{height:64.546875px;}
.h2_c00496{height:70.664062px;}
.h0_c00496{height:1188.000000px;}
.w0_c00496{width:918.000000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:127.476000px;}
.x3_c00496{left:180.795000px;}
.x2_c00496{left:445.500000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:-16.000000pt;}
.ws1_c00496{word-spacing:0.000000pt;}
._16_c00496{margin-left:-3.445333pt;}
._1_c00496{margin-left:-2.432000pt;}
._2_c00496{margin-left:-1.024000pt;}
._0_c00496{width:1.088000pt;}
._4_c00496{width:2.304000pt;}
._6_c00496{width:3.200000pt;}
._10_c00496{width:4.106667pt;}
._15_c00496{width:5.184000pt;}
._d_c00496{width:6.410667pt;}
._c_c00496{width:7.744000pt;}
._b_c00496{width:9.088000pt;}
._3_c00496{width:10.816000pt;}
._5_c00496{width:12.800000pt;}
._11_c00496{width:14.208000pt;}
._12_c00496{width:15.104000pt;}
._a_c00496{width:16.896000pt;}
._9_c00496{width:17.856000pt;}
._e_c00496{width:18.752000pt;}
._f_c00496{width:19.968000pt;}
._18_c00496{width:23.093333pt;}
._17_c00496{width:24.896000pt;}
._14_c00496{width:26.048000pt;}
._13_c00496{width:27.456000pt;}
._8_c00496{width:30.976000pt;}
._7_c00496{width:32.576000pt;}
._1a_c00496{width:33.781333pt;}
._19_c00496{width:34.944000pt;}
.fs0_c00496{font-size:64.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y3_c00496{bottom:51.552000pt;}
.y2_c00496{bottom:70.112000pt;}
.y22_c00496{bottom:110.752000pt;}
.y21_c00496{bottom:138.626667pt;}
.y20_c00496{bottom:166.146667pt;}
.y1f_c00496{bottom:193.666667pt;}
.y1e_c00496{bottom:221.186667pt;}
.y1d_c00496{bottom:249.053333pt;}
.y1c_c00496{bottom:276.573333pt;}
.y1b_c00496{bottom:304.093333pt;}
.y1a_c00496{bottom:331.613333pt;}
.y19_c00496{bottom:359.173333pt;}
.y18_c00496{bottom:387.013333pt;}
.y17_c00496{bottom:414.533333pt;}
.y16_c00496{bottom:442.053333pt;}
.y15_c00496{bottom:469.600000pt;}
.y14_c00496{bottom:497.440000pt;}
.y13_c00496{bottom:524.960000pt;}
.y12_c00496{bottom:552.480000pt;}
.y11_c00496{bottom:580.026667pt;}
.y10_c00496{bottom:607.866667pt;}
.yf_c00496{bottom:635.386667pt;}
.ye_c00496{bottom:662.906667pt;}
.yd_c00496{bottom:690.466667pt;}
.yc_c00496{bottom:718.306667pt;}
.yb_c00496{bottom:745.826667pt;}
.ya_c00496{bottom:781.346667pt;}
.y9_c00496{bottom:808.893333pt;}
.y8_c00496{bottom:836.733333pt;}
.y7_c00496{bottom:864.253333pt;}
.y6_c00496{bottom:891.773333pt;}
.y5_c00496{bottom:919.333333pt;}
.y4_c00496{bottom:947.173333pt;}
.y1_c00496{bottom:993.573333pt;}
.h1_c00496{height:57.375000pt;}
.h2_c00496{height:62.812500pt;}
.h0_c00496{height:1056.000000pt;}
.w0_c00496{width:816.000000pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:113.312000pt;}
.x3_c00496{left:160.706667pt;}
.x2_c00496{left:396.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_c00497 {
    display:none;
  }
  .loading-indicator_c00497.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00497 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00497 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00497" -> "#page-container .classname_c00497")
 */
.pf_c00497 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00497 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00497 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00497 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00497 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00497 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00497 {overflow:visible;}
  }
}
.c_c00497 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00497 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00497:after { /* webkit #35443 */
  content: '';
}
.t_c00497:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00497 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00497 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00497 { /* info for Javascript */
  display:none;
}
.l_c00497 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00497 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00497 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00497:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00497 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00497.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00497 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00497;src:url('chunks/assets/font_02da3bb96ac47d399ec3c7a2.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00497;src:url('chunks/assets/font_b9032b582a8d22e212d127c5.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_b54e0bb2b14ad0620474b029.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_f2931b99868a2277d38f51d6.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;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_c00497;src:url('chunks/assets/font_a65fcba978967965346c8441.woff2')format("woff");}.ff5_c00497{font-family:ff5_c00497;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls1_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:0.324000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:-18.000000px;}
.ws1_c00497{word-spacing:0.000000px;}
._2_c00497{margin-left:-2.952000px;}
._0_c00497{margin-left:-1.224000px;}
._5_c00497{width:1.512000px;}
._3_c00497{width:3.240000px;}
._8_c00497{width:4.392000px;}
._f_c00497{width:5.675976px;}
._6_c00497{width:6.780000px;}
._7_c00497{width:8.040000px;}
._9_c00497{width:9.144000px;}
._a_c00497{width:10.224000px;}
._4_c00497{width:13.824000px;}
._1_c00497{width:15.192000px;}
._b_c00497{width:16.428024px;}
._c_c00497{width:19.380000px;}
._d_c00497{width:21.432000px;}
._e_c00497{width:23.184000px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs0_c00497{font-size:72.000000px;}
.y0_c00497{bottom:0.000000px;}
.y3_c00497{bottom:57.996000px;}
.y2_c00497{bottom:78.876000px;}
.y22_c00497{bottom:115.596000px;}
.y21_c00497{bottom:146.916000px;}
.y20_c00497{bottom:177.915000px;}
.y1f_c00497{bottom:208.875000px;}
.y1e_c00497{bottom:239.835000px;}
.y1d_c00497{bottom:271.155000px;}
.y1c_c00497{bottom:302.145000px;}
.y1b_c00497{bottom:333.105000px;}
.y1a_c00497{bottom:364.065000px;}
.y19_c00497{bottom:395.070000px;}
.y18_c00497{bottom:426.390000px;}
.y17_c00497{bottom:457.350000px;}
.y16_c00497{bottom:488.310000px;}
.y15_c00497{bottom:519.300000px;}
.y14_c00497{bottom:550.620000px;}
.y13_c00497{bottom:590.580000px;}
.y12_c00497{bottom:621.540000px;}
.y11_c00497{bottom:652.530000px;}
.y10_c00497{bottom:683.850000px;}
.yf_c00497{bottom:714.810000px;}
.ye_c00497{bottom:745.770000px;}
.yd_c00497{bottom:776.775000px;}
.yc_c00497{bottom:808.095000px;}
.yb_c00497{bottom:839.055000px;}
.ya_c00497{bottom:879.015000px;}
.y9_c00497{bottom:910.005000px;}
.y8_c00497{bottom:941.325000px;}
.y7_c00497{bottom:972.285000px;}
.y6_c00497{bottom:1003.245000px;}
.y5_c00497{bottom:1034.250000px;}
.y4_c00497{bottom:1065.570000px;}
.y1_c00497{bottom:1117.770000px;}
.h1_c00497{height:64.546875px;}
.h2_c00497{height:70.664062px;}
.h0_c00497{height:1188.000000px;}
.w0_c00497{width:918.000000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:127.476000px;}
.x3_c00497{left:180.795000px;}
.x2_c00497{left:445.500000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls1_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:0.288000pt;}
.ws0_c00497{word-spacing:-16.000000pt;}
.ws1_c00497{word-spacing:0.000000pt;}
._2_c00497{margin-left:-2.624000pt;}
._0_c00497{margin-left:-1.088000pt;}
._5_c00497{width:1.344000pt;}
._3_c00497{width:2.880000pt;}
._8_c00497{width:3.904000pt;}
._f_c00497{width:5.045312pt;}
._6_c00497{width:6.026667pt;}
._7_c00497{width:7.146667pt;}
._9_c00497{width:8.128000pt;}
._a_c00497{width:9.088000pt;}
._4_c00497{width:12.288000pt;}
._1_c00497{width:13.504000pt;}
._b_c00497{width:14.602688pt;}
._c_c00497{width:17.226667pt;}
._d_c00497{width:19.050667pt;}
._e_c00497{width:20.608000pt;}
.fs0_c00497{font-size:64.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y3_c00497{bottom:51.552000pt;}
.y2_c00497{bottom:70.112000pt;}
.y22_c00497{bottom:102.752000pt;}
.y21_c00497{bottom:130.592000pt;}
.y20_c00497{bottom:158.146667pt;}
.y1f_c00497{bottom:185.666667pt;}
.y1e_c00497{bottom:213.186667pt;}
.y1d_c00497{bottom:241.026667pt;}
.y1c_c00497{bottom:268.573333pt;}
.y1b_c00497{bottom:296.093333pt;}
.y1a_c00497{bottom:323.613333pt;}
.y19_c00497{bottom:351.173333pt;}
.y18_c00497{bottom:379.013333pt;}
.y17_c00497{bottom:406.533333pt;}
.y16_c00497{bottom:434.053333pt;}
.y15_c00497{bottom:461.600000pt;}
.y14_c00497{bottom:489.440000pt;}
.y13_c00497{bottom:524.960000pt;}
.y12_c00497{bottom:552.480000pt;}
.y11_c00497{bottom:580.026667pt;}
.y10_c00497{bottom:607.866667pt;}
.yf_c00497{bottom:635.386667pt;}
.ye_c00497{bottom:662.906667pt;}
.yd_c00497{bottom:690.466667pt;}
.yc_c00497{bottom:718.306667pt;}
.yb_c00497{bottom:745.826667pt;}
.ya_c00497{bottom:781.346667pt;}
.y9_c00497{bottom:808.893333pt;}
.y8_c00497{bottom:836.733333pt;}
.y7_c00497{bottom:864.253333pt;}
.y6_c00497{bottom:891.773333pt;}
.y5_c00497{bottom:919.333333pt;}
.y4_c00497{bottom:947.173333pt;}
.y1_c00497{bottom:993.573333pt;}
.h1_c00497{height:57.375000pt;}
.h2_c00497{height:62.812500pt;}
.h0_c00497{height:1056.000000pt;}
.w0_c00497{width:816.000000pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:113.312000pt;}
.x3_c00497{left:160.706667pt;}
.x2_c00497{left:396.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_c00498 {
    display:none;
  }
  .loading-indicator_c00498.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00498 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00498 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00498" -> "#page-container .classname_c00498")
 */
.pf_c00498 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00498 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00498 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00498 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00498 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00498 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00498 {overflow:visible;}
  }
}
.c_c00498 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00498 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00498:after { /* webkit #35443 */
  content: '';
}
.t_c00498:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00498 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00498 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00498 { /* info for Javascript */
  display:none;
}
.l_c00498 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00498 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00498 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00498:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00498 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00498.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00498 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00498;src:url('chunks/assets/font_d513c25628979f9c158db29d.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_b8ad85bcb641ef42fb948bee.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls0_c00498{letter-spacing:0.000000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:0.000000px;}
._0_c00498{margin-left:-1.350527px;}
.fc0_c00498{color:rgb(0,0,0);}
.fs0_c00498{font-size:72.000000px;}
.fs1_c00498{font-size:96.480000px;}
.y0_c00498{bottom:0.000000px;}
.y3_c00498{bottom:57.996000px;}
.y2_c00498{bottom:78.876000px;}
.y21_c00498{bottom:123.516000px;}
.y20_c00498{bottom:154.515000px;}
.y1f_c00498{bottom:185.475000px;}
.y1e_c00498{bottom:216.435000px;}
.y1d_c00498{bottom:247.755000px;}
.y1c_c00498{bottom:278.745000px;}
.y1b_c00498{bottom:309.705000px;}
.y1a_c00498{bottom:340.665000px;}
.y19_c00498{bottom:371.625000px;}
.y18_c00498{bottom:402.990000px;}
.y17_c00498{bottom:433.950000px;}
.y16_c00498{bottom:464.910000px;}
.y15_c00498{bottom:500.550000px;}
.y14_c00498{bottom:542.340000px;}
.y13_c00498{bottom:583.740000px;}
.y12_c00498{bottom:625.140000px;}
.y11_c00498{bottom:661.530000px;}
.y10_c00498{bottom:692.850000px;}
.yf_c00498{bottom:723.810000px;}
.ye_c00498{bottom:754.770000px;}
.yd_c00498{bottom:785.775000px;}
.yc_c00498{bottom:817.095000px;}
.yb_c00498{bottom:848.055000px;}
.ya_c00498{bottom:879.015000px;}
.y9_c00498{bottom:910.005000px;}
.y8_c00498{bottom:941.325000px;}
.y7_c00498{bottom:972.285000px;}
.y6_c00498{bottom:1003.245000px;}
.y5_c00498{bottom:1034.250000px;}
.y4_c00498{bottom:1065.570000px;}
.y1_c00498{bottom:1117.770000px;}
.h1_c00498{height:64.546875px;}
.h2_c00498{height:70.664062px;}
.h4_c00498{height:97.233750px;}
.h3_c00498{height:100.437187px;}
.h0_c00498{height:1188.000000px;}
.w0_c00498{width:918.000000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:127.476000px;}
.x4_c00498{left:368.790000px;}
.x2_c00498{left:445.500000px;}
.x3_c00498{left:458.820000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
._0_c00498{margin-left:-1.200468pt;}
.fs0_c00498{font-size:64.000000pt;}
.fs1_c00498{font-size:85.760000pt;}
.y0_c00498{bottom:0.000000pt;}
.y3_c00498{bottom:51.552000pt;}
.y2_c00498{bottom:70.112000pt;}
.y21_c00498{bottom:109.792000pt;}
.y20_c00498{bottom:137.346667pt;}
.y1f_c00498{bottom:164.866667pt;}
.y1e_c00498{bottom:192.386667pt;}
.y1d_c00498{bottom:220.226667pt;}
.y1c_c00498{bottom:247.773333pt;}
.y1b_c00498{bottom:275.293333pt;}
.y1a_c00498{bottom:302.813333pt;}
.y19_c00498{bottom:330.333333pt;}
.y18_c00498{bottom:358.213333pt;}
.y17_c00498{bottom:385.733333pt;}
.y16_c00498{bottom:413.253333pt;}
.y15_c00498{bottom:444.933333pt;}
.y14_c00498{bottom:482.080000pt;}
.y13_c00498{bottom:518.880000pt;}
.y12_c00498{bottom:555.680000pt;}
.y11_c00498{bottom:588.026667pt;}
.y10_c00498{bottom:615.866667pt;}
.yf_c00498{bottom:643.386667pt;}
.ye_c00498{bottom:670.906667pt;}
.yd_c00498{bottom:698.466667pt;}
.yc_c00498{bottom:726.306667pt;}
.yb_c00498{bottom:753.826667pt;}
.ya_c00498{bottom:781.346667pt;}
.y9_c00498{bottom:808.893333pt;}
.y8_c00498{bottom:836.733333pt;}
.y7_c00498{bottom:864.253333pt;}
.y6_c00498{bottom:891.773333pt;}
.y5_c00498{bottom:919.333333pt;}
.y4_c00498{bottom:947.173333pt;}
.y1_c00498{bottom:993.573333pt;}
.h1_c00498{height:57.375000pt;}
.h2_c00498{height:62.812500pt;}
.h4_c00498{height:86.430000pt;}
.h3_c00498{height:89.277500pt;}
.h0_c00498{height:1056.000000pt;}
.w0_c00498{width:816.000000pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:113.312000pt;}
.x4_c00498{left:327.813333pt;}
.x2_c00498{left:396.000000pt;}
.x3_c00498{left:407.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_c00499 {
    display:none;
  }
  .loading-indicator_c00499.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00499 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00499 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00499" -> "#page-container .classname_c00499")
 */
.pf_c00499 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00499 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00499 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00499 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00499 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00499 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00499 {overflow:visible;}
  }
}
.c_c00499 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00499 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00499:after { /* webkit #35443 */
  content: '';
}
.t_c00499:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00499 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00499 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00499 { /* info for Javascript */
  display:none;
}
.l_c00499 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00499 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00499 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00499:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00499 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00499.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00499 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00499{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00499;src:url('chunks/assets/font_30ff0188728c9cbf2bd4da70.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_9f4d0d92a27be24f89076673.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_7f4db791a60e170e0c120d67.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00499;src:url('chunks/assets/font_05c92a90df4a49f8466198b4.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;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_c00499;src:url('chunks/assets/font_e4f353ec1e25bd0ebc119eaf.woff2')format("woff");}.ff5_c00499{font-family:ff5_c00499;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.v1_c00499{vertical-align:33.120000px;}
.ls1_c00499{letter-spacing:0.000000px;}
.ls2_c00499{letter-spacing:0.504000px;}
.ls0_c00499{letter-spacing:0.720000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00499{word-spacing:-18.504000px;}
.ws0_c00499{word-spacing:-18.000000px;}
.ws2_c00499{word-spacing:0.000000px;}
._7_c00499{margin-left:-3.732000px;}
._2_c00499{margin-left:-2.712000px;}
._1_c00499{margin-left:-1.152000px;}
._0_c00499{width:1.008000px;}
._3_c00499{width:2.016000px;}
._4_c00499{width:4.068000px;}
._6_c00499{width:7.199928px;}
._5_c00499{width:8.412024px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs1_c00499{font-size:47.520000px;}
.fs0_c00499{font-size:72.000000px;}
.y0_c00499{bottom:0.000000px;}
.y3_c00499{bottom:57.996000px;}
.y2_c00499{bottom:78.876000px;}
.y21_c00499{bottom:124.236000px;}
.y20_c00499{bottom:155.235000px;}
.y1f_c00499{bottom:186.555000px;}
.y1e_c00499{bottom:217.515000px;}
.y1d_c00499{bottom:248.475000px;}
.y1c_c00499{bottom:279.465000px;}
.y1b_c00499{bottom:310.785000px;}
.y1a_c00499{bottom:341.745000px;}
.y19_c00499{bottom:372.705000px;}
.y18_c00499{bottom:403.710000px;}
.y17_c00499{bottom:434.670000px;}
.y16_c00499{bottom:465.990000px;}
.y15_c00499{bottom:496.950000px;}
.y14_c00499{bottom:527.940000px;}
.y13_c00499{bottom:558.900000px;}
.y12_c00499{bottom:590.220000px;}
.y11_c00499{bottom:621.180000px;}
.y10_c00499{bottom:652.170000px;}
.yf_c00499{bottom:683.130000px;}
.ye_c00499{bottom:714.450000px;}
.yd_c00499{bottom:745.410000px;}
.yc_c00499{bottom:776.415000px;}
.yb_c00499{bottom:816.375000px;}
.ya_c00499{bottom:856.695000px;}
.y9_c00499{bottom:892.005000px;}
.y8_c00499{bottom:941.325000px;}
.y7_c00499{bottom:972.285000px;}
.y6_c00499{bottom:1003.245000px;}
.y5_c00499{bottom:1034.250000px;}
.y4_c00499{bottom:1065.570000px;}
.y1_c00499{bottom:1117.770000px;}
.h1_c00499{height:64.546875px;}
.h2_c00499{height:70.664062px;}
.h3_c00499{height:72.562500px;}
.h4_c00499{height:79.758281px;}
.h0_c00499{height:1188.000000px;}
.w0_c00499{width:918.000000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:127.476000px;}
.x3_c00499{left:377.790000px;}
.x2_c00499{left:445.500000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.v1_c00499{vertical-align:29.440000pt;}
.ls1_c00499{letter-spacing:0.000000pt;}
.ls2_c00499{letter-spacing:0.448000pt;}
.ls0_c00499{letter-spacing:0.640000pt;}
.ws1_c00499{word-spacing:-16.448000pt;}
.ws0_c00499{word-spacing:-16.000000pt;}
.ws2_c00499{word-spacing:0.000000pt;}
._7_c00499{margin-left:-3.317333pt;}
._2_c00499{margin-left:-2.410667pt;}
._1_c00499{margin-left:-1.024000pt;}
._0_c00499{width:0.896000pt;}
._3_c00499{width:1.792000pt;}
._4_c00499{width:3.616000pt;}
._6_c00499{width:6.399936pt;}
._5_c00499{width:7.477355pt;}
.fs1_c00499{font-size:42.240000pt;}
.fs0_c00499{font-size:64.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y3_c00499{bottom:51.552000pt;}
.y2_c00499{bottom:70.112000pt;}
.y21_c00499{bottom:110.432000pt;}
.y20_c00499{bottom:137.986667pt;}
.y1f_c00499{bottom:165.826667pt;}
.y1e_c00499{bottom:193.346667pt;}
.y1d_c00499{bottom:220.866667pt;}
.y1c_c00499{bottom:248.413333pt;}
.y1b_c00499{bottom:276.253333pt;}
.y1a_c00499{bottom:303.773333pt;}
.y19_c00499{bottom:331.293333pt;}
.y18_c00499{bottom:358.853333pt;}
.y17_c00499{bottom:386.373333pt;}
.y16_c00499{bottom:414.213333pt;}
.y15_c00499{bottom:441.733333pt;}
.y14_c00499{bottom:469.280000pt;}
.y13_c00499{bottom:496.800000pt;}
.y12_c00499{bottom:524.640000pt;}
.y11_c00499{bottom:552.160000pt;}
.y10_c00499{bottom:579.706667pt;}
.yf_c00499{bottom:607.226667pt;}
.ye_c00499{bottom:635.066667pt;}
.yd_c00499{bottom:662.586667pt;}
.yc_c00499{bottom:690.146667pt;}
.yb_c00499{bottom:725.666667pt;}
.ya_c00499{bottom:761.506667pt;}
.y9_c00499{bottom:792.893333pt;}
.y8_c00499{bottom:836.733333pt;}
.y7_c00499{bottom:864.253333pt;}
.y6_c00499{bottom:891.773333pt;}
.y5_c00499{bottom:919.333333pt;}
.y4_c00499{bottom:947.173333pt;}
.y1_c00499{bottom:993.573333pt;}
.h1_c00499{height:57.375000pt;}
.h2_c00499{height:62.812500pt;}
.h3_c00499{height:64.500000pt;}
.h4_c00499{height:70.896250pt;}
.h0_c00499{height:1056.000000pt;}
.w0_c00499{width:816.000000pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:113.312000pt;}
.x3_c00499{left:335.813333pt;}
.x2_c00499{left:396.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_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_0a055753e4d4bd3c1251d350.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_d29c24f0909f6c22525ff219.woff2')format("woff");}.ff2_c00001{font-family:ff2_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:ff3_c00001;src:url('chunks/assets/font_7f1eae88247b19dca567afa7.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_27d8820690402b9832514b6b.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_f100a14f71483d72a4f77e62.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.117188;font-style:normal;font-weight:normal;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_9d0efe2f9b30959b2b34b06b.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.117188;font-style:normal;font-weight: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_1b843e7d7470c2d58f936f4c.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.008301;font-style:normal;font-weight: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_fd27dac8e0a3f5e02314533d.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00001;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff9_c00001{font-family:ff9_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;}
.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);}
.v2_c00001{vertical-align:-33.120000px;}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:33.120000px;}
.lse_c00001{letter-spacing:-1.296000px;}
.ls5_c00001{letter-spacing:-0.792000px;}
.ls2_c00001{letter-spacing:-0.720000px;}
.ls13_c00001{letter-spacing:-0.504000px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls0_c00001{letter-spacing:0.144000px;}
.ls16_c00001{letter-spacing:0.180000px;}
.ls3_c00001{letter-spacing:0.504000px;}
.ls4_c00001{letter-spacing:0.720000px;}
.lsc_c00001{letter-spacing:0.840000px;}
.ls18_c00001{letter-spacing:1.152000px;}
.lsd_c00001{letter-spacing:1.434720px;}
.lsb_c00001{letter-spacing:1.440000px;}
.ls11_c00001{letter-spacing:1.944000px;}
.ls6_c00001{letter-spacing:2.160000px;}
.ls8_c00001{letter-spacing:2.172000px;}
.ls12_c00001{letter-spacing:5.040000px;}
.ls9_c00001{letter-spacing:5.052000px;}
.ls14_c00001{letter-spacing:6.480000px;}
.ls15_c00001{letter-spacing:7.920000px;}
.ls7_c00001{letter-spacing:12.252000px;}
.ls17_c00001{letter-spacing:19.440000px;}
.lsa_c00001{letter-spacing:19.452000px;}
.lsf_c00001{letter-spacing:22.332000px;}
.ls10_c00001{letter-spacing:38.160000px;}
.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;}
}
.ws6_c00001{word-spacing:-19.152000px;}
.ws1_c00001{word-spacing:-18.504000px;}
.ws0_c00001{word-spacing:-18.000000px;}
.ws5_c00001{word-spacing:-17.496000px;}
.ws2_c00001{word-spacing:-17.208000px;}
.ws4_c00001{word-spacing:-16.704000px;}
.ws3_c00001{word-spacing:0.000000px;}
._8_c00001{margin-left:-3.768312px;}
._4_c00001{margin-left:-2.615928px;}
._3_c00001{margin-left:-1.140024px;}
._1_c00001{width:1.512000px;}
._7_c00001{width:2.868024px;}
._18_c00001{width:3.900072px;}
._b_c00001{width:5.052024px;}
._19_c00001{width:6.191832px;}
._14_c00001{width:7.332168px;}
._11_c00001{width:8.723976px;}
._10_c00001{width:10.140024px;}
._16_c00001{width:12.012192px;}
._e_c00001{width:13.631928px;}
._d_c00001{width:14.711928px;}
._c_c00001{width:16.572024px;}
._2_c00001{width:19.655976px;}
._0_c00001{width:20.892024px;}
._1c_c00001{width:22.583952px;}
._f_c00001{width:24.540024px;}
._9_c00001{width:25.932024px;}
._a_c00001{width:27.647976px;}
._5_c00001{width:29.532024px;}
._6_c00001{width:30.755736px;}
._1b_c00001{width:32.172024px;}
._1a_c00001{width:33.288792px;}
._12_c00001{width:34.799928px;}
._13_c00001{width:35.832480px;}
._17_c00001{width:37.140024px;}
._1e_c00001{width:38.160048px;}
._1f_c00001{width:39.948072px;}
._15_c00001{width:48.252024px;}
._1d_c00001{width:186.636024px;}
.fc1_c00001{color:rgb(255,0,0);}
.fc2_c00001{color:rgb(66,66,66);}
.fc0_c00001{color:rgb(0,0,0);}
.fs1_c00001{font-size:47.520000px;}
.fs0_c00001{font-size:72.000000px;}
.fs2_c00001{font-size:77.760000px;}
.fs3_c00001{font-size:96.480000px;}
.y0_c00001{bottom:0.000000px;}
.y3_c00001{bottom:57.996000px;}
.y2_c00001{bottom:78.876000px;}
.y35_c00001{bottom:115.596000px;}
.y53_c00001{bottom:117.756000px;}
.y79_c00001{bottom:126.036000px;}
.yaa_c00001{bottom:128.556000px;}
.y37_c00001{bottom:131.076000px;}
.y22_c00001{bottom:133.596000px;}
.y7d_c00001{bottom:146.196000px;}
.y2e_c00001{bottom:146.916000px;}
.y9a_c00001{bottom:147.996000px;}
.y52_c00001{bottom:148.716000px;}
.y6a_c00001{bottom:153.795000px;}
.y78_c00001{bottom:157.035000px;}
.ya9_c00001{bottom:159.555000px;}
.y36_c00001{bottom:163.515000px;}
.y21_c00001{bottom:164.955000px;}
.y7c_c00001{bottom:177.195000px;}
.y2d_c00001{bottom:177.915000px;}
.y99_c00001{bottom:178.995000px;}
.y51_c00001{bottom:179.715000px;}
.y69_c00001{bottom:184.755000px;}
.y77_c00001{bottom:188.355000px;}
.ya8_c00001{bottom:190.515000px;}
.y20_c00001{bottom:195.915000px;}
.y7b_c00001{bottom:208.155000px;}
.y2c_c00001{bottom:208.875000px;}
.y98_c00001{bottom:209.955000px;}
.y50_c00001{bottom:211.035000px;}
.y68_c00001{bottom:216.075000px;}
.y76_c00001{bottom:219.315000px;}
.ya7_c00001{bottom:221.835000px;}
.y1f_c00001{bottom:226.875000px;}
.y2b_c00001{bottom:239.835000px;}
.y7a_c00001{bottom:240.195000px;}
.y97_c00001{bottom:240.915000px;}
.y4f_c00001{bottom:241.995000px;}
.y67_c00001{bottom:247.035000px;}
.ya6_c00001{bottom:252.795000px;}
.y1e_c00001{bottom:257.835000px;}
.y75_c00001{bottom:259.275000px;}
.y2a_c00001{bottom:271.155000px;}
.y96_c00001{bottom:271.905000px;}
.y4e_c00001{bottom:272.985000px;}
.y66_c00001{bottom:278.025000px;}
.ya5_c00001{bottom:283.785000px;}
.y1d_c00001{bottom:289.185000px;}
.y74_c00001{bottom:290.265000px;}
.y29_c00001{bottom:302.145000px;}
.y95_c00001{bottom:303.225000px;}
.y4d_c00001{bottom:303.945000px;}
.y65_c00001{bottom:308.985000px;}
.ya4_c00001{bottom:314.745000px;}
.y1c_c00001{bottom:320.145000px;}
.y73_c00001{bottom:330.585000px;}
.y28_c00001{bottom:333.105000px;}
.y94_c00001{bottom:334.185000px;}
.y4c_c00001{bottom:335.265000px;}
.y64_c00001{bottom:340.305000px;}
.ya3_c00001{bottom:346.065000px;}
.y1b_c00001{bottom:351.105000px;}
.y72_c00001{bottom:361.545000px;}
.y34_c00001{bottom:364.065000px;}
.y93_c00001{bottom:365.145000px;}
.y4b_c00001{bottom:366.225000px;}
.y63_c00001{bottom:371.265000px;}
.y27_c00001{bottom:373.065000px;}
.ya2_c00001{bottom:377.025000px;}
.y1a_c00001{bottom:382.065000px;}
.y71_c00001{bottom:392.505000px;}
.y33_c00001{bottom:395.070000px;}
.y92_c00001{bottom:396.150000px;}
.y4a_c00001{bottom:397.230000px;}
.y62_c00001{bottom:402.270000px;}
.ya1_c00001{bottom:408.030000px;}
.y19_c00001{bottom:413.070000px;}
.y70_c00001{bottom:423.510000px;}
.y32_c00001{bottom:426.390000px;}
.y91_c00001{bottom:427.470000px;}
.y49_c00001{bottom:428.190000px;}
.y61_c00001{bottom:433.230000px;}
.ya0_c00001{bottom:438.990000px;}
.y18_c00001{bottom:444.390000px;}
.y6f_c00001{bottom:454.470000px;}
.y31_c00001{bottom:457.350000px;}
.y90_c00001{bottom:458.430000px;}
.y48_c00001{bottom:459.510000px;}
.y60_c00001{bottom:464.550000px;}
.y9f_c00001{bottom:470.310000px;}
.y17_c00001{bottom:475.350000px;}
.y6e_c00001{bottom:485.790000px;}
.y30_c00001{bottom:488.310000px;}
.y8f_c00001{bottom:489.390000px;}
.y47_c00001{bottom:490.470000px;}
.y5f_c00001{bottom:495.510000px;}
.y9e_c00001{bottom:501.270000px;}
.y16_c00001{bottom:506.310000px;}
.y6d_c00001{bottom:516.750000px;}
.y8e_c00001{bottom:520.380000px;}
.y46_c00001{bottom:521.460000px;}
.y5e_c00001{bottom:526.500000px;}
.y2f_c00001{bottom:528.300000px;}
.y9d_c00001{bottom:532.260000px;}
.y15_c00001{bottom:537.300000px;}
.y6c_c00001{bottom:547.740000px;}
.y8d_c00001{bottom:551.700000px;}
.y45_c00001{bottom:552.420000px;}
.y5d_c00001{bottom:557.460000px;}
.y9c_c00001{bottom:564.660000px;}
.y14_c00001{bottom:568.620000px;}
.y6b_c00001{bottom:578.700000px;}
.y8c_c00001{bottom:582.660000px;}
.y44_c00001{bottom:583.740000px;}
.y5c_c00001{bottom:588.780000px;}
.y9b_c00001{bottom:598.140000px;}
.y13_c00001{bottom:599.580000px;}
.y8b_c00001{bottom:613.620000px;}
.y43_c00001{bottom:614.700000px;}
.y5b_c00001{bottom:619.740000px;}
.y12_c00001{bottom:630.540000px;}
.y8a_c00001{bottom:644.610000px;}
.y42_c00001{bottom:645.690000px;}
.y5a_c00001{bottom:650.730000px;}
.y11_c00001{bottom:661.530000px;}
.y89_c00001{bottom:675.930000px;}
.y41_c00001{bottom:676.650000px;}
.y59_c00001{bottom:681.690000px;}
.y10_c00001{bottom:692.850000px;}
.y88_c00001{bottom:706.890000px;}
.y40_c00001{bottom:707.610000px;}
.y58_c00001{bottom:712.650000px;}
.yf_c00001{bottom:723.810000px;}
.yac_c00001{bottom:731.010000px;}
.y87_c00001{bottom:737.850000px;}
.y3f_c00001{bottom:738.930000px;}
.y57_c00001{bottom:743.970000px;}
.ye_c00001{bottom:754.770000px;}
.y86_c00001{bottom:768.855000px;}
.y3e_c00001{bottom:769.935000px;}
.y56_c00001{bottom:774.975000px;}
.yab_c00001{bottom:776.775000px;}
.yd_c00001{bottom:785.775000px;}
.y85_c00001{bottom:800.175000px;}
.y3d_c00001{bottom:800.895000px;}
.y26_c00001{bottom:806.655000px;}
.yc_c00001{bottom:817.095000px;}
.y55_c00001{bottom:827.175000px;}
.y84_c00001{bottom:831.135000px;}
.y3c_c00001{bottom:831.855000px;}
.y25_c00001{bottom:837.615000px;}
.yb_c00001{bottom:848.055000px;}
.y54_c00001{bottom:858.135000px;}
.y24_c00001{bottom:858.495000px;}
.y83_c00001{bottom:862.095000px;}
.y3b_c00001{bottom:863.175000px;}
.ya_c00001{bottom:879.015000px;}
.y23_c00001{bottom:889.485000px;}
.y3a_c00001{bottom:894.165000px;}
.y82_c00001{bottom:903.165000px;}
.y9_c00001{bottom:910.005000px;}
.y39_c00001{bottom:925.125000px;}
.y81_c00001{bottom:940.245000px;}
.y8_c00001{bottom:941.325000px;}
.y38_c00001{bottom:966.165000px;}
.y7_c00001{bottom:972.285000px;}
.y80_c00001{bottom:981.285000px;}
.y6_c00001{bottom:1003.245000px;}
.y7f_c00001{bottom:1018.410000px;}
.y5_c00001{bottom:1034.250000px;}
.y7e_c00001{bottom:1059.450000px;}
.y4_c00001{bottom:1065.570000px;}
.y1_c00001{bottom:1117.770000px;}
.h1_c00001{height:64.546875px;}
.h3_c00001{height:64.898438px;}
.h5_c00001{height:70.628906px;}
.h2_c00001{height:70.664062px;}
.h8_c00001{height:72.562500px;}
.h6_c00001{height:76.317188px;}
.h4_c00001{height:79.758281px;}
.h7_c00001{height:79.925027px;}
.h9_c00001{height:97.233750px;}
.h0_c00001{height:1188.000000px;}
.w0_c00001{width:918.000000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:127.476000px;}
.x2_c00001{left:445.500000px;}
.x3_c00001{left:458.820000px;}
@media print{
.v2_c00001{vertical-align:-29.440000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:29.440000pt;}
.lse_c00001{letter-spacing:-1.152000pt;}
.ls5_c00001{letter-spacing:-0.704000pt;}
.ls2_c00001{letter-spacing:-0.640000pt;}
.ls13_c00001{letter-spacing:-0.448000pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls0_c00001{letter-spacing:0.128000pt;}
.ls16_c00001{letter-spacing:0.160000pt;}
.ls3_c00001{letter-spacing:0.448000pt;}
.ls4_c00001{letter-spacing:0.640000pt;}
.lsc_c00001{letter-spacing:0.746667pt;}
.ls18_c00001{letter-spacing:1.024000pt;}
.lsd_c00001{letter-spacing:1.275307pt;}
.lsb_c00001{letter-spacing:1.280000pt;}
.ls11_c00001{letter-spacing:1.728000pt;}
.ls6_c00001{letter-spacing:1.920000pt;}
.ls8_c00001{letter-spacing:1.930667pt;}
.ls12_c00001{letter-spacing:4.480000pt;}
.ls9_c00001{letter-spacing:4.490667pt;}
.ls14_c00001{letter-spacing:5.760000pt;}
.ls15_c00001{letter-spacing:7.040000pt;}
.ls7_c00001{letter-spacing:10.890667pt;}
.ls17_c00001{letter-spacing:17.280000pt;}
.lsa_c00001{letter-spacing:17.290667pt;}
.lsf_c00001{letter-spacing:19.850667pt;}
.ls10_c00001{letter-spacing:33.920000pt;}
.ws6_c00001{word-spacing:-17.024000pt;}
.ws1_c00001{word-spacing:-16.448000pt;}
.ws0_c00001{word-spacing:-16.000000pt;}
.ws5_c00001{word-spacing:-15.552000pt;}
.ws2_c00001{word-spacing:-15.296000pt;}
.ws4_c00001{word-spacing:-14.848000pt;}
.ws3_c00001{word-spacing:0.000000pt;}
._8_c00001{margin-left:-3.349611pt;}
._4_c00001{margin-left:-2.325269pt;}
._3_c00001{margin-left:-1.013355pt;}
._1_c00001{width:1.344000pt;}
._7_c00001{width:2.549355pt;}
._18_c00001{width:3.466731pt;}
._b_c00001{width:4.490688pt;}
._19_c00001{width:5.503851pt;}
._14_c00001{width:6.517483pt;}
._11_c00001{width:7.754645pt;}
._10_c00001{width:9.013355pt;}
._16_c00001{width:10.677504pt;}
._e_c00001{width:12.117269pt;}
._d_c00001{width:13.077269pt;}
._c_c00001{width:14.730688pt;}
._2_c00001{width:17.471979pt;}
._0_c00001{width:18.570688pt;}
._1c_c00001{width:20.074624pt;}
._f_c00001{width:21.813355pt;}
._9_c00001{width:23.050688pt;}
._a_c00001{width:24.575979pt;}
._5_c00001{width:26.250688pt;}
._6_c00001{width:27.338432pt;}
._1b_c00001{width:28.597355pt;}
._1a_c00001{width:29.590037pt;}
._12_c00001{width:30.933269pt;}
._13_c00001{width:31.851093pt;}
._17_c00001{width:33.013355pt;}
._1e_c00001{width:33.920043pt;}
._1f_c00001{width:35.509397pt;}
._15_c00001{width:42.890688pt;}
._1d_c00001{width:165.898688pt;}
.fs1_c00001{font-size:42.240000pt;}
.fs0_c00001{font-size:64.000000pt;}
.fs2_c00001{font-size:69.120000pt;}
.fs3_c00001{font-size:85.760000pt;}
.y0_c00001{bottom:0.000000pt;}
.y3_c00001{bottom:51.552000pt;}
.y2_c00001{bottom:70.112000pt;}
.y35_c00001{bottom:102.752000pt;}
.y53_c00001{bottom:104.672000pt;}
.y79_c00001{bottom:112.032000pt;}
.yaa_c00001{bottom:114.272000pt;}
.y37_c00001{bottom:116.512000pt;}
.y22_c00001{bottom:118.752000pt;}
.y7d_c00001{bottom:129.952000pt;}
.y2e_c00001{bottom:130.592000pt;}
.y9a_c00001{bottom:131.552000pt;}
.y52_c00001{bottom:132.192000pt;}
.y6a_c00001{bottom:136.706667pt;}
.y78_c00001{bottom:139.586667pt;}
.ya9_c00001{bottom:141.826667pt;}
.y36_c00001{bottom:145.346667pt;}
.y21_c00001{bottom:146.626667pt;}
.y7c_c00001{bottom:157.506667pt;}
.y2d_c00001{bottom:158.146667pt;}
.y99_c00001{bottom:159.106667pt;}
.y51_c00001{bottom:159.746667pt;}
.y69_c00001{bottom:164.226667pt;}
.y77_c00001{bottom:167.426667pt;}
.ya8_c00001{bottom:169.346667pt;}
.y20_c00001{bottom:174.146667pt;}
.y7b_c00001{bottom:185.026667pt;}
.y2c_c00001{bottom:185.666667pt;}
.y98_c00001{bottom:186.626667pt;}
.y50_c00001{bottom:187.586667pt;}
.y68_c00001{bottom:192.066667pt;}
.y76_c00001{bottom:194.946667pt;}
.ya7_c00001{bottom:197.186667pt;}
.y1f_c00001{bottom:201.666667pt;}
.y2b_c00001{bottom:213.186667pt;}
.y7a_c00001{bottom:213.506667pt;}
.y97_c00001{bottom:214.146667pt;}
.y4f_c00001{bottom:215.106667pt;}
.y67_c00001{bottom:219.586667pt;}
.ya6_c00001{bottom:224.706667pt;}
.y1e_c00001{bottom:229.186667pt;}
.y75_c00001{bottom:230.466667pt;}
.y2a_c00001{bottom:241.026667pt;}
.y96_c00001{bottom:241.693333pt;}
.y4e_c00001{bottom:242.653333pt;}
.y66_c00001{bottom:247.133333pt;}
.ya5_c00001{bottom:252.253333pt;}
.y1d_c00001{bottom:257.053333pt;}
.y74_c00001{bottom:258.013333pt;}
.y29_c00001{bottom:268.573333pt;}
.y95_c00001{bottom:269.533333pt;}
.y4d_c00001{bottom:270.173333pt;}
.y65_c00001{bottom:274.653333pt;}
.ya4_c00001{bottom:279.773333pt;}
.y1c_c00001{bottom:284.573333pt;}
.y73_c00001{bottom:293.853333pt;}
.y28_c00001{bottom:296.093333pt;}
.y94_c00001{bottom:297.053333pt;}
.y4c_c00001{bottom:298.013333pt;}
.y64_c00001{bottom:302.493333pt;}
.ya3_c00001{bottom:307.613333pt;}
.y1b_c00001{bottom:312.093333pt;}
.y72_c00001{bottom:321.373333pt;}
.y34_c00001{bottom:323.613333pt;}
.y93_c00001{bottom:324.573333pt;}
.y4b_c00001{bottom:325.533333pt;}
.y63_c00001{bottom:330.013333pt;}
.y27_c00001{bottom:331.613333pt;}
.ya2_c00001{bottom:335.133333pt;}
.y1a_c00001{bottom:339.613333pt;}
.y71_c00001{bottom:348.893333pt;}
.y33_c00001{bottom:351.173333pt;}
.y92_c00001{bottom:352.133333pt;}
.y4a_c00001{bottom:353.093333pt;}
.y62_c00001{bottom:357.573333pt;}
.ya1_c00001{bottom:362.693333pt;}
.y19_c00001{bottom:367.173333pt;}
.y70_c00001{bottom:376.453333pt;}
.y32_c00001{bottom:379.013333pt;}
.y91_c00001{bottom:379.973333pt;}
.y49_c00001{bottom:380.613333pt;}
.y61_c00001{bottom:385.093333pt;}
.ya0_c00001{bottom:390.213333pt;}
.y18_c00001{bottom:395.013333pt;}
.y6f_c00001{bottom:403.973333pt;}
.y31_c00001{bottom:406.533333pt;}
.y90_c00001{bottom:407.493333pt;}
.y48_c00001{bottom:408.453333pt;}
.y60_c00001{bottom:412.933333pt;}
.y9f_c00001{bottom:418.053333pt;}
.y17_c00001{bottom:422.533333pt;}
.y6e_c00001{bottom:431.813333pt;}
.y30_c00001{bottom:434.053333pt;}
.y8f_c00001{bottom:435.013333pt;}
.y47_c00001{bottom:435.973333pt;}
.y5f_c00001{bottom:440.453333pt;}
.y9e_c00001{bottom:445.573333pt;}
.y16_c00001{bottom:450.053333pt;}
.y6d_c00001{bottom:459.333333pt;}
.y8e_c00001{bottom:462.560000pt;}
.y46_c00001{bottom:463.520000pt;}
.y5e_c00001{bottom:468.000000pt;}
.y2f_c00001{bottom:469.600000pt;}
.y9d_c00001{bottom:473.120000pt;}
.y15_c00001{bottom:477.600000pt;}
.y6c_c00001{bottom:486.880000pt;}
.y8d_c00001{bottom:490.400000pt;}
.y45_c00001{bottom:491.040000pt;}
.y5d_c00001{bottom:495.520000pt;}
.y9c_c00001{bottom:501.920000pt;}
.y14_c00001{bottom:505.440000pt;}
.y6b_c00001{bottom:514.400000pt;}
.y8c_c00001{bottom:517.920000pt;}
.y44_c00001{bottom:518.880000pt;}
.y5c_c00001{bottom:523.360000pt;}
.y9b_c00001{bottom:531.680000pt;}
.y13_c00001{bottom:532.960000pt;}
.y8b_c00001{bottom:545.440000pt;}
.y43_c00001{bottom:546.400000pt;}
.y5b_c00001{bottom:550.880000pt;}
.y12_c00001{bottom:560.480000pt;}
.y8a_c00001{bottom:572.986667pt;}
.y42_c00001{bottom:573.946667pt;}
.y5a_c00001{bottom:578.426667pt;}
.y11_c00001{bottom:588.026667pt;}
.y89_c00001{bottom:600.826667pt;}
.y41_c00001{bottom:601.466667pt;}
.y59_c00001{bottom:605.946667pt;}
.y10_c00001{bottom:615.866667pt;}
.y88_c00001{bottom:628.346667pt;}
.y40_c00001{bottom:628.986667pt;}
.y58_c00001{bottom:633.466667pt;}
.yf_c00001{bottom:643.386667pt;}
.yac_c00001{bottom:649.786667pt;}
.y87_c00001{bottom:655.866667pt;}
.y3f_c00001{bottom:656.826667pt;}
.y57_c00001{bottom:661.306667pt;}
.ye_c00001{bottom:670.906667pt;}
.y86_c00001{bottom:683.426667pt;}
.y3e_c00001{bottom:684.386667pt;}
.y56_c00001{bottom:688.866667pt;}
.yab_c00001{bottom:690.466667pt;}
.yd_c00001{bottom:698.466667pt;}
.y85_c00001{bottom:711.266667pt;}
.y3d_c00001{bottom:711.906667pt;}
.y26_c00001{bottom:717.026667pt;}
.yc_c00001{bottom:726.306667pt;}
.y55_c00001{bottom:735.266667pt;}
.y84_c00001{bottom:738.786667pt;}
.y3c_c00001{bottom:739.426667pt;}
.y25_c00001{bottom:744.546667pt;}
.yb_c00001{bottom:753.826667pt;}
.y54_c00001{bottom:762.786667pt;}
.y24_c00001{bottom:763.106667pt;}
.y83_c00001{bottom:766.306667pt;}
.y3b_c00001{bottom:767.266667pt;}
.ya_c00001{bottom:781.346667pt;}
.y23_c00001{bottom:790.653333pt;}
.y3a_c00001{bottom:794.813333pt;}
.y82_c00001{bottom:802.813333pt;}
.y9_c00001{bottom:808.893333pt;}
.y39_c00001{bottom:822.333333pt;}
.y81_c00001{bottom:835.773333pt;}
.y8_c00001{bottom:836.733333pt;}
.y38_c00001{bottom:858.813333pt;}
.y7_c00001{bottom:864.253333pt;}
.y80_c00001{bottom:872.253333pt;}
.y6_c00001{bottom:891.773333pt;}
.y7f_c00001{bottom:905.253333pt;}
.y5_c00001{bottom:919.333333pt;}
.y7e_c00001{bottom:941.733333pt;}
.y4_c00001{bottom:947.173333pt;}
.y1_c00001{bottom:993.573333pt;}
.h1_c00001{height:57.375000pt;}
.h3_c00001{height:57.687500pt;}
.h5_c00001{height:62.781250pt;}
.h2_c00001{height:62.812500pt;}
.h8_c00001{height:64.500000pt;}
.h6_c00001{height:67.837500pt;}
.h4_c00001{height:70.896250pt;}
.h7_c00001{height:71.044468pt;}
.h9_c00001{height:86.430000pt;}
.h0_c00001{height:1056.000000pt;}
.w0_c00001{width:816.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:113.312000pt;}
.x2_c00001{left:396.000000pt;}
.x3_c00001{left:407.840000pt;}
}




    .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; }
  